Skip to main content

Element

type object

The kind of dose or rate specified, information is predefined and remains same for all MedicationRequest

coding object[]
  • Array [
  • systemstring
    Example: http://www.nlm.nih.gov/research/umls/rxnorm
    codestring
    Example: 313002
    displaystring
    Example: Amoxicillin 500 MG Oral Capsule
  • ]
  • textstring
    Example: Amoxicillin 500mg Capsule
    doseQuantity object

    Stores the amount and its unit for the given medication, either doseQuantity or rateRatio will be present

    valuenumber
    Example: 30
    unitstring
    Example: tablet
    rateRatio object

    Stores the rate and its unit for the given medication, either doseQuantity or rateRatio will be present

    numerator object
    valuenumber
    Example: 30
    unitstring
    Example: tablet
    denominator object
    valuenumber
    Example: 30
    unitstring
    Example: tablet
    Element
    {
    "type": {
    "coding": [
    {
    "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
    "code": "ordered",
    "display": "Ordered"
    }
    ]
    },
    "doseQuantity": {
    "value": 30,
    "unit": "tablet"
    },
    "rateRatio": {
    "numerator": {
    "value": 30,
    "unit": "tablet"
    },
    "denominator": {
    "value": 30,
    "unit": "tablet"
    }
    }
    }