# Data, patients and borders: privacy law and global regulatory fragmentation
A patient in Munich enrolls in a decentralized clinical trial for a new oral oncology drug. Her wearable device streams heart rate and activity data to a cloud server. If that server sits in Virginia, the trial sponsor may already be breaking the law before the first dose is administered. This is not a hypothetical: it is the daily operating reality for any pharma company running trials or patient support programs across more than one jurisdiction.
Privacy law is no longer a back-office legal matter in pharma. It shapes where data can be stored, how consent forms are worded, which vendors can be used, and sometimes whether a trial site can open at all.
Pharma companies handle some of the most sensitive data categories that exist: genetic information, mental health records, HIV status, reproductive health data, and biometric identifiers from wearables and sensors. Regulators everywhere classify this as "special category" or "sensitive" data, meaning higher legal bars for collection and use.
Add three more forces:
The Health Insurance Portability and Accountability Act (1996), enforced by the HHS Office for Civil Rights (OCR), governs "protected health information" (PHI) held by "covered entities" (hospitals, insurers, clinics) and their "business associates."
Key practical point: HIPAA often does not directly cover pharma companies themselves. A drugmaker sponsoring a trial is usually not a covered entity. But the moment it contracts with a hospital or receives identifiable patient data from a health system, HIPAA's Business Associate Agreement (BAA) requirements kick in, dictating how that data must be secured, who can access it, and breach notification timelines (60 days to notify affected individuals, per HHS breach notification rules).
The General Data Protection Regulation (2016, enforced since 2018) is broader and stricter. It applies to any "personal data" of EU residents, regardless of where the company processing it is based. Enforced by national Data Protection Authorities (DPAs), coordinated by the European Data Protection Board (EDPB).
For pharma, three GDPR mechanics matter most:
1. Legal basis for processing. Consent is one option, but for clinical trials, "legitimate interest" or "public health" bases are often used instead, because consent must be freely given and withdrawable at any time, which is incompatible with trial data integrity requirements.
2. Cross-border data transfer restrictions. Moving EU patient data to the US requires a valid transfer mechanism, Standard Contractual Clauses (SCCs) being the most common after the EU-US Privacy Shield was struck down by the Court of Justice of the EU in the 2020 *Schrems II* ruling. The 2023 EU-US Data Privacy Framework restored a formal adequacy route, but companies still layer SCCs as backup.
3. Fines with teeth. Up to 4% of global annual revenue or €20 million, whichever is higher. This is not symbolic: several pharma and health-tech companies have faced multi-million euro GDPR fines for improper health data handling (see the EDPB's public enforcement register).
A growing number of countries require certain health or genetic data to be stored, or at least processed, on servers within national borders:
The practical effect: a global trial cannot use one central data warehousedata warehouseA central repository that consolidates data from many source systems into a structured, query-optimized store designed for analytics, reporting, and business intelligence.View full definition →. Companies build regional data architectures, sometimes storing raw data locally and only transferring de-identified, aggregated results internationally.
PSPs are especially exposed because they run continuously, not for a fixed trial period, and often involve vendors (call centers, app developers) handling identifiable health data at scale.
Practical adjustments companies make:
Pharma privacy teams often codify these checks into a data governancedata governanceData governance is the set of policies, roles, and processes that ensure data is accurate, secure, well-defined, and used responsibly across an organization.View full definition → rule set. A simplified version:
IF data_subject_location == "EU":
require_legal_basis(GDPR)
IF destination_country not in adequacy_list:
require_SCCs_or_DPF()
ELIF data_subject_location == "US" AND data_holder == "covered_entity_or_BAA":
apply_HIPAA_safeguards()
ELIF data_subject_location == "China":
require_PIPL_security_assessment()
restrict_genetic_data_export()
ELSE:
apply_local_data_protection_law()This is not literal software most companies run, but it mirrors the logic embedded in real data governancedata governanceData governance is the set of policies, roles, and processes that ensure data is accurate, secure, well-defined, and used responsibly across an organization.View full definition → platforms used by pharma legal and IT teams.
Knowledge check
1. Why does privacy law create a materially higher compliance burden for pharma companies compared to many other industries?
2. In the Munich patient example, why might the trial sponsor already be violating the law before the first dose is administered?
3. What best explains why patient support programs (PSPs) raise distinct privacy risks compared to clinical trial data collection?
4. Select ALL correct answers about why clinical trials are described as 'inherently cross-border' from a privacy law perspective.
Select all the correct answers.
5. Select ALL correct answers about sources of health data used in real-world evidence (RWE) and post-marketing surveillance, and their privacy implications.
Select all the correct answers.
There is no global health data standard. The World Health Organization (WHO) has no binding data protection authority. Efforts like the OECD's cross-border privacy frameworks remain voluntary. Meanwhile, more countries are passing their own laws: Brazil's LGPD, South Korea's PIPA, Saudi Arabia's PDPL.
For a pharma company running trials in 15 countries, this means 15 overlapping compliance regimes, not one harmonized standard. Legal and regulatory affairs teams increasingly work alongside data privacy officers embedded directly in clinical operations, not just in a central compliance department.