MODULE 6 · LESSON 1

Free — no login required

Sign in to track progress, save quiz attempts and enrol in the full course.

Sign in to track progress / enrol

Where Data May Live and Move

Three terms that are not the same

Used interchangeably in sales conversations and meaning different things:

Data residency — where data is physically stored. A commitment that records sit in a particular country.

Data sovereignty — which country's law governs the data, and which government can compel access to it. Data stored in Frankfurt but controlled by a company subject to another country's disclosure laws is resident in Germany and arguably sovereign elsewhere. This is the distinction customers increasingly probe, and answering the residency question when you were asked the sovereignty one damages credibility.

Data localisation — a legal requirement that certain data must remain within a country's borders. Some sectors and jurisdictions impose it outright.

Every model request is a data transfer

The point product teams most often miss.

When your product sends a customer's document to a model API, you have transferred that customer's data to wherever that endpoint runs, and to whoever operates it. It does not feel like a transfer — it feels like calling a function. Legally it is the same event as uploading the document to a third party in that country.

This has three consequences:

Your provider is a sub-processor, and typically must be disclosed to customers, listed in agreements, and covered by whatever transfer mechanism applies.

The region matters, and defaults are often not your region. Many APIs default to processing wherever capacity exists unless you explicitly select otherwise.

Retention is a separate question from processing. Whether the provider stores the request, for how long, and whether it may be used for training are distinct questions with distinct answers, and all three appear in enterprise reviews.

A decade of instability, briefly

Transfers of personal data from the EU to the United States have relied on successive legal frameworks, and the pattern is instructive for anyone architecting a product.

Two earlier frameworks were invalidated by the EU's highest court following challenges brought by the privacy campaigner Max Schrems. The current arrangement, the EU–US Data Privacy Framework, rests on a European Commission adequacy decision adopted in 2023.

Its recent history:

📅 Timeline
September 2025The EU General Court dismissed a challenge brought by Philippe Latombe, leaving the framework standing.
October 2025That decision was appealed to the Court of Justice of the European Union, where it remains pending.
2026Following a US Supreme Court ruling concerning the independence of the Federal Trade Commission, the privacy organisation noyb argued to the European Commission that a supervisory element the framework depends on had been undermined, and called for the adequacy decision to be revoked.
ExpectedCommentators anticipate a CJEU opinion in the period around late 2026 to early 2027.

As of writing, the framework remains in force. But the architectural lesson does not depend on how the current case resolves: the legal basis for this particular data flow has been struck down twice and is under active challenge a third time. A product architecture that assumes it will hold indefinitely is making a bet on litigation.

That is the transferable point. Not "the framework is invalid" — it is not — but "design so that a change in this framework is a configuration change rather than a rebuild." Module 6.3 is about exactly that.

Which of your flows carry exposure

Work through your product and mark each flow:

🔗 Match the Pairs
Customer documents sent to a model API in another countryDrop here
Embeddings of customer content stored in a vector databaseDrop here
Prompts containing customer names, addresses or case detailsDrop here
Aggregate usage telemetry with no personal dataDrop here
Your own product documentation used for retrievalDrop here

The third row is where products most often have an unexamined problem. Teams carefully consider where documents are stored and then send the customer's name, the matter reference and three paragraphs of their situation in a prompt to an endpoint nobody assessed.

The moment a product's residency position becomes real is the first enterprise or public-sector deal. The questionnaire is long and largely predictable, and being able to answer it is a commercial capability rather than a compliance chore.

The questions that decide the deal:

"Where is our data processed, and by whom?" Every sub-processor, including the model provider and any retrieval or storage service, by name and by country. If you cannot produce this list quickly, that itself signals immaturity.

"Can you guarantee our data stays in [region]?" Requires that you selected a regional endpoint, that your retrieval and storage are also regional, and that your logging and monitoring do not quietly ship content elsewhere. Logging is the leak most often missed — an error tracker capturing a full request payload, sent to a service in another country, defeats an otherwise careful design.

"Is our data used to train models?" Needs a definite answer covering both you and your provider, and the answer customers expect is no, with a contractual basis.

"How long is our data retained by your sub-processors?" Distinct from your own retention.

"Can you delete our data on request, everywhere?" Including from vector indexes, caches and any fine-tuning dataset. Deletion from a vector index is genuinely harder than from a database and is worth confirming before you promise it.

"What happens if your provider changes model or region?" Module 3's versioning question arriving as a commercial one.

Two pieces of practical advice. Build the sub-processor list before you need it, and keep it current — it takes an hour and it appears in every review thereafter. And do not answer the sovereignty question with a residency answer; if a customer asks whose law governs access and you reply that data is stored in Frankfurt, an informed buyer will notice, and you will have taught them to check everything else you say.

Knowledge Check

Why does the history of the EU–US transfer frameworks matter architecturally, even though the current framework remains in force?

📚 Flashcards1 / 6
Term

Residency, sovereignty, localisation

Click to flip
Definition

Residency is where data is physically stored; sovereignty is whose law governs it and who can compel access; localisation is a legal requirement to keep data inside a border. Customers increasingly ask about sovereignty.

Click to flip back
💡Key Takeaway

Residency, sovereignty and localisation are different questions, and answering the wrong one in an enterprise review costs credibility. Every model API call is a cross-border transfer to a sub-processor, and prompts carry personal data even though they do not feel like records. The EU–US transfer basis has been struck down twice and is under challenge again — so rather than betting on the outcome, design so that changing processing region is configuration rather than reconstruction. And check your logging, which is where careful designs usually leak.