@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org.nz/fhir/Practitioner/practitioner-educational-qualification> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "practitioner-educational-qualification"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Practitioner practitioner-educational-qualification</b></p><a name=\"practitioner-educational-qualification\"> </a><a name=\"hcpractitioner-educational-qualification\"> </a><p><b>name</b>: John Doe</p><p><b>gender</b>: Male</p><p><b>birthDate</b>: 1998-01-01</p><h3>Qualifications</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Extension</b></td><td><b>Code</b></td></tr><tr><td style=\"display: none\">*</td><td/><td><span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v2-0360 BS}\">Bachelor of Science</span></td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:name ( [
     fhir:text [ fhir:v "John Doe" ] ;
     fhir:family [ fhir:v "Doe" ] ;
     fhir:given ( [ fhir:v "John" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1998-01-01"^^xsd:date] ; # 
  fhir:qualification ( [
     fhir:extension ( [
       fhir:extension ( [
         fhir:url [
           fhir:v "fullname"^^xsd:anyURI ;
           fhir:l fhir:fullname
         ] ;
         fhir:value [
           a fhir:String ;
           fhir:v "Fellow of the Royal Australian and New Zealand College of Psychiatrists qualification"
         ]
       ] [
         fhir:url [
           fhir:v "shortname"^^xsd:anyURI ;
           fhir:l fhir:shortname
         ] ;
         fhir:value [
           a fhir:String ;
           fhir:v "Psychiatrist fellow"
         ]
       ] [
         fhir:url [
           fhir:v "year"^^xsd:anyURI ;
           fhir:l fhir:year
         ] ;
         fhir:value [
           a fhir:Date ;
           fhir:v "1995"^^xsd:gYear
         ]
       ] [
         fhir:url [
           fhir:v "institution"^^xsd:anyURI ;
           fhir:l fhir:institution
         ] ;
         fhir:value [
           a fhir:String ;
           fhir:v "Royal Australian and New Zealand College of Psychiatrists"
         ]
       ] [
         fhir:url [
           fhir:v "city"^^xsd:anyURI ;
           fhir:l fhir:city
         ] ;
         fhir:value [
           a fhir:String ;
           fhir:v "Wellington"
         ]
       ] [
         fhir:url [
           fhir:v "country"^^xsd:anyURI ;
           fhir:l fhir:country
         ] ;
         fhir:value [
           a fhir:String ;
           fhir:v "NZ"
         ]
       ] ) ;
       fhir:url [
         fhir:v "http://hl7.org.nz/fhir/StructureDefinition/educational-qualification"^^xsd:anyURI ;
         fhir:l <http://hl7.org.nz/fhir/StructureDefinition/educational-qualification>
       ]
     ] ) ;
     fhir:code [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org/CodeSystem/v2-0360"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org/CodeSystem/v2-0360>
         ] ;
         fhir:code [ fhir:v "BS" ]
       ] )
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

