QI-Core Implementation Guide
7.0.0-ballot - STU7 Ballot United States of America flag

QI-Core Implementation Guide, published by HL7 International / Clinical Quality Information. This guide is not an authorized publication; it is the continuous build for version 7.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-qi-core/ and changes regularly. See the Directory of published versions

: MedicationStatment example - JSON Representation

Raw json | Download


{
  "resourceType" : "MedicationStatement",
  "id" : "example",
  "meta" : {
    "profile" : [
      🔗 "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-medicationstatement"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: MedicationStatement example</b></p><a name=\"example\"> </a><a name=\"hcexample\"> </a><a name=\"example-en-US\"> </a><p><b>status</b>: Active</p><p><b>medication</b>: <a href=\"Medication-example.html\">Medication alemtuzumab 10 MG/ML [Lemtrada]</a></p><p><b>subject</b>: <a href=\"Patient-example.html\">Jim Chalmers  Male, DoB: 1974-12-25 ( Medical record number\u00a0(use:\u00a0usual,\u00a0period:\u00a02001-05-06 --&gt; (ongoing)))</a></p><p><b>effective</b>: 2012-06-01 14:30:00+1400</p><p><b>dateAsserted</b>: 2012-05-14 15:00:00+1400</p><p><b>informationSource</b>: <a href=\"Practitioner-example.html\">Practitioner Adam Careful </a></p><p><b>derivedFrom</b>: <a href=\"MedicationRequest-example.html\">MedicationRequest: status = active; intent = order; medication[x] = -&gt;Medication alemtuzumab 10 MG/ML [Lemtrada]; authoredOn = 2015-03-25 19:32:52-0500</a></p><blockquote><p><b>dosage</b></p></blockquote></div>"
  },
  "status" : "active",
  "medicationReference" : {
    🔗 "reference" : "Medication/example"
  },
  "subject" : {
    🔗 "reference" : "Patient/example"
  },
  "effectiveDateTime" : "2012-06-01T14:30:00+14:00",
  "dateAsserted" : "2012-05-14T15:00:00+14:00",
  "informationSource" : {
    🔗 "reference" : "Practitioner/example"
  },
  "derivedFrom" : [
    {
      🔗 "reference" : "MedicationRequest/example"
    }
  ],
  "dosage" : [
    {
      "timing" : {
        "repeat" : {
          "frequency" : 3,
          "period" : 1,
          "periodUnit" : "d"
        }
      },
      "route" : {
        "coding" : [
          {
            "system" : "http://snomed.info/sct",
            "code" : "394899003",
            "display" : "oral administration of treatment"
          }
        ]
      },
      "doseAndRate" : [
        {
          "doseQuantity" : {
            "value" : 10,
            "unit" : "ml",
            "system" : "http://unitsofmeasure.org",
            "code" : "ml"
          }
        }
      ]
    }
  ]
}