Release 5 Preview #3

This page is part of the FHIR Specification (v4.5.0: R5 Preview #3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B

Medicinalproductdefinition-example-co-packaged-liquid-and-syringe.xml

Biomedical Research and Regulation Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Not linked to any defined compartments

Raw XML (canonical form + also see XML Format Specification)

Jump past Narrative

A liquid that comes with a syringe in the pack, basic details only (id = "drug-and-device")

<?xml version="1.0" encoding="UTF-8"?>

<MedicinalProductDefinition xmlns="http://hl7.org/fhir">
  <id value="drug-and-device"/> 
  <text> <status value="generated"/> <div xmlns="http://www.w3.org/1999/xhtml"><p> <b> Generated Narrative</b> </p> <p> <b> id</b> : drug-and-device</p> <p> <b> identifier</b> : id: Wonderdrug+</p> <p> <b> combinedPharmaceuticalDoseForm</b> : <span> solution for injection</span> </p> <p> <b> packagedMedicinalProduct</b> : <a>  </a> </p> <blockquote> <p> <b> id</b> : package</p> <blockquote> <p> <b> package</b> </p> <blockquote> <p> <b> containedItem</b> </p> <p> <b> item</b> : <a> #liquidItem</a> </p> <p> <b> amount</b> : 20 ml</p> </blockquote> <blockquote> <p> <b> containedItem</b> </p> <p> <b> item</b> : <a> #syringeDevice</a> </p> </blockquote> </blockquote> </blockquote> <h3> Names</h3> <table> <tr> <td> -</td> <td> <b> ProductName</b> </td> </tr> <tr> <td> *</td> <td> Wonderdrug+ liquid 20ml</td> </tr> </table> </div> </text> <contained> 
    <PackagedProductDefinition> 
      <id value="package"/> 
      <package> 
        <!--    can be more details of the package here, but not necessary for this use case    -->
        <containedItem> 
          <item> 
            <reference value="#liquidItem"/> 
          </item> 
          <amountQuantity> 
            <value value="20"/> 
            <unit value="ml"/> 
          </amountQuantity> 
        </containedItem> 
        <containedItem> 
          <item> 
            <reference value="#syringeDevice"/> 
          </item> 
        </containedItem> 
      </package> 
    </PackagedProductDefinition> 
  </contained> 
  <contained> 
    <DeviceDefinition> 
      <id value="syringeDevice"/> 
      <type> 
        <text value="syringe"/> 
      </type> 
      <!--    Schema appears to be broken, deviceName is not present in XSD    -->
      <!--   deviceName>
        <name value="WonderSyringe"/>
        <type value="manufacturer-name"/>
      </deviceName   -->
    </DeviceDefinition> 
  </contained> 
  <contained> 
    <ManufacturedItemDefinition> 
      <id value="liquidItem"/> 
      <manufacturedDoseForm> 
        <coding> 
          <system value="http://example.org.uk/fhir/doseform"/> 
          <code value="solution for injection"/> 
        </coding> 
      </manufacturedDoseForm> 
      <ingredient> 
        <reference value="#ingredient"/> 
      </ingredient> 
    </ManufacturedItemDefinition> 
  </contained> 
  <contained> 
    <Ingredient> 
      <id value="ingredient"/> 
      <role> 
        <coding> 
          <system value="http://example.org.uk/fhir/ingredientRole"/> 
          <code value="active"/> 
        </coding> 
      </role> 
      <substance> 
        <codeCodeableConcept> 
          <coding> 
            <system value="http://example.org.uk/fhir/ingredients"/>  <!--    SNOMED perhaps    -->
            <code value="12345"/> 
            <display value="Wondersubstance BP"/> 
          </coding> 
        </codeCodeableConcept> 
        <!--    can be strength here but not necessary for this use case    -->
      </substance> 
    </Ingredient> 
  </contained> 
  <identifier> 
    <system value="http://example.org.uk/fhir/product"/> 
    <value value="Wonderdrug+"/> 
  </identifier> 
  <combinedPharmaceuticalDoseForm> 
    <coding> 
      <system value="http://example.org.uk/fhir/doseform"/> 
      <code value="solution for injection"/> 
    </coding> 
  </combinedPharmaceuticalDoseForm> 
  <packagedMedicinalProduct> 
    <reference value="#package"/> 
  </packagedMedicinalProduct> 
  <name> 
    <productName value="Wonderdrug+ liquid 20ml"/> 
  </name> 
</MedicinalProductDefinition> 

Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.