# Running a privacy and governance audit before regulatory inspection
An FDA inspector arrives at a continuous glucose monitor (CGM) manufacturer. Within two hours they ask for the audit trail showing who accessed patient blood-sugar readings last March. The company pulls the log. It is empty. Nobody enabled logging on the analytics database. That single gap can trigger a Form 483 (the FDA's official list of inspection observations) and, if unresolved, a Warning Letter that halts shipments.
The fix is not luck on inspection day. It is a mock audit you run yourself, months earlier, against a concrete checklist. This lesson gives you that checklist.
A modern medtech pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.View full definition → moves data through many hands: sensor on the patient, mobile app, cloud ingestion, analytics warehouse, and sometimes a machine-learning model that flags anomalies. Each hop is a point where consent can be missing, access can be over-granted, or a breach can go unreported.
Two very different regulators care, and they ask different questions.
The trap: teams prepare for one and forget the other. Health data that is fine for the FDA on integrity grounds can still be a GDPR consent disaster.
Think of your audit in two columns.
Data integrity (FDA lens). The industry shorthand is ALCOA+: data must be Attributable, Legible, Contemporaneous, Original, Accurate, plus Complete, Consistent, Enduring, and Available. If your CGM readings cannot be traced to a specific user and timestamp, they fail "Attributable."
Data rights (DPA lens). Did the patient consent to this specific use? Can they get their data deleted? Was a breach reported in time?
A good mock audit walks the pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.View full definition → once and scores every stage against both columns.
Run this as a tabletop exercise with your data, legal, and quality teams in the room. Follow one real record end to end (pick a single patient's data and trace it).
A solid free reference for the integrity side is the MHRA "GXP Data Integrity Guidance and Definitions", widely used across regulated life sciences even outside the UK.
Suppose your mock breach involves EU patients. Timeline of a realistic test:
If your team took 40 hours just to identify which patients were affected because there was no clean data inventory, you have 18 hours left to assess and file. That is the gap the mock audit exposes. The number to track and improve is time-to-identify-affected-records. Drive it down and the 72-hour clock stops being terrifying.
Auditors love asking "prove least privilege." A simple query against your access-management data surfaces over-privileged accounts before they do:
-- Find accounts with read access to raw patient data
-- who have NOT accessed it in 90+ days (candidates to revoke)
SELECT u.user_id, u.role, MAX(a.access_ts) AS last_access
FROM user_grants u
LEFT JOIN access_log a
ON u.user_id = a.user_id
AND a.resource = 'patient_raw'
WHERE u.resource = 'patient_raw'
GROUP BY u.user_id, u.role
HAVING MAX(a.access_ts) < NOW() - INTERVAL '90 days'
OR MAX(a.access_ts) IS NULL;Rows returned are your cleanup list. NULL last-access rows are especially damning: access granted, never used, pure risk.
🎬 [VIDEO: "GDPR Explained in 5 Minutes" - youtube.com - a concise plain-language walkthrough of GDPR core principles for non-lawyers]
Knowledge check
1. The lesson opens with an FDA inspector requesting an access audit trail that turns out to be empty because logging was never enabled. What core principle does this scenario illustrate?
2. Why does the lesson describe medtech device data pipelines as a 'governance minefield'?
3. The lesson warns that health data 'fine for the FDA on integrity grounds can still be a GDPR consent disaster.' What conceptual distinction underlies this warning?
4. Select ALL correct answers about the regulatory frameworks and their focus as described in the lesson.
Select all the correct answers.
5. Select ALL correct answers about why running a mock audit before a regulatory inspection is valuable.
Select all the correct answers.
A mock audit that produces a scary list and no plan is theater. Convert every finding into a tracked action.
For each gap, record four things:
1. Finding: "Analytics DB has no read logging."
2. Risk rating: high, medium, low (a logging gap on identifiable health data is high).
3. Owner and deadline: named person, real date.
4. Evidence of closure: a screenshot of the enabled log config, a revoked-access ticket, an updated consent form version.
This mirrors how the FDA expects you to respond to a real Form 483: not just "we fixed it," but with objective evidence and a root-cause analysis so the gap does not recur. The same discipline satisfies a DPA reviewing your accountability obligations under GDPR Article 5, which requires you to *demonstrate* compliance, not merely claim it.
Fixing these once pays off twice.
This lesson is educational and not legal or regulatory advice. Confirm current requirements with qualified counsel and the relevant authority before an inspection.