@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://doh.gov.ph/fhir/ph-core/PractitionerRole/practitionerrole-single-example> a fhir:PractitionerRole ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "practitionerrole-single-example"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://doh.gov.ph/fhir/ph-core/StructureDefinition/ph-core-practitionerrole"^^xsd:anyURI ;
       fhir:l <http://doh.gov.ph/fhir/ph-core/StructureDefinition/ph-core-practitionerrole>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">Dr. Maria Clara Santos as a General Practitioner at the Department of Health.</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:practitioner [
     fhir:l <http://doh.gov.ph/fhir/ph-core/Practitioner/practitioner-single-example> ;
     fhir:reference [ fhir:v "Practitioner/practitioner-single-example" ]
  ] ; # 
  fhir:organization [
     fhir:l <http://doh.gov.ph/fhir/ph-core/Organization/organization-single-example> ;
     fhir:reference [ fhir:v "Organization/organization-single-example" ]
  ] ; # 
  fhir:code ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/practitioner-role"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/practitioner-role>
       ] ;
       fhir:code [ fhir:v "doctor" ] ;
       fhir:display [ fhir:v "Doctor" ]
     ] )
  ] ) ; # 
  fhir:specialty ( [
     fhir:coding ( [
       a sct:394802001 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "394802001" ] ;
       fhir:display [ fhir:v "General medicine" ]
     ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

