@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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.au/fhir/HealthcareService/example1> a fhir:HealthcareService ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example1"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org.au/fhir/StructureDefinition/au-healthcareservice"^^xsd:anyURI ;
       fhir:l <http://hl7.org.au/fhir/StructureDefinition/au-healthcareservice>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "extensions" ] ;
     fhir:div [ fhir:v "<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>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:providedBy [
     fhir:l <http://hl7.org.au/fhir/Organization/example1> ;
     fhir:reference [ fhir:v "Organization/example1" ] ;
     fhir:display [ fhir:v "Albion Hospital" ]
  ] ; # 
  fhir:specialty ( [
     fhir:coding ( [
       a sct:419815003 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "419815003" ] ;
       fhir:display [ fhir:v "Radiation oncology" ]
     ] )
  ] [
     fhir:coding ( [
       a sct:408455009 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "408455009" ] ;
       fhir:display [ fhir:v "Interventional radiology - speciality" ]
     ] )
  ] ) ; # 
  fhir:location ( [
     fhir:l <http://hl7.org.au/fhir/Location/example1> ;
     fhir:reference [ fhir:v "Location/example1" ]
  ] ) ; # 
  fhir:name [ fhir:v "Albion Hospital Radiology Service"] ; # 
  fhir:availableTime ( [
     fhir:daysOfWeek ( [ fhir:v "mon" ] [ fhir:v "tue" ] [ fhir:v "wed" ] [ fhir:v "thu" ] [ fhir:v "fri" ] ) ;
     fhir:availableStartTime [
       fhir:v "08:30:00"^^xsd:time ;
       fhir:extension ( [
         fhir:url [
           fhir:v "http://hl7.org/fhir/StructureDefinition/timezone"^^xsd:anyURI ;
           fhir:l <http://hl7.org/fhir/StructureDefinition/timezone>
         ] ;
         fhir:value [
           a fhir:Code ;
           fhir:v "Australia/Brisbane"
         ]
       ] )
     ] ;
     fhir:availableEndTime [
       fhir:v "17:30:00"^^xsd:time ;
       fhir:extension ( [
         fhir:url [
           fhir:v "http://hl7.org/fhir/StructureDefinition/timezone"^^xsd:anyURI ;
           fhir:l <http://hl7.org/fhir/StructureDefinition/timezone>
         ] ;
         fhir:value [
           a fhir:Code ;
           fhir:v "Australia/Brisbane"
         ]
       ] )
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

