Lesson 1: The clinical validation framework
"Clinical validation" in healthcare AI is not the same as model validation in ML. ML validation answers "does the model generalize?" Clinical validation answers "does this output match what a qualified clinician would do, on representative real-world cases, including edge cases?"
The framework has five required parts:
1. Defined intended use
A one-paragraph statement of exactly what the AI is supposed to do, for whom, in what setting. Example:
"This system extracts clinical findings (vital signs, lab values, medications, pertinent history) from inpatient progress notes and presents them in a structured summary for use by a licensed RN utilization reviewer applying InterQual criteria. The system does not make coverage determinations. The system is not intended for pediatric populations or behavioral health admissions."
This statement governs the entire validation plan. Drift outside intended use is a regulatory and clinical safety event.
2. Gold-standard test set, by certified reviewers
Build a held-out test set scored independently by certified humans — coders for coding outputs, clinicians for clinical reasoning, UM nurses for criteria application. Specifications:
- Representative sample. Stratified across payers, geographies, conditions, settings, and demographics relevant to the use case.
- Adversarial sample. Hard cases — ambiguous documentation, conflicting signals, unusual presentations. These are where models fail in production.
- Inter-rater reliability. Two reviewers per case; track Cohen's kappa or equivalent. If humans disagree often, your "ground truth" is fuzzier than the metric suggests.
- Refresh cadence. Annual at minimum; quarterly if you depend on regulatory or coding-system updates (which you do).
3. Metrics reported in clinically meaningful terms
Precision and recall are not enough. Report in terms a Chief Medical Officer understands:
- For HCC suspect identification: per-member sensitivity, per-suggestion specificity, positive predictive value at the threshold you use in production.
- For DRG validation: case-level agreement with certified coders, DRG-shift detection rate, false-positive rate.
- For prior auth recommendations: concordance with reviewer decisions, broken out by approve/deny/pend, with sensitivity analysis on borderline cases.
- For denial prevention: denial rate avoided per claim flagged, false-flag rate, $/claim impact.
4. Failure mode analysis
For every category of error, document the failure mode and the mitigation. Common categories: hallucinated codes, criteria-version mismatch, missed comorbidity, wrong laterality, modifier misapplication, off-distribution document type.
5. Medical Director sign-off
Every clinical AI product should have a named Medical Director — typically a board-certified MD, ideally with UM and/or specialty experience matching your product — who reviews and signs off on the validation report. Their letter becomes part of the artifact your customer's compliance team will request.
Many vendors treat the Medical Director as a hire to make once they have a customer. By that point it's too late — the validation work to support a payer procurement takes weeks of clinical effort. A part-time Medical Director (often 10–20%) from the beginning makes the validation framework continuous, not a panicked pre-RFP scramble. Budget for one as a Step 3 deliverable.
You're asked by a customer's compliance team for "the validation report" for your prior auth assistance product. You have an F1 score on a holdout set. Why is that not enough?
F1 doesn't tell a compliance reviewer (a) which patient populations the model was tested on, (b) whether a qualified clinician validated outputs, (c) the failure modes and mitigations, (d) the false-negative rate on borderline approval cases (which translates to denied care), or (e) the bias profile across demographics. The compliance team will reject the report and ask for the full clinical validation artifact. Build it before the procurement starts.
Lesson 2: Audit trails — the design pattern, not the afterthought
Every AI output that influences a coverage, payment, or care decision must be reconstructable from logs. This is required by HIPAA (audit controls under the Security Rule), required by most payer contracts, and necessary to defend the product when a denial gets appealed or a False Claims Act allegation surfaces.
What the audit trail must capture per decision
- Input artifacts — references (or hashes) of every document, claim, or data record consulted. Avoid storing PHI in logs when references suffice.
- Model version and prompt version — the exact code path, weights, and prompt template that produced the output. Use deterministic versioning (semver + git SHA).
- Knowledge base version — which version of NCCI, LCD library, criteria, or policy library was active.
- Output — the AI's recommendation or extraction, with confidence/calibration where applicable.
- Citations — for each material claim or recommendation, a pointer to the specific source segment (policy section, chart note span, code-set entry).
- Reviewer action — who saw it, when, whether they accepted, modified, or overrode.
- Final disposition — what was submitted, paid, denied, or actioned.
Schema sketch — a minimum audit record
{
"decision_id": "dec_01HXZ...",
"timestamp_utc": "2025-09-15T14:22:08Z",
"use_case": "hcc_suspect",
"member_ref": "hash:sha256:9ab3...", // PHI-safe reference
"model": {
"name": "hcc-suspect-rerank",
"version": "2.4.1",
"git_sha": "a7c91e2",
"prompt_template_id": "pt_hcc_v12"
},
"knowledge_base": {
"cms_hcc_payment_year": "2025",
"icd10_year": "2025",
"mapping_version": "v28.0"
},
"inputs": [
{ "type": "chart_note", "ref": "doc:78aa...", "char_range": [4100, 5800] }
],
"output": {
"suspect_hcc": "HCC 18",
"icd10": "E11.22",
"supporting_evidence_quote": "...creatinine 2.4, eGFR 35, DM2 with CKD stage 3a documented...",
"confidence": 0.83
},
"reviewer": {
"user_id": "u_4172",
"credential": "CRC",
"action": "accepted",
"timestamp_utc": "2025-09-16T09:14:33Z"
},
"final_disposition": "submitted_for_payment_year_2025"
}
This pattern is the spine of "explainable" healthcare AI. When a CMS auditor asks "show me the basis for this HCC submission," the answer is one query against this log. Without it, the answer is "we'll get back to you" — which is not an acceptable answer for a CMS auditor.
Lesson 3: Explainability that survives a real review
Most "explainability" features in AI products are post-hoc rationalizations. In healthcare, the standard is higher: explainability must point to the specific source language that supports the recommendation, and a human reviewer must be able to navigate to it in two clicks.
Three explainability tiers
| Tier | What it shows | Where it's acceptable |
|---|---|---|
| 1. Source-grounded citation | Quote of the source language, link to the document section, identifier of the policy/code/criteria | Coverage decisions, payment integrity findings, appeals letters, HCC submissions |
| 2. Feature-level attribution | Top features driving the prediction, with directional contribution | Triage, prioritization, suggestion workflows where a human always reviews |
| 3. Confidence score only | Calibrated probability or score | Internal dashboards, A/B testing — never on its own for clinical/payment decisions |
Building tier-1 explainability with LLMs
When you use LLMs for extraction or reasoning over policy documents and clinical notes, build the citation into the generation, not as an afterthought:
- Indexed chunks with stable IDs. When you chunk a policy or chart for retrieval, each chunk gets a permanent ID and source coordinate (page, section, character range).
- Structured output enforcement. Require the model to emit, alongside each claim, the chunk IDs and a verbatim quote span. Reject outputs that don't validate against the input text.
- Verification pass. A second pass (rules + model) verifies that the quoted span actually exists in the cited chunk and supports the claim.
- Render the citation in the reviewer UI as a clickable link that opens the source at the exact span.
LLMs invent plausible-sounding policy citations, code-section references, and even ICD-10 codes that don't exist. Healthcare AI without verification of every cited code, policy section, and quote against authoritative sources is unsafe to deploy. Build the verification layer before the model layer ships.
Your appeals-letter generator drafts a paragraph citing "LCD L34567 section IV.B." The reviewer doesn't catch that the LCD section cited doesn't actually exist. What's the consequence?
If the letter is sent, the payer can dismiss the appeal on grounds that the cited authority is invalid, and the provider's reputation with that payer takes a hit. If it's a systemic issue, you've also created compliance exposure for your customer. The fix is mandatory verification: every cited authority must resolve to a real section in your authoritative LCD/NCD library, and the verification must block sending if it fails. This is non-negotiable for production.
Lesson 4: Bias, equity, and the legal framework
Healthcare AI that affects coverage, treatment, or payment must be tested for bias, both because it's the right thing to do and because three legal frameworks now require it:
ACA Section 1557 (HHS OCR final rule, 2024)
Section 1557 of the Affordable Care Act prohibits discrimination on the basis of race, color, national origin, sex, age, or disability in any health program receiving federal funding. The 2024 final rule explicitly covers "patient care decision support tools," which includes AI used by covered entities. Covered entities must:
- Make reasonable efforts to identify decision-support tools that use protected characteristics or proxies thereof.
- Mitigate identified discrimination risks.
- Document the analysis.
As a vendor, you should be able to provide your customer with the analysis they need to satisfy their 1557 obligations. This means proactive testing, not just responsive testing.
State AI laws
- California SB 1120 (2024) — applies to health plans using AI for utilization management. Requires that clinical decisions be made by a qualified human, that AI not deny based solely on group data, and that algorithms be equitably applied.
- Texas HB 4 (2025) — broader algorithmic accountability requirements affecting healthcare AI.
- New York, Illinois, Colorado, others — variations on human-in-the-loop and disclosure requirements.
CMS-0057-F and the MA Final Rule
Both rules constrain how AI can be used for MA coverage decisions: AI cannot be used to deny care that traditional Medicare would cover, and algorithmic determinations must comply with all applicable coverage rules.
What bias testing looks like in practice
- Define protected groups — race, ethnicity, sex, age band, disability status, primary language, dual-eligible status, geography.
- Measure outcome parity across groups for the AI's recommendations: approval rate, denial rate, recommended-level-of-care distribution, suspect-flag rate.
- Measure error parity — false-positive and false-negative rates across groups. A model with overall 95% accuracy that has a 5% error rate for one group and a 15% error rate for another is failing equity testing.
- Test for proxies — features that correlate with protected characteristics (ZIP code, primary language preference, insurance type). Proxy effects are how seemingly-neutral models become discriminatory.
- Document and remediate. If you find disparity, you need a plan: reweighting, threshold adjustment, feature removal, or human review escalation for affected groups.
Procurement teams at major payers and health systems now ask for the equity testing report routinely. A "we didn't find any" with no methodology behind it is no longer acceptable. Build it into your validation framework alongside accuracy reporting.
Lesson 5: Human-in-the-loop design — when AI can act, when it can only recommend
Different decisions tolerate different levels of automation. Use this matrix as a starting point — your Medical Director will refine it for your use case.
| Decision type | Acceptable level of automation | Reasoning |
|---|---|---|
| Approving prior auth that meets clear criteria | Full auto-approval with audit trail (per CMS-0057-F, payers are encouraged to auto-approve) | Approvals don't create harm; speed benefits the patient |
| Denying prior auth or coverage | Never fully automated; AI recommends, qualified human decides, decision is documented | State law (CA SB 1120), CMS MA rules, ACA 1557 implications |
| Approving low-dollar, low-risk claim adjustments | Auto with sampling-based QA | Low individual harm; statistical QA catches drift |
| HCC code submission | AI surfaces suspect; CRC-credentialed reviewer accepts/rejects with documented evidence | FCA exposure; MEAT requirements |
| DRG validation finding | AI flags; certified coder validates; payer policy governs adjustment | Significant payment impact; appeals follow |
| Appeals letter generation | AI drafts; clinician or appeals specialist reviews and signs | Letter is a legal document; clinician judgment required |
| Pre-bill claim scrubbing | Fully automated edits with reviewer for soft errors | Mature, well-understood; vendors have done this for decades |
Design implications
- Reviewer UX is product, not afterthought. If your reviewers can't quickly accept, modify, or override an AI suggestion with the evidence in front of them, your automation rate will collapse. Spend 30%+ of product effort on the reviewer interface.
- Override patterns are data. Capture what reviewers overrode and why. This is your highest-signal eval set and your fastest model-improvement input.
- Escalation paths. For any auto-action, define the exception path: low confidence, unusual case, member complaint. AI without a human escape hatch is fragile.
A health plan asks you to enable fully-automated denials for prior auth requests where the model's confidence is above 0.95. Why should you decline, or at minimum scope it carefully?
Multiple regulatory frameworks (CMS MA final rule, CA SB 1120, similar state laws) require that adverse coverage decisions be made by a qualified clinician, not by an algorithm. Model confidence alone — no matter how high — does not satisfy that requirement. The acceptable architecture is auto-approval for clear-criteria-met cases, and clinician review for any potential adverse determination. Be explicit with the customer that you're protecting them from regulatory exposure, not slowing them down arbitrarily.
Step 3 deliverables checklist
By the end of Step 3, your product should have these artifacts in version control or your compliance system:
- Intended use statement, per product
- Clinical validation plan (test set, metrics, refresh cadence)
- Clinical validation report, current, signed by Medical Director
- Audit trail schema documented and operational, with retention policy
- Explainability spec describing tier-1 source-grounded citations
- Verification layer for cited authorities (codes, LCDs, policies)
- Bias / equity testing methodology and most recent report
- Human-in-the-loop decision matrix mapped to product features
- Override capture pipeline feeding back into eval
- BAA-coverage map (which subprocessors handle PHI, with executed BAAs)
Step 3 Glossary
- Intended use statement
- Defined scope of an AI product: what it does, for whom, in what setting, with stated exclusions.
- Inter-rater reliability
- Statistical measure (e.g., Cohen's kappa) of how often independent reviewers agree on labels for the same case.
- Source-grounded citation
- Explainability pattern where each AI claim is tied to a specific, verifiable source span.
- ACA Section 1557
- Non-discrimination provision of the ACA; 2024 final rule explicitly covers patient care decision-support tools.
- RADV
- CMS Risk Adjustment Data Validation audit, which retroactively verifies MA plan HCC coding.
- MEAT criteria
- Monitoring, Evaluating, Assessing, Treating — the documentation standard for valid HCC capture.
- Medical Director (vendor-side)
- Board-certified MD employed or contracted by an AI vendor to oversee clinical validation, sign validation reports, and provide clinical judgment in product design.
- Human-in-the-loop (HITL)
- Design pattern where a qualified human reviews or approves AI outputs that materially affect coverage, payment, or care decisions.
Frequently asked questions
Does my AI need FDA clearance?
Most payer/RCM AI does not — it's administrative or financial automation, not a medical device. However, AI that diagnoses, treats, or directly affects clinical decisions about a specific patient's care can fall under Software as a Medical Device (SaMD) rules. The line is fuzzy and use-case specific. If you're near the line, get FDA regulatory counsel before launching.
Can we use generative AI to write appeals letters?
Yes, with conditions. The letter must be reviewed and signed by an appropriately credentialed person. Every cited code, policy section, and clinical fact must be verified against authoritative sources. The patient's PHI must be handled under a valid BAA. And the final letter must reflect the actual clinical record, not generative embellishment.
What is "calibration" and why do healthcare customers care about it?
A calibrated model's confidence score matches its actual accuracy: outputs labeled "80% confident" should be correct ~80% of the time. Uncalibrated confidence is misleading — it makes triage and prioritization worse, and it makes regulators uncomfortable. Run calibration diagnostics (reliability diagrams, expected calibration error) and report them.
How long should we retain audit trails?
HIPAA requires 6 years for required documentation. Many payer contracts require longer (10 years is common). RADV looks back several payment years. For HCC and DRG work specifically, plan for at least 10 years. Storage is cheap relative to the consequences of not having the records.
Do we need ISO certifications or HITRUST?
Not legally required, but practically required for enterprise payer sales. HITRUST CSF certification is the most-asked-for security framework in healthcare procurement. SOC 2 Type II is table stakes. ISO 27001 helps with international and large health system deals. Plan the certification journey 12+ months ahead of major procurements.
Did you absorb Step 3?
Questions grounded in real curriculum material. No certificate at this stage — the certificate is earned at the end of the track via the final exam. Honor system. Unlimited retakes. Wrong answers come with explanations.