What HIPAA Protects and Who It Covers
HIPAA's Privacy Rule and Security Rule govern protected health information, known as PHI. PHI is individually identifiable health information held or transmitted by a covered entity or its business associates in any form, including electronic, paper, or oral. The key categories include health status, provision of healthcare, and payment for healthcare when they can be linked to a specific individual. The definition is broad: a diagnosis, a prescription, a lab result, a claims record, an appointment date, or even a patient's name combined with a visit date all constitute PHI. Covered entities are healthcare providers, health plans, and healthcare clearinghouses. Business associates are any third party that creates, receives, maintains, or transmits PHI on behalf of a covered entity. If your AI product receives patient records from a US hospital, processes them, and returns results, you are almost certainly a business associate and HIPAA applies to your systems and your contracts. UK companies are not exempt simply because they are not incorporated in the US.
Technical Safeguards Required Under HIPAA
The HIPAA Security Rule requires covered entities and business associates to implement specific technical safeguards for electronic PHI. Access controls must ensure only authorised users can access ePHI, implemented through unique user identification, automatic logoff, and encryption and decryption controls. Audit controls require hardware, software, and procedural mechanisms to record and examine access and activity in information systems that contain ePHI. Integrity controls must protect ePHI from improper alteration or destruction, and you must have mechanisms to authenticate ePHI to confirm it has not been altered. Transmission security requires protecting ePHI during transmission over electronic communication networks, which in practice means TLS encryption at a minimum. For AI products, additional considerations apply: LLM prompts containing PHI must be handled with the same controls as any other ePHI; vector stores indexing patient records require access logging and encryption at rest; and any model fine-tuned on PHI creates obligations around model access controls and data deletion that must be addressed in your architecture.
Business Associate Agreements
If you are a business associate, you need a Business Associate Agreement, or BAA, in place with every covered entity you work with before you handle any PHI. The BAA is a contract that specifies how you will use, safeguard, and disclose PHI, what you will do if there is a breach, and how PHI will be returned or destroyed when the relationship ends. You also need sub-BAAs with any subprocessors you use who will handle PHI on your behalf. For AI products, this includes your LLM API provider. OpenAI and Microsoft Azure OpenAI both offer BAAs for healthcare customers. Google Cloud also provides BAA-eligible services. Anthropic's HIPAA BAA availability should be verified directly with them for current commercial terms. Using a consumer-tier LLM API without a BAA while handling PHI is a HIPAA violation regardless of whether you intend to use the data for any purpose. The technical fact of transmission is sufficient.
HIPAA Breach Notification Requirements
HIPAA requires covered entities to notify affected individuals, the US Department of Health and Human Services, and in some cases the media, when unsecured PHI is breached. Business associates must notify the covered entity within 60 days of discovering a breach. A breach is defined as the acquisition, access, use, or disclosure of PHI in a way not permitted under the Privacy Rule, unless the covered entity or business associate demonstrates a low probability that PHI has been compromised based on a four-factor risk assessment. The risk assessment considers the nature and extent of the PHI involved, who accessed it, whether PHI was actually acquired or viewed, and the extent to which the risk has been mitigated. UK teams should build breach detection and notification workflows into their incident response plans from the start, not as an afterthought. The 60-day business associate notification window sounds generous but incident investigation, remediation, and documentation all need to happen within it.
HIPAA and UK GDPR: Running Both Frameworks
Many UK healthtech products target both NHS-connected workflows and US healthcare markets, which means running HIPAA and UK GDPR compliance simultaneously. The two frameworks overlap in meaningful ways but are not identical. Both require access controls, encryption, breach notification, and contractual obligations on data processors. Where they differ: UK GDPR gives individuals stronger rights over their data including erasure and portability; HIPAA has specific minimum necessary use requirements that map to GDPR's data minimisation principle but apply differently; HIPAA breach thresholds and notification timelines differ from GDPR's 72-hour ICO notification obligation. When building a dual-market product, design to the stricter standard in each area rather than the average. This typically means GDPR's individual rights model combined with HIPAA's technical safeguard specificity. SpeedMVPs builds GDPR-aware architecture as a baseline, which provides a solid foundation for layering HIPAA technical controls on top for US-facing deployments.
Practical Architecture for HIPAA-Compliant AI Products
HIPAA compliance for AI products requires deliberate architecture decisions from the first sprint rather than compliance retrofitting. Encryption at rest and in transit must be present from day one. All data access must be logged with sufficient detail to reconstruct who accessed what PHI and when. Role-based access control must restrict PHI access to the minimum necessary for each role's function. Audit logs must be tamper-evident and retained for six years. For LLM-powered features, PHI should be de-identified before being used in prompts where the clinical function permits it. Where de-identification is not possible, ensure your LLM provider has a BAA in place and that the API traffic is routed through HIPAA-eligible service tiers rather than standard API endpoints. In practice, many LLM providers operate separate API infrastructure for HIPAA customers with enhanced security controls. Verify this with your provider before moving PHI into any AI workflow.