Skip to main content

PDPL & Global Data Protection

Building healthcare applications for international markets requires understanding multiple data protection frameworks. This module covers Saudi Arabia’s PDPL, GDPR, and how they intersect with HIPAA.
Comparison of HIPAA, PDPL, and GDPR requirements

Global Data Protection Framework Comparison

Learning Objectives:
  • Understand Saudi Arabia’s PDPL requirements
  • Map HIPAA controls to PDPL compliance
  • Navigate cross-border data transfers
  • Implement consent management frameworks
  • Handle data localization requirements

Global Data Protection Landscape


Saudi Arabia’s PDPL (نظام حماية البيانات الشخصية)

Overview

The Personal Data Protection Law (PDPL) was issued by Royal Decree in September 2021 and became enforceable in 2023. It represents Saudi Arabia’s first comprehensive data protection framework.

Key Definitions

PDPL Principles

Lawfulness & Transparency

Processing must be lawful, fair, and transparent to the data subject

Purpose Limitation

Data collected for specific, explicit, and legitimate purposes

Data Minimization

Only collect data necessary for the specified purpose

Accuracy

Keep personal data accurate and up-to-date

Storage Limitation

Retain data only as long as necessary for the purpose

Security

Implement appropriate technical and organizational measures

PDPL vs HIPAA Comparison


Implementing PDPL Compliance


Data Localization

PDPL Data Residency Requirements


Data Subject Rights

Rights Implementation


Breach Notification

PDPL Breach Requirements


Compliance Mapping

HIPAA to PDPL Control Mapping


Key Takeaways

Consent is King

PDPL requires explicit consent for most processing, unlike HIPAA’s TPO exceptions

Data Must Stay Local

Keep personal data in Saudi Arabia/GCC unless you have valid legal basis for transfer

72-Hour Notification

Breach notification to SDAIA must occur within 72 hours of discovery

Rights Implementation

Build systems to handle access, erasure, and portability requests

Practice Exercise

1

Consent Flow

Design a consent collection flow for a healthcare app targeting Saudi users.
2

Data Mapping

Map your data flows and identify where PDPL data localization applies.
3

Rights Portal

Build a data subject rights portal supporting Arabic and English.
4

Breach Playbook

Create a breach response playbook meeting the 72-hour notification requirement.

Next Steps

Encryption

Implement encryption for data at rest and in transit

E2E Encryption with AI

Learn how to encrypt chat data while using AI agents

Interview Deep-Dive

Strong Answer:
  • PDPL requires that personal data of Saudi citizens be stored and processed within the Kingdom of Saudi Arabia unless specific conditions are met for cross-border transfer. Health data is classified as sensitive personal data under PDPL, which triggers even stricter protections. Deploying a US-hosted EHR for Saudi patients likely violates the data localization requirement.
  • The architecture solution is a dual-region deployment with data sovereignty controls. Deploy the primary EHR instance in a Saudi Arabia region (AWS Bahrain, Azure UAE, or a local Saudi cloud provider with appropriate certifications). All Saudi patient data — demographics, clinical records, billing, messaging — resides in this region. A separate US instance handles US patient data and is governed by HIPAA.
  • For cross-border transfers that are clinically necessary (a Saudi patient seeking treatment in the US, or a multi-national clinical trial), PDPL allows transfers if: the transfer is necessary for the performance of a contract with the data subject, the data subject has given explicit consent, or the transfer is to a country that the Saudi authority recognizes as having adequate data protection. In each case, the legal basis must be documented per transfer, and the receiving entity must provide equivalent protections.
  • Technical implementation: use database-level tagging to classify each record’s governing jurisdiction (SA, US, EU). Implement data residency enforcement at the application layer — API requests from the Saudi deployment cannot write to the US database, and vice versa. Cross-region queries for clinical purposes go through a controlled federation layer that logs the transfer, verifies the legal basis, and encrypts the data with jurisdiction-specific keys.
  • The BAA framework must account for both: the US EHR vendor signs a BAA for HIPAA and a data processing agreement for PDPL, covering both regulatory regimes.
Follow-up: A Saudi physician traveling in the US needs to access a Saudi patient’s record. The data must stay in Saudi Arabia per PDPL. How do you enable this?The physician accesses the Saudi-region deployment remotely over TLS from the US. The data does not leave Saudi Arabia — the physician’s browser receives and renders the data, but the server-side processing and storage remain in-kingdom. This is generally acceptable under PDPL because the data is not “transferred” to the US in a regulatory sense — it is accessed remotely, similar to how a bank customer abroad views their account. However, screen captures, local caching, and browser storage could technically create copies outside Saudi Arabia. Mitigations: disable client-side caching for PHI pages, prevent screenshots (where technically feasible), implement watermarking on displayed records (deters photographing screens), and log the remote access with the physician’s geographic location. If the organization is risk-averse, require VPN back to the Saudi network so the traffic originates from a Saudi IP, though this does not change the fundamental analysis.
Strong Answer:
  • Always build to the stricter timeline. In this case, PDPL’s 72-hour requirement drives the notification process for all affected patients, regardless of jurisdiction. You cannot meaningfully separate the investigation by jurisdiction in the first 72 hours — you are still determining scope.
  • Hour 0-24: Incident confirmation, containment, and initial forensic triage. Determine that a breach has occurred and activate the incident response team. Begin identifying affected records and their jurisdictional classification.
  • Hour 24-48: Scope determination. Classify affected records by jurisdiction (Saudi, US, both). Prepare two parallel notification packages: one for the Saudi Data Protection Authority (SDPA) and one for HHS OCR. The SDPA notification must include: nature of the breach, categories and approximate number of affected data subjects, contact details of the DPO, likely consequences, and measures taken to mitigate.
  • Hour 48-72: Submit the SDPA notification. This is a preliminary report — PDPL recognizes that full details may not be available within 72 hours, but you must provide what you know and commit to supplementary reports.
  • Day 3-60: Continue the investigation, refine the affected patient count, and prepare individual notifications for both Saudi and US patients. For US patients, prepare the HHS notification (required within 60 days). For Saudi patients, prepare individual notifications per PDPL requirements (timeline depends on SDPA guidance).
  • The operational challenge: your incident response team needs pre-built notification templates for both regulatory bodies, with jurisdiction-specific required content fields. The investigation must track jurisdiction per affected record from the start, not as an afterthought. Your privacy officer needs to understand both regulatory frameworks, or you need dedicated compliance contacts for each jurisdiction.
  • Documentation: maintain a single incident record with dual-jurisdiction tracking. Every decision (what was reported, when, to whom, what was withheld pending investigation) must be documented for both regulators’ benefit.
Follow-up: The SDPA asks for the names and National IDs of all affected Saudi patients as part of their investigation. Sharing this data with a regulatory authority in Saudi Arabia might conflict with US privacy expectations. How do you handle this?The SDPA has regulatory authority to request this information for Saudi data subjects as part of a breach investigation — it is analogous to HHS OCR requesting affected individual details during a HIPAA investigation. The data you share with SDPA is limited to Saudi patient data that is already governed by PDPL, so there is no jurisdictional conflict for those records. However, ensure that: (1) you only share Saudi patient data, not US patient data, with SDPA; (2) the disclosure is documented as a legally required disclosure under both PDPL and your internal policies; (3) the transfer is encrypted and uses a secure channel designated by SDPA; (4) you do not share data beyond what the SDPA specifically requests. If the breach also affected US patients, share US patient details only with HHS OCR, not with SDPA. The jurisdictional separation of breach response data is critical and should be established in your dual-jurisdiction incident response plan before an incident occurs.