Stream: implementers
Topic: FHIR mapping guidelines
claura (Apr 30 2021 at 00:42):
Hi all,
We have several resources (Appointment, Patient, and Practitioner) to map to FHIR. I'm looking for any feedback of how to do it correctly. Any feedback is appreciated
appointment.pdf patient.pdf practitioner.pdf
Jose Costa Teixeira (May 01 2021 at 15:48):
Hi. I don't understand what you are asking. Mapping FHIR resources to FHIR?
Radhakrishnan (May 02 2021 at 04:52):
Hi Jose,
I am having an requirement to record the questionnire response with the patient and provider. But how to map between the patient, and provider with the questionnaire response. below response taken from postamn the ID is getting added for each post. But i am not able to view the practitioner or patient details along with the questionnire response. Please provide me with any pointer how to map between the resources.
{
"resourceType": "QuestionnaireResponse",
"id": "86254",
"meta": {
"versionId": "1",
"lastUpdated": "2021-05-02T04:47:03.358+00:00"
},
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: f201</p><p><b>status</b>: completed</p><p><b>subject</b>: <a>Roel</a></p><p><b>authored</b>: 18/06/2013 12:00:00 AM</p><p><b>author</b>: <a>Practitioner/f201</a></p><p><b>source</b>: <a>Practitioner/f201</a></p><blockquote><p><b>item</b></p><p><b>linkId</b>: 1</p><h3>Items</h3><table><tr><td>-</td></tr><tr><td></td></tr></table></blockquote><blockquote><p><b>item</b></p><p><b>linkId</b>: 2</p><p><b>text</b>: General questions</p><h3>Items</h3><table><tr><td>-</td></tr><tr><td></td></tr><tr><td></td></tr><tr><td></td></tr><tr><td></td></tr></table></blockquote><blockquote><p><b>item</b></p><p><b>linkId</b>: 3</p><p><b>text</b>: Intoxications</p><h3>Items</h3><table><tr><td>-</td></tr><tr><td></td></tr><tr><td>*</td></tr></table></blockquote></div>"
},
"status": "completed",
"subject": {
"reference": "Patient/f201",
"display": "Roel"
},
"authored": "2013-06-18T00:00:00+01:00",
"author": {
"reference": "Practitioner/f201"
},
"source": {
"reference": "Practitioner/f201"
},
"item": [
{
"linkId": "1",
"item": [
{
"linkId": "1.1",
"text": "Do you have allergies?",
"answer": [
{
"valueString": "I am allergic to house dust"
}
]
}
]
},
{
"linkId": "2",
"text": "General questions",
"item": [
{
"linkId": "2.1",
"text": "What is your gender?",
"answer": [
{
"valueString": "Male"
}
]
},
{
"linkId": "2.2",
"text": "What is your date of birth?",
"answer": [
{
"valueDate": "1960-03-13"
}
]
},
{
"linkId": "2.3",
"text": "What is your country of birth?",
"answer": [
{
"valueString": "The Netherlands"
}
]
},
{
"linkId": "2.4",
"text": "What is your marital status?",
"answer": [
{
"valueString": "married"
}
]
}
]
},
{
"linkId": "3",
"text": "Intoxications",
"item": [
{
"linkId": "3.1",
"text": "Do you smoke?",
"answer": [
{
"valueString": "No"
}
]
},
{
"linkId": "3.2",
"text": "Do you drink alchohol?",
"answer": [
{
"valueString": "No, but I used to drink"
}
]
}
]
}
]
}
Lloyd McKenzie (May 02 2021 at 06:19):
Are you asking how to retrieve a Questionnaire with the referenced Patient and Practitioner or how to retrieve the referenced Patient and Practitioner once you've already retrieved a Questionnaire?
Last updated: Apr 12 2022 at 19:14 UTC