@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-additional-authorisation> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "practitioner-additional-authorisation"] ; # 
  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-additional-authorisation</b></p><a name=\"practitioner-additional-authorisation\"> </a><a name=\"hcpractitioner-additional-authorisation\"> </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 "code"^^xsd:anyURI ;
           fhir:l fhir:code
         ] ;
         fhir:value [
           a fhir:CodeableConcept ;
           fhir:coding ( [
             fhir:system [
               fhir:v "https://standards.digital.health.nz/ns/practitioner-additional-authorisation-code"^^xsd:anyURI ;
               fhir:l <https://standards.digital.health.nz/ns/practitioner-additional-authorisation-code>
             ] ;
             fhir:code [ fhir:v "IMMU" ] ;
             fhir:display [ fhir:v "Immunisation" ]
           ] )
         ]
       ] [
         fhir:url [
           fhir:v "period"^^xsd:anyURI ;
           fhir:l fhir:period
         ] ;
         fhir:value [
           a fhir:Period ;
           fhir:start [ fhir:v "2022-01-01"^^xsd:date ]
         ]
       ] ) ;
       fhir:url [
         fhir:v "http://hl7.org.nz/fhir/StructureDefinition/additional-authorisation"^^xsd:anyURI ;
         fhir:l <http://hl7.org.nz/fhir/StructureDefinition/additional-authorisation>
       ]
     ] ) ;
     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" ]
       ] )
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

