@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 -------------------------------------------------------------------

<https://www.ehealth.fgov.be/standards/fhir/lab/PractitionerRole/practitionerrole1> a fhir:PractitionerRole ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "practitionerrole1"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://www.ehealth.fgov.be/standards/fhir/core/StructureDefinition/be-practitionerrole"^^xsd:anyURI ;
       fhir:l <https://www.ehealth.fgov.be/standards/fhir/core/StructureDefinition/be-practitionerrole>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "empty" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">empty</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "http://www.acme.org/practitioners"^^xsd:anyURI ;
       fhir:l <http://www.acme.org/practitioners>
     ] ;
     fhir:value [ fhir:v "23" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:period [
     fhir:start [ fhir:v "2019-08-01T00:00:00.000Z"^^xsd:dateTime ] ;
     fhir:end [ fhir:v "2019-12-01T00:00:00.000Z"^^xsd:dateTime ]
  ] ; # 
  fhir:practitioner [
     fhir:l <https://www.ehealth.fgov.be/standards/fhir/lab/Practitioner/practitioner1> ;
     fhir:reference [ fhir:v "Practitioner/practitioner1" ] ;
     fhir:display [ fhir:v "Dr Katherine Pulaski" ]
  ] ; # 
  fhir:code ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "https://www.ehealth.fgov.be/standards/fhir/core/CodeSystem/cd-hcparty"^^xsd:anyURI ;
         fhir:l <https://www.ehealth.fgov.be/standards/fhir/core/CodeSystem/cd-hcparty>
       ] ;
       fhir:code [ fhir:v "persphysician" ] ;
       fhir:display [ fhir:v "physician" ]
     ] )
  ] ) ; # 
  fhir:specialty ( [
     fhir:coding ( [
       a sct:419772000 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "419772000" ] ;
       fhir:display [ fhir:v "Family practice" ]
     ] )
  ] ) ; # 
  fhir:availableTime ( [
     fhir:daysOfWeek ( [ fhir:v "mon" ] [ fhir:v "tue" ] [ fhir:v "wed" ] ) ;
     fhir:availableStartTime [ fhir:v "09:00:00"^^xsd:time ] ;
     fhir:availableEndTime [ fhir:v "16:30:00"^^xsd:time ]
  ] [
     fhir:daysOfWeek ( [ fhir:v "thu" ] [ fhir:v "fri" ] ) ;
     fhir:availableStartTime [ fhir:v "09:00:00"^^xsd:time ] ;
     fhir:availableEndTime [ fhir:v "16:30:00"^^xsd:time ]
  ] ) ; # 
  fhir:notAvailable ( [
     fhir:description [ fhir:v "Katherine will be on extended leave during August 2020" ] ;
     fhir:during [
       fhir:start [ fhir:v "2020-08-01T00:00:00.000Z"^^xsd:dateTime ] ;
       fhir:end [ fhir:v "2020-08-20T00:00:00.000Z"^^xsd:dateTime ]
     ]
  ] ) ; # 
  fhir:availabilityExceptions [ fhir:v "Katherine is generally unavailable on public holidays and during the Christmas/New Year break"] . # 

# -------------------------------------------------------------------------------------

