Australian Digital Health Agency FHIR Implementation Guide 1.0.0

Australian Digital Health Agency FHIR Implementation Guide. This is the current published version. It is based on FHIR® version 4.0.1. See the Directory of published versions for a list of available versions.

Example: Patient-hi-testdata-moss-cleo

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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:Patient;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "hi-testdata-moss-cleo"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://ns.electronichealth.net.au/fhir/StructureDefinition/dh-patient-core-1";
       fhir:index 0;
       fhir:link <http://ns.electronichealth.net.au/fhir/StructureDefinition/dh-patient-core-1>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "extensions" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <h2>Cleo Moss Esq.</h2>\n            <table>\n                <tr>\n                    <td>Indigenous Status</td>\n                    <td>Neither Aboriginal nor Torres Strait Islander origin</td>\n                </tr>\n                <tr>\n                    <td>IHI</td>\n                    <td>8003608833564735</td>\n                </tr>\n                <tr>\n                    <td>Email</td>\n                    <td>[email protected]</td>\n                </tr>\n                <tr>\n                    <td>Gender</td>\n                    <td>Female</td>\n                </tr>\n                <tr>\n                    <td>Date of Birth</td>\n                    <td>23 August 1965</td>\n                </tr>\n                <tr>\n                    <td>Address</td>\n                    <td>138 Gateway Ct, CALDER, TAS, 7325</td>\n                </tr>\n            </table>\n        </div>"
  ];
  fhir:DomainResource.extension [
     fhir:index 0;
     fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/indigenous-status" ];
     fhir:Extension.valueCoding [
       fhir:Coding.system [ fhir:value "https://healthterminologies.gov.au/fhir/CodeSystem/australian-indigenous-status-1" ];
       fhir:Coding.code [ fhir:value "4" ];
       fhir:Coding.display [ fhir:value "Neither Aboriginal nor Torres Strait Islander origin" ]     ]
  ];
  fhir:Patient.identifier [
     fhir:index 0;
     fhir:Element.extension [
       fhir:index 0;
       fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/ihi-status" ];
       fhir:Extension.valueCoding [
         fhir:Coding.system [ fhir:value "https://healthterminologies.gov.au/fhir/CodeSystem/ihi-status-1" ];
         fhir:Coding.code [ fhir:value "active" ];
         fhir:Coding.display [ fhir:value "Active" ]       ]     ], [
       fhir:index 1;
       fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/ihi-record-status" ];
       fhir:Extension.valueCoding [
         fhir:Coding.system [ fhir:value "https://healthterminologies.gov.au/fhir/CodeSystem/ihi-record-status-1" ];
         fhir:Coding.code [ fhir:value "verified" ];
         fhir:Coding.display [ fhir:value "Verified" ]       ]     ];
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
         fhir:Coding.code [ fhir:value "NI" ];
         fhir:Coding.display [ fhir:value "National unique individual identifier" ]       ];
       fhir:CodeableConcept.text [ fhir:value "IHI" ]     ];
     fhir:Identifier.system [ fhir:value "http://ns.electronichealth.net.au/id/hi/ihi/1.0" ];
     fhir:Identifier.value [ fhir:value "8003608833564735" ]
  ];
  fhir:Patient.name [
     fhir:index 0;
     fhir:HumanName.family [ fhir:value "Moss" ];
     fhir:HumanName.given [
       fhir:value "Cleo";
       fhir:index 0     ];
     fhir:HumanName.suffix [
       fhir:value "Esq.";
       fhir:index 0     ]
  ];
  fhir:Patient.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "email" ];
     fhir:ContactPoint.value [ fhir:value "[email protected]" ]
  ];
  fhir:Patient.gender [ fhir:value "female"];
  fhir:Patient.birthDate [ fhir:value "1965-08-23"^^xsd:date];
  fhir:Patient.address [
     fhir:index 0;
     fhir:Address.use [ fhir:value "home" ];
     fhir:Address.text [ fhir:value "138 Gateway Ct, CALDER, TAS, 7325" ]
  ].

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

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