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

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:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org.au/fhir/StructureDefinition/au-medication";
       fhir:index 0;
       fhir:link <http://hl7.org.au/fhir/StructureDefinition/au-medication>     ]
  ];
  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        </div>"
  ];
  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://terminology.hl7.org.au/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: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.strength [
       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.batch [
     fhir:Medication.batch.lotNumber [ fhir:value "989657" ];
     fhir:Medication.batch.expirationDate [ fhir:value "2020-06-07"^^xsd:date ]
  ].

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

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

Issues & Feedback