Interoperability
HL7 FHIR R4 Integration
Standards-based healthcare data exchange using FHIR R4 resources.
Supported FHIR Resources
| Resource | Description | Category |
|---|---|---|
Patient | Demographics and administrative information | Individuals |
Practitioner | Healthcare provider information | Individuals |
Encounter | Patient visits and episodes of care | Clinical |
Condition | Diagnoses and health conditions | Clinical |
Observation | Measurements and lab results | Clinical |
MedicationRequest | Prescriptions and medication orders | Medications |
Appointment | Scheduled appointments | Workflow |
FHIR Patient Resource
Example: Patient Resource
{
"resourceType": "Patient",
"id": "patient-123",
"identifier": [{
"system": "http://hospital.example.org/mrn",
"value": "MRN-001234"
}],
"name": [{
"use": "official",
"family": "Smith",
"given": ["John", "Michael"]
}],
"gender": "male",
"birthDate": "1985-03-15",
"telecom": [{
"system": "phone",
"value": "+1-555-123-4567"
}]
}