Stream: implementers
Topic: EHR & FHIR integration
Dimitar Dimitrov (Dec 16 2019 at 10:54):
Hello everyone. When we talk about the EHR systems implmented by FHIR server we should mention the way by which the data should be stored in the FHIR database. For example we can use a FHIR server to store all the medical data events related to a patient, but when we would like to get this data back, sorted by the datetime occurred, we can't use a single query to achieve that. I have read the specification "How FHIR fits into an EHR", it not answers my question how I can implement event trail from all the events related to a patient in a form of EHR. Is it possible for example to use a Composition resource to bind all the resources which are created in a single period of time in a form of event and then we can use a search over the Compose collection? How do you think is it a good idea?
Grahame Grieve (Dec 16 2019 at 11:00):
well, you can use a composition like that- that's pretty much how EN13606 envisages it being used. And then you could search for compositions, yes... for what that's worth
Grahame Grieve (Dec 16 2019 at 11:02):
the problem is that there's real subtle but important complexity here. Are you building a time line of time things were added to the record, or the real world time that they matter about? Compsotion will bind you to the first, but you probably mean the second. And then, which events are you interested in? inpatients can generate 1000s of events a day.
Grahame Grieve (Dec 16 2019 at 11:03):
you need to inject some judgement into the timeline to make it consumable. I think that this is why we haven't got people clamouring to get a single query that can build that.
Grahame Grieve (Dec 16 2019 at 11:03):
though there's something close... cross resource search with common date parameters
René Spronk (Dec 16 2019 at 11:11):
1000s of events a day, which could be explicitly captured by having 1000s of Topic resources, each representing 1 event. Keep in mind that FHIR is NOT an EHR standard but an interoperability standard, so you may have to capture things like events in a non-FHIR way. Or as a Basic resource if it really has to be FHIR only.
Last updated: Apr 12 2022 at 19:14 UTC