Wiki Spaces
Documentation
Projects
Resources
Get Help from Others
Q&A: Ask OpenMRS
Discussion: OpenMRS Talk
Real-Time: IRC Chat | Slack
Primary mentor | |
Backup mentor | |
Subject matter experts | |
Assigned to |
Table of Contents
Table of Contents |
---|
The aim of this project is to build an OpenMRS module that allows users to export selected OpenMRS data in the form of FHIR resources. Listed below are the goals, deliverables, project timelines and proposed design for our efforts.
The scope of phase 01 is limited to the release of v 1.0 of the module, which supports the export of OpenMRS data based on a subset of FHIR resources listed in the deliverables section shown below.
Release of v 1.0 of the OpenMRS FHIR module which supports the following,
1) Export of the following FHIR resources /objects
2) Enable users to search for the aforementioned resources using the following search parameters
3) Expand upon a strategy pattern (already developed) so that users can benefit from semantic information introduced via OpenMRS 2.0 and greater.
The OpenMRS data model is known to be highly generic. Traditionally, allergies, conditions, diagnosis etc. were all stored in the OpenMRS database as observations. However, OpenMRS 2.0 has seen the introduction of more semantically relevant information such as these.
In the event that the FHIR module is used by an OpenMRS application that supports such resources, we need to allow it to leverage from these. However, if it is being used by an pre-OMRS 2.0 version, the legacy approach for retrieving data must be followed.
A strategy pattern will be used for the FHIR module to identify what resources are available to it, and make maximum use of this data.
To demonstrate the success of this effort, we will implement support for the allergy resource, and demonstrate that it can use the OpenMRS 2.0 based allergy api module or (if lesser version) generic obs to populate FHIR resources.
As seen above, the FHIR module may support multiple types of semantic resources such as allergy, condition and diagnosis. Each of these MAY evolve to be represented in multiple ways across different OpenMRS versions.
At module startup, we will determine the version of the OpenMRS application, identify the relevant OpenMRS strategy for each, and assign it to the FHIR service. This strategy will be used thereon for generating allergy / condition / diagnosis resources for FHIR based export.
Gliffy Diagram | ||||
---|---|---|---|---|
|
4) Export of OpenMRS encounters in the form of FHIR composition resources as follows,
Following a Design call held on the 1st October, it was decide to adopt a bundle based model designed by the TW team to export OpenMRS encounter data in FHIR format.
This design models an encounter as a bundle of resources. One of these resources is a composition which explains the other resources persisted as part of the bundle.
It was decided to adopt this approach instead of the one proposed earlier, as this approach was self explanatory, and allowed users to understand resource content based on the resources themselves.
A abstract representation of this design would be as follows,
Code Block | ||||
---|---|---|---|---|
| ||||
{ "resourceType": "Bundle", "title": "Encounter", "id": "bcf6c340-d04a-4c29-b50c-2552beeee037", "entry": [ { "title": "Composition", "id": "Encounter - dfbc9b30-ceef-473e-9q22-4ee31qfceqdd", "content": { "resourceType": "Composition", "identifier": { "value": "Encounter - dfbc9b30-ceef-473e-9q22-4ee31qfceqdd" }, "date": "2014-07-25T16:50:29+05:30", "status": "final", "encounter": { "reference": "dfbc9b30-ceef-473e-9q22-4ee31qfceqdd", "display": "encounter" }, "section": [ { "content": { "reference": "dfbc9b30-ceef-473e-9q22-4ee31qfceqdd", "display": "Encounter" } }, { "content": { "reference": "87156002-70f4-48d8-8335-f76028587add", "display": "Complaint" } }, { "content": { "reference": "5f982a33-4454-4b74-9236-b8157aa8effd", "display": "Diagnosis" } }, { "content": { "reference": "cfbc9b30-ceef-473e-9q22-4ee31qfceqda", "display": "patient" } }, { "content": { "reference": "adbc9b30-ceef-473e-9q22-4ee31qfceqee", "display": "provider" } }, { "content": { "reference": "adbc1a34-ceef-473e-9q22-4ee31qfceqee", "display": "location" } } ] } }, { "title": "Encounter", "id": "dfbc9b30-ceef-473e-9q22-4ee31qfceqdd", "content": { "resourceType": "Encounter", } }, { "title": "Complaint", "id": "87156002-70f4-48d8-8335-f76028587add", "content": { "resourceType": "Condition", } }, { "title": "Diagnosis", "id": "5f982a33-4454-4b74-9236-b8157aa8effd", "content": { "resourceType": "Condition" } }, { "title": "Patient", "id": "cfbc9b30-ceef-473e-9q22-4ee31qfceqda", "content": { "resourceType": "Patient" } }, { "title": "Provider", "id": "adbc9b30-ceef-473e-9q22-4ee31qfceqee", "content": { "resourceType": "Provider" } }, { "title": "Location", "id": "adbc1a34-ceef-473e-9q22-4ee31qfceqee", "content": { "resourceType": "Location" } } } |
The above (highly abbreviated) message is a FHIR bundle. It contains (a) a composition resource and (b) other fhir resources that are part of this bundle.
The composition can be considered as a title of contents, and explains what resources the bundle contains.
The above bundle represents an encounter that consists of three observations, a patient, provider and a location resource.
Work undertaken as part of phase no. 01 will be broken down into three separate goals. Tasks to be completed under each of these phases are as follows,
Implement the following FHIR resources to export OpenMRS data
Implement standardized URL's to search for and retrieve one or many of these resources
It is important to understand that the OpenMRS encounter is not similar to the FHIR encounter. The FHIR encounter s designed to represent encounters, visits, episodes of care as well as the duality of clinical vs. technical transactions. And so, its important to determine how OpenMRS reacts to different requests, and what is returned when someone who is not familiar with OpenMRS requests fhir encounter with UUID x.
Integrate these resources together to be able to export OpenMRS data as encounters. This includes the modeling of the encounter resource, bundles and compositions to represent OpenMRS data (as shown above)
Following the implementation of this phase, users will be able to search or / retrieve encounters using specific search parameters, and obtain said result in the form of an OpenMRS Encounter FHIR bundle, as shown above.
1) Implement the FHIR AllergyIntolerance resource, and query parameters to search for and obtain said resources.
Expand upon the strategy pattern for users to follow, and implement support for exporting AllergyIntolerance resources based on this feature.
This includes using the strategy pattern to export OpenMRS data using the legacy allergy pattern and the OpenMRS 2.0 based
2) Implement authorization / access control for accessing data via FHIR
The entire project is estimated to take a total of four months to complete. We breakdown the time considerations for completing each goal as follows,