What Sensitive Data Definitions (SDDs) Catch High-risk PHI?
Here are the most effective Sensitive Data Definitions (SDDs) patterns for high-risk PHI:
1. The "Clinical Link" SDD (Highest Signal)
This is the gold standard for high-risk PHI. It requires a direct identifier to be physically near a medical diagnosis or treatment term.
- Logic:
[AnyFind: Social Security Number] NEAR WITH DISTANCE (100) [Custom Dictionary: Clinical_Keywords] - Clinical Keywords: Include terms like Diagnosis, Prognosis, Treatment, Patient, ICD-10, Clinic, Physician.
- Why it works: It ensures the SSN is actually part of a medical record rather than a payroll or HR file.
2. The "Medical Record Number (MRN)" SDD
MRNs are high-risk because they are the primary key to a patient's history. Since MRN formats vary by hospital, use a custom regex combined with a name.
- Logic:
[Custom Regex: MRN_Pattern] NEAR WITH DISTANCE (50) [AnyFind: Name] - Why it works: An MRN pattern alone might be a part number. When found near a Name, the probability of it being a patient record is extremely high.
3. The "Diagnosis Code" SDD
ICD-10 codes are unambiguous clinical indicators. Combining them with a person's identity creates a high-risk finding.
- Logic:
[Custom Regex: ICD-10_Pattern] NEAR WITH DISTANCE (100) ([AnyFind: Name] OR [AnyFind: Date of Birth]) - Why it works: This identifies files where a specific medical condition is linked to a specific individual, which is a core HIPAA violation if exposed.
4. The "Bulk PHI" SDD
High-risk often correlates with volume. Use this SDD to identify databases or spreadsheets containing many patient records.
- Logic:
[AnyFind: Health Information] GREATER THAN (10) - Why it works: A single mention of a medical term might be an email. Ten or more mentions in one file usually indicates a patient list or medical report, which is a much higher risk profile.
5. The "Insurance & Identity" SDD
Health Insurance Claim Numbers (HICN) or Member IDs are high-risk for billing fraud.
- Logic:
[Custom Regex: Insurance_ID] NEAR WITH DISTANCE (50) [AnyFind: Social Security Number] - Why it works: This catches the "Identity Theft" scenario where both a person's government ID and their medical insurance ID are exposed together.
Recommended Playbook Actions for High-Risk SDDs
SDD Trigger | Recommended Action | Classification Label |
|---|---|---|
Clinical Link (SSN + Context) | Quarantine & Notify Privacy Team |
|
MRN + Name | Encrypt & Classify |
|
Bulk PHI (>10 records) | Move to Secure Share |
|
ICD-10 + Identity | Redact (if possible) or Quarantine |
|
Operational Tip: In v13.6, use these SDDs to drive your Dashboard views. By filtering for these specific high-risk SDDs, you can provide leadership with a "True Risk" view that is separate from the "noise" of general PII discovery.