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: Composition-composition-different-authors

Formats: Narrative,XML, JSON, Turtle

Raw ttl

@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/rdf#> .
@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:Composition;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "composition-different-authors"];
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2013-05-28T22:12:21Z"^^xsd:dateTime ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: composition-different-authors</p><p><b>meta</b>: </p><p><b>status</b>: final</p><p><b>type</b>: Discharge Summarization Note <span style=\"background: LightGoldenRodYellow\">(Details : {LOINC code '18842-5' = 'Discharge summary)</span></p><p><b>date</b>: 03/06/2018 10:30:02 PM</p><p><b>author</b>: <a href=\"Practitioner-example0.html\">Doctor Mayo. Generated Summary: id: example0; HPI-I = 8003619900015717, Prescriber Number = 453221; active; Helen Mayo ; helen.mayo@downunderhospital.com.au(WORK)</a></p><p><b>title</b>: Discharge Summary</p></div>"
  ];
  fhir:Composition.status [ fhir:value "final"];
  fhir:Composition.type [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a loinc:18842-5;
       fhir:Coding.system [ fhir:value "http://loinc.org" ];
       fhir:Coding.code [ fhir:value "18842-5" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Discharge Summarization Note" ]
  ];
  fhir:Composition.subject [
     fhir:Reference.reference [ fhir:value "Patient/example0" ];
     fhir:Reference.display [ fhir:value "Franklin" ]
  ];
  fhir:Composition.date [ fhir:value "2018-06-03T12:30:02Z"^^xsd:dateTime];
  fhir:Composition.author [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Practitioner/example0" ];
     fhir:Reference.display [ fhir:value "Doctor Mayo" ]
  ];
  fhir:Composition.title [ fhir:value "Discharge Summary"];
  fhir:Composition.section [
     fhir:index 0;
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/section-author" ];
       fhir:Extension.valueReference [
         fhir:Reference.reference [ fhir:value "Practitioner/example0" ];
         fhir:Reference.display [ fhir:value "Doctor Mayo" ]       ]     ];
     fhir:Composition.section.title [ fhir:value "Reason for admission" ];
     fhir:Composition.section.code [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a loinc:29299-5;
         fhir:Coding.system [ fhir:value "http://loinc.org" ];
         fhir:Coding.code [ fhir:value "29299-5" ];
         fhir:Coding.display [ fhir:value "Reason for visit Narrative" ]       ]     ];
     fhir:Composition.section.text [
       fhir:Narrative.status [ fhir:value "extensions" ];
       fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n                <p> This section content has been authored by practitioner:<a href=\"Practitioner-example0.html\">Dr. Mayo</a>\n                </p>\n            </div>"     ]
  ], [
     fhir:index 1;
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/section-author" ];
       fhir:Extension.valueReference [
         fhir:Reference.reference [ fhir:value "PractitionerRole/example0" ];
         fhir:Reference.display [ fhir:value "Cardiologist" ]       ]     ];
     fhir:Composition.section.title [ fhir:value "Medications on Discharge" ];
     fhir:Composition.section.code [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a loinc:10183-2;
         fhir:Coding.system [ fhir:value "http://loinc.org" ];
         fhir:Coding.code [ fhir:value "10183-2" ];
         fhir:Coding.display [ fhir:value "Hospital discharge medications Narrative" ]       ]     ];
     fhir:Composition.section.text [
       fhir:Narrative.status [ fhir:value "extensions" ];
       fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n                <p> This section content has been authored by practitionerRole:<a href=\"PractitionerRole-example0.html\">Cardiologist</a>\n                </p>\n            </div>"     ]
  ].

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

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