...
Code Block | ||
---|---|---|
| ||
<Questionnaire xmlns="http://hl7.org/fhir"> <contained> <ValueSet> <id value="Yes_No_Unknown"/> <name value="SNOMED CT Yes No Unknown Value Set"/> <status value="active"/> <compose> <include> <system value="http://snomed.info/sct"/> <concept> <code value="373066001"/> <display value="Yes"/> </concept> <concept> <code value="373067005"/> <display value="No"/> </concept> <concept> <code value="261665006"/> <display value="Unknown"/> </concept> </include> </compose> </ValueSet> </contained> ……. <item> <linkId value=”ba9e4ef0”aa1af550-c6e6c7be-11ea-87d0-0242ac130003”/> <code> <system value=”http://snomed.info/sct”/> <code value=”85828009”/> <display value="Autoimmune disease"/> </code> <text>Does the patient have an autoimmune condition?</text> <type value=”choice”/> <answerValueSet value=”#Yes_No_Unknown” /> </item> …….. </Questionnaire> |
...
Code Block | ||
---|---|---|
| ||
<QuestionnaireResponse xmlns="http://hl7.org/fhir"> ……. <item> <linkId>ba9e4ef0<linkId>aa1af550-c6e6c7be-11ea-87d0-0242ac130003</linkId> <text>Does the patient have an immunosuppressiveautoimmune condition?</text> <answer> <valueCoding> <system value=”http://snomed.info/sct”/> <code value=”373067005”/> <display value=”No”/> </valueCoding> </answer> </item> …….. </QuestionnaireResponse> |
...
Code Block | ||
---|---|---|
| ||
<?xml version="1.0" encoding="UTF-8"?> <Observation xmlns="http://hl7.org/fhir"> <identifier>28377954<identifier>b49dcbec-c6cfc7be-11ea-87d0-0242ac130003</identifier> <status value="final"/> <code> <coding> <system value="http://snomed.info/sct"/> <code value="3801300585828009"/> <display value="ImmunosuppressionAutoimmune disease"/> </coding> </code> <subject> <reference value="Patient"/> </subject> <focus> <reference value=”Patient”/> </focus> <effectiveDateTime value="Time of observation"/> <performer> <reference value=”Practitioner”/> </performer> <valueRange> <Range> <low> <value>0</value> <comparator value=”>”/> <code> <system value=”http://snomed.info/sct”/> <code value=”118595003”/> <display value="Quantity content"/> </code> </low> <high> <value>INF</value> <comparator value=”<=”/> <code> <system value=”http://snomed.info/sct”/> <code value=”118595003”/> <display value="Quantity content"/> </code> </high> </Range> </valueRange> </Observation> |
...