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 MedicationStatement
MedicationStatement |
id : example-medicationstatement-ca-core |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/medicationstatement-ca-core |
status : active |
medication |
reference : Medication/example-medication-ca-core |
subject |
reference : example-patient-ca-core-2 |
effective |
start : 2024-03-27 |
end : 2024-12-31 |
reasonCode |
coding |
system : http://snomed.info/sct |
code : 22298006 |
display : Myocardial infarction (disorder) |
text : Secondary prevention of cardiovascular events |
dosage |
text : Take 20mg once daily at bedtime |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : Oral route (qualifier value) |
<MedicationStatement xmlns="http://hl7.org/fhir"> <id value="example-medicationstatement-ca-core" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/medicationstatement-ca-core" /> </meta> <status value="active" /> <medicationReference> <reference value="Medication/example-medication-ca-core" /> </medicationReference> <subject> <reference value="example-patient-ca-core-2" /> </subject> <effectivePeriod> <start value="2024-03-27" /> <end value="2024-12-31" /> </effectivePeriod> <reasonCode> <coding> <system value="http://snomed.info/sct" /> <code value="22298006" /> <display value="Myocardial infarction (disorder)" /> </coding> <text value="Secondary prevention of cardiovascular events" /> </reasonCode> <dosage> <text value="Take 20mg once daily at bedtime" /> <route> <coding> <system value="http://snomed.info/sct" /> <code value="26643006" /> <display value="Oral route (qualifier value)" /> </coding> </route> </dosage> </MedicationStatement>
{ "resourceType": "MedicationStatement", "id": "example-medicationstatement-ca-core", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/medicationstatement-ca-core" ] }, "status": "active", "medicationReference": { "reference": "Medication/example-medication-ca-core" }, "subject": { "reference": "example-patient-ca-core-2" }, "effectivePeriod": { "start": "2024-03-27", "end": "2024-12-31" }, "reasonCode": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "22298006", "display": "Myocardial infarction (disorder)" } ], "text": "Secondary prevention of cardiovascular events" } ], "dosage": [ { "text": "Take 20mg once daily at bedtime", "route": { "coding": [ { "system": "http://snomed.info/sct", "code": "26643006", "display": "Oral route (qualifier value)" } ] } } ] }