Implementation Guide
ePA Basisfunktionalitäten
Version 1.3.2 - release

: Example Patient: Erika Mustermann - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Patient/7eeb4e81-ce38-4d70-84fc-9ca4c7d0939c> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "7eeb4e81-ce38-4d70-84fc-9ca4c7d0939c"] ;
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "2" ] ;
     fhir:Meta.lastUpdated [ fhir:value "2026-01-19T14:37:12+01:00"^^xsd:dateTime ] ;
     fhir:Meta.profile [
       fhir:value "https://gematik.de/fhir/epa/StructureDefinition/epa-patient|1.3.0" ;
       fhir:index 0 ;
       fhir:link <https://gematik.de/fhir/epa/StructureDefinition/epa-patient|1.3.0>
     ]
  ] ;
  fhir:Patient.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "http://fhir.de/sid/gkv/kvid-10" ] ;
     fhir:Identifier.value [ fhir:value "G995030566" ]
  ] ;
  fhir:Patient.name [
     fhir:index 0 ;
     fhir:HumanName.use [ fhir:value "official" ] ;
     fhir:HumanName.family [ fhir:value "Mustermann" ] ;
     fhir:HumanName.given [
       fhir:value "Erika" ;
       fhir:index 0
     ]
  ], [
     fhir:index 1 ;
     fhir:HumanName.use [ fhir:value "maiden" ] ;
     fhir:HumanName.family [
       fhir:value "Gabler" ;
       fhir:Element.extension [
         fhir:index 0 ;
         fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/humanname-own-name" ] ;
         fhir:Extension.valueString [ fhir:value "Gabler" ]
       ]
     ]
  ] ;
  fhir:Patient.gender [ fhir:value "female"] ;
  fhir:Patient.birthDate [ fhir:value "1964-08-12"^^xsd:date] .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Patient/7eeb4e81-ce38-4d70-84fc-9ca4c7d0939c.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Patient/7eeb4e81-ce38-4d70-84fc-9ca4c7d0939c.ttl> .