Skip to content
Legiscope
Menu
Data Privacy

GDPR Article 18: Right to Restriction of Processing

GDPR Article 18 gives data subjects the right to restrict processing in 4 cases. Practical implementation, technical measures, and DPA enforcement.

In one sentence. GDPR Article 18 grants the data subject the right to restrict (pause) processing of their personal data in four specific cases: (a) accuracy contested, (b) processing unlawful but data subject doesn’t want erasure, © controller no longer needs the data but the data subject needs it for legal claims, (d) data subject has objected and the controller’s overriding interests are pending verification. During restriction, the data may only be stored — any other processing requires the data subject’s consent or specific exceptions.

Restriction preserves the relevant data while limiting further use. A technical implementation must work across the systems and recipients involved; merely adding a status field does not prove that processing has stopped. The appropriate design depends on the actual environment.

The official text is Article 18 of Regulation (EU) 2016/679 on EUR-Lex. For related rights: right of access (Article 15), right to erasure (Article 17), right to object (Article 21). For modalities, GDPR Article 12 transparency.

Key takeaways

  • Article 18 = pause processing, keep data. Different from erasure (Article 17).
  • Four trigger cases: accuracy contested, unlawful processing without erasure request, data needed for legal claims, pending objection verification.
  • During restriction: storage is allowed; any other processing requires consent or specific exception.
  • Controller must inform recipients of the restriction (Article 19).
  • Controller must inform data subject before restriction is lifted (Article 18(3)).

1. Article 18 — the four trigger cases

18(1)(a) — Accuracy contested

Data subject contests the accuracy. Restriction lasts as long as the controller needs to verify accuracy. Useful in data correction disputes under the right to rectification (Article 16).

18(1)(b) — Unlawful processing, erasure not wanted

Processing is unlawful but the data subject prefers restriction over erasure. Common when the data subject needs the data for a legal claim or proof.

Controller would normally erase but the data subject needs the data preserved for legal proceedings.

18(1)(d) — Pending objection verification

Data subject has objected under Article 21(1). Restriction lasts until the controller verifies whether their legitimate grounds override the data subject’s interests.

2. What “restriction” means technically (Article 18(2))

During restriction, the data may only be:

  • Stored
  • Processed with the data subject’s consent
  • Processed for legal claims
  • Processed for the protection of the rights of another natural or legal person
  • Processed for reasons of important public interest of the Union or a Member State

Outside these permitted circumstances, stop the relevant use, including marketing, analytics and profiling. Record the particular exception before allowing a necessary operation; a system label cannot authorise it.

3. Technical implementation patterns

Pattern 1 — Restriction flag on the record

  • Database column: restriction_status (none / restricted / lifted)
  • Every read query joins this column and filters
  • Application code checks the flag before any operation
  • Risk: easy to forget in new code paths

Pattern 2 — Move to restricted partition

  • Restricted records moved to a separate database / schema
  • Production code unaware of restricted records
  • Restricted records accessible only via dedicated tooling
  • Pro: stronger isolation, harder to accidentally process

Pattern 3 — Encrypt with key withheld

  • Restricted records encrypted with a key under data subject control
  • Storage continues, processing impossible without key
  • Pro: cryptographic enforcement
  • Con: complex implementation

These are possible technical patterns, not a CNIL endorsement of a particular architecture. Test all relevant access paths, exports, batch jobs and downstream uses. A missing database flag is not itself a legal defect if another effective restriction mechanism is implemented.

4. Notification obligations (Article 19)

The controller must:

  • Communicate the restriction to each recipient to whom the data was disclosed, unless this proves impossible or involves disproportionate effort
  • Inform the data subject about those recipients if requested

This means processors and onward recipients must implement the restriction too. The DPA with each processor should mandate this.

5. Lifting the restriction (Article 18(3))

Before lifting the restriction, the controller must inform the data subject. This gives the data subject the opportunity to challenge or escalate.

6. Article 18 vs other rights

Right What happens to the data
Access (Art. 15) Data stays, copy provided
Rectification (Art. 16) Data corrected
Restriction (Art. 18) Data stays, processing paused
Erasure (Art. 17) Data deleted
Portability (Art. 20) Data exported in machine-readable form
Object (Art. 21) Conditions depend on the ground; direct marketing must stop on objection

7. Common implementation failures

Failure Risk
No effective restriction mechanism Cannot implement the required limitation
Marketing system not linked to flag Restricted user keeps receiving emails
Analytics aggregation includes restricted records Aggregate processing continues unlawfully
Lifting without notice to data subject Article 18(3) violation
No notice to recipients (Article 19) Onward processing continues

8. Sanctions

