HL7 Europe Base and Core FHIR IG
2.0.0-ballot - ballot 150

This page is part of the HL7 Europe Base and Core (v2.0.0-ballot: Release Ballot) based on FHIR (HL7® FHIR® Standard) v5.0.0. This version is a pre-release. The current official version is 0.1.0. For a full list of available versions, see the Directory of published versions

: MedicationStatement Example - JSON Representation

Raw json | Download

{
  "resourceType" : "MedicationStatement",
  "id" : "example-medicationstatement-eucore",
  "meta" : {
    "profile" : [
      🔗 "http://hl7.eu/fhir/base-r5/StructureDefinition/medicationStatement-eu-core"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><strong>Medication:</strong> Enalapril 20mg tablets</p><p><strong>Patient:</strong> Fiona XXX_Swart</p><p><strong>Status:</strong> Active</p><p><strong>Dosage:</strong> Take one tablet daily in the morning (oral route)</p><p><strong>Informant:</strong> Dr. Lukas Müller</p><p><strong>Date Asserted:</strong> 2024-12-01</p></div>"
  },
  "status" : "recorded",
  "medication" : {
    "concept" : {
      "coding" : [
        {
          "system" : "http://www.whocc.no/atc",
          "code" : "C09AA02",
          "display" : "Enalapril"
        }
      ],
      "text" : "Enalapril 20mg tablets"
    }
  },
  "subject" : {
    🔗 "reference" : "Patient/patient-eu-core-example",
    "display" : "John Doe"
  },
  "effectiveDateTime" : "2024-12-01",
  "dateAsserted" : "2024-12-01",
  "informationSource" : [
    {
      🔗 "reference" : "Patient/patient-eu-core-example",
      "display" : "Luigi De Luca"
    }
  ],
  "dosage" : [
    {
      "text" : "Take one tablet daily in the morning",
      "timing" : {
        "repeat" : {
          "frequency" : 1,
          "period" : 1,
          "periodUnit" : "d"
        }
      },
      "route" : {
        "coding" : [
          {
            "system" : "http://snomed.info/sct",
            "code" : "26643006",
            "display" : "Oral route"
          }
        ]
      },
      "doseAndRate" : [
        {
          "doseQuantity" : {
            "value" : 20,
            "unit" : "mg",
            "system" : "http://unitsofmeasure.org",
            "code" : "mg"
          }
        }
      ]
    }
  ]
}