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: Organization-nsw-hospital

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:Organization;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "nsw-hospital"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://ns.electronichealth.net.au/fhir/StructureDefinition/dh-organization-core-1";
       fhir:index 0;
       fhir:link <http://ns.electronichealth.net.au/fhir/StructureDefinition/dh-organization-core-1>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <h3>NSW Hospital</h3>\n            <table>\n                <tr>\n                    <td>HPI-O</td>\n                    <td>8003626566699734</td>\n                </tr>\n                <tr>\n                    <td>ABN</td>\n                    <td>41824753557</td>\n                </tr>\n                <tr>\n                    <td>Phone</td>\n                    <td>(02) 5550 4444</td>\n                </tr>\n                <tr>\n                    <td>Address</td>\n                    <td>2325 Rocklands Rd, North Sydney NSW 2060</td>\n                </tr>\n                <tr>\n                    <td>Website</td>\n                    <td>https://www.health.nsw.example.org/nsw-hospital</td>\n                </tr>\n            </table>\n        </div>"
  ];
  fhir:Organization.identifier [
     fhir:index 0;
     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 "XX" ]       ];
       fhir:CodeableConcept.text [ fhir:value "ABN" ]     ];
     fhir:Identifier.system [ fhir:value "http://hl7.org.au/id/abn" ];
     fhir:Identifier.value [ fhir:value "41824753557" ]
  ], [
     fhir:index 1;
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org.au/CodeSystem/v2-0203" ];
         fhir:Coding.code [ fhir:value "NOI" ]       ];
       fhir:CodeableConcept.text [ fhir:value "HPI-O" ]     ];
     fhir:Identifier.system [ fhir:value "http://ns.electronichealth.net.au/id/hi/hpio/1.0" ];
     fhir:Identifier.value [ fhir:value "8003626566699734" ]
  ];
  fhir:Organization.type [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:22232009;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "22232009" ]     ], [
       fhir:index 1;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-RoleCode" ];
       fhir:Coding.code [ fhir:value "HOSP" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Hospital" ]
  ];
  fhir:Organization.name [ fhir:value "NSW Hospital"];
  fhir:Organization.telecom [
     fhir:index 0;
     fhir:ContactPoint.system [ fhir:value "url" ];
     fhir:ContactPoint.value [ fhir:value "https://www.health.nsw.example.org/nsw-hospital" ]
  ], [
     fhir:index 1;
     fhir:ContactPoint.system [ fhir:value "phone" ];
     fhir:ContactPoint.value [ fhir:value "(02) 5550 4444" ]
  ];
  fhir:Organization.address [
     fhir:index 0;
     fhir:Address.type [ fhir:value "physical" ];
     fhir:Address.text [ fhir:value "2325 Rocklands Rd, North Sydney NSW 2060" ];
     fhir:Address.line [
       fhir:value "2325 Rocklands Rd";
       fhir:index 0     ];
     fhir:Address.city [ fhir:value "North Sydney" ];
     fhir:Address.state [ fhir:value "NSW" ];
     fhir:Address.postalCode [ fhir:value "2060" ];
     fhir:Address.country [ fhir:value "AU" ]
  ].

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

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