<StructureDefinition xmlns="http://hl7.org/fhir">
  <url value="https://fhir.nhs.uk/StructureDefinition/NHSDigital-Dosage" />
  <name value="NHSDigitalDosage" />
  <status value="draft" />
  <fhirVersion value="4.0.1" />
  <kind value="complex-type" />
  <abstract value="false" />
  <type value="Dosage" />
  <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Dosage" />
  <derivation value="constraint" />
  <differential>
    <element id="Dosage.sequence">
      <path value="Dosage.sequence" />
      <short value="Multi-sequence dosage instructions." />
      <definition value="A multi-sequence would be required where a dosage instruction changes over a given time schedule, where a dosage instruction includes optional follow-up doses or where a concurrent dosage instruction is required for the same medication at a different dose.&#xD;&#xA;&#xD;&#xA;Examples below include Prednisolone to treat Bell’s palsy where a dose starts at 60 mg per day for a period of time then reduces by 10 mg per day. This would be described as a sequential dosage instruction. A concurrent dosage example is provided to describe a different dose in the morning to that at midday.&#xD;&#xA;&#xD;&#xA;#### Sequential Instructions&#xD;&#xA;&#xD;&#xA;Where the value of sequence is an incremental integer it defines a sequential instruction.&#xD;&#xA;&#xD;&#xA;#### Concurrent Instructions&#xD;&#xA;&#xD;&#xA;Where the same integer value of sequence is defines it means a concurrent instruction." />
      <mustSupport value="true" />
    </element>
    <element id="Dosage.text">
      <path value="Dosage.text" />
      <short value="The complete dosage instruction as a human readable string." />
      <definition value="The complete dosage instruction as a human readable string.&#xD;&#xA;&#xD;&#xA;&lt;div class=&quot;nhsd-a-box nhsd-a-box--bg-light-blue nhsd-!t-margin-bottom-6 nhsd-t-body&quot;&gt;&#xD;&#xA;    &lt;strong&gt;Recommendation&lt;/strong&gt;: Use the &lt;a href='DosetoTextTranslation'&gt;translation algorithm&lt;/a&gt; published within this guide to create a string from the coded Dosage elements. It is planned for this translation algorithm to be available as an API.&#xD;&#xA;&lt;/div&gt;&#xD;&#xA;&#xD;&#xA;For example;&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;text value=&quot;1 tablet - every 6 hours - oral&quot; /&gt;&#xD;&#xA;```&#xD;&#xA;&#xD;&#xA;Where additional dosage instructions need to be conveyed that cannot be described using any other element of the Dosage structure, then append these to the end of the translated dosage text.&#xD;&#xA;&#xD;&#xA;For example, the instruction to `“infuse as rapidly as possibly via intraperitoneal port”` is not a coded term so cannot be shared as a `additionalInstruction`. It would neither be appropriate as a `patientInstruction` string.&#xD;&#xA;&#xD;&#xA;For example;&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;text value=&quot;{the dosage elements translated as text} - infuse as rapidly as possibly via intraperitoneal port&quot; /&gt;&#xD;&#xA;```&#xD;&#xA;&#xD;&#xA;For example, the instruction `“immediately following drug {X}”)`, where {X} is the name of a drug, is neither suitable as a `additionalInstruction` nor `patientInstruction`.&#xD;&#xA;&#xD;&#xA;For example;&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;text value=&quot;500 milligrams - once - oral - immediately following drug {X}&quot; /&gt;&#xD;&#xA;```" />
      <mustSupport value="true" />
    </element>
    <element id="Dosage.additionalInstruction">
      <path value="Dosage.additionalInstruction" />
      <short value="Additional dosage instructions that can be either SNOMED-CT coded terms or free-text instructions." />
      <definition value="Where suitable SNOMED-CT coded terms exist, use them instead of free-text instructions. See the SNOMED-CT hierarchy descendants of [419492006 Additional dosage instructions (qualifier value)](https://termbrowser.nhs.uk/?perspective=full&amp;conceptId1=419492006&amp;edition=uk-edition). These terms are also available from the example [FHIR valueset binding](http://hl7.org/fhir/stu3/valueset-additional-instruction-codes.html).&#xD;&#xA;&#xD;&#xA;&lt;div class=&quot;nhsd-a-box nhsd-a-box--bg-light-yellow nhsd-!t-margin-bottom-6 nhsd-t-body&quot;&gt;&#xD;&#xA;    &lt;strong&gt;Important:&lt;/strong&gt; Where no code exists, &lt;code&gt;additionalInstructions&lt;/code&gt; can be conveyed as free-text; however, if free-text is used rather than a SNOMED-CT coded term, the `MedicationRequest` cannot be computable, and requires human intervention in the case of conditional or contradictory instructions.&#xD;&#xA;&lt;/div&gt;&#xD;&#xA;&#xD;&#xA;**Coded instruction**&#xD;&#xA;```xml&#xD;&#xA;&lt;additionalInstruction&gt;&#xD;&#xA;    &lt;coding&gt; &#xD;&#xA;        &lt;system value=&quot;http://snomed.info/sct&quot;/&gt; &#xD;&#xA;        &lt;code value=&quot;419529008&quot;/&gt; &#xD;&#xA;        &lt;display value=&quot;Dissolved under the tongue &quot;/&gt; &#xD;&#xA;    &lt;/coding&gt;&#xD;&#xA;&lt;/additionalInstruction&gt;&#xD;&#xA;```&#xD;&#xA;&#xD;&#xA;**Multiple coded instructions**&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;additionalInstruction&gt;&#xD;&#xA;    &lt;coding&gt; &#xD;&#xA;        &lt;system value=&quot;http://snomed.info/sct&quot;/&gt; &#xD;&#xA;        &lt;code value=&quot;417995008&quot;/&gt; &#xD;&#xA;        &lt;display value=&quot;Dissolve or mix with water before taking&quot;/&gt; &#xD;&#xA;    &lt;/coding&gt;&#xD;&#xA;&lt;/additionalInstruction&gt;&#xD;&#xA;&lt;additionalInstruction&gt;&#xD;&#xA;    &lt;coding&gt; &#xD;&#xA;        &lt;system value=&quot;http://snomed.info/sct&quot;/&gt; &#xD;&#xA;        &lt;code value=&quot;417980006&quot;/&gt; &#xD;&#xA;        &lt;display value=&quot;Contains aspirin&quot;/&gt; &#xD;&#xA;    &lt;/coding&gt;&#xD;&#xA;&lt;/additionalInstruction&gt;&#xD;&#xA;```&#xD;&#xA;&#xD;&#xA;**Free-text instruction (try to avoid using free-text where possible)**&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;additionalInstruction&gt;&#xD;&#xA;    &lt;text value=&quot;with dialysis&quot;/&gt;&#xD;&#xA;&lt;/additionalInstruction&gt;&#xD;&#xA;```&#xD;&#xA;&#xD;&#xA;### `additionalInstruction` / `when` overlap&#xD;&#xA;&#xD;&#xA;&lt;div class=&quot;nhsd-a-box nhsd-a-box--bg-light-blue nhsd-!t-margin-bottom-6 nhsd-t-body&quot;&gt;&#xD;&#xA;    &lt;strong&gt;Note:&lt;/strong&gt; The value-sets for &lt;code&gt;Timing.when&lt;/code&gt; and &lt;code&gt;Dosage.additionalInstruction&lt;/code&gt; do contain some overlapping values.&#xD;&#xA;&lt;/div&gt;&#xD;&#xA;&#xD;&#xA;For example, they can both describe “with or after food”. &#xD;&#xA;&#xD;&#xA;In such cases, use `Timing.when` instead of a coded `Dosage.additionalInstruction`.&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;### continue / stop instructions&#xD;&#xA;&#xD;&#xA;There may be the need for a clinician to give explicit instructions to either stop or continue taking medication. This could be applicable for discharge medication where one medicine may be for short term pain relief and should be stopped after the prescribed quantity has been taken, while another medicine must be continued until further notice. &#xD;&#xA;&#xD;&#xA;The patient’s GP would be informed of this as part of the discharge letter but having these instructions explicitly coded provides a more robust solution.&#xD;&#xA;&#xD;&#xA;Three SNOMED-CT codes exist that can be used for this purpose.&#xD;&#xA;&#xD;&#xA;- “Then stop” (SNOMED concept identifier = [422327006](https://termbrowser.nhs.uk/?perspective=full&amp;conceptId1=422327006&amp;edition=uk-edition))&#xD;&#xA;- “Then discontinue” (SNOMED concept identifier = [421484000](https://termbrowser.nhs.uk/?perspective=full&amp;conceptId1=421484000&amp;edition=uk-edition))&#xD;&#xA;- “Do not stop taking this medicine except on your doctor’s advice” (SNOMED concept identifier = [419444006](https://termbrowser.nhs.uk/?perspective=full&amp;conceptId1=419444006&amp;edition=uk-edition))&#xD;&#xA;&#xD;&#xA;&lt;div class=&quot;nhsd-a-box nhsd-a-box--bg-light-blue nhsd-!t-margin-bottom-6 nhsd-t-body&quot;&gt;&#xD;&#xA;    &lt;strong&gt;Note:&lt;/strong&gt; It is recognised that such coded terms are akin to timing instructions so may be more logically containing within the various &lt;code&gt;Dosage.timing&lt;/code&gt; structures. These do not currently support coded concept terms. Implementation experience will provide evidence to support any future change to the underlying FHIR specification.&#xD;&#xA;&lt;/div&gt;&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;### as directed&#xD;&#xA;&#xD;&#xA;The use of a dosage instruction akin to “as directed” should be avoided wherever possible; however, if required then this can be SNOMED coded using [421769005 Follow directions (qualifier value)](https://termbrowser.nhs.uk/?perspective=full&amp;conceptId1=421769005&amp;edition=uk-edition) or conveyed as text as a patient instruction.&#xD;&#xA;&#xD;&#xA;---" />
      <mustSupport value="true" />
    </element>
    <element id="Dosage.patientInstruction">
      <path value="Dosage.patientInstruction" />
      <definition value="Free-text instructions for the patient. Patient instructions can only be defined as one text string per dosage instruction. &#xD;&#xA;&#xD;&#xA;&lt;div class=&quot;nhsd-a-box nhsd-a-box--bg-light-blue nhsd-!t-margin-bottom-6 nhsd-t-body&quot;&gt;&#xD;&#xA;    &lt;strong&gt;Note:&lt;/strong&gt;&#xD;&#xA;This field is not intended to provide instructions for a medication dispensing label.&#xD;&#xA;&lt;/div&gt;&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;patientInstruction value=&quot;Some relevant instructions for the patient&quot;/&gt;&#xD;&#xA;```" />
      <mustSupport value="true" />
    </element>
    <element id="Dosage.timing">
      <path value="Dosage.timing" />
      <definition value="Adding constraints, bounds or limits to a dosage instruction." />
      <mustSupport value="true" />
    </element>
    <element id="Dosage.timing.repeat.bounds[x]">
      <path value="Dosage.timing.repeat.bounds[x]" />
      <type>
        <code value="Duration" />
      </type>
      <type>
        <code value="Range" />
        <profile value="https://fhir.nhs.uk.uk/StructureDefinition/NHSDigital-Range" />
      </type>
      <type>
        <code value="Period" />
      </type>
    </element>
    <element id="Dosage.asNeeded[x]">
      <path value="Dosage.asNeeded[x]" />
      <definition value="The `asNeeded` structure can be used to define a simple “as required” (or “pro re nata” expressed as “PRN” for those who still prefer to use Latin abbreviations) instructions. &#xD;&#xA;&#xD;&#xA;In this case use the `asNeededBoolean` option. The absence of `asNeededBoolean` is equivalent to where `asNeededBoolean` has a value of `false`.&#xD;&#xA;&#xD;&#xA;The `asNeededCodeableConcept` option is used to bound the dosage instruction to a coded term. Any number of coded terms can be used from the SNOMED-CT hierarchy as a descendant of [404684003 Clinical Finding (finding)](https://termbrowser.nhs.uk/?perspective=full&amp;conceptId1=404684003&amp;edition=uk-edition). An extensive medication-as-needed-reason value-set is defined within FHIR which is a subset of the SNOMED-CT clinical findings hierarchy." />
      <mustSupport value="true" />
    </element>
    <element id="Dosage.site">
      <path value="Dosage.site" />
      <definition value="Any `site` can be used from the SNOMED-CT hierarchy as a descendant of the concept [123037004 Body structure (body structure)](https://termbrowser.nhs.uk/?perspective=full&amp;conceptId1=123037004&amp;edition=uk-edition).&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;!-- Site --&gt;&#xD;&#xA;&lt;site&gt;&#xD;&#xA;    &lt;coding&gt;&#xD;&#xA;        &lt;system value=&quot;http://snomed.info/sct&quot;/&gt;&#xD;&#xA;        &lt;code value=&quot;59380008&quot;/&gt;&#xD;&#xA;        &lt;display value=&quot;Anterior abdominal wall structure&quot;/&gt;&#xD;&#xA;    &lt;/coding&gt;&#xD;&#xA;&lt;/site&gt;&#xD;&#xA;```" />
      <mustSupport value="true" />
    </element>
    <element id="Dosage.route">
      <path value="Dosage.route" />
      <definition value="Any `route` can be used from the SNOMED-CT hierarchy as a descendant of the concept [284009009 Route of administration value (qualifier value)](https://termbrowser.nhs.uk/?perspective=full&amp;conceptId1=284009009&amp;edition=uk-edition).&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;!-- Route --&gt;&#xD;&#xA;&lt;route&gt;&#xD;&#xA;    &lt;coding&gt;&#xD;&#xA;        &lt;system value=&quot;http://snomed.info/sct&quot;/&gt;&#xD;&#xA;        &lt;code value=&quot;78421000&quot;/&gt;&#xD;&#xA;        &lt;display value=&quot;intramuscular route&quot;/&gt;&#xD;&#xA;    &lt;/coding&gt;&#xD;&#xA;&lt;/route&gt;&#xD;&#xA;```" />
      <mustSupport value="true" />
    </element>
    <element id="Dosage.method">
      <path value="Dosage.method" />
      <definition value="The [999000041000001103 ePrescribing method simple reference set (foundation metadata concept)](https://termbrowser.nhs.uk/?perspective=full&amp;conceptId1=999000041000001103&amp;edition=uk-edition) reference set collates the commonly used terms for `method` for use in the United Kingdom.&#xD;&#xA;&#xD;&#xA;Whilst a [FHIR value-set for method](http://hl7.org/fhir/valueset-administration-method-codes.html) does exist, together with two separate hierarchies within SNOMED-CT ([Dose form administration method](https://termbrowser.nhs.uk/?perspective=full&amp;conceptId1=736665006&amp;edition=uk-edition) and [Dosing instruction fragment](https://termbrowser.nhs.uk/?perspective=full&amp;conceptId1=422096002&amp;edition=uk-edition)), it is recommended to use the ePrescribing reference set in the first instance.&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;!-- Method --&gt;&#xD;&#xA;&lt;method&gt;&#xD;&#xA;    &lt;coding&gt;&#xD;&#xA;        &lt;system value=&quot;http://snomed.info/sct&quot;/&gt;&#xD;&#xA;        &lt;code value=&quot;129326001&quot;/&gt;&#xD;&#xA;        &lt;display value=&quot;Injection&quot;/&gt;&#xD;&#xA;    &lt;/coding&gt;&#xD;&#xA;&lt;/method&gt;&#xD;&#xA;```&#xD;&#xA;&#xD;&#xA;### Use of synonyms&#xD;&#xA;&#xD;&#xA;In most instances it is anticipated that the UK Preferred term should be the term applied to SNOMED CT concepts However for some cases, for example the anatomically correct SNOMED-CT term may not be easily understood by the patient or clinician, the use of a synonym may be preferred. &#xD;&#xA;&#xD;&#xA;Guidance for using terms that are not preferred terms is available within the published document [Guidance on the use of CodeableConcept.](https://developer.nhs.uk/apis/gpconnect-1-2-0/pages/accessrecord_structured/guidance-on-the-population-of-codeableconcept.pdf)" />
      <mustSupport value="true" />
    </element>
    <element id="Dosage.doseAndRate">
      <path value="Dosage.doseAndRate" />
      <definition value="Dose and Rate elements within the Dosage structure have been combined within the R4 standard, but their underlying use and purpose is the same as per R4.&#xD;&#xA;&#xD;&#xA;A dose or rate of medication can be described via one of the following methods. In both instances when considering Units of Measure note that UCUM is preferred.&#xD;&#xA;&#xD;&#xA;### Sub-element: `Dosage.doseAndRate.doseQuantity`&#xD;&#xA;&#xD;&#xA;The amount of medication per dose, as a [simple coded quantity](http://hl7.org/fhir/datatypes.html#SimpleQuantity).&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;!-- Example A: 1 capsule --&gt;&#xD;&#xA;&lt;doseAndRate&gt;&#xD;&#xA;    &lt;doseQuantity&gt;&#xD;&#xA;        &lt;value value=&quot;1&quot;/&gt;&#xD;&#xA;        &lt;unit value=&quot;capsule&quot;/&gt;&#xD;&#xA;        &lt;system value=&quot;http://snomed.info/sct&quot;/&gt;&#xD;&#xA;        &lt;code value=&quot;732937005&quot;/&gt;&#xD;&#xA;    &lt;/doseQuantity&gt;&#xD;&#xA;&lt;/doseAndRate&gt;&#xD;&#xA;&#xD;&#xA;&lt;!-- Example B: 30 milligrams --&gt;&#xD;&#xA;&lt;doseAndRate&gt;&#xD;&#xA;    &lt;doseQuantity&gt;&#xD;&#xA;        &lt;value value=&quot;30&quot;/&gt;&#xD;&#xA;        &lt;unit value=&quot;milligram&quot;/&gt;&#xD;&#xA;        &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA;        &lt;code value=&quot;mg&quot;/&gt;&#xD;&#xA;    &lt;/doseQuantity&gt;&#xD;&#xA;&lt;/doseAndRate&gt;&#xD;&#xA;```&#xD;&#xA;&#xD;&#xA;### Sub-element: `Dosage.doseAndRate.doseRange`&#xD;&#xA;&#xD;&#xA;A dose that may be in a given low / high range.&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;!-- for a dose between 7.5 to 30 milligram --&gt;&#xD;&#xA;&lt;doseAndRate&gt;&#xD;&#xA;    &lt;doseRange&gt;&#xD;&#xA;        &lt;low&gt;&#xD;&#xA;            &lt;value value=&quot;7.5&quot;/&gt;&#xD;&#xA;            &lt;unit value=&quot;milligram&quot;/&gt;&#xD;&#xA;            &lt;code value=&quot;mg&quot;/&gt;&#xD;&#xA;            &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA;        &lt;/low&gt;&#xD;&#xA;        &lt;high&gt;&#xD;&#xA;            &lt;value value=&quot;30&quot;/&gt;&#xD;&#xA;            &lt;unit value=&quot;milligram&quot;/&gt;&#xD;&#xA;            &lt;code value=&quot;mg&quot;/&gt;&#xD;&#xA;            &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA;        &lt;/high&gt;&#xD;&#xA;    &lt;/doseRange&gt;&#xD;&#xA;&lt;/doseAndRate&gt;&#xD;&#xA;```&#xD;&#xA;&#xD;&#xA;A rate-based quantity, such as _30 ml per hour_, can be expressed as a `rateRatio` with coded numerator and denominator values.&#xD;&#xA;&#xD;&#xA;Where the unit of measure for the ratio is defined within UCUM (see [Common UCUM Units](https://www.hl7.org/fhir/valueset-UCUM-common.xml)), for example, “milliliter per hour”, it can also be expressed using the simpler `rateQuantity` structure.&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;### Sub-element: `Dosage.doseAndRate.rateRatio`&#xD;&#xA;&#xD;&#xA;Where the rate is expressed as coded numerator and denominator values.&#xD;&#xA;&#xD;&#xA;**at a rate of 30ml/hour using rateRatio**&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;doseAndRate&gt;&#xD;&#xA; &lt;rateRatio&gt;&#xD;&#xA;  &lt;numerator&gt;&#xD;&#xA;   &lt;value value=&quot;30&quot;/&gt;&#xD;&#xA;   &lt;unit value=&quot;millilitre&quot;/&gt;&#xD;&#xA;   &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA;   &lt;code value=&quot;mL&quot;/&gt;&#xD;&#xA;  &lt;/numerator&gt;&#xD;&#xA;  &lt;denominator&gt;&#xD;&#xA;   &lt;value value=&quot;1&quot;/&gt;&#xD;&#xA;   &lt;unit value=&quot;hour&quot;/&gt;&#xD;&#xA;   &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA;   &lt;code value=&quot;h&quot;/&gt;&#xD;&#xA;  &lt;/denominator&gt;&#xD;&#xA; &lt;/rateRatio&gt;&#xD;&#xA;&lt;/doseAndRate&gt;&#xD;&#xA;```&#xD;&#xA;&#xD;&#xA;### Sub-element: `Dosage.doseAndRate.rateQuantity`&#xD;&#xA;Where the unit of measure applicable to a rate is defined within UCUM which is mathematically equivalent to defining the rate using the more complex `rateRatio` structure.&#xD;&#xA;&#xD;&#xA;**at a rate of 30ml/hour using rateQuantity**&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;rateQuantity&gt;&#xD;&#xA; &lt;value value=&quot;30&quot;/&gt;&#xD;&#xA; &lt;unit value=&quot;milliliters per hour&quot;/&gt;&#xD;&#xA; &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA; &lt;code value=&quot;mL/h&quot;/&gt;&#xD;&#xA;&lt;/rateQuantity&gt;&#xD;&#xA;```&#xD;&#xA;&#xD;&#xA;**at a rate of 1mcg/kg/hour using rateQuantity**&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;doseAndRate&gt;&#xD;&#xA; &lt;rateQuantity&gt;&#xD;&#xA;  &lt;value value=&quot;1&quot;/&gt;&#xD;&#xA;  &lt;unit value=&quot;microgram per kilogram per hour&quot;/&gt;&#xD;&#xA;  &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA;  &lt;code value=&quot;ug/kg/h&quot;/&gt;&#xD;&#xA; &lt;/rateQuantity&gt;&#xD;&#xA;&lt;/doseAndRate&gt;&#xD;&#xA;```&#xD;&#xA;&#xD;&#xA;### Sub-element: `Dosage.doseAndRate.rateRange`&#xD;&#xA;&#xD;&#xA;Where the unit of measure applicable to a rate range is defined within UCUM the `rateRange` structure can be used.&#xD;&#xA;&#xD;&#xA;**give at 1-2 litres per minute using rateRange**&#xD;&#xA;```xml&#xD;&#xA;&lt;doseAndRate&gt;&#xD;&#xA; &lt;rateRange&gt;&#xD;&#xA;  &lt;low&gt;&#xD;&#xA;   &lt;value value=&quot;1&quot;/&gt;&#xD;&#xA;   &lt;unit value=&quot;liter per minute&quot;/&gt;&#xD;&#xA;   &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA;   &lt;code value=&quot;L/min&quot;/&gt;&#xD;&#xA;  &lt;/low&gt;&#xD;&#xA;  &lt;high&gt;&#xD;&#xA;   &lt;value value=&quot;2&quot;/&gt;&#xD;&#xA;   &lt;unit value=&quot;liter per minute&quot;/&gt;&#xD;&#xA;   &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA;   &lt;code value=&quot;L/min&quot;/&gt;&#xD;&#xA;  &lt;/high&gt;&#xD;&#xA; &lt;/rateRange&gt;&#xD;&#xA;&lt;/doseAndRate&gt;&#xD;&#xA;```" />
    </element>
    <element id="Dosage.doseAndRate.dose[x]">
      <path value="Dosage.doseAndRate.dose[x]" />
      <type>
        <code value="Range" />
        <profile value="https://fhir.nhs.uk.uk/StructureDefinition/NHSDigital-Range" />
      </type>
      <type>
        <code value="Quantity" />
      </type>
    </element>
    <element id="Dosage.maxDosePerPeriod">
      <path value="Dosage.maxDosePerPeriod" />
      <definition value="&lt;div class=&quot;nhsd-a-box nhsd-a-box--bg-light-blue nhsd-!t-margin-bottom-6 nhsd-t-body&quot;&gt;&#xD;&#xA;    Used to define a maxiumum dose over a given time period.&#xD;&#xA;&lt;/div&gt;&#xD;&#xA;&#xD;&#xA;An example would be a Sumatriptan 6mg injection which can be repeated after an hour but not again over a 24 hour period. The `maxDosePerPeriod` is defined as 12mg/24hours.&#xD;&#xA;&#xD;&#xA;The `maxDosePerPeriod` is defined for each dosage instruction. For a multi-sequence instruction it would therefore be possible to define different maximum dosing periods within different sequences of the complete instruction.&#xD;&#xA;&#xD;&#xA;&lt;div class=&quot;nhsd-a-box nhsd-a-box--bg-light-yellow nhsd-!t-margin-bottom-6 nhsd-t-body&quot;&gt;&#xD;&#xA;    A real-world example of where this would be required has not yet been identified.&#xD;&#xA;&lt;/div&gt;&#xD;&#xA;&#xD;&#xA;**Maximum dose per period of 12mg/24 hour**&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;maxDosePerPeriod&gt;&#xD;&#xA;    &lt;numerator&gt;&#xD;&#xA;        &lt;value value=&quot;12&quot;/&gt;&#xD;&#xA;        &lt;unit value=&quot;milligram&quot;/&gt;&#xD;&#xA;        &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA;        &lt;code value=&quot;mg&quot;/&gt;&#xD;&#xA;    &lt;/numerator&gt;&#xD;&#xA;    &lt;denominator&gt;&#xD;&#xA;        &lt;value value=&quot;24&quot;/&gt;&#xD;&#xA;        &lt;unit value=&quot;hour&quot;/&gt;&#xD;&#xA;        &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA;        &lt;code value=&quot;h&quot;/&gt;&#xD;&#xA;    &lt;/denominator&gt;&#xD;&#xA;&lt;/maxDosePerPeriod&gt;&#xD;&#xA;```" />
      <mustSupport value="true" />
    </element>
    <element id="Dosage.maxDosePerAdministration">
      <path value="Dosage.maxDosePerAdministration" />
      <definition value="&lt;div class=&quot;nhsd-a-box nhsd-a-box--bg-light-blue nhsd-!t-margin-bottom-6 nhsd-t-body&quot;&gt;&#xD;&#xA;    Used to define a maximum dose for a single administration.&#xD;&#xA;&lt;/div&gt;&#xD;&#xA;&#xD;&#xA;An example would be Anagrelide for which a single dose should not exceed 2.5 mg. The `maxDosePerAdministration` is defined as 2.5mg.&#xD;&#xA;&#xD;&#xA;In many scenarios it is expected that the `dosage.doseRange` would be used instead of `maxDosePerAdministration`.&#xD;&#xA;&#xD;&#xA;The `maxDosePerAdministration` is defined for each dosage instruction. For a multi-sequence instruction it would therefore be possible to define different maximum dose administrations within different sequences of the complete instruction. &#xD;&#xA;&#xD;&#xA;&lt;div class=&quot;nhsd-a-box nhsd-a-box--bg-light-yellow nhsd-!t-margin-bottom-6 nhsd-t-body&quot;&gt;&#xD;&#xA;    A real-world example of where this would be required has not yet been identified.&#xD;&#xA;&lt;/div&gt;&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;**Maximum dose per administration of 2.5mg**&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;maxDosePerAdministration&gt;&#xD;&#xA;    &lt;value value=&quot;2.5&quot;/&gt;&#xD;&#xA;    &lt;unit value=&quot;milligram&quot;/&gt;&#xD;&#xA;    &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA;    &lt;code value=&quot;mg&quot;/&gt;&#xD;&#xA;&lt;/maxDosePerAdministration&gt;&#xD;&#xA;```" />
    </element>
    <element id="Dosage.maxDosePerLifetime">
      <path value="Dosage.maxDosePerLifetime" />
      <definition value="&lt;div class=&quot;callout-box--info&quot;&gt;&#xD;&#xA;    Used to define the maximum cumulative dose over the lifetime of a patient.&#xD;&#xA;&lt;/div&gt;&#xD;&#xA;&#xD;&#xA;An example would be Daunorubicin which may have a maximum cumulative dose of 600mg/m2 (based on the size of the patient). The `maxDosePerLifetime` is defined as 600 mg/m2.&#xD;&#xA;&#xD;&#xA;The `maxDosePerLifetime` can be defined for each dosage instruction; which, for a multi-sequence instruction is illogical, as any `maxDosePerLifetime` is equally applicable to all dosage sequence that relate to the single medication coded concept.&#xD;&#xA;&#xD;&#xA;&lt;div class=&quot;nhsd-a-box nhsd-a-box--bg-light-yellow nhsd-!t-margin-bottom-6 nhsd-t-body&quot;&gt;&#xD;&#xA;    &lt;strong&gt;Note:&lt;/strong&gt; If a &lt;code&gt;maxDosePerLifetime&lt;/code&gt; statement is required with a multi-sequence instruction, it is recommended to define it within the last / final sequence to ensure that the information is presented at the end of a the complete instruction, rather than th middle which could be overlooked.&#xD;&#xA;&lt;/div&gt;&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;**Maximum dose over lifetime of the patient of 600 mg/m2**&#xD;&#xA;&#xD;&#xA;```xml&#xD;&#xA;&lt;maxDosePerLifetime&gt;&#xD;&#xA;    &lt;value value=&quot;600&quot;/&gt;&#xD;&#xA;    &lt;unit value=&quot;milligram per square metre&quot;/&gt;&#xD;&#xA;    &lt;system value=&quot;http://unitsofmeasure.org&quot;/&gt;&#xD;&#xA;    &lt;code value=&quot;mg/m2&quot;/&gt;&#xD;&#xA;&lt;/maxDosePerLifetime&gt;&#xD;&#xA;```" />
    </element>
  </differential>
</StructureDefinition>