Documentation

Everything developers need to integrate with the MediBridgeX platform.

FHIR Resources

Explore the healthcare resources supported by the MediBridgeX platform and learn how to integrate using standardized FHIR models.

FHIR R4

Overview

FHIR resources provide standardized healthcare data models for exchanging clinical and administrative information. MediBridgeX uses these resources throughout the platform to ensure interoperability.

Applications
MediBridgeX
FHIR Resources
Healthcare Systems

Supported Resources

Patient

Core demographic and administrative data.

View Resource

Practitioner

Healthcare professional profiles.

View Resource

Organization

Facilities, clinics, and hospitals.

View Resource

Location

Physical healthcare delivery sites.

View Resource

Encounter

Interactions between patients and providers.

View Resource

Observation

Clinical findings, vitals, and lab results.

View Resource
COMING SOON

Condition

Diagnoses and clinical problems.

Planned Release
COMING SOON

Procedure

Clinical actions performed on a patient.

Planned Release
COMING SOON

DiagnosticReport

Findings and interpretations of tests.

Planned Release
COMING SOON

Medication

Definitions of pharmaceutical products.

Planned Release
COMING SOON

MedicationRequest

Prescriptions and medication orders.

Planned Release
COMING SOON

Appointment

Scheduled patient visits.

Planned Release
COMING SOON

Schedule

Availability of slots and services.

Planned Release

Resource Groups

Clinical

PatientObservationConditionProcedureDiagnosticReport

Administrative

OrganizationPractitionerLocation

Workflow

AppointmentEncounterSchedule

Medication

MedicationMedicationRequest

Resource Structure

FHIR resources are designed to reference each other to build a complete clinical picture.

Patient
Encounter
Observation
DiagnosticReport

FHIR Example

JSONPatient Example
{
"resourceType": "Patient",
"id": "example-1",
"active": true,
"name": [
{
"use": "official",
"family": "Smith",
"given": ["John", "A."]
}
],
"gender": "male",
"birthDate": "1974-12-25"
}

Working with FHIR

Search Resources

Query resources using standard FHIR search parameters (e.g., ?name=smith&gender=male).

Read Resources

Fetch a specific resource instance by its logical ID.

Create Resources

POST a valid FHIR JSON payload to create a new resource on the platform.

Update Resources

Perform a PUT request to update an existing resource or a PATCH for partial updates.

Delete Resources

Soft-delete or logically remove resources if permitted by your organization scope.

Explore Individual Resources