AU Base Implementation Guide, published by HL7 Australia. This guide is not an authorized publication; it is the continuous build for version 6.0.1-ci-build built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/hl7au/au-fhir-base/ and changes regularly. See the Directory of published versions
: HealthcareService - a typical Healthcare Service the Radiologist belongs to - TTL Representation
Raw ttl | Download
@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 -------------------------------------------------------------------
<http://hl7.org/fhir/HealthcareService/example1> 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:link <http://hl7.org/fhir/Organization/example1> ;
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:link <http://hl7.org/fhir/Location/example1> ;
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/fhir/StructureDefinition/timezone" ] ;
fhir:Extension.valueCode [ 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/fhir/StructureDefinition/timezone" ] ;
fhir:Extension.valueCode [ fhir:value "Australia/Brisbane" ]
]
]
] .
<http://hl7.org/fhir/Organization/example1> a fhir:Organization .
<http://hl7.org/fhir/Location/example1> a fhir:Location .
# - ontology header ------------------------------------------------------------
<http://hl7.org/fhir/HealthcareService/example1.ttl> a owl:Ontology ;
owl:imports fhir:fhir.ttl ;
owl:versionIRI <http://build.fhir.org/HealthcareService/example1.ttl> .