Draft PH Core Implementation Guide
0.2.0 - ci-build Philippines flag

Draft PH Core Implementation Guide, published by UP Manila National TeleHealth Center. This guide is not an authorized publication; it is the continuous build for version 0.2.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/UP-Manila-SILab/ph-core/ and changes regularly. See the Directory of published versions

: practitionerrole-single-example - TTL Representation

Raw ttl | Download


@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 -------------------------------------------------------------------

 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 fhir:Practitioner/practitioner-single-example ;
fhir:reference [ fhir:v "Practitioner/practitioner-single-example" ]
  ] ; # 
  fhir:organization [
fhir:l fhir: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" ]     ] )
  ] ) . #