Common Data Models Harmonization
1.0.0 - STU 1 Publication

Common Data Models Harmonization, published by HL7 International - Biomedical Research and Regulation Work Group. This is not an authorized publication; it is the continuous build for version 1.0.0). This version is based on the current content of https://github.com/HL7/cdmh/ and changes regularly. See the Directory of published versions

: CDMH MedicationRequest - Example - JSON Representation

Raw json | Download


{
  "resourceType" : "MedicationRequest",
  "id" : "example",
  "meta" : {
    "extension" : [
      {
        "url" : "http://hl7.org/fhir/StructureDefinition/instance-name",
        "valueString" : "CDMH Medication Request Example"
      },
      {
        "url" : "http://hl7.org/fhir/StructureDefinition/instance-description",
        "valueMarkdown" : "This is a CDMH Medication Request example for the *CDMH  MedicationRequest Profile*."
      }
    ],
    "profile" : [
      "http://hl7.org/fhir/us/cdmh/StructureDefinition/cdmh-medicationrequest"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>CDMH Medication Request Example</b></p>"
  },
  "status" : "active",
  "intent" : "order",
  "medicationCodeableConcept" : {
    "coding" : [
      {
        "system" : "http://www.nlm.nih.gov/research/umls/rxnorm",
        "code" : "582620",
        "display" : "Nizatidine 15 MG/ML Oral Solution [Axid]"
      }
    ],
    "text" : "Nizatidine 15 MG/ML Oral Solution [Axid]"
  },
  "subject" : {
    "reference" : "Patient/example",
    "display" : "Amy Shaw"
  },
  "authoredOn" : "2008-04-05",
  "requester" : {
    "reference" : "Practitioner/example",
    "display" : "Ronald Bone, MD"
  },
  "dosageInstruction" : [
    {
      "text" : "10 mL bid",
      "timing" : {
        "repeat" : {
          "boundsPeriod" : {
            "start" : "2008-04-05"
          }
        }
      }
    }
  ],
  "dispenseRequest" : {
    "numberOfRepeatsAllowed" : 1,
    "quantity" : {
      "value" : 480,
      "unit" : "mL",
      "system" : "http://unitsofmeasure.org",
      "code" : "mL"
    },
    "expectedSupplyDuration" : {
      "value" : 30,
      "unit" : "days",
      "system" : "http://unitsofmeasure.org",
      "code" : "d"
    }
  }
}