Implementation Guide
Telematikinfrastruktur (TI) Common
Version 1.1.0 - release

: Example Patient - TTL Representation

Raw ttl | Download


@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 -------------------------------------------------------------------

 a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExampleTIPatient"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "https://gematik.de/fhir/ti/StructureDefinition/ti-patient"^^xsd:anyURI ;
fhir:link <https://gematik.de/fhir/ti/StructureDefinition/ti-patient>     ] )
  ] ; # 
  fhir:identifier ( [
fhir:system [ fhir:v "http://fhir.de/sid/gkv/kvid-10"^^xsd:anyURI ] ;
fhir:value [ fhir:v "G995030566" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:name ( [
fhir:use [ fhir:v "official" ] ;
fhir:family [ fhir:v "Gundlach" ] ;
    ( fhir:given [ fhir:v "Monika" ] ) ;
    ( fhir:prefix [
fhir:v "Dr." ;
      ( fhir:extension [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier"^^xsd:anyURI ] ;
fhir:value [
a fhir:code ;
fhir:v "AC"         ]       ] )     ] )
  ] [
fhir:use [ fhir:v "maiden" ] ;
fhir:family [
fhir:v "Blohm" ;
      ( fhir:extension [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/humanname-own-name"^^xsd:anyURI ] ;
fhir:value [
a fhir:string ;
fhir:v "Blohm"         ]       ] )     ]
  ] ) ; # 
  fhir:gender [ fhir:v "female"] ; # 
  fhir:birthDate [ fhir:v "1954-02-27"^^xsd:date] . #