Description: Home Medications.
Reference: MedicationStatement in FHIR specification.
| Name | Type | Required | Description |
|---|---|---|---|
| date | date | False | Date/time of the MedicationStatement. |
| subject | reference | True | Who the MedicationStatement is for. |
* See Date Search for more information on searching by date.
Sample Request:
GET https://greathospital.com:8100/r4/sites/123/MedicationStatement?subject=1
Sample Request:
GET https://greathospital.com:8100/r4/sites/123/MedicationStatement/5
Sample Request:
POST https://greathospital.com:8100/r4/sites/123/MedicationStatement
Body:
{
"resourceType": "MedicationStatement",
"status": "active",
"medicationCodeableConcept": {
"coding": [
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "208416"
}
],
"text": "Sulfamethoxazole 400 MG / Trimethoprim 80 MG Oral Tablet [Bactrim]"
},
"dateAsserted": "2016-12-13T09:57:50-06:00",
"dosage": [
{
"text": "Sulfamethoxazole 400 MG / Trimethoprim 80 MG Oral Tablet [Bactrim] 1 tablet 3x a day, before meals",
"timing": {
"repeat": {
"frequency": 3,
"period": 1,
"periodUnit": "d"
}
},
"asNeededBoolean": true
},
{
"text": "Sulfamethoxazole 400 MG / Trimethoprim 80 MG Oral Tablet [Bactrim] 1 tablet 3x a day, before meals",
"timing": {
"repeat": {
"frequency": 3,
"period": 1,
"periodUnit": "d",
"when": "AC"
}
}
}
],
"subject": {
"reference": "https://greathospital.com:8100/r4/sites/123/Patient/"
},
"informationSource": {
"reference": "https://greathospital.com:8100/r4/sites/123/Practitioner/4cb36792-7bc0-41ed-8859-dbf59ea800e6",
"display": "Feltner, Chuck"
}
}