@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://digitalhealth.gov.au/fhir/cc/PractitionerRole/practitioner-role-communication-example> a fhir:PractitionerRole ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "practitioner-role-communication-example"] ; # 
  fhir:text [
     fhir:status [ fhir:v "extensions" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: PractitionerRole practitioner-role-communication-example</b></p><a name=\"practitioner-role-communication-example\"> </a><a name=\"hcpractitioner-role-communication-example\"> </a><p><b>Practitioner Role Communication</b>: <span title=\"Codes:{urn:ietf:bcp:47 en}\">English</span></p><p><b>active</b>: true</p><p><b>practitioner</b>: Dr Bruce Dundee</p><p><b>organization</b>: Example Health Organisation</p><p><b>code</b>: <span title=\"Codes:{http://snomed.info/sct 309343006}\">Physician</span></p><p><b>specialty</b>: <span title=\"Codes:{http://snomed.info/sct 408443003}\">General medical practice</span></p><p><b>telecom</b>: <a href=\"tel:+61287654321\">+61 2 8765 4321</a></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [ fhir:v "http://digitalhealth.gov.au/fhir/cc/StructureDefinition/practitioner-role-communication"^^xsd:anyURI ] ;
     fhir:value [
       a fhir:CodeableConcept ;
       fhir:coding ( [
         fhir:system [ fhir:v "urn:ietf:bcp:47"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "en" ] ;
         fhir:display [ fhir:v "English" ]
       ] )
     ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:practitioner [
     fhir:display [ fhir:v "Dr Bruce Dundee" ]
  ] ; # 
  fhir:organization [
     fhir:display [ fhir:v "Example Health Organisation" ]
  ] ; # 
  fhir:code ( [
     fhir:coding ( [
       a sct:309343006 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "309343006" ] ;
       fhir:display [ fhir:v "Physician" ]
     ] )
  ] ) ; # 
  fhir:specialty ( [
     fhir:coding ( [
       a sct:408443003 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "408443003" ] ;
       fhir:display [ fhir:v "General medical practice" ]
     ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "+61 2 8765 4321" ] ;
     fhir:use [ fhir:v "work" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