Assess an Article 18 infringement from the actual request, trigger, permitted processing and implementation. A general retention or transparency decision should not be presented as proof of an Article 18 violation without checking its findings.

Article 83(5)(b) places Article 18 violations at the top tier — up to EUR 20 million or, for an undertaking, 4% of total worldwide annual turnover in the preceding financial year, whichever is higher — because restriction sits within the data-subject-rights chapter that the legislator treated as most serious.

9. Practical workflow

  1. Receive request — log timestamp, classify as Article 18
  2. Verify identity — proportionate
  3. Verify trigger case (a/b/c/d) — document
  4. Apply restriction flag (DB + downstream systems)
  5. Notify recipients (Article 19) — DPA-mandated processors must implement
  6. Respond without undue delay and within one month under Article 12(3); any permitted extension requires notice within the first month, with reasons
  7. Maintain restriction until trigger condition resolves
  8. Before lifting: notify data subject (Article 18(3))
  9. Log all events

10. Tooling

For related deep-dives: right of access GDPR, right to erasure GDPR, right to object GDPR, data portability right.

Conclusion

An effective restriction process links the legal decision to the implemented control and the notices to recipients and the individual. Test the mechanism before relying on it, and keep evidence of the scope, permitted exceptions and lifting decision. The EDPB rights guide explains the response period and relevant conditions.

FAQ

What is the right to restriction of processing under GDPR Article 18?

The right to require the controller to pause processing while keeping the data stored. Unlike erasure, the data is not deleted. Triggered in four cases: accuracy contested, unlawful processing without erasure request, controller no longer needs but data subject does for legal claims, pending objection verification.

How is restriction different from erasure?

Erasure (Article 17) deletes the data. Restriction (Article 18) keeps the data but pauses any processing other than storage. The data subject may want restriction over erasure when they need the data preserved for legal proceedings or evidence.

What can I do with restricted data?

Only store it. Any other processing requires the data subject’s consent or specific exception (legal claims, protection of another person, important public interest).

Do I need to inform sub-processors of a restriction?

Yes. Article 19 requires the controller to communicate restriction (and rectification and erasure) to each recipient to whom the data was disclosed, unless impossible or involving disproportionate effort. The DPA with each processor should mandate this.

Can I lift a restriction without telling the data subject?

No. Article 18(3) requires the controller to inform the data subject before the restriction is lifted. This gives the data subject the opportunity to challenge.

L
Written by
Legiscope
Legiscope

Put this guidance into operation

See how Legiscope connects privacy records, source material and review-controlled work.

Book a tailored demo
Continue reading

Related articles

01Data Privacy

GDPR Article 20 Right to Data Portability: Official Text

In one sentence. GDPR Article 20 gives data subjects the right to receive their personal data in a structured, commonly used and machine-readable format and to transmit it to another controller…

June 3, 2026
02Data Privacy

GDPR Article 20: Data Portability Text, Scope and Export Workflow

Definition. The right to data portability (GDPR Article 20) allows individuals to receive their personal data in a structured, commonly used, and machine-readable format (e.g., JSON, CSV, XML) and to…

October 8, 2024
03Data Privacy

GDPR Article 21: Right to Object to Processing

In one sentence. GDPR Article 21 grants two distinct rights to object: an absolute right to object to direct marketing (Article 21(2)) — controller must stop immediately and unconditionally — and a…

May 10, 2026
04Data Privacy

Australia–EU Data Transfers: Adequacy Status and SCCs

Australia does not hold an EU adequacy decision. Verified against the European Commission's published list of adequacy decisions on 30 July 2026. Australia has never held one, is not the subject of…

July 30, 2026
05Data Privacy

BCR vs SCC vs DPF: Choosing the Right GDPR Transfer Mechanism

International transfers require the appropriate Chapter V route. Adequacy decisions, including the EU–US Data Privacy Framework for covered recipients, fall under Article 45. Standard Contractual…

April 30, 2026
06Data Privacy

Best DPO Software 2026: Internal & Outsourced DPOs

The DPO role is defined by Art. 37-39 GDPR, and the EDPB made it a 2023 coordinated-enforcement priority — a useful reminder to examine whether the organisation supports the DPO’s actual tasks and…

July 7, 2026
07Data Privacy

Best GDPR Compliance Software: 6 Tools Compared + Pricing 2026

Choosing the right GDPR compliance software is no longer optional for small and medium-sized enterprises operating in the EU. Data protection authorities across Europe have shifted enforcement focus…

March 28, 2026
08Data Privacy

Canada-EU Data Transfers: Adequacy Scope and SCCs

Canada is one of the few countries the European Commission has recognised as offering adequate protection, and it is the country where that recognition is most often over-read. The decision is…

July 30, 2026