@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://opennursingcoreig.com/Practitioner/example-nurse> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-nurse"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Practitioner example-nurse</b></p><a name=\"example-nurse\"> </a><a name=\"hcexample-nurse\"> </a><p><b>name</b>: Alex Nurse </p><h3>Qualifications</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Code</b></td></tr><tr><td style=\"display: none\">*</td><td><span title=\"Codes:\">Registered Nurse (NMC)</span></td></tr></table></div>"
  ] ;
  fhir:Practitioner.name [
     fhir:index 0 ;
     fhir:HumanName.family [ fhir:value "Nurse" ] ;
     fhir:HumanName.given [
       fhir:value "Alex" ;
       fhir:index 0
     ]
  ] ;
  fhir:Practitioner.qualification [
     fhir:index 0 ;
     fhir:Practitioner.qualification.code [
       fhir:CodeableConcept.text [ fhir:value "Registered Nurse (NMC)" ]
     ]
  ] .

# - ontology header ------------------------------------------------------------

<https://opennursingcoreig.com/Practitioner/example-nurse.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

