Skip to content

Medication Statement Profile

Canonical../StructureDefinition/nexus-emr-core-medicationstatement
Statusdraft (experimental) · 1.26.0
BaseMedicationStatement (constraint)
SourceFSH · 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"
    }
  ]
}