| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
AI-ready healthcare interoperability middleware that converts heterogeneous healthcare data (HL7, CSV, legacy systems) into standardized FHIR bundles across multiple workflows — Eligibility and Claims — without rewriting core logic.
📖 Read: Why healthcare interoperability is hard → docs/WHY_INTEROPERABILITY.md
Healthcare interoperability fails not because standards don’t exist, but because real hospital systems cannot easily speak those standards.
Every new connection becomes a custom integration project.
We built a reusable adapter layer instead of another point-to-point integration.
The platform:
Instead of every hospital implementing FHIR, the platform bridges existing systems into the national health ecosystem.
Most projects:
HL7 → FHIR mapping
Our approach:
Source-agnostic ingestion → Canonical healthcare model → AI semantic enrichment → Multi-workflow FHIR transformation
Meaning:
🟢 Coverage Eligibility — Implemented HL7 ingestion → Canonical normalization → AI enrichment → FHIR Patient & Coverage bundle
🟢 Claims Processing — Implemented CSV ingestion → Canonical claim model → AI anomaly detection → FHIR Claim resource
🟡 Prior Authorization — Architecture Ready Requires only a new DTO and FHIR builder
🟡 Clinical Exchange — Architecture Ready Can generate Encounter, Observation, Condition resources
Pipeline:
Source → Adapter → Canonical Model → AI Layer → FHIR Builder → FHIR Bundle
graph TD
Sources[Source Systems: HL7 / CSV / APIs] --> Ingestion[Ingestion Layer: Strategy Adapters]
Ingestion --> Canonical[Canonical Domain Model: EligibilityDTO / ClaimDTO]
Canonical --> AI[AI Intelligence Layer: Semantic Normalization & Risk Detection]
AI --> Builders[FHIR Use Case Builders: Eligibility / Claim]
Builders --> Output[FHIR Bundle Output: Patient, Coverage, Claim, Condition]
style AI fill:#f96,stroke:#333,stroke-width:2px
style Canonical fill:#bbf,stroke:#333,stroke-width:2px
Ingestion Layer
Canonical Layer
AI Intelligence Layer
FHIR Builder Layer
graph TD
Controller[TransformController API] --> AdapterFactory[Adapter Factory]
Controller --> AIService[AI Intelligence Service]
Controller --> UseCaseFactory[UseCase Factory]
AdapterFactory --> HL7[HL7 Adapter]
AdapterFactory --> CSV_E[Csv Eligibility Adapter]
AdapterFactory --> CSV_C[Claim Csv Adapter]
HL7 & CSV_E & CSV_C --> Model[Canonical Models]
Model --> AIService
AIService --> Builders[FHIR Builders]
UseCaseFactory --> EBuilder[Eligibility Builder]
UseCaseFactory --> CBuilder[Claim Builder]
EBuilder & CBuilder --> Output[FHIR Bundle Output]
AI operates after normalization but before FHIR generation.
It does NOT:
It DOES:
AI enhances healthcare meaning, not replace standards.
Add a new source:
Create a new IngestionAdapter
Add a new workflow:
Create a new FhirUseCaseBuilder
Add real AI:
Replace MockAiIntelligenceService with NLP/LLM/Terminology service
No core logic changes required.
mvn spring-boot:runOpen:
http://localhost:8080
Paste an HL7 ADT message.
Output:
Input:
CLM9999,12345,PROV001,HMO123,2024-03-01,E11.9,99213,25000.00
Output:
Current:
Modular monolith for fast iteration
Future:
Then:
Event-driven architecture using messaging
Stateless design enables:
timeline
title NHCX Platform Roadmap
Phase 1 : Modular Monolith : Strategy & Factory Patterns : Fast Iteration
Phase 2 : Domain-Based Services : Ingestion Service : Terminology Service : Workflow Services
Phase 3 : Event-Driven Architecture : Kafka Streams : Async Transformation : Kubernetes Scaling
A national health exchange cannot depend on:
This platform acts as a universal adapter layer between legacy hospital systems and modern FHIR ecosystems, reducing onboarding effort for providers and insurers.
We did not build a point solution.
We built a foundation interoperability layer that allows heterogeneous healthcare systems to participate in standardized digital health ecosystems — the missing middle layer in interoperability.
| Back | FazBrowse Home | New Git URL |