MojarAI commited on
Commit
f85eb47
·
verified ·
1 Parent(s): 8be56c1

docs: rewrite dataset card to describe Mojar AI HIPAA Compliance Assistant

Browse files
Files changed (1) hide show
  1. README.md +108 -37
README.md CHANGED
@@ -9,59 +9,130 @@ tags:
9
  - legal
10
  - rag
11
  - regulations
12
- pretty_name: HIPAA Knowledge Base
 
13
  size_categories:
14
  - n<1K
15
  ---
16
 
17
- # HIPAA Knowledge Base
18
 
19
- A curated knowledge base of HIPAA (Health Insurance Portability and Accountability Act) regulations, guidance, and real-world Q&A, intended for building HIPAA-aware AI agents and RAG systems.
20
 
21
- Maintained by [Mojar AI](https://mojar.ai).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
  ## Contents
24
 
25
- ### `datasets/` — Reference & regulatory material
26
- Long-form markdown documents covering the HIPAA regulatory landscape:
27
-
28
- - Privacy, Security, and Breach Notification Rules
29
- - PHI definitions, identifiers, and de-identification
30
- - Business associates, covered entities, minimum necessary standard
31
- - Patient rights, consent vs. authorization
32
- - Technical safeguards (engineering perspective)
33
- - Cloud computing, digital marketing/tracking risks
34
- - HITECH Act, enforcement & penalties
35
- - Verbatim 45 CFR Parts 160, 162, 164
36
- - HHS official guidance and FAQ pages (verbatim)
37
- - OCR resolution agreements index
38
- - Real-world compliance pitfalls
39
- - RAG system architecture notes
40
- - Q&A compilation
41
-
42
- ### `datasets-real-life/` Role-based Q&A
43
- Practitioner-oriented HIPAA Q&A grouped by role:
44
-
45
- - Doctors
46
- - Nurses
47
- - Admin / front-desk
48
- - Billing & insurance
49
- - Compliance / privacy officers
50
-
51
- Plus a 200-question role-based summary and authoring guide.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
  ### `tmp/`
54
- Raw source material (e.g. CFR Title 45 XML) used to build the curated documents.
 
55
 
56
  ### `Building a HIPAA AI Agent.md`
57
- Design notes on assembling a HIPAA-aware AI agent on top of this corpus.
 
58
 
59
  ## Format
60
 
61
- All documents are plain Markdown (`.md`), suitable for direct ingestion into RAG pipelines. The verbatim CFR / HHS files preserve original wording for citation fidelity; curated explainers are written in plain English.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
 
63
- ## License & disclaimer
64
 
65
- Released under the MIT license. U.S. federal regulations and HHS guidance are public-domain works of the U.S. Government; the curated commentary and Q&A are licensed under MIT.
66
 
67
- This dataset is provided **for informational and research purposes only** and does **not** constitute legal advice. Consult qualified counsel and your organization's privacy/security officer for compliance decisions.
 
 
9
  - legal
10
  - rag
11
  - regulations
12
+ - mojar-ai
13
+ pretty_name: HIPAA Knowledge Base (Mojar AI)
14
  size_categories:
15
  - n<1K
16
  ---
17
 
18
+ # HIPAA Knowledge Base — Mojar AI
19
 
20
+ The curated knowledge corpus that powers the **[Mojar AI HIPAA Compliance Assistant](https://www.mojar.ai/free-tools/hipaa-compliance-assistant)** a free, public AI agent built by [Mojar AI](https://mojar.ai) to help healthcare teams, compliance officers, and engineers get accurate, grounded answers to HIPAA questions.
21
 
22
+ This dataset is the *source of truth* the assistant retrieves from. Every answer the agent gives is grounded in one of the documents below, with citations back to the underlying CFR section, HHS guidance page, or curated explainer.
23
+
24
+ ## Why this exists
25
+
26
+ HIPAA is large, fragmented, and scattered across:
27
+
28
+ - 45 CFR Parts 160, 162, 164 (the regulations themselves)
29
+ - HHS Office for Civil Rights (OCR) guidance pages and FAQs
30
+ - OCR resolution agreements and enforcement actions
31
+ - HITECH Act amendments
32
+ - Real-world operational practice that *isn't* written down anywhere official
33
+
34
+ A general-purpose LLM hallucinates citations, mixes up the Privacy Rule with the Security Rule, and gives advice that *sounds* right but cites sections that don't exist. The Mojar AI HIPAA agent solves that by retrieving from this curated, version-controlled corpus and answering only from what it finds.
35
+
36
+ We're publishing the corpus openly so:
37
+
38
+ 1. The HIPAA agent's answers are **auditable** — anyone can inspect the exact source material.
39
+ 2. Other teams can build their own HIPAA-aware tools on the same foundation.
40
+ 3. Researchers studying healthcare compliance, RAG grounding, or regulatory NLP have a clean, citation-faithful starting point.
41
+
42
+ ## Try the assistant
43
+
44
+ → **[mojar.ai/free-tools/hipaa-compliance-assistant](https://www.mojar.ai/free-tools/hipaa-compliance-assistant)**
45
+
46
+ Ask it questions like:
47
+
48
+ - "Can a covered entity use a free tier of a cloud provider for PHI?"
49
+ - "What's the difference between consent and authorization under HIPAA?"
50
+ - "When does the Breach Notification Rule require notifying the media?"
51
+ - "What technical safeguards does §164.312 require for access control?"
52
+
53
+ The agent retrieves from this dataset, cites the source, and refuses to answer when the corpus doesn't cover it.
54
 
55
  ## Contents
56
 
57
+ ### `datasets/` — Regulatory & reference material
58
+
59
+ Long-form Markdown documents covering the HIPAA landscape:
60
+
61
+ | File | Topic |
62
+ |---|---|
63
+ | `01-hipaa-privacy-rule.md` | Privacy Rule (45 CFR 164 Subpart E) |
64
+ | `02-hipaa-security-rule.md` | Security Rule (45 CFR 164 Subpart C) |
65
+ | `03-breach-notification-rule.md` | Breach Notification Rule (45 CFR 164 Subpart D) |
66
+ | `04-phi-de-identification.md` | Safe Harbor & Expert Determination methods |
67
+ | `05-business-associates.md` | BAAs, subcontractors, liability |
68
+ | `06-phi-definitions-identifiers.md` | What counts as PHI; the 18 identifiers |
69
+ | `07-patient-rights.md` | Access, amendment, accounting of disclosures |
70
+ | `08-technical-safeguards-engineering.md` | §164.312 from an engineering POV |
71
+ | `09-real-world-compliance-pitfalls.md` | Common mistakes in practice |
72
+ | `10-cloud-computing-hipaa.md` | OCR cloud guidance, BAA gotchas |
73
+ | `11-consent-vs-authorization.md` | When each is required |
74
+ | `12-digital-marketing-tracking-risks.md` | Pixels, analytics, OCR tracking bulletins |
75
+ | `13-hitech-act.md` | HITECH amendments, breach floor |
76
+ | `14-enforcement-penalties.md` | CMP tiers, willful neglect |
77
+ | `15-hhs-faq-categories.md` | Index of HHS FAQs by topic |
78
+ | `16-rag-system-architecture.md` | Notes on building HIPAA-aware RAG |
79
+ | `17-covered-entities.md` | Who's regulated and who isn't |
80
+ | `18-minimum-necessary-standard.md` | §164.502(b) in practice |
81
+ | `19-45-cfr-part-160-verbatim.md` | Verbatim regulatory text |
82
+ | `20-45-cfr-part-162-verbatim.md` | Verbatim regulatory text |
83
+ | `21-45-cfr-part-164-verbatim.md` | Verbatim regulatory text |
84
+ | `22-hhs-official-guidance-pages-verbatim.md` | Verbatim HHS/OCR guidance |
85
+ | `23-hhs-faq-page-verbatim.md` | Verbatim HHS FAQ content |
86
+ | `24-ocr-resolution-agreements-index-verbatim.md` | Index of OCR enforcement actions |
87
+ | `24-q-and-a.md` | Compiled Q&A reference |
88
+
89
+ ### `datasets-real-life/` — Role-based practitioner Q&A
90
+
91
+ Practical HIPAA Q&A grouped by who's asking:
92
+
93
+ - `01-doctors-qa.md` — clinicians at the point of care
94
+ - `02-nurses-qa.md` — bedside / floor staff
95
+ - `03-admin-frontdesk-qa.md` — reception, scheduling, intake
96
+ - `04-billing-insurance-qa.md` — RCM, payers, claims
97
+ - `05-compliance-privacy-qa.md` — privacy officers, security officers
98
+ - `200-role-based-hipaa-qa-summary.md` — consolidated 200-question reference
99
+ - `HIPAA_200_QA_Guide.md` — companion authoring guide
100
+ - `Building HIPAA Question Datasets.md` — methodology notes
101
 
102
  ### `tmp/`
103
+
104
+ Raw source material (e.g. `title-45-2026-04-24.xml` — the U.S. Code of Federal Regulations Title 45 export) used to build the curated documents above. Kept in the repo for reproducibility.
105
 
106
  ### `Building a HIPAA AI Agent.md`
107
+
108
+ Design notes describing how Mojar AI assembled the HIPAA agent on top of this corpus — chunking strategy, retrieval setup, citation enforcement, refusal behavior, and evaluation.
109
 
110
  ## Format
111
 
112
+ All documents are plain Markdown (`.md`), suitable for direct ingestion into RAG pipelines.
113
+
114
+ - **Verbatim files** (CFR, HHS guidance, FAQs, OCR resolution agreements) preserve original wording for citation fidelity. Do not paraphrase these into your index.
115
+ - **Curated explainers** are written in plain English for retrieval-friendly grounding. Each one cites the underlying CFR/HHS source at the top.
116
+ - **Role-based Q&A** files use a consistent `Q:` / `A:` format suitable for fine-tuning, evaluation sets, or example-based retrieval.
117
+
118
+ ## Updates
119
+
120
+ The corpus is updated as HHS/OCR publishes new guidance and as we add operational Q&A from real customer usage of the assistant. Material changes are committed with a descriptive message; see the commit history.
121
+
122
+ ## License
123
+
124
+ Released under the **MIT License**.
125
+
126
+ - U.S. federal regulations (45 CFR) and HHS/OCR guidance are public-domain works of the U.S. Government.
127
+ - Curated commentary, explainers, role-based Q&A, and architectural notes are © Mojar AI, licensed MIT.
128
+
129
+ ## Disclaimer
130
+
131
+ This dataset and the [Mojar AI HIPAA Compliance Assistant](https://www.mojar.ai/free-tools/hipaa-compliance-assistant) are provided **for informational and educational purposes only**. They do **not** constitute legal advice, do not create an attorney–client relationship, and are not a substitute for guidance from qualified counsel or your organization's designated Privacy Officer / Security Officer. HIPAA compliance decisions should be made in consultation with appropriate professionals who can evaluate your specific facts and circumstances.
132
 
133
+ ## About Mojar AI
134
 
135
+ [Mojar AI](https://mojar.ai) builds enterprise RAG and AI agents grounded in your organization's own documents the same architecture that powers this public HIPAA assistant, applied to legal contracts, RFPs, internal policies, clinical guidelines, and any other domain where citation accuracy matters more than fluency.
136
 
137
+ - Website: [mojar.ai](https://mojar.ai)
138
+ - HIPAA assistant: [mojar.ai/free-tools/hipaa-compliance-assistant](https://www.mojar.ai/free-tools/hipaa-compliance-assistant)