-
Notifications
You must be signed in to change notification settings - Fork 0
FHIR Configuration
Fadil369 edited this page Jun 8, 2026
·
1 revision
| Component | Status |
|---|---|
| Infrastructure | ✅ Ready |
| CSP Applications | ✅ Created |
| Endpoint | ✅ Port 52773 → IRIS HTTP |
| Synthetic CapabilityStatement | ✅ API Gateway serves /fhir/metadata
|
| IRIS FHIR Module (Community) | ⭕ Not installed — synthetic endpoint via API Gateway |
Note: The InterSystems IRIS Community Edition does not include
HS.FHIR.Config.Rootor the full FHIR production classes. The API Gateway on port 58080 serves a synthetic FHIR CapabilityStatement and proxies/fhir/*requests to IRIS.
# CapabilityStatement
curl http://localhost:58080/fhir/metadata | jq .
# Resource lookup (returns OperationOutcome if FHIR module not installed)
curl http://localhost:58080/fhir/Patient/101 | jq .The synthetic CapabilityStatement advertises:
-
Patient,Claim,Coverage,Organization,Practitioner -
CommunicationRequest,Task,Bundle,DocumentReference
curl http://localhost:52773/fhir/r4/metadata
curl http://localhost:52773/fhir/r4/Patient| FHIR Resource | Source System | Description |
|---|---|---|
Patient |
HNH + Oracle EHRs | Patient demographics |
Encounter |
Hospital systems | Clinical visits |
Condition |
Clinical diagnoses | Medical conditions |
MedicationRequest |
NPHIES | Prescriptions |
Claim |
NPHIES | Insurance claims |
Coverage |
NPHIES | Insurance coverage |
CarePlan |
Clinical pathways | Treatment plans |
Observation |
Labs & vitals | Lab results, vital signs |
DiagnosticReport |
Imaging & pathology | Radiology, lab reports |
CommunicationRequest |
NPHIES | Claim communication requests |
All 14 Pulse agents consume and produce FHIR R4 resources:
| Agent | Primary FHIR Resources |
|---|---|
| Summary |
Patient, Encounter, Observation, Composition
|
| Prior Auth |
Procedure, Claim, ClaimResponse, Coverage
|
| Gaps in Care |
DiagnosticReport, Observation, CarePlan
|
| Medication Safety |
MedicationRequest, MedicationDispense, AllergyIntolerance
|
| Care Plan |
CarePlan, Goal, ActivityDefinition
|
| Clinical Trials |
ResearchStudy, Group, Evidence
|
| Readmission Risk |
RiskAssessment, Observation, Encounter
|
| Triage |
Encounter, Observation, Condition
|
| Imaging Followup |
ImagingStudy, DiagnosticReport, ServiceRequest
|
| Lab Explainer |
Observation, DiagnosticReport, Specimen
|
| NL Query |
Parameters, Bundle
|
| SDOH Referral |
ServiceRequest, Task, Organization
|
| Chat | Parameters |
| HF Models | Parameters |
# FHIR metadata
curl 'http://localhost:58080/fhir/metadata' -H "Accept: application/fhir+json"
# Get patient summary via Pulse
curl "http://localhost:58080/linc/summary?patient=P-5842" | jq .
# Search clinical trials via Pulse
curl "http://localhost:58080/linc/clinical-trials?patient=P-5842" | jq .The API Gateway serves a synthetic FHIR R4 CapabilityStatement at /fhir/metadata:
{
"resourceType": "CapabilityStatement",
"status": "active",
"fhirVersion": "4.0.1",
"format": ["application/fhir+json"],
"rest": [{
"mode": "server",
"resource": [
{ "type": "Patient", "interaction": [{"code": "read"}, {"code": "search-type"}] },
{ "type": "Claim", "interaction": [{"code": "read"}, {"code": "search-type"}] },
{ "type": "Coverage", "interaction": [{"code": "read"}, {"code": "search-type"}] },
{ "type": "Organization", "interaction": [{"code": "read"}, {"code": "search-type"}] },
{ "type": "Practitioner", "interaction": [{"code": "read"}, {"code": "search-type"}] }
]
}]
}When FHIR is fully installed:
- Cache Strategy: Aggressive, TTL 3600s
- Connection Pooling: Max 100, Min Idle 10, Acquire 30s
- Compression: GZIP for responses >1KB
- SSL/TLS: Cloudflare edge terminates SSL for public access
- Authentication: OAuth2/OpenID Connect, JWT validation
- Rate Limiting: 100 requests/min per IP (via API Gateway)
- CORS: Restricted origins in production