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 Alcohol Use
Observation |
id : example-observation-alcoholuse-ca-core |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/observation-alcoholuse-ca-core |
status : final |
code |
coding |
system : http://loinc.org |
code : 74013-4 |
display : Alcoholic drinks per day |
subject |
reference : Patient/example-patient-ca-core |
encounter |
reference : Encounter/example-encounter-ca-core |
effective : 2024-03-27T09:00:00-07:00 |
value |
value : 2 |
unit : wine glasses per day |
system : http://unitsofmeasure.org |
code : /d |
<Observation xmlns="http://hl7.org/fhir"> <id value="example-observation-alcoholuse-ca-core" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/observation-alcoholuse-ca-core" /> </meta> <status value="final" /> <code> <coding> <system value="http://loinc.org" /> <code value="74013-4" /> <display value="Alcoholic drinks per day" /> </coding> </code> <subject> <reference value="Patient/example-patient-ca-core" /> </subject> <encounter> <reference value="Encounter/example-encounter-ca-core" /> </encounter> <effectiveDateTime value="2024-03-27T09:00:00-07:00" /> <valueQuantity> <value value="2" /> <unit value="wine glasses per day" /> <system value="http://unitsofmeasure.org" /> <code value="/d" /> </valueQuantity> </Observation>
{ "resourceType": "Observation", "id": "example-observation-alcoholuse-ca-core", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/observation-alcoholuse-ca-core" ] }, "status": "final", "code": { "coding": [ { "system": "http://loinc.org", "code": "74013-4", "display": "Alcoholic drinks per day" } ] }, "subject": { "reference": "Patient/example-patient-ca-core" }, "encounter": { "reference": "Encounter/example-encounter-ca-core" }, "effectiveDateTime": "03/27/2024 16:00:00", "valueQuantity": { "value": 2, "unit": "wine glasses per day", "system": "http://unitsofmeasure.org", "code": "/d" } }