Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Questionnaire Snippet for Pulse oximetry measurement

Code Block
languagexml
<Questionnaire xmlns="http://hl7.org/fhir">
  …….
  <item>
    <linkId value=”4684c7d5-1308-472f-bce5-f892e3ebe837”/>
        <code>
           <system value=”http://snomed.org”/>
           <code value=”252465000”/>
           <display value="Pulse oximetry"/>
        </code>
        <text>Pulse oximetry</text>                
        <type value=”integer”/>
</item>
……..
</Questionnaire>

 

Questionnaire Response for Pulse oximetry measurement

 

Code Block
languagexml
<QuestionnaireResponse xmlns="http://hl7.org/fhir">
…….
  <item>
    <linkId>4684c7d5-1308-472f-bce5-f892e3ebe837</linkId>
    <text> Does patient have a history of Diabetes?</text>
    <answer>
       <valueInteger value="88"/>
   </answer>
</item>
……..
</QuestionnaireResponse>

Questionnaire Response for Pulse oximetry measurement Transformed to FHIR Observation based on ANF

The “88%” answer to the Questionnaire for Pulse oximetry measurement is transformed in the FHIR Observation as a Range of 88 based on the ANF specification.

...