@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.eu/fhir/eps/Patient/f51071b2-6c06-4d31-85ed-26a6b964ef98> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "f51071b2-6c06-4d31-85ed-26a6b964ef98"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.eu/fhir/eps/StructureDefinition/patient-eu-eps"^^xsd:anyURI ;
       fhir:l <http://hl7.eu/fhir/eps/StructureDefinition/patient-eu-eps>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><table class=\"hl7__ips\"><tr><td>Petra Schwartz</td><td>1950-04-19</td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org/CodeSystem/v2-0203>
         ] ;
         fhir:code [ fhir:v "JHN" ]
       ] )
     ] ;
     fhir:system [
       fhir:v "http://example.org/identifier-1"^^xsd:anyURI ;
       fhir:l <http://example.org/identifier-1>
     ] ;
     fhir:value [ fhir:v "5042-537688-1" ]
  ] [
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org/CodeSystem/v2-0203>
         ] ;
         fhir:code [ fhir:v "MR" ]
       ] )
     ] ;
     fhir:system [
       fhir:v "http://example.org/identifier-2"^^xsd:anyURI ;
       fhir:l <http://example.org/identifier-2>
     ] ;
     fhir:value [ fhir:v "a707536c-14f2-3606-4ed4-7fd9991fd18e" ]
  ] ) ; # 
  fhir:name ( [
     fhir:text [ fhir:v "Petra Schwartz" ] ;
     fhir:family [ fhir:v "Schwartz" ] ;
     fhir:given ( [ fhir:v "Petra" ] )
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "+49 034223 68 59" ]
  ] ) ; # 
  fhir:gender [ fhir:v "female"] ; # 
  fhir:birthDate [ fhir:v "1950-04-19"^^xsd:date] ; # 
  fhir:address ( [
     fhir:use [ fhir:v "home" ] ;
     fhir:type [ fhir:v "physical" ] ;
     fhir:line ( [ fhir:v "Hoheluftchaussee 46" ] ) ;
     fhir:city [ fhir:v "Dommitzsch" ] ;
     fhir:postalCode [ fhir:v "04878" ] ;
     fhir:country [ fhir:v "Germany" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

