@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/ExamplePatientSeit> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExamplePatientSeit"] ; # 
  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 ExamplePatientSeit</b></p><a name=\"ExamplePatientSeit\"> </a><a name=\"hcExamplePatientSeit\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Klaus Becker (official) Male, DoB: 1958-11-23</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td colspan=\"3\">true</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Datum seit wann der Patient in der Praxis in Behandlung ist (behandelt seit)\"><a href=\"StructureDefinition-patient-seit.html\">Patient seit</a></td><td colspan=\"3\">2015-03-10</td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [
       fhir:v "https://fhir.cognovis.de/praxis/StructureDefinition/patient-seit"^^xsd:anyURI ;
       fhir:l <https://fhir.cognovis.de/praxis/StructureDefinition/patient-seit>
     ] ;
     fhir:value [
       a fhir:Date ;
       fhir:v "2015-03-10"^^xsd:date
     ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:name ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:family [ fhir:v "Becker" ] ;
     fhir:given ( [ fhir:v "Klaus" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1958-11-23"^^xsd:date] . # 

# -------------------------------------------------------------------------------------

