Medication Statement Profile¶
| Canonical | ../StructureDefinition/nexus-emr-core-medicationstatement |
|---|---|
| Status | draft (experimental) · 1.26.0 |
| Base | MedicationStatement (constraint) |
| Source | FSH · JSON |
Nexus EMR profile for MedicationStatement -- patient-reported medication use, distinct from prescriptions. First pass: status, text-first medication concept, effective timing, free-text dosage. Closed to SMART apps pending an exposure decision.
Examples
Medicationstatement example
MedicationStatement/nexus-emr-medicationstatement-example — claims conformance to Medication Statement Profile
{
"resourceType": "MedicationStatement",
"id": "nexus-emr-medicationstatement-example",
"meta": {
"profile": [
"../StructureDefinition/nexus-emr-core-medicationstatement"
]
},
"status": "active",
"medicationCodeableConcept": {
"text": "ASA 81 mg (OTC, self-reported)",
"coding": [
{
"system": "http://www.whocc.no/atc",
"code": "B01AC06",
"display": "acetylsalicylic acid"
}
]
},
"subject": {
"reference": "Patient/nexus-emr-patient-attachment-example",
"display": "Avery Linwood"
},
"effectivePeriod": {
"start": "2024-06-01"
},
"dateAsserted": "2026-04-08",
"dosage": [
{
"text": "81 mg once daily"
}
]
}