By · Last updated 2026-04-30

חזרה לבלוגבריאות

זיהוי MRN מותאם ללא קוד עבור HIPAA

מספרי רשומות רפואיות ייחודיים לכל בית חולים — כל מערכת בריאות משתמשת בפורמט שונה. HIPAA Safe Harbor מחייב הסרתם.

April 30, 20268 דקות קריאה
custom MRN detectionHIPAA pipeline configurationno-code regexAI pattern helperhospital identifier de-identification

בעיית פורמט MRN

בארה"ב פועלים כ-6,100 בתי חולים. כל אחד מפעיל מערכת EHR משלו. כל אחד משתמש בפורמט מספר רשומה רפואית (MRN) משלו. לא קיים תקן לאומי. The Joint Commission מחייב שבתי חולים יוכלו לזהות מטופלים — אבל לא קובע כללי פורמט.

הפורמטים משתנים מאד. חלקם הם מספרים שלמים בני 7 ספרות. אחרים בני 8 ספרות. יש שמשתמשים בקידומות כמו HOSP-, MRN-, או PT-. אחרים מוסיפים קודי מוסד כמו SVHS- או CHOP-. יש שמטמיעים בתוך המספר את שנת ההרשמה.

HIPAA Safe Harbor מגדיר מספרי רשומות מטופל כסוג מזהה 8 מתוך 18 (45 CFR §164.514(b)(2)). כל 18 המזהים חייבים להיות מוסרים. הכלל אינו מוגבל לפורמט אחד. אם בית החולים שלכם משתמש בפורמט מותאם, עליכם לזהות אותו. כלי שמחמיץ אותו לא עומד בדרישות Safe Harbor — גם אם הוא מסיר את כל 17 הסוגים האחרים.

מדוע גישת הקוד נכשלת

הדרך הסטנדרטית להוסיף פורמט מספר רשומה מותאם לצינור de-identification היא להרחיב את Microsoft Presidio — כלומר לכתוב Python.

מפתח יוצר מחלקה שמרחיבה את EntityRecognizer, כותב ביטוי רגולרי, מחבר אותו לרישום של Presidio, בודק ומתחזק. עבור צוותי ציות — שלרוב אינם מתכנתים — זהו חסם אמיתי. כל שינוי בפורמט דורש מהנדס.

מהנדסי בריאות עסוקים. הם מתמקדים באינטגרציה עם EHR ומערכות קליניות. כלי ציות אינם בראש סדר עדיפויותיהם.

תהליך העבודה עם תבנית ללא קוד

גישת התבנית המודרכת מבטלת את שלב הקידוד.

קצין ציות פותח את בונה הישויות המותאמות ביישום הרשת. הוא מדביק חמישה מספרי דוגמה מהמערכת שלו — לדוגמה:

SVHS-0012345
SVHS-0987654
SVHS-1122334
SVHS-4455667
SVHS-8899001

הוא לוחץ על יצירת תבנית. ה-AI קורא את המבנה ומחזיר:

  • תבנית: SVHS-\d{7}
  • רמת ביטחון: גבוהה
  • שם מוצע: HOSPITAL-MRN
  • החלפה מוצעת: [MRN]

הקצין מדביק עוד חמישה מספרי דוגמה. התבנית עוברת. הוא שומר אותה ב-preset של HIPAA.

מאותה נקודה, כל סשן — יישום רשת, Office Add-in, Desktop App וה-API — מזהה פורמט זה בסריקת PHI הסטנדרטית. ללא קוד.

הערה בנושא GDPR ומחקר

סעיף 89 ל-GDPR מחייב pseudonymization עבור מערכי נתוני מחקר. ישויות מותאמות מכניסות מזהים ייחודיים למוסד לתחולה — וסוגרות את הפער שכלים גנריים משאירים פתוח.

מה מקבלים

תהליך עבודה זה לוקח אחר צהריים אחד. קוד מותאם לוקח שבועות.

קצין הציות מגדיר את התבנית, בודק ופורס. ללא כרטיס. ללא המתנה. ה-preset מחזיק את הישות המותאמת לצד 17 מזהי Safe Harbor הסטנדרטיים.

כשהמנה הבאה של תיעוד קליני עוברת עיבוד, כל 18 סוגי המזהים מכוסים. Safe Harbor שלם.

ראו de-identification לפי HIPAA Safe Harbor למחקר בריאותי לגבי אופן פעולת Safe Harbor בפועל. לתבניות זיהוי ייחודיות לבית חולים, ראו זיהוי פורמטי MRN ייחודיים לבית חולים ללא הנדסה.

מקורות

מוכן להגן על הנתונים שלך?

התחל לאנונימיזציה של PII עם 285+ סוגי ישויות ב-48 שפות.

About this page

We update this page when our platform or the law changes.

Read our founder note for how we work.

Each change shows up in the timestamp at the top.

Related reading

We follow these rules

  • GDPR (EU 2016/679).
  • ISO/IEC 27001:2022.
  • NIS2 (EU 2022/2555).
  • HIPAA safe harbor under 45 CFR § 164.514(b)(2).

Our promise

We do not sell your data.

We do not train models on your text.

We store your files in Germany.

You can delete your account at any time.

You own your work.

Where we run

Our servers live in Falkenstein, Germany.

We use Hetzner. They hold ISO 27001 certification.

All data stays in the EU.

Backups run every day.

Need help?

Email support@anonym.legal.

We reply within one business day.

How we test

We run a full check suite on every release.

Each surface gets its own sweep script and report.

Human reviewers spot-check the output each week.

We track recall and precision on a labelled set.

Bad runs block the deploy.

What we never do

  • We never sell your information to third parties.
  • We never train models on what you upload.
  • We never keep your work after you delete it.
  • We never share keys with any outside firm.
  • We never run ads inside the product.

Plans in plain words

We sell credits, not seats.

One credit covers one short job.

Long jobs use a few credits each.

You can top up at any time.

Unused credits roll over each month.

Read the plans page for current rates.

Who built this

A small team of engineers and lawyers built this.

We ship from Europe and work in the open.

Our founder note spells out why we started.

Where to start

How the parts fit

A browser add-on cleans text inside Chrome.

A Word plug-in handles drafts in Office.

A small desktop tool works on whole folders.

An agent protocol link feeds large models safely.

All four share one core engine and one rule set.

Words from our team

We started this work after a lunch about cookies.

One friend kept getting odd ads on her phone.

We asked why a court file leaked through a draft.

We sketched the first build on a napkin that week.

By month three we had a tiny demo for a friend.

She used it on her first case the next day.

Common questions we hear

Can the tool read scanned PDFs? Yes, with OCR.

Does it work on long files? Yes, in small chunks.

Can I roll my own rule set? Yes, save it as a preset.

Does it run offline? The desktop build runs offline.

Do you keep my files? No, the cloud build wipes after each run.

Will it learn from my work? No, we never train on inputs.

A short tour of the workflow

Upload a file or paste a snippet of prose.

Pick the entities you want gone from the draft.

Choose a method: replace, mask, hash, encrypt, or redact.

Press run and watch the side panel show each hit.

Skim the result and tweak any rule that misfired.

Save the cleaned file or send it to a teammate.