Australian Base Implementation Guide (AU Base 2)

This page is part of the Australian Base IG (v2.1.0: AU Base 2 on R4) based on FHIR R4. For a full list of available versions, see the Directory of published versions

Example: Observation-norelevantfinding-example3

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:Observation;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "norelevantfinding-example3"];
  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><p><b>id</b>: norelevantfinding-example3</p><p></p><p><b>code</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v3-ActCode ASSERTION}\">Assertion</span></p><p><b>subject</b>: <a href=\"Patient-example0.html\">Generated Summary: id: example0; IHI = 8003608166690503, Medicare Number = 32788511952, Health Care Card Number = 307111942H; Stella Franklin ; sfranklin@amail.com.au(WORK); gender: female; birthDate: 1985-10-14</a></p><p><b>effective</b>: 2018-10-23</p><p><b>performer</b>: <a href=\"Practitioner-example3.html\">Generated Summary: id: example3; HPI-I = 8003619900015717, AHPRA Registration Number = MED0000932850; Francis Fernando </a></p><p><b>value</b>: <span title=\"Codes: {http://snomed.info/sct 1200661000168109}\">Patient not taking any medications</span></p></div>"
  ];
  fhir:Observation.status [ fhir:value "final"];
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
       fhir:Coding.code [ fhir:value "ASSERTION" ];
       fhir:Coding.display [ fhir:value "Assertion" ]     ]
  ];
  fhir:Observation.subject [
     fhir:Reference.reference [ fhir:value "Patient/example0" ]
  ];
  fhir:Observation.effectiveDateTime [ fhir:value "2018-10-23"^^xsd:date];
  fhir:Observation.performer [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Practitioner/example3" ]
  ];
  fhir:Observation.valueCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:1200661000168109;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "1200661000168109" ];
       fhir:Coding.display [ fhir:value "No current medications" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Patient not taking any medications" ]
  ].

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

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