← Back

2026-08-16

The Pension Ombudsman Data Problem: Why a Participant Complaint Exposes the Forensic Gap in Your Pipeline

A participant calls the call center. They claim they never received the pre-contract disclosure. They claim the fund allocation shown in their mobile app on the day of enrollment was different from what ended up in their contract. They claim the state contribution calculation was wrong for three months in 2022. They file a complaint with the Sigorta Tahkim Komisyonu.

Now you have thirty days to reconstruct reality.

And this is where every pension pipeline I've worked on — and I've owned the EGM submission stack across multiple institutions — reveals the same structural problem: the data exists, but the evidence infrastructure was never built.

The Difference Between Data and Evidence

Your data warehouse can tell you what the fund allocation was on 14 March 2022 at 10:47. That's data. What it cannot tell you, in a way that survives arbitration scrutiny, is:

Most pipelines are built to produce correct current state. Evidence infrastructure is built to produce provably unchanged historical state. These are different engineering problems, and confusing them is why complaint teams end up screenshotting Excel exports and hoping the arbitrator doesn't ask hard questions.

What Actually Fails Under Scrutiny

When the Insurance Arbitration Commission or the Financial Consumer Protection mechanism requests documentation, here is where the typical pension stack breaks:

Silent overwrites. The participant's risk profile field was updated three times. Your table has one row. The change data capture was either not enabled on that column or was purged after the 90-day retention window because storage was expensive.

Reconciliation rewrites. The EGM daily submission failed on 12 March. The retry on 13 March succeeded with a corrected value. The audit log shows the successful submission. It does not show that the value the participant saw on 12 March was different, or that the failure occurred, or who approved the correction.

Disclosure versioning. The KID document is generated from a template. The template was updated in October. The complaint concerns an enrollment in July. Can you produce the exact bytes of the PDF that was served to that specific participant in July, and prove those bytes were served? In most stacks, no — you can regenerate a July-style document, but regeneration is not evidence.

Clock drift and timezone assumptions. The mobile app logs UTC. The core system logs Turkey time. The EGM submission uses date-only. The SMS gateway uses its own timestamp. When the arbitrator asks for a sequenced timeline, you assemble it from four sources that disagree by up to three hours, and you have no signed record of which clock is authoritative.

Missing intent records. The participant clicked "I have read the disclosure." You have a boolean flag set to true. You do not have the session recording, the scroll depth, the timestamp of the click relative to when the document was rendered, or the hash of the document that was in the DOM at the moment of the click.

Why This Keeps Happening

Regulatory reporting stacks in Turkish pension are built for EGM submission first, MASAK reporting second, internal MIS third. Complaint defensibility is treated as a downstream problem for the legal department, who then ask IT to "pull the data," and IT pulls current state because that is what the schema was designed to expose.

Nobody funds forensic infrastructure until the first six-figure arbitration loss. Then everyone funds it, badly, by bolting append-only logs onto systems that were never designed to emit them.

What Evidence Infrastructure Actually Requires

Based on rebuilding this after the fact more times than I'd like:

The Uncomfortable Test

Run this exercise on your own stack. Pick a random participant who enrolled 18 months ago. Without touching production and without regenerating anything, produce:

If you cannot do this in an afternoon, you do not have evidence infrastructure. You have data that happens to be correct today, which is not the same thing, and the difference becomes visible only when a participant, a lawyer, and an arbitrator are waiting for an answer you cannot produce.

The pipeline was never the problem. The pipeline works. The problem is that nobody built the thing next to the pipeline that makes the pipeline's outputs legally defensible — and that thing costs ten times more to build after the first complaint than before it.