Draft preBallot - This specification is under preBallot review and subject to change. It should not be used for implementation purposes. . . . . For a full list of available versions, see the Directory of published versions
Example Observation Social History
Observation |
id : example-observation-socialhistory-ca-core |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/observation-socialhistory-ca-core |
status : final |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/observation-category |
code : social-history |
display : Social History |
code |
coding |
system : http://snomed.info/sct |
code : 14679004 |
display : Occupation |
subject |
reference : Patient/example-patient-ca-core |
encounter |
reference : Encounter/example-encounter-ca-core |
value : Software Engineer |
note |
text : Works remotely from home office |
<Observation xmlns="http://hl7.org/fhir"> <id value="example-observation-socialhistory-ca-core" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/observation-socialhistory-ca-core" /> </meta> <status value="final" /> <category> <coding> <system value="http://terminology.hl7.org/CodeSystem/observation-category" /> <code value="social-history" /> <display value="Social History" /> </coding> </category> <code> <coding> <system value="http://snomed.info/sct" /> <code value="14679004" /> <display value="Occupation" /> </coding> </code> <subject> <reference value="Patient/example-patient-ca-core" /> </subject> <encounter> <reference value="Encounter/example-encounter-ca-core" /> </encounter> <valueString value="Software Engineer" /> <note> <text value="Works remotely from home office" /> </note> </Observation>
{ "resourceType": "Observation", "id": "example-observation-socialhistory-ca-core", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/observation-socialhistory-ca-core" ] }, "status": "final", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "social-history", "display": "Social History" } ] } ], "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "14679004", "display": "Occupation" } ] }, "subject": { "reference": "Patient/example-patient-ca-core" }, "encounter": { "reference": "Encounter/example-encounter-ca-core" }, "valueString": "Software Engineer", "note": [ { "text": "Works remotely from home office" } ] }