Introduction
This module provides comprehensive checklists and frameworks to validate your organization’s compliance readiness. Use these as both a planning tool and an ongoing compliance verification resource.HIPAA Compliance Readiness Checklist
Business Associate Agreements (BAA)
Understanding BAAs
A Business Associate Agreement is a legally binding contract that ensures all parties handling PHI maintain appropriate safeguards.When You Need a BAA
Common Vendors Requiring BAAs
BAA Essential Clauses Checklist
Required Safeguards Clause
Required Safeguards Clause
Breach Notification Clause
Breach Notification Clause
Permitted Uses and Disclosures
Permitted Uses and Disclosures
Termination Clause
Termination Clause
Audit and Reporting Rights
Audit and Reporting Rights
BAA Template Structure
Risk Assessment Framework
HIPAA Risk Assessment Checklist
HIPAA requires documented risk assessments. Use this comprehensive framework:Scope Definition
Threat Identification
Vulnerability Assessment
Risk Analysis
Mitigation Planning
Technical Compliance Checklist
Access Control Checklist
Encryption Checklist
Audit Logging Checklist
Network Security Checklist
PDPL Compliance Checklist
Saudi PDPL Specific Requirements
Vendor Assessment Checklist
Pre-Engagement Security Assessment
Ongoing Vendor Monitoring
Incident Response Checklist
Breach Response Procedure
Breach Notification Templates
- Individual Notification
- HHS Notification
Compliance Documentation Inventory
Required Documentation Checklist
Compliance Calendar
Annual Compliance Activities
Quick Reference Cards
Emergency Contact Card
Developer Quick Reference
Module Summary
BAAs Protect You
Risk Assessment
Documentation
Continuous Process
Next Steps
Conduct Initial Assessment
Prioritize Remediation
Build Documentation
Implement Controls
Establish Ongoing Processes
Congratulations! You’ve completed the HIPAA Compliance course. You now have the knowledge and tools to build healthcare-ready applications that protect sensitive patient data.
Interview Deep-Dive
You are preparing your organization for its first OCR audit. The auditor is coming in 6 weeks. What are the five things you check first, and what documentation do you absolutely need to have ready?
You are preparing your organization for its first OCR audit. The auditor is coming in 6 weeks. What are the five things you check first, and what documentation do you absolutely need to have ready?
- The five highest-priority items, based on OCR enforcement patterns: (1) A current, comprehensive risk assessment. This is the single most cited deficiency in OCR enforcement actions. If your risk assessment is more than 12 months old or does not cover all systems that handle ePHI, update it immediately. (2) Signed BAAs with every vendor that touches PHI. Pull the vendor inventory, match it to BAAs on file, and identify any gaps. A missing BAA is an easy finding for an auditor and demonstrates systemic negligence. (3) Policies and procedures documentation. HIPAA requires written policies covering all administrative, physical, and technical safeguards. These must be current (not from 2019), specific to your organization (not generic templates), and actually implemented (not just documented). (4) Workforce training records. Every employee who handles PHI must have documented HIPAA training, and it must be current (within the last 12 months). The auditor will ask to see training completion records. (5) Incident response documentation. Even if you have not had a breach, you need a written incident response plan, evidence of tabletop exercises or drills, and documentation of any security incidents and how they were handled.
- The documentation package: risk assessment report with remediation tracker, complete vendor inventory with BAA status, policies and procedures manual, workforce training records with completion dates, incident response plan and drill records, system inventory showing all ePHI locations, access control documentation (who has access to what and why), audit log samples and integrity verification reports, and encryption documentation (what is encrypted, with what algorithm, key management procedures).
- The 6-week timeline: weeks 1-2, conduct the gap analysis and prioritize findings. Weeks 3-4, remediate the highest-risk gaps (missing BAAs, outdated risk assessment, training gaps). Weeks 5-6, organize documentation, conduct a mock audit with an internal team, and prepare staff for auditor interviews.
Your organization operates in both the US and Saudi Arabia, serving patients in both markets. How do you build a compliance program that satisfies both HIPAA and PDPL simultaneously?
Your organization operates in both the US and Saudi Arabia, serving patients in both markets. How do you build a compliance program that satisfies both HIPAA and PDPL simultaneously?
- The key insight is that HIPAA and PDPL have significant overlap but critical differences, and you need to design for the superset of requirements — the stricter rule wins in each area.
- Where they overlap (implement once): both require encryption for sensitive data, access controls, audit logging, breach notification, risk assessments, and workforce training. Your core security architecture (encryption, RBAC, audit logging) satisfies both.
- Where PDPL is stricter: consent management. HIPAA allows PHI use for Treatment, Payment, and Operations without patient authorization. PDPL requires explicit consent for most processing, including healthcare. You need a consent management framework that tracks purpose-specific consent for Saudi patients even when US patients do not require it. Data localization: PDPL requires personal data of Saudi citizens to be stored within Saudi Arabia unless specific conditions are met. You may need a Saudi-region deployment (AWS Bahrain region or Azure UAE) with data residency controls. Right to erasure: PDPL grants a right to erasure that HIPAA does not (HIPAA has record retention requirements that may conflict). Your system needs the capability to delete Saudi patient data on request while retaining US patient data per HIPAA retention rules. Breach notification timeline: PDPL requires notification to the authority within 72 hours; HIPAA allows 60 days. Build to the 72-hour standard.
- Where HIPAA is stricter: the 18-identifier PHI definition is more comprehensive than PDPL’s personal data definition in some aspects. HIPAA’s minimum necessary standard has no direct PDPL equivalent but is good practice regardless. HIPAA’s specific technical safeguard requirements (audit controls, integrity, transmission security) are more prescriptive.
- Architecture approach: use a policy layer (OPA or similar) that evaluates patient jurisdiction and applies the appropriate rule set. Tag each patient record with its governing regulation. Implement consent as a first-class data model that tracks purpose, status, and withdrawal timestamp.
Walk me through the checklist you would use to evaluate whether a new AI feature (an LLM-powered symptom checker) is compliant before launching it.
Walk me through the checklist you would use to evaluate whether a new AI feature (an LLM-powered symptom checker) is compliant before launching it.
- This checklist covers five dimensions: data handling, vendor compliance, access controls, documentation, and patient rights.
- Data handling: What PHI enters the LLM? (Symptom descriptions, patient demographics, medical history.) Is the LLM hosted on-premise, in a BAA-covered cloud, or via a third-party API? If third-party, does the provider sign a BAA? Is PHI used for model training? (Must be prohibited or require explicit authorization.) Is data encrypted in transit to the LLM and at rest in any LLM storage? Is there a data retention policy for LLM inputs and outputs? Can you guarantee that PHI is not persisted in LLM logs or training data?
- Vendor compliance: If using OpenAI, Anthropic, or similar — do they offer a BAA? What is their data retention policy? Is processing within the US or does it cross borders? Have they completed a SOC 2 Type II audit? What happens to data if the vendor is acquired or goes bankrupt?
- Access controls: Who can use the symptom checker? (Only authenticated patients.) How is the LLM’s output handled? (It is not a medical diagnosis — proper disclaimers required.) Can the LLM access patient records beyond what the patient provides? (Should be limited to the current conversation.) Is there a human-in-the-loop for clinical recommendations?
- Documentation: Risk assessment updated to include the AI feature. Data flow diagram showing PHI movement through the LLM pipeline. Privacy impact assessment. Updated Notice of Privacy Practices if AI processing was not previously disclosed. Updated BAA with the LLM provider. Audit logging for all AI interactions (who asked what, what was returned, when).
- Patient rights: Can patients opt out of AI-assisted features? Are patients informed that their input is processed by AI? Can patients request deletion of their AI interaction history? Is there an accounting of disclosures that includes AI processing?
- The launch gate: all items must be verified and documented before the feature goes live. Any open item is a launch blocker, not a follow-up.