@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/Patient/FreetextObsPatientExample> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "FreetextObsPatientExample"] ; # 
  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: Patient FreetextObsPatientExample</b></p><a name=\"FreetextObsPatientExample\"> </a><a name=\"hcFreetextObsPatientExample\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Klaus Beispiel  Male, DoB: 1952-11-08 ( http://fhir.de/NamingSystem/gkv/kvid-10#B111222333)</p><hr/></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "http://fhir.de/NamingSystem/gkv/kvid-10"^^xsd:anyURI ;
       fhir:l <http://fhir.de/NamingSystem/gkv/kvid-10>
     ] ;
     fhir:value [ fhir:v "B111222333" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Beispiel" ] ;
     fhir:given ( [ fhir:v "Klaus" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1952-11-08"^^xsd:date] . # 

# -------------------------------------------------------------------------------------

