CMS interoperability rules aren't abstract policy — they're engineering requirements with hard deadlines. If you're a CTO, VP of Engineering, or integration architect at a health plan, health system, or healthtech company, this is your action checklist. No strategic overview, no policy analysis — just what to build, by when, and how.
For the strategic overview of CMS and ONC regulations, see our comprehensive compliance guide.

The Rules at a Glance
Three final rules drive the 2026-2027 compliance landscape:
- CMS-9115-F (Patient Access & Interoperability): Requires CMS-regulated payers to expose Patient Access APIs, Provider Directory APIs, and enable payer-to-payer data exchange via FHIR R4.
- CMS-0057-F (Prior Authorization): Requires payers to implement FHIR-based prior authorization APIs using Da Vinci CRD/DTR/PAS implementation guides. Electronic prior auth with response time requirements.
- HTI-1 (ONC Health Data, Technology, and Interoperability): Updates certified EHR technology requirements, including USCDI v3 support, standardized API conditions, and information blocking provisions.
Deadline Calendar
| Deadline | Requirement | Who |
|---|---|---|
| Jan 1, 2026 | Patient Access API (FHIR R4) fully operational | MA, Medicaid MCOs, QHP issuers |
| Jan 1, 2026 | Provider Directory API (FHIR R4) | MA, Medicaid MCOs, QHP |
| Jan 1, 2026 | Payer-to-Payer FHIR data exchange (Phase 1) | MA, Medicaid MCOs |
| Jan 1, 2027 | Prior Authorization API (Da Vinci PAS/CRD/DTR) | MA, Medicaid MCOs, QHP |
| Jan 1, 2027 | Prior auth response: 72hrs urgent, 7 days standard | All payers |
| Jan 1, 2027 | Provider Access API for data sharing | MA, Medicaid MCOs |
| Mar 2026 | USCDI v3 support in certified EHR technology | EHR vendors |
Your 10-Step Action Checklist
Do Now (Q1 2026)
1. Audit your FHIR R4 API readiness. Can your system expose Patient, ExplanationOfBenefit, Coverage, Condition, Observation, and Encounter resources via FHIR R4? Test with the ONC Inferno test suite. If you fail more than 10% of tests, you have a gap.
2. Verify USCDI v3 data class support. USCDI v3 adds new data classes beyond v1: Health Insurance Information, Clinical Notes (all 8 types), Diagnostic Imaging, and SDOH data. Map each class to your FHIR resource endpoints. Gaps here mean non-compliance.
# USCDI v3 Data Classes to FHIR Resource Mapping
USCDI_V3_MAP = {
"Patient Demographics": ["Patient"],
"Allergies and Intolerances": ["AllergyIntolerance"],
"Clinical Notes": ["DocumentReference"], # 8 note types required
"Health Insurance Information": ["Coverage", "Organization"],
"Diagnostic Imaging": ["DiagnosticReport", "ImagingStudy"],
"SDOH Assessment": ["Observation", "Condition"], # SDOH screening codes
"Medications": ["MedicationRequest", "MedicationDispense"],
"Problems": ["Condition"],
"Procedures": ["Procedure"],
"Laboratory": ["Observation", "DiagnosticReport"],
"Vital Signs": ["Observation"],
"Immunizations": ["Immunization"],
}3. Implement SMART on FHIR authentication. All Patient Access APIs must use OAuth 2.0 with SMART on FHIR scopes. Support both authorization code flow (for patient-facing apps) and client credentials (for backend services). PKCE is required for public clients.
Q2 2026: Prior Authorization Infrastructure
4. Implement Da Vinci CRD (Coverage Requirements Discovery). When a provider is about to order a service, your system must tell them whether prior auth is required and what documentation is needed — in real time via CDS Hooks.

5. Implement Da Vinci DTR (Documentation Templates & Rules). Provide SMART-on-FHIR questionnaires that auto-populate with data from the EHR, reducing documentation burden. This uses FHIR Questionnaire and QuestionnaireResponse resources.
6. Implement Da Vinci PAS (Prior Authorization Support). Accept FHIR-based prior auth submissions and return structured responses. The PAS server must process requests and respond within the CMS-mandated timeframes: 72 hours for urgent, 7 calendar days for standard.
# Da Vinci PAS Request (simplified FHIR Bundle)
{
"resourceType": "Bundle",
"type": "collection",
"entry": [
{
"resource": {
"resourceType": "Claim",
"status": "active",
"type": {"coding": [{"code": "professional"}]},
"use": "preauthorization",
"patient": {"reference": "Patient/12345"},
"provider": {"reference": "Practitioner/67890"},
"item": [{
"sequence": 1,
"productOrService": {"coding": [{
"system": "http://www.ama-assn.org/go/cpt",
"code": "27447",
"display": "Total knee replacement"
}]}
}]
}
}
]
}Q3-Q4 2026: Payer Exchange & Testing
7. Build payer-to-payer FHIR data exchange. When a member switches health plans, the new payer must be able to request and receive the member's clinical and claims data from the old payer via FHIR Bulk Data. This requires member consent management and FHIR Bulk $export support.
8. Implement the Provider Access API. Share claims, encounter data, and prior auth decisions with in-network providers via FHIR APIs. This helps providers understand the full picture of a patient's care across payers.
9. End-to-end testing with trading partners. Test your FHIR APIs with real provider systems, third-party app developers, and other payers. Use the Touchstone FHIR test platform and Da Vinci reference implementations.
10. Monitor and report. Set up operational monitoring for API uptime (CMS expects 99.5%+), response times, and error rates. Build compliance dashboards that demonstrate adherence to CMS requirements for audit purposes.
Penalties for Non-Compliance
- Medicare Advantage: CMS Star Ratings impact — interoperability is now a rated measure affecting quality bonus payments worth millions per plan
- Medicaid MCOs: Condition of federal contract — non-compliance can result in contract termination
- QHP issuers: Marketplace certification at risk
- Information blocking: ONC can impose civil monetary penalties up to $1M per violation under the Cures Act
For TEFCA context and how it complements CMS rules, see our TEFCA guide. For the technical deep-dive on prior authorization automation, read our complete prior auth guide.
At Nirmitee, we help payers and health systems build CMS-compliant FHIR APIs and interoperability infrastructure. Let's get you compliant.
Need expert help with healthcare data integration? Explore our Healthcare Interoperability Solutions to see how we connect systems seamlessly. We also offer specialized Custom Healthcare Software Development services. Talk to our team to get started.



