AU Base Implementation Guide
6.0.1-ci-build - CI Build Australia flag

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 - of a Pathologist - TTL Representation

Page standards status: Informative

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/example2> a fhir:HealthcareService ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example2"] ;
  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 "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: HealthcareService example2</b></p><a name=\"example2\"> </a><a name=\"hcexample2\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-au-healthcareservice.html\">AU Base HealthcareService</a></p></div><p><b>active</b>: true</p><p><b>providedBy</b>: <a href=\"Organization-example1.html\">Albion Hospital</a></p><p><b>specialty</b>: <span title=\"Codes:{http://snomed.info/sct 394915009}\">General pathology (specialty)</span></p><p><b>location</b>: <a href=\"Location-example2.html\">Location: identifier = NATA Site Number: 162899,LSPN: 123333; status = active; physicalType = Level</a></p><p><b>name</b>: Albion Hospital Pathology Service</p><blockquote><p><b>availableTime</b></p><p><b>daysOfWeek</b>: Monday, Tuesday, Wednesday, Thursday, Friday</p><p><b>availableStartTime</b>: 08:30:00</p><p><b>availableEndTime</b>: 17:30:00</p></blockquote></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:394915009 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "394915009" ] ;
       fhir:Coding.display [ fhir:value "General pathology (specialty)" ]
     ]
  ] ;
  fhir:HealthcareService.location [
     fhir:index 0 ;
     fhir:link <http://hl7.org/fhir/Location/example2> ;
     fhir:Reference.reference [ fhir:value "Location/example2" ]
  ] ;
  fhir:HealthcareService.name [ fhir:value "Albion Hospital Pathology 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:HealthcareService.availableTime.availableEndTime [ fhir:value "17:30:00"^^xsd:time ]
  ] .

<http://hl7.org/fhir/Organization/example1> a fhir:Organization .

<http://hl7.org/fhir/Location/example2> a fhir:Location .

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

<http://hl7.org/fhir/HealthcareService/example2.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/HealthcareService/example2.ttl> .