FHIR Resources
Explore the healthcare resources supported by the MediBridgeX platform and learn how to integrate using standardized FHIR models.
Overview
FHIR resources provide standardized healthcare data models for exchanging clinical and administrative information. MediBridgeX uses these resources throughout the platform to ensure interoperability.
Supported Resources
Condition
Diagnoses and clinical problems.
Planned ReleaseProcedure
Clinical actions performed on a patient.
Planned ReleaseDiagnosticReport
Findings and interpretations of tests.
Planned ReleaseMedication
Definitions of pharmaceutical products.
Planned ReleaseMedicationRequest
Prescriptions and medication orders.
Planned ReleaseAppointment
Scheduled patient visits.
Planned ReleaseSchedule
Availability of slots and services.
Planned ReleaseResource Groups
Clinical
Administrative
Workflow
Medication
Resource Structure
FHIR resources are designed to reference each other to build a complete clinical picture.
FHIR 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.