Australian Base Implementation Guide (AU Base 1)

This page is part of the Australian Base IG (v1.0.2: AU Base 1 on STU3) based on FHIR R3. This is the current published version in it's permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions

Example: Medication-BrandProductwithBatchDetails0

Formats: Narrative,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:Medication;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "BrandProductwithBatchDetails0"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "extensions" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">            \n            <p><b>amLODIPIne</b> 10 mg – <i>norVASC</i> – tablet</p>\n            <p>with batch details:</p>\n            <p>Lot Number: 989657</p>\n            <p>Expiration Date: 7 Jun 2020</p>\n            <p>Serial Number: 2590</p>\n        </div>"
  ];
  fhir:DomainResource.extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/medication-batch-serialnumber" ];
     fhir:Extension.valueString [ fhir:value "2590" ]
  ];
  fhir:Medication.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:4216011000036104;
       fhir:Element.extension [
         fhir:index 0;
         fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/medication-type" ];
         fhir:Extension.valueCoding [
           fhir:Coding.system [ fhir:value "http://hl7.org.au/fhir/CodeSystem/medication-type" ];
           fhir:Coding.code [ fhir:value "BPD" ];
           fhir:Coding.display [ fhir:value "Branded product with no strengths or form" ]         ]       ];
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "4216011000036104" ];
       fhir:Coding.display [ fhir:value "Norvasc" ]     ]
  ];
  fhir:Medication.form [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:385055001;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "385055001" ];
       fhir:Coding.display [ fhir:value "Tablet" ]     ]
  ];
  fhir:Medication.ingredient [
     fhir:index 0;
     fhir:Medication.ingredient.itemCodeableConcept [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:1792011000036100;
         fhir:Element.extension [
           fhir:index 0;
           fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/medication-type" ];
           fhir:Extension.valueCoding [
             fhir:Coding.system [ fhir:value "http://hl7.org.au/fhir/CodeSystem/medication-type" ];
             fhir:Coding.code [ fhir:value "UPD" ];
             fhir:Coding.display [ fhir:value "Unbranded product with no strengths or form" ]           ]         ];
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "1792011000036100" ];
         fhir:Coding.display [ fhir:value "amlodipine" ]       ]     ];
     fhir:Medication.ingredient.isActive [ fhir:value "true"^^xsd:boolean ];
     fhir:Medication.ingredient.amount [
       fhir:Ratio.numerator [
         fhir:Quantity.value [ fhir:value "10"^^xsd:decimal ];
         fhir:Quantity.unit [ fhir:value "mg" ]       ];
       fhir:Ratio.denominator [
         fhir:Quantity.value [ fhir:value "1"^^xsd:decimal ];
         fhir:Quantity.unit [ fhir:value "unit" ]       ]     ]
  ];
  fhir:Medication.package [
     fhir:Medication.package.batch [
       fhir:index 0;
       fhir:Medication.package.batch.lotNumber [ fhir:value "989657" ];
       fhir:Medication.package.batch.expirationDate [ fhir:value "2020-06-07"^^xsd:date ]     ]
  ].

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

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