@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 -------------------------------------------------------------------

<https://fhir.cognovis.de/praxis/Practitioner/AllergyRecorderExample> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "AllergyRecorderExample"] ; # 
  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 AllergyRecorderExample</b></p><a name=\"AllergyRecorderExample\"> </a><a name=\"hcAllergyRecorderExample\"> </a><p><b>identifier</b>: KBV_NS_Base_ANR/987654321</p><p><b>name</b>: Petra Weber </p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "https://fhir.kbv.de/NamingSystem/KBV_NS_Base_ANR"^^xsd:anyURI ;
       fhir:l <https://fhir.kbv.de/NamingSystem/KBV_NS_Base_ANR>
     ] ;
     fhir:value [ fhir:v "987654321" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Weber" ] ;
     fhir:given ( [ fhir:v "Petra" ] ) ;
     fhir:prefix ( [ fhir:v "Dr. med." ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

