Australian Base Implementation Guide

This page is part of AU Base v4.0.0 based on FHIR R4. For a full list of available versions, see the Directory of published versions

Example: HealthcareService-example1

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:HealthcareService;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example1"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org.au/fhir/StructureDefinition/au-healthcareservice";
       fhir:index 0;
       fhir:link <http://hl7.org.au/fhir/StructureDefinition/au-healthcareservice>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "extensions" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n			<p>\n				<b>Narrative</b>\n			</p>\n			<p><b>active</b>: true</p>\n			<p><b>providedBy</b>: <a href=\"Organization-example1.html\">Albion Hospital. Generated\n					Summary: ABN: 51824753556; <span title=\"Codes: {http://snomed.info/sct 309895006}\">Private hospital</span>;\n					name: Albion Hospital</a></p>\n			<p><b>category</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/service-category 30}\">Specialist Radiology/Imaging</span></p>\n			<p><b>specialty</b>: <span title=\"Codes: {http://snomed.info/sct 419815003}\">Radiation\n					oncology</span>, <span title=\"Codes: {http://snomed.info/sct 408455009}\">Interventional radiology - speciality</span></p>\n			<p><b>location</b>: <a href=\"Location-example1.html\">Generated Summary: status: active;\n						<span title=\"Codes: {http://terminology.hl7.org/CodeSystem/location-physical-type si}\">Site</span></a></p>\n			<p><b>name</b>: Albion Hospital Radiology Service</p>\n			<h3>AvailableTimes</h3>\n			<table class=\"grid\">\n				<tr>\n					<td>-</td>\n					<td>\n						<b>DaysOfWeek</b>\n					</td>\n					<td>\n						<b>AvailableStartTime</b>\n					</td>\n					<td>\n						<b>AvailableEndTime</b>\n					</td>\n				</tr>\n				<tr>\n					<td>*</td>\n					<td>mon, tue, wed, thu, fri</td>\n					<td>08:30:00 (Brisbane)</td>\n					<td>17:30:00 (Brisbane)</td>\n				</tr>\n			</table>\n		</div>"
  ];
  fhir:HealthcareService.active [ fhir:value "true"^^xsd:boolean];
  fhir:HealthcareService.providedBy [
     fhir:Reference.reference [ fhir:value "Organization/example1" ];
     fhir:Reference.display [ fhir:value "Albion Hospital" ]
  ];
  fhir:HealthcareService.specialty [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:419815003;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "419815003" ];
       fhir:Coding.display [ fhir:value "Radiation oncology" ]     ]
  ], [
     fhir:index 1;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:408455009;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "408455009" ];
       fhir:Coding.display [ fhir:value "Interventional radiology - speciality" ]     ]
  ];
  fhir:HealthcareService.location [
     fhir:index 0;
     fhir:Reference.reference [ fhir:value "Location/example1" ]
  ];
  fhir:HealthcareService.name [ fhir:value "Albion Hospital Radiology Service"];
  fhir:HealthcareService.availableTime [
     fhir:index 0;
     fhir:HealthcareService.availableTime.daysOfWeek [
       fhir:value "mon";
       fhir:index 0     ], [
       fhir:value "tue";
       fhir:index 1     ], [
       fhir:value "wed";
       fhir:index 2     ], [
       fhir:value "thu";
       fhir:index 3     ], [
       fhir:value "fri";
       fhir:index 4     ];
     fhir:HealthcareService.availableTime.availableStartTime [
       fhir:value "08:30:00"^^xsd:time;
       fhir:Element.extension [
         fhir:index 0;
         fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/au-timezone" ];
         fhir:Extension.valueCodeableConcept [
           fhir:CodeableConcept.coding [
             fhir:index 0;
             fhir:Coding.system [ fhir:value "https://www.iana.org/time-zones" ];
             fhir:Coding.code [ fhir:value "Australia/Brisbane" ]           ]         ]       ]     ];
     fhir:HealthcareService.availableTime.availableEndTime [
       fhir:value "17:30:00"^^xsd:time;
       fhir:Element.extension [
         fhir:index 0;
         fhir:Extension.url [ fhir:value "http://hl7.org.au/fhir/StructureDefinition/au-timezone" ];
         fhir:Extension.valueCodeableConcept [
           fhir:CodeableConcept.coding [
             fhir:index 0;
             fhir:Coding.system [ fhir:value "https://www.iana.org/time-zones" ];
             fhir:Coding.code [ fhir:value "Australia/Brisbane" ]           ]         ]       ]     ]
  ].

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

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

Issues & Feedback