Implementation Guide
ePA Basisfunktionalitäten
Version 1.3.2 - release

: ExampleSearchsetBundlePatient - 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/Bundle/example-searchset-patient> a fhir:Bundle ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-searchset-patient"] ;
  fhir:Bundle.type [ fhir:value "searchset"] ;
  fhir:Bundle.total [ fhir:value "1"^^xsd:nonNegativeInteger] ;
  fhir:Bundle.link [
     fhir:index 0 ;
     fhir:Bundle.link.relation [ fhir:value "self" ] ;
     fhir:Bundle.link.url [ fhir:value "/epa/patient/api/v1/fhir/Patient?_count=10" ]
  ] ;
  fhir:Bundle.entry [
     fhir:index 0 ;
     fhir:Bundle.entry.fullUrl [ fhir:value "http://epa4all/epa/patient/api/v1/fhir/Patient/7eeb4e81-ce38-4d70-84fc-9ca4c7d0939c" ] ;
     fhir:Bundle.entry.resource <http://epa4all/epa/patient/api/v1/fhir/Patient/7eeb4e81-ce38-4d70-84fc-9ca4c7d0939c> ;
     fhir:Bundle.entry.search [
       fhir:Bundle.entry.search.mode [ fhir:value "match" ]
     ]
  ] .

<http://epa4all/epa/patient/api/v1/fhir/Patient/7eeb4e81-ce38-4d70-84fc-9ca4c7d0939c> a fhir:Patient ;
  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/Bundle/example-searchset-patient.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Bundle/example-searchset-patient.ttl> .