File size: 5,225 Bytes
acd9c83
 
 
4957814
b330ad6
acd9c83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dd42ee5
 
 
4957814
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
---
language:
- en
license: cc-by-nc-4.0
license_details: "Source data (OHCHR UHRI) is shared freely and without restriction per https://uhri.ohchr.org/en/our-data-api. This derived dataset (cleaning pipeline, normalisation, metadata) is released under CC BY-NC 4.0."
task_categories:
- text-classification
- text-retrieval
tags:
- human-rights
- united-nations
- ohchr
- uhri
- treaty-bodies
- upr
- special-procedures
- recommendations
- international-law
pretty_name: UN Human Rights Recommendations (UHRI+)
size_categories:
- 100K<n<1M
dataset_info:
  features:
    - name: annotation_id
      dtype: string
    - name: symbol
      dtype: string
    - name: body
      dtype: string
    - name: publication_date
      dtype: string
    - name: publication_year
      dtype: int64
    - name: annotation_type
      dtype: string
    - name: countries
      sequence: string
    - name: regions
      sequence: string
    - name: affected_persons
      sequence: string
    - name: themes
      sequence: string
    - name: sdgs
      sequence: string
    - name: text_original
      dtype: string
    - name: text_cleaned
      dtype: string
    - name: citation
      dtype: string
  splits:
    - name: train
      num_examples: 267671
---

# UN Human Rights Recommendations (UHRI+)

A cleaned and normalized dataset of **267,671 country-specific human rights observations and recommendations** from three UN mechanisms, covering 2006–2026.

Built on the [OHCHR Universal Human Rights Index](https://uhri.ohchr.org) (UHRI) — the authoritative UN source — with systematic data quality improvements applied on top.

## Coverage

| Mechanism | Records | Bodies |
|---|---|---|
| Universal Periodic Review (UPR) | 127,625 | 1 |
| Treaty Bodies | ~103,000 | 12 (CCPR, CAT, CERD, CEDAW, CRC, CESCR, CMW, CRPD, CED, SPT, CRC-OP-AC, CRC-OP-SC) |
| Special Procedures (SR, IE, WG) | ~37,000 | 57 |

**198 state parties** covered, including Cook Islands, Niue (non-UN-member states), State of Palestine\*, Holy See (UN observer states), and Kosovo\* (contested status).

## Cleaning pipeline (5 stages)

| Stage | Issue | Records affected |
|---|---|---|
| 1 | OCR/encoding artefacts (ligatures, spacing, smart quotes) | ~8,000 |
| 2 | Structural normalisation (section headings, paragraph markers) | ~3,500 |
| 3 | Deduplication of near-identical records | ~1,200 |
| 4 | Country backfill from UN document symbol | 106 |
| 5 | Body name normalisation (78 → 70 unique bodies) | 1,481 |

The `text_cleaned` field reflects all five stages. `text_original` preserves the raw OHCHR export text.

## Schema

| Field | Type | Description |
|---|---|---|
| `annotation_id` | string | OHCHR UUID |
| `symbol` | string | UN document symbol (e.g. `CEDAW/C/ALB/CO/4`) |
| `body` | string | Issuing body short code (e.g. `CEDAW`, `UPR`, `SR Torture`) |
| `publication_date` | string | ISO date (YYYY-MM-DD) |
| `publication_year` | int | Year for fast filtering |
| `annotation_type` | string | `Recommendations` or `Concerns/Observations` |
| `countries` | list[str] | Target countries (full names) |
| `regions` | list[str] | UN M49 regions |
| `affected_persons` | list[str] | OHCHR affected-person categories |
| `themes` | list[str] | OHCHR thematic categories |
| `sdgs` | list[str] | SDG tags |
| `text_original` | string | Raw OHCHR export text |
| `text_cleaned` | string | Text after 5-stage cleaning pipeline |
| `citation` | string | Formatted citation |

## Quick start

```python
from datasets import load_dataset

ds = load_dataset("lszoszk/uhri-recommendations")

# Filter by country
poland = ds["train"].filter(lambda x: "Poland" in x["countries"])

# Filter by mechanism
upr = ds["train"].filter(lambda x: x["body"] == "UPR")

# Search recommendations
torture = ds["train"].filter(lambda x: "torture" in x["text_cleaned"].lower())
```

## Live dashboard

An interactive search and analytics dashboard built on this dataset:
**[https://lszoszk.github.io/UnitedNations_recommendations/](https://lszoszk.github.io/UnitedNations_recommendations/)**

Features: boolean + wildcard + FTS5 stemmed search, per-country profiles, hex map, timeline analytics, SDG mapping.

## Citation

```bibtex
@dataset{szoszkiewicz2026uhri,
  author    = {Szoszkiewicz, Lukasz},
  title     = {UN Human Rights Recommendations (UHRI+)},
  year      = {2026},
  publisher = {Hugging Face},
  url       = {https://huggingface.co/datasets/lszoszk/uhri-recommendations},
  note      = {Cleaned dataset built on OHCHR Universal Human Rights Index, 2006--2026}
}
```

## Licence

Source data © OHCHR — shared freely and without restriction per the **[UHRI data policy](https://uhri.ohchr.org/en/our-data-api)**.  
> ⚠️ The OHCHR data policy may change. Always consult the current terms at [uhri.ohchr.org/en/our-data-api](https://uhri.ohchr.org/en/our-data-api) before redistributing. This dataset card reflects the policy as of 2026-05-18.

Cleaning pipeline, normalisation, Stage 4 country backfill, and all metadata additions © L. Szoszkiewicz (Adam Mickiewicz University, Poznań), released under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/) — free for research and education, commercial use requires permission.