Australian Base Implementation Guide

This page is part of AU Base v4.0.0 based on FHIR R4. For a full list of available versions, see the Directory of published versions

Substance-example2

Formats: XML, JSON, Turtle

Raw ttl


@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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

 a fhir:Substance;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example2"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org.au/fhir/StructureDefinition/au-substance";
       fhir:index 0;
       fhir:link <http://hl7.org.au/fhir/StructureDefinition/au-substance>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></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 \"example2\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-au-substance.html\">AU Base Substance</a></p></div><p><b>code</b>: Atectura Breezhaler 125/62.5 <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#1500281000168107 \"Atectura Breezhaler 125/62.5 powder for inhalation, capsule\")</span></p><blockquote><p><b>ingredient</b></p><p><b>quantity</b>: 150 ug<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code ug = 'ug')</span>/1 capsule<span style=\"background: LightGoldenRodYellow\"> (Details: SNOMED CT code 385049006 = 'Capsule')</span></p><p><b>substance</b>: indacaterol <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#927561011000036105)</span></p></blockquote><blockquote><p><b>ingredient</b></p><p><b>quantity</b>: 80 ug<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code ug = 'ug')</span>/1 capsule<span style=\"background: LightGoldenRodYellow\"> (Details: SNOMED CT code 385049006 = 'Capsule')</span></p><p><b>substance</b>: mometasone furoate <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#2357011000036107)</span></p></blockquote></div>"
  ];
  fhir:Substance.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:1500281000168107;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "1500281000168107" ];
       fhir:Coding.display [ fhir:value "Atectura Breezhaler 125/62.5 powder for inhalation, capsule" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Atectura Breezhaler 125/62.5" ]
  ];
  fhir:Substance.ingredient [
     fhir:index 0;
     fhir:Substance.ingredient.quantity [
       fhir:Ratio.numerator [
         fhir:Quantity.value [ fhir:value "150"^^xsd:decimal ];
         fhir:Quantity.unit [ fhir:value "ug" ];
         fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
         fhir:Quantity.code [ fhir:value "ug" ]       ];
       fhir:Ratio.denominator [
         fhir:Quantity.value [ fhir:value "1"^^xsd:decimal ];
         fhir:Quantity.unit [ fhir:value "capsule" ];
         fhir:Quantity.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Quantity.code [ fhir:value "385049006" ]       ]     ];
     fhir:Substance.ingredient.substanceCodeableConcept [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:927561011000036105;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "927561011000036105" ];
         fhir:Coding.display [ fhir:value "indacaterol" ]       ]     ]
  ], [
     fhir:index 1;
     fhir:Substance.ingredient.quantity [
       fhir:Ratio.numerator [
         fhir:Quantity.value [ fhir:value "80"^^xsd:decimal ];
         fhir:Quantity.unit [ fhir:value "ug" ];
         fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
         fhir:Quantity.code [ fhir:value "ug" ]       ];
       fhir:Ratio.denominator [
         fhir:Quantity.value [ fhir:value "1"^^xsd:decimal ];
         fhir:Quantity.unit [ fhir:value "capsule" ];
         fhir:Quantity.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Quantity.code [ fhir:value "385049006" ]       ]     ];
     fhir:Substance.ingredient.substanceCodeableConcept [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:2357011000036107;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "2357011000036107" ];
         fhir:Coding.display [ fhir:value "mometasone furoate" ]       ]     ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.

Issues & Feedback