FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example MedicinalProductDefinition/drug-and-device-complete (Turtle)

Biomedical Research and Regulation Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: No defined compartments

Raw Turtle (+ also see Turtle/RDF Format Specification)

A powder and solution for injection that comes with a syringe in the pack (complete example)

@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

[a fhir:MedicinalProductDefinition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "drug-and-device-complete"] ; # 
  fhir:contained ( [
     a fhir:PackagedProductDefinition ;
     fhir:id [ fhir:v "package" ] ;
     fhir:packageFor ( [
       fhir:reference [ fhir:v "#" ]
     ] ) ;
     fhir:packaging [
       fhir:packaging ( [
         fhir:type [
           fhir:coding ( [
             fhir:code [ fhir:v "cardboard box (outer)" ]
           ] )
         ] ;
         fhir:packaging ( [
           fhir:type [
             fhir:coding ( [
               fhir:code [ fhir:v "cardboard box (inner)" ]
             ] )
           ] ;
           fhir:packaging ( [
             fhir:type [
               fhir:coding ( [
                 fhir:code [ fhir:v "sachet" ]
               ] )
             ] ;
             fhir:containedItem ( [
               fhir:item [
                 fhir:reference [
                   fhir:reference [ fhir:v "#powderItem" ]
                 ]
               ] ;
               fhir:amount [
                 fhir:value [ fhir:v "5"^^xsd:decimal ] ;
                 fhir:unit [ fhir:v "g" ] ;
                 fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
                 fhir:code [ fhir:v "g" ]
               ]
             ] )
           ] [
             fhir:type [
               fhir:coding ( [
                 fhir:code [ fhir:v "bottle" ]
               ] )
             ] ;
             fhir:containedItem ( [
               fhir:item [
                 fhir:reference [
                   fhir:reference [ fhir:v "#solventItem" ]
                 ]
               ] ;
               fhir:amount [
                 fhir:value [ fhir:v "20"^^xsd:decimal ] ;
                 fhir:unit [ fhir:v "ml" ] ;
                 fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
                 fhir:code [ fhir:v "mL" ]
               ]
             ] )
           ] )
         ] [
           fhir:type [
             fhir:coding ( [
               fhir:code [ fhir:v "foil bag" ]
             ] )
           ] ;
           fhir:containedItem ( [
             fhir:item [
               fhir:reference [
                 fhir:reference [ fhir:v "#syringeDevice" ]
               ]
             ] ;
             fhir:amount [
               fhir:value [ fhir:v "1"^^xsd:decimal ]
             ]
           ] )
         ] )
       ] )
     ]
  ] [
     a fhir:ManufacturedItemDefinition ;
     fhir:id [ fhir:v "solventItem" ] ;
     fhir:status [ fhir:v "active" ] ;
     fhir:manufacturedDoseForm [
       fhir:coding ( [
         fhir:system [ fhir:v "http://example.org.uk/fhir/doseform"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "solvent for powder for injection" ]
       ] )
     ]
  ] [
     a fhir:ManufacturedItemDefinition ;
     fhir:id [ fhir:v "powderItem" ] ;
     fhir:status [ fhir:v "active" ] ;
     fhir:manufacturedDoseForm [
       fhir:coding ( [
         fhir:system [ fhir:v "http://example.org.uk/fhir/doseform"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "powder for solution for injection" ]
       ] )
     ]
  ] [
     a fhir:DeviceDefinition ;
     fhir:id [ fhir:v "syringeDevice" ] ;
     fhir:classification ( [
       fhir:type [
         fhir:text [ fhir:v "syringe" ]
       ]
     ] )
  ] [
     a fhir:AdministrableProductDefinition ;
     fhir:id [ fhir:v "administrable-form" ] ;
     fhir:status [ fhir:v "active" ] ;
     fhir:formOf ( [
       fhir:reference [ fhir:v "#" ]
     ] ) ;
     fhir:administrableDoseForm [
       fhir:coding ( [
         fhir:code [ fhir:v "solution for injection" ]
       ] )
     ] ;
     fhir:producedFrom ( [
       fhir:reference [ fhir:v "#powderItem" ]
     ] [
       fhir:reference [ fhir:v "#solventItem" ]
     ] ) ;
     fhir:routeOfAdministration ( [
       fhir:code [
         fhir:coding ( [
           fhir:system [ fhir:v "http://example.org.uk/fhir/route"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "intramuscular" ]
         ] )
       ]
     ] )
  ] ) ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://example.org.uk/fhir/product"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "Wonderdrug+" ]
  ] ) ; # 
  fhir:combinedPharmaceuticalDoseForm [
     fhir:coding ( [
       fhir:system [ fhir:v "http://example.org.uk/fhir/doseform"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "Powder and solution for injection with itegral syringe" ]
     ] )
  ] ; # 
  fhir:name ( [
     fhir:productName [ fhir:v "Wonderdrug liquid 20ml (integral syringe)" ]
  ] )] . # 

# -------------------------------------------------------------------------------------


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.