Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

« Previous Version 3 Next »

Questionnaire Snippet for Cancer

This example snippet for the Questionnaire item for Cancer uses a pre-defined value set that specifies the HL7 V2 Value Set of “yesnodontknow”.

<?xml version="1.0" encoding="UTF-8"?>

<Questionnaire xmlns="http://hl7.org/fhir">
.....
  <item> 
    <linkId value="9466bc38-d7c9-4503-811b-577fe77f6ef6"/> 
    <code> 
       <system value="http://snomed.info/sct"/> 
       <code value="363346000"/> 
       <display value="Malignant neoplastic disease (disorder)"/> 
    </code> 
    <type value="choice"/> 
    <answerValueSet value="http://hl7.org/fhir/ValueSet/yesnodontknow"/> 
  </item>
  ..... 
</Questionnaire> 

Questionnaire Response Snippet for Cancer

<QuestionnaireResponse xmlns="http://hl7.org/fhir">
   ....
    <item> 
      <linkId value="9466bc38-d7c9-4503-811b-577fe77f6ef6"/> 
      <answer> 
        <valueCoding> 
          <system value="http://terminology.hl7.org/CodeSystem/v2-0136"/> 
          <code value="Y"/> 
          <display value="Yes"/> 
        </valueCoding>      
  </item>
  .....
</QuestionnaireResponse> 

Questionnaire Response for Cancer Transformed to FHIR Observation based on ANF

  • No labels