Australian Base Implementation Guide (AU Base 1.1.1)

This page is part of the Australian Base IG (v1.1.1: AU Base 1.1 on STU3 Draft) based on FHIR R3. The current version which supercedes this version is 1.0.2. For a full list of available versions, see the Directory of published versions

Condition-example0

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:Condition;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example0"];
  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>: example0</p><p><b>clinicalStatus</b>: active</p><p><b>verificationStatus</b>: confirmed</p><p><b>code</b>: Type 2 diabetes mellitus <span style=\"background: LightGoldenRodYellow\">(Details : {SNOMED CT code '44054006' = 'T2DM - Type 2 diabetes mellitus', given as 'Type 2 diabetes mellitus'})</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>onset</b>: 2011-01-23</p><h3>Evidences</h3><table class=\"grid\"><tr><td>-</td><td><b>Code</b></td></tr><tr><td>*</td><td>Neuropathy <span style=\"background: LightGoldenRodYellow\">(Details : {SNOMED CT code '386033004' = 'Neuropathy', given as 'Neuropathy'})</span></td></tr></table></div>"
  ];
  fhir:Condition.clinicalStatus [ fhir:value "active"];
  fhir:Condition.verificationStatus [ fhir:value "confirmed"];
  fhir:Condition.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:44054006;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "44054006" ];
       fhir:Coding.display [ fhir:value "Type 2 diabetes mellitus" ]     ]
  ];
  fhir:Condition.subject [
     fhir:Reference.reference [ fhir:value "Patient/example0" ]
  ];
  fhir:Condition.onsetDateTime [ fhir:value "2011-01-23"^^xsd:date];
  fhir:Condition.evidence [
     fhir:index 0;
     fhir:Condition.evidence.code [
       fhir:index 0;
       fhir:CodeableConcept.coding [
         fhir:index 0;
         a sct:386033004;
         fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
         fhir:Coding.code [ fhir:value "386033004" ];
         fhir:Coding.display [ fhir:value "Neuropathy" ]       ]     ]
  ].

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

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