The Article 22 distinction
GDPR Article 22(1): a data subject has the right not to be subject to a decision based "solely" on automated processing. Article 22(2)(a) exempts decisions necessary for performing a contract, where suitable measures (including human oversight) safeguard the data subject. The dispositive question: was a human meaningfully involved? If yes, you're fine; if no, you're in 22(1) territory and need an explicit legal basis.
The evidence the DPA wants
When the data protection authority audits your AI use, they'll ask: "for AI-mediated decisions affecting individuals, where's the human review?". The compliant answer: receipts showing the human_id of the reviewer + the timestamp of review + the supervisor's explicit accept/reject decision. GenZAgents captures all of these natively; the audit log is the GDPR Article 22(2)(a) evidence layer.
How to operationalise this
For decisions affecting individuals: require receipts to include a reviewer_human_id field; tag the project with gdpr_in_scope=true; configure the anomaly detector to flag any in-scope receipt without a reviewer field. Engineers reviewing AI output get a one-click "I reviewed this" button that adds the reviewer_human_id signed by their own keypair. The audit trail is end-to-end.
Cross-border data transfer considerations
If the AI provider is in a third country (most are — Anthropic / OpenAI / Google are US-based), Article 44 transfer rules apply. The receipt doesn't change the transfer story (the LLM API call happened the same way) but it does provide audit trail: which receipts touched which data, where the LLM provider was based, what safeguards (DPF / SCCs) were in place. Useful for Schrems II / Schrems III-style challenges.
Subject access requests
A data subject asks "what did your AI decide about me?". Without GenZAgents: vague answer. With: the receipt feed query "show me receipts that involved processing of data subject X" — assuming you tagged appropriately — returns the AI activity. The DPO can respond with a detailed and accurate answer. Per-subject tagging is a project setup question worth doing for any consumer-facing org.
Compliance with the AI Act on top of GDPR
The EU AI Act and GDPR overlap. AI Act §10 (data governance) and §13 (transparency) extend GDPR's requirements. The same receipts that evidence GDPR Article 22 compliance also evidence AI Act §10 data-governance. One audit trail, multiple frameworks — see /use-cases/compliance-eu-ai-act for the AI-Act-specific framing.