Release 5 FHIR CI-Build

This page is part of the Continuous Integration Build of FHIR Specification (v5.0.0: R5 - STU ). This is the current published version in it's permanent home (it will always (will be available incorrect/inconsistent at this URL). For a full list of available versions, see times).
See the Directory of published versions . Page versions: R5 R4B

Example Ingredient/example (Turtle)

Maturity Level : N/A
Responsible Owner: Biomedical Research and Regulation Work Group Standards Status : Informative Compartments : No defined compartments

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

General example of an active ingredient, with presentation, concentration and reference strength

@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

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

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

[a fhir:Ingredient ;

<http://hl7.org/fhir/Ingredient/example> a fhir:Ingredient ;

  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Ingredient</b><a name=\"example\"> </a></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource Ingredient &quot;example&quot; </p></div><p><b>status</b>: <span title=\"  note this doesn't indicate an &quot;active ingredient&quot; as opposed to an excipient (for which see ingredient.role)  \">active</span></p><p><b>role</b>: ActiveBase <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (ingredientRole#ActiveBase)</span></p><h3>Manufacturers</h3><table class=\"grid\"><tr><td>-</td><td><b>Manufacturer</b></td></tr><tr><td>*</td><td><a href=\"broken-link.html\">Organization/example</a></td></tr></table><blockquote><p><b>substance</b></p><h3>Codes</h3><table class=\"grid\"><tr><td>-</td><td><b>Concept</b></td></tr><tr><td>*</td><td>EQUIXABAN <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (substance#EQUIXABAN)</span></td></tr></table><blockquote><p><b>strength</b></p><p><b>presentation</b>: <span title=\"  a single strength is commonly expressed in two ways: \n				 presentation - per item (e.g. per tablet), \n				 and concentration - per unit of measure (usually with a unitary demoninator)  &amp;#10;  these are not different strengths - and have the same real value - but are different ways of expressing the same single strength  &amp;#10;  presentation is meant for humans/consumers, concentration is meant for calculations/experts  \">50 mg<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code mg = 'mg')</span>/1 tablet<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code {tablet} = '{tablet}')</span></span></p><p><b>concentration</b>: 5 mg<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code mg = 'mg')</span>/1 mg<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code mg = 'mg')</span></p><blockquote><p><b>referenceStrength</b></p><h3>Substances</h3><table class=\"grid\"><tr><td>-</td><td><b>Concept</b></td></tr><tr><td>*</td><td>EQUIXABAN-SULPHATE <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (substance#EQUIXABAN-SULPHATE)</span></td></tr></table><p><b>strength</b>: 5.03 mg<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code mg = 'mg')</span>/1 mg<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code mg = 'mg')</span></p></blockquote></blockquote></blockquote></div>"
  ] ; #    note this doesn't indicate an "active ingredient" as opposed to an excipient (for which see ingredient.role)   
  fhir:status [ fhir:v "active"] ; # 

  fhir:status [ fhir:v "active"] ; #   note this doesn't indicate an "active ingredient" as opposed to an excipient (for which see ingredient.role)  

  fhir:role [
     fhir:coding ( [
       fhir:system [ fhir:v "http://ema.europa.eu/example/ingredientRole"^^xsd:anyURI ] ;

       fhir:system [
         fhir:v "http://ema.europa.eu/example/ingredientRole"^^xsd:anyURI ;
         fhir:l <http://ema.europa.eu/example/ingredientRole>
       ] ;

       fhir:code [ fhir:v "ActiveBase" ]
     ] )
  ] ; # 
  fhir:manufacturer ( [
     fhir:manufacturer [
       fhir:l <http://hl7.org/fhir/Organization/example> ;

       fhir:reference [ fhir:v "Organization/example" ]
     ]
  ] ) ; # 
  fhir:substance [
     fhir:code [
       fhir:concept [
         fhir:coding ( [
           fhir:system [ fhir:v "http://ema.europa.eu/example/substance"^^xsd:anyURI ] ;

           fhir:system [
             fhir:v "http://ema.europa.eu/example/substance"^^xsd:anyURI ;
             fhir:l <http://ema.europa.eu/example/substance>
           ] ;

           fhir:code [ fhir:v "EQUIXABAN" ]
         ] )
       ]
     ] ;
     fhir:strength ( [
       fhir:presentation [
         a fhir:Ratio ;
         fhir:numerator [
           fhir:value [ fhir:v "50"^^xsd:decimal ] ;
           fhir:unit [ fhir:v "mg" ] ;
           fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;

           fhir:system [
             fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
             fhir:l <http://unitsofmeasure.org>
           ] ;

           fhir:code [ fhir:v "mg" ]
         ] ;
         fhir:denominator [
           fhir:value [ fhir:v "1"^^xsd:decimal ] ;
           fhir:unit [ fhir:v "tablet" ] ;
           fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;

           fhir:system [
             fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
             fhir:l <http://unitsofmeasure.org>
           ] ;

           fhir:code [ fhir:v "{tablet}" ]
         ]
       ] ; #    a single strength is commonly expressed in two ways: \n				 presentation - per item (e.g. per tablet), \n				 and concentration - per unit of measure (usually with a unitary demoninator)   ,    these are not different strengths - and have the same real value - but are different ways of expressing the same single strength   ,    presentation is meant for humans\/consumers, concentration is meant for calculations\/experts   

       ] ; #   a single strength is commonly expressed in two ways: \n				 presentation - per item (e.g. per tablet), \n				 and concentration - per unit of measure (usually with a unitary demoninator)  ,   these are not different strengths - and have the same real value - but are different ways of expressing the same single strength  ,   presentation is meant for humans\/consumers, concentration is meant for calculations\/experts  

       fhir:concentration [
         a fhir:Ratio ;
         fhir:numerator [
           fhir:value [ fhir:v "5"^^xsd:decimal ] ;

           fhir:value [ fhir:v 0.5 ] ;

           fhir:unit [ fhir:v "mg" ] ;
           fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;

           fhir:system [
             fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
             fhir:l <http://unitsofmeasure.org>
           ] ;

           fhir:code [ fhir:v "mg" ]
         ] ; #    5mg\/1mg (which means - because the presentation is 50mg\/tablet - it must be a 10mg tablet)   

         ] ; #   5mg\/1mg (which means - because the presentation is 50mg\/tablet - it must be a 10mg tablet)  

         fhir:denominator [
           fhir:value [ fhir:v "1"^^xsd:decimal ] ; #    since this is for caculations, this is normally \"1\", a unitary ratio   

           fhir:value [ fhir:v "1"^^xsd:decimal ] ; #   since this is for calculations, this is normally \"1\", a unitary ratio  

           fhir:unit [ fhir:v "mg" ] ;
           fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;

           fhir:system [
             fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
             fhir:l <http://unitsofmeasure.org>
           ] ;

           fhir:code [ fhir:v "mg" ]
         ]
       ] ;
       fhir:referenceStrength ( [
         fhir:substance [
           fhir:concept [
             fhir:coding ( [
               fhir:system [ fhir:v "http://ema.europa.eu/example/substance"^^xsd:anyURI ] ;

               fhir:system [
                 fhir:v "http://ema.europa.eu/example/substance"^^xsd:anyURI ;
                 fhir:l <http://ema.europa.eu/example/substance>
               ] ;

               fhir:code [ fhir:v "EQUIXABAN-SULPHATE" ]
             ] )
           ]
         ] ;
         fhir:strength [
           a fhir:Ratio ;
           fhir:numerator [
             fhir:value [ fhir:v "5.03"^^xsd:decimal ] ;

             fhir:value [ fhir:v 0.503 ] ;

             fhir:unit [ fhir:v "mg" ] ;
             fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;

             fhir:system [
               fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
               fhir:l <http://unitsofmeasure.org>
             ] ;

             fhir:code [ fhir:v "mg" ]
           ] ;
           fhir:denominator [
             fhir:value [ fhir:v "1"^^xsd:decimal ] ;
             fhir:unit [ fhir:v "mg" ] ;
             fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;

             fhir:system [
               fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ;
               fhir:l <http://unitsofmeasure.org>
             ] ;

             fhir:code [ fhir:v "mg" ]
           ]
         ]
       ] ) #    A reference strength is a different strength value for the same substance, \n				 expressed in terms of a related but different substance.\n				 This other substance is usually another chemical form of the same thing e.g. the \"salt\" form of the active igredient, \n			     for example a chloride or sulfate. The salt may be the form of the substance molecule that is \n			     actually present, even though the strength is usually expressed in terms of only the active \"base\" \n			     part of the molecule.\n				 A tablet of morphine sulfate may acually have a stated active ingredient of just morphine, \n				 and may express the amount (strength) of the active ingredient as \n				 the mass of morphine - ignoring the mass of the sulfate group. \n				 Reference strength allows for additionally expressing the amount accurately in terms of the entire molecule.\n			  

       ] ) #   A reference strength is a different strength value for the same substance, \n				 expressed in terms of a related but different substance.\n				 This other substance is usually another chemical form of the same thing e.g. the \"salt\" form of the active igredient, \n			     for example a chloride or sulfate. The salt may be the form of the substance molecule that is \n			     actually present, even though the strength is usually expressed in terms of only the active \"base\" \n			     part of the molecule.\n				 A tablet of morphine sulfate may acually have a stated active ingredient of just morphine, \n				 and may express the amount (strength) of the active ingredient as \n				 the mass of morphine - ignoring the mass of the sulfate group. \n				 Reference strength allows for additionally expressing the amount accurately in terms of the entire molecule.\n			 

     ] )
  ]] . # 

  ] . # 

<http://hl7.org/fhir/Organization/example> a fhir:Organization .


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


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.