Datasets:
File size: 5,679 Bytes
3a016ca | 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 | # GDPR Anonymisation & Pseudonymisation Report
**Dataset:** `EU-Retail-UX-Feedback-Live`
**Regulation:** EU General Data Protection Regulation (Regulation (EU) 2016/679)
**Review date:** 2026-08-13
**Owner:** UX Data Engineering — EU Retail (UK / FR / DE branches)
This report documents the measures applied so that the published dataset complies
with GDPR principles of **data minimisation**, **purpose limitation**, and
**data protection by design and by default** (Art. 25), and follows guidance on
**pseudonymisation** (Art. 4(5), Recital 26 & 28).
---
## 1. Source systems and collected raw attributes
Raw records arrive in near real-time from three collection surfaces:
- E-commerce **website** (web analytics + feedback widget)
- **Mobile application** (iOS/Android in-app feedback)
- **Customer service** platform (chat/e-mail/ticket summaries)
The raw (pre-processing) records contain the following fields:
| Field | Category | Published? |
|---|---|---|
| `user_id` | Direct identifier | ❌ Dropped |
| `user_email` | Direct identifier / PII | ❌ Dropped |
| `user_name` | Direct identifier / PII | ❌ Dropped |
| `phone_number` | Direct identifier / PII | ❌ Dropped |
| `address` | Direct identifier / PII | ❌ Dropped |
| `session_id_raw` | Indirect identifier | ⚠️ Pseudonymised → `session_id` |
| `feedback_text` | Free text | ⚠️ Scrubbed (PII patterns redacted) |
| `market_region`, `country_code`, `language`, `timestamp`, `experience_dimension`, `rating`, `device_type`, `source_channel` | Analytical attributes | ✅ Published as-is |
---
## 2. Measures applied
### 2.1 Deletion of direct identifiers (data minimisation)
The fields `user_email`, `user_name`, `phone_number` and `address` are **deleted**
from every record **before** upload. They are never written to the Hub repository.
The raw data remains only in a restricted, access-controlled internal store with a
short retention period, and is deleted on request (right to erasure, Art. 17).
### 2.2 Pseudonymisation of identifiers (Art. 4(5))
Real user and session identifiers are replaced by **pseudonymous IDs** computed as:
```
pseudo_id = HMAC-SHA256(salt, namespace + ":" + raw_id)[0:16]
```
- The **salt** is a high-entropy secret stored in a separate secrets manager,
accessible only to the data-engineering platform (no human access by default).
- Because the salt is never published, the mapping `pseudo_id → raw_id` **cannot
be reconstructed** from the Hub data alone.
- The same raw user always maps to the same pseudonymous `user_pseudo_id` within
a salt epoch, enabling longitudinal analysis without re-identification.
- A **salt rotation policy** (e.g. quarterly) further reduces re-identification
risk across time windows.
### 2.3 Free-text scrubbing
The `feedback_text` field is scanned and residual PII patterns are redacted to
`[REDACTED]` before publication:
- E-mail addresses (regex for RFC-5322-like patterns)
- Phone numbers (international + local formats, incl. +44/+33/+49)
- UK postcodes, French postcodes (5 digits), German postcodes (5 digits)
- Credit-card-like number sequences
### 2.4 Data minimisation of published attributes
Only attributes required for UX analytics are published. No financial, health,
biometric, political, religious or other special-category data (Art. 9) is
collected or published.
---
## 3. Validation performed before upload
| Check | Result |
|---|---|
| Direct PII columns present (`email`, `name`, `phone`, `address`) | None |
| E-mail patterns in `feedback_text` | 0 matches |
| Phone-number patterns in `feedback_text` | 0 matches |
| Postcode patterns in `feedback_text` | 0 matches |
| `user_pseudo_id` / `session_id` are pseudonymous hex tokens | 100% |
| All text valid UTF-8 (round-trip encode/decode) | 100% |
| Language tag matches market (en-GB↔UK, fr-FR↔FR, de-DE↔DE) | 0 mismatches |
| Rating within 1–5 | 100% |
Automated validation is part of the CI/CD pipeline; a failing check blocks the
publish step.
---
## 4. Rights of data subjects
Although the published dataset is pseudonymised (and here also synthetic), the
organisation maintains the ability to honour data-subject rights on the internal
raw store:
- **Right of access (Art. 15)** and **rectification (Art. 16)**: supported via
the internal raw store keyed by the raw user id.
- **Right to erasure (Art. 17)**: raw records are deleted on request; published
pseudonymous records are re-issued after salt rotation to prevent linkage.
- **Right to object (Art. 21)**: honoured via the consent/preference centre.
---
## 5. Consent & lawful basis
Feedback is collected under **legitimate interest** (Art. 6(1)(f)) with clear
privacy notice, or under **consent** (Art. 6(1)(a)) where required by local law
(e.g. France/CNIL and Germany/BDSG guidance on cookie and analytics consent).
Analytics are privacy-by-default: no advertising-grade profiling.
---
## 6. Data Protection Impact Assessment (DPIA)
A DPIA was conducted for the live-feedback analytics processing. Key findings:
- Risk of re-identification: **low** after pseudonymisation + salt protection.
- Residual risk: pseudonymous linkage across time; mitigated by salt rotation
and by publishing only analytical attributes.
- Data transfer: dataset is published on a public hub; because the data is
pseudonymised/synthetic and contains no direct identifiers, this is considered
compliant with the transfer safeguards under Chapter V when combined with the
SCCs and the EU-US Data Privacy Framework where applicable.
---
*This report is stored alongside the dataset for audit purposes and is reviewed
on every major release cycle.*
|