Documentation
hipaa

HIPAA

Health Insurance Portability and Accountability Act (1996)

United States | Amended by HITECH Act

HIPAA governs how covered entities (healthcare providers, health plans, clearinghouses) and their business associates protect Protected Health Information (PHI) — both physical and electronic (ePHI). RAIL Score checks content against 10 HIPAA requirements spanning the Privacy Rule, Security Rule, Breach Notification Rule, and Business Associate obligations.

Official Resources

Penalty Tiers

2026 rates reflecting 2025 inflation multiplier (1.02598)

TierViolation TypePer ViolationAnnual Cap
1Did not know$100 – $50,000$25,000
2Reasonable cause$1,000 – $50,000$100,000
3Willful neglect (corrected)$10,000 – $50,000$250,000
4Willful neglect (not corrected)$50,000+$2,190,294

Criminal penalties (DOJ): knowingly obtaining/disclosing PHI — up to $50K + 1 year. With false pretenses — $100K + 5 years. Intent to sell/harm — $250K + 10 years.

Requirements Checked by RAIL Score

IDRuleRequirement
HIPAA-001Privacy RuleMinimum necessary standard
HIPAA-002Privacy RulePatient access rights
HIPAA-003Privacy RuleAuthorized disclosures only
HIPAA-004Security RuleSecurity Risk Assessment
HIPAA-005Security RuleRisk management
HIPAA-006Security RuleAccess controls
HIPAA-007Security RuleAudit controls
HIPAA-008Security RuleEncryption and integrity
HIPAA-009Breach NotificationBreach notification process
HIPAA-010Business AssociateBAA requirements

2025–2026 Enforcement Snapshot

OCR closed 21 enforcement actions in 2025 — the second highest annual total ever. As of January 2026, OCR has settled or imposed civil monetary penalties in more than 50 HIPAA cases under its Right of Access and Risk Analysis enforcement initiatives combined.

Recent Settlements with Disclosed Amounts

DateEntitySettlement
Dec 2024Children's Hospital Colorado$548,265
Dec 2024Gulf Coast Pain Consultants$1,190,000
Nov 2024Mental Health Center$100,000

Multiple additional 2025 enforcement actions (ransomware, cybersecurity, data breach) settled with undisclosed amounts. Full list at hhs.gov.

2026 OCR Enforcement Priorities

  • Risk Analysis + Risk Management — OCR now requires proof that identified risks were actively reduced (documented remediation, not just identification)
  • HIPAA Right of Access — patients must receive timely access to their records (60-day deadline); more than 50 penalties issued to date
  • Part 2 regulations — OCR has new authority to enforce substance use disorder record confidentiality
  • Ransomware as Security Rule violations — the majority of 2025 OCR actions involved ransomware traced to inadequate risk management

Key Lessons for AI in Healthcare

  • Risk analysis is table stakes, not a checkbox — OCR investigates whether vulnerabilities were identified and acted upon
  • BAAs are mandatory for any third-party AI vendor processing PHI on behalf of a covered entity
  • Audit trails matter — OCR specifically calls out unpatched software and device firmware gaps
  • Small practices are not exempt — fines from $100K to $548K have been levied against small clinics and mental health providers

RAIL Dimension Mapping

RAIL DimensionHIPAA RuleFocus
PrivacyPrivacy RuleMinimum necessary, authorized disclosures, patient rights
SafetySecurity RuleTechnical, physical, and administrative safeguards
AccountabilitySecurity + Breach RuleRisk analysis, audit controls, breach response
TransparencyPrivacy RuleNotice of Privacy Practices, access obligations
ReliabilitySecurity RuleAvailability, backup, disaster recovery

API Example

See the Compliance API reference for full endpoint documentation, parameters, and response schema.

Python — HIPAA compliance check
from rail_score_sdk import RailScoreClient

client = RailScoreClient(api_key="YOUR_RAIL_API_KEY")

result = client.compliance_check(
    content="""
    Our AI diagnostic assistant analyzes patient medical records, lab results,
    and treatment history to recommend care pathways. Data is stored on
    cloud infrastructure with encryption at rest.
    """,
    framework="hipaa",
    context={
        "domain": "healthcare",
        "system_type": "diagnostic_ai",
        "processes_personal_data": True,
        "high_risk_indicators": ["health_data", "automated_decisions"]
    },
    strict_mode=True,
    include_explanations=True
)

print(f"HIPAA Score: {result.compliance_score.score}/10 ({result.compliance_score.label})")
print(f"Requirements: {result.requirements_passed} passed / {result.requirements_failed} failed")

for issue in result.issues:
    print(f"[{issue.severity.upper()}] {issue.description}")
    print(f"  Requirement: {issue.requirement}")
    print(f"  Remediation effort: {issue.remediation_effort}")