@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/PractitionerRole/example0> a fhir:PractitionerRole ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example0"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org.au/fhir/StructureDefinition/au-practitionerrole"^^xsd:anyURI ;
       fhir:l <http://hl7.org.au/fhir/StructureDefinition/au-practitionerrole>
     ] )
  ] ; # 
  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>id</b>: example0</p>\n			<p><b>meta</b>: </p>\n			<p><b>identifier</b>: Medicare Provider Number: 1234561A</p>\n			<p><b>active</b>: true</p>\n			<p><b>practitioner</b>: <a href=\"Practitioner-example0.html\">Generated Summary: id: example0; HPI-I: 8003619900015717, Prescriber Number: 453221, Ahpra Registration Number: MED0000932945,\n					Care Agency Employee Identifier: 9003600003999997; active; Helen Mayo ; helen.mayo@downunderhospital.example.com(WORK); <span title=\"Codes: {urn:ietf:bcp:47 asf}\">Auslan</span></a></p>\n			<p><b>organization</b>: <a href=\"Organization-example0.html\">Generated Summary: id: example0; HPI-O: 8003621566684455; active; name: Downunder Hospital;\n					helen.mayo@downunderhospital.example.com(WORK)</a></p>\n			<p><b>specialty</b>: <span title=\"Codes: {http://snomed.info/sct 394579002}\">Cardiology</span></p>\n			<p><b>location</b>: <a href=\"Location-example0.html\">Generated Summary: id: example0; status: active; name: Downunder Hospital Blacktown; ph: 0255503555(WORK)</a></p>\n			<p><b>telecom</b>: ph: 0255507777(WORK), ph: 0255508888(After Hours)</p>\n		</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org.au/CodeSystem/v2-0203"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org.au/CodeSystem/v2-0203>
         ] ;
         fhir:code [ fhir:v "UPIN" ]
       ] ) ;
       fhir:text [ fhir:v "Medicare Provider Number" ]
     ] ;
     fhir:system [
       fhir:v "http://ns.electronichealth.net.au/id/medicare-provider-number"^^xsd:anyURI ;
       fhir:l <http://ns.electronichealth.net.au/id/medicare-provider-number>
     ] ;
     fhir:value [ fhir:v "1234561A" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:practitioner [
     fhir:l <http://hl7.org.au/fhir/Practitioner/example0> ;
     fhir:reference [ fhir:v "Practitioner/example0" ]
  ] ; # 
  fhir:organization [
     fhir:l <http://hl7.org.au/fhir/Organization/example0> ;
     fhir:reference [ fhir:v "Organization/example0" ]
  ] ; # 
  fhir:specialty ( [
     fhir:coding ( [
       a sct:394579002 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "394579002" ] ;
       fhir:display [ fhir:v "Cardiology" ]
     ] )
  ] ) ; # 
  fhir:location ( [
     fhir:l <http://hl7.org.au/fhir/Location/example0> ;
     fhir:reference [ fhir:v "Location/example0" ]
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "0255507777" ] ;
     fhir:use [ fhir:v "work" ]
  ] [
     fhir:extension ( [
       fhir:url [
         fhir:v "http://hl7.org.au/fhir/StructureDefinition/contact-purpose"^^xsd:anyURI ;
         fhir:l <http://hl7.org.au/fhir/StructureDefinition/contact-purpose>
       ] ;
       fhir:value [
         a fhir:CodeableConcept ;
         fhir:coding ( [
           fhir:system [
             fhir:v "http://terminology.hl7.org.au/CodeSystem/contact-purpose"^^xsd:anyURI ;
             fhir:l <http://terminology.hl7.org.au/CodeSystem/contact-purpose>
           ] ;
           fhir:code [ fhir:v "after-hours" ] ;
           fhir:display [ fhir:v "After Hours" ]
         ] )
       ]
     ] ) ;
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "0255508888" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

