FHIR Chat · Prescription in FHIR format · Kanta FHIR Prescription

Stream: Kanta FHIR Prescription

Topic: Prescription in FHIR format


view this post on Zulip jagjot singh Wadali (Jul 14 2021 at 12:57):

Hi Everyone,

In our Application, we have patient's prescription data saved in the different tables in the database. For a single prescription, there are several columns including physical examination & history, allergies, medication, advice, diagnosis etc.

I need to write a c# code where I can convert all this prescription information including patient information. I had tried writing c# code but I faced some issues:-

  1. We don't have any FHIR server implemented but just have to map the data from database in FHIR, in this case, certain terminologies I dont understand are taken from FHIR server. For example

"entry": [
{
"fullUrl": "Composition/3b990853-f0fa-4046-8388-d71dd93a0fa1",
"resource": {
"resourceType": "Composition",
"id": "3b990853-f0fa-4046-8388-d71dd93a0fa1",
"identifier": {
"system": "https://www.max.in/document",
"value": "3b990853-f0fa-4046-8388-d71dd93a0fa1"
},

In the above-mentioned example, I don't have any Composition in the FullURL parameter.

  1. In the prescription format specified in SNOMED CT, this is the code for Prescription 440545006. And in the JSON format, there is an only practitioner, patient, and medication however there is no information regarding allergies or diagnosis or complaints. How to include all this information in prescription FHR

  2. I tried to create a model class from JSON, but certain parameters remain null which doesnt make a valid FHIR format.

Anyone who had implemented Converting raw data into prescription in c# kindly help.


Last updated: Apr 12 2022 at 19:14 UTC