FHIR Chat · https://www.hl7.org/fhir/questionnaire.html · implementers

Stream: implementers

Topic: https://www.hl7.org/fhir/questionnaire.html


view this post on Zulip Shalini Sheoran (Dec 02 2016 at 12:16):

How to check for semantic interoperability using questionnaire?

view this post on Zulip Patrick Werner (Dec 02 2016 at 12:37):

could you please specify? This question is way to broad.

view this post on Zulip Shalini Sheoran (Dec 02 2016 at 12:56):

Hi

view this post on Zulip Shalini Sheoran (Dec 02 2016 at 13:07):

Let's consider there are two patients. And these two patients while using a text area to answer a question in a questionnaire ( Questionnaire.group.text) uses two different words : huge and large. How does HAPI parser takes care of this? I mean how it is being standardized? I am exploring FHIR for storing epileptic data. I want to see a example demo of FHIR supporting semantic interoperability?

view this post on Zulip Mirjam Baltus (Dec 02 2016 at 13:20):

The API parser is not a natural language parser., it is meant to parse XML or JSON data into an in memory FHIR object.
If you specify your program to put the text of a text area into Questionnaire.group.text, that's just what's going to happen. Perhaps you should have the patient click on standardized text/buttons, or choose from a dropdown list instead of being able to enter text themselves, and then code those answers. The codes can then be stored and compared. Or you should run your own natural language parser on the text area.
BTW, to store the answers, use the QuestionnaireResponse resource.

view this post on Zulip Mirjam Baltus (Dec 02 2016 at 13:26):

Also see Joshs' answer in the HAPI stream: FHIR provides you with building blocks, but you still need to agree on things like vocabulary. That's not something that FHIR dictates.

view this post on Zulip Shalini Sheoran (Dec 02 2016 at 14:22):

Thanks @Mirjam Baltus for your insights. But I have one more question now, when we say FHIR supports semantic interoperability what do we mean by that? I mean what is it's context?

view this post on Zulip John Moehrke (Dec 02 2016 at 15:15):

That applies to structured and coded elements. Free-text elements are clearly not there for supporting semantic, but rather free-text.

view this post on Zulip Shalini Sheoran (Dec 02 2016 at 16:21):

Ok. Are there any existing coded or structured elements, where we can see semantic interoperability being implemented. Basically, I wanted to understand how semantic interoperability is being supported in FHIR. Any pointers on which resources can I try to see where data is structured and semantic interoperability is happening?

view this post on Zulip Marc de Graauw (Dec 02 2016 at 16:41):

If you take a look at the GCS examples for Questionnaire and -Response, you'll find that, with LOINC codes for Glasgow Coma Score and coded answers. For epilepsy, something similar could be done, with probably Snomed codes.


Last updated: Apr 12 2022 at 19:14 UTC