Skip to main content
Interoperability

HL7 FHIR R4 Integration

Standards-based healthcare data exchange using FHIR R4 resources.

Supported FHIR Resources

ResourceDescriptionCategory
PatientDemographics and administrative informationIndividuals
PractitionerHealthcare provider informationIndividuals
EncounterPatient visits and episodes of careClinical
ConditionDiagnoses and health conditionsClinical
ObservationMeasurements and lab resultsClinical
MedicationRequestPrescriptions and medication ordersMedications
AppointmentScheduled appointmentsWorkflow

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"
  }]
}

Next Steps