Medication Resource #
This resource will be available only for registered Smart Health users.
Standards/Exceptions/Profiles in use #
Attributes #
Attribute | Comment | Reference |
---|---|---|
code | Codes that identify this medication, typically only display attribute is used for identification | Medication.code |
form | The form the medication comes in: powder, tablets, capsule, typically only display attribute is used for identification | Medication.forms |
amount | Amount of medication taken. This is made up of two parts numerator and denominator value | Medication.amount amd Ratio |
Example #
{
"resourceType": "Bundle",
"id": "bundle-references",
"type": "collection",
"entry": [
{
"fullUrl": "resource:1",
"resource": {
"resourceType": "Medication",
"id": "7d212786-378f-492a-afe1-429d1e8eac04",
"code": {
"coding": [
{
"display": "Lipitor"
}
]
},
"form": {
"coding": [
{
"display": "Tablet"
}
]
},
"amount": {
"numerator": {
"value": 20,
"system": "http://unitsofmeasure.org",
"code": "mg"
},
"denominator": {
"value": 1,
"system": "http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm",
"code": "TAB"
}
}
}
}
]
}