Implementation Guide
ePA Basisfunktionalitäten
Version 1.1.5 - ballot

: Example Patient History Bundle - JSON Representation

Raw json | Download

{
  "resourceType" : "Bundle",
  "id" : "example-patient-history-bundle",
  "type" : "history",
  "total" : 2,
  "link" : [
    {
      "relation" : "self",
      "url" : "/epa/patient/api/v1/fhir/Patient/_history"
    }
  ],
  "entry" : [
    {
      "fullUrl" : "http://epa4all/epa/patient/api/v1/fhir/Patient/e6442a99-521b-482c-b62b-b0f809d4e951",
      "resource" : {
        "resourceType" : "Patient",
        "id" : "e6442a99-521b-482c-b62b-b0f809d4e951",
        "meta" : {
          "profile" : [
            🔗 "https://gematik.de/fhir/epa/StructureDefinition/epa-patient"
          ]
        },
        "identifier" : [
          {
            "system" : "http://fhir.de/sid/gkv/kvid-10",
            "value" : "G995030566"
          }
        ],
        "active" : true,
        "name" : [
          {
            "use" : "official",
            "family" : "Mustermann",
            "given" : [
              "Erika"
            ]
          },
          {
            "use" : "maiden",
            "family" : "Gabler",
            "_family" : {
              "extension" : [
                {
                  "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
                  "valueString" : "Gabler"
                }
              ]
            }
          }
        ],
        "gender" : "female",
        "birthDate" : "1964-08-12"
      },
      "request" : {
        "method" : "PUT",
        "url" : "Patient/e6442a99-521b-482c-b62b-b0f809d4e951/_history/2"
      },
      "response" : {
        "status" : "200 OK",
        "lastModified" : "2025-10-10T15:00:00.000Z"
      }
    },
    {
      "fullUrl" : "http://epa4all/epa/patient/api/v1/fhir/Patient/e6442a99-521b-482c-b62b-b0f809d4e951",
      "resource" : {
        "resourceType" : "Patient",
        "id" : "e6442a99-521b-482c-b62b-b0f809d4e951",
        "meta" : {
          "profile" : [
            🔗 "https://gematik.de/fhir/epa/StructureDefinition/epa-patient"
          ]
        },
        "identifier" : [
          {
            "system" : "http://fhir.de/sid/gkv/kvid-10",
            "value" : "G995030566"
          }
        ],
        "active" : true,
        "name" : [
          {
            "use" : "official",
            "family" : "Gabler",
            "given" : [
              "Erika"
            ]
          }
        ],
        "gender" : "female",
        "birthDate" : "1964-08-12"
      },
      "request" : {
        "method" : "POST",
        "url" : "Patient/e6442a99-521b-482c-b62b-b0f809d4e951/_history/1"
      },
      "response" : {
        "status" : "201 Created",
        "lastModified" : "2025-08-22T14:43:33.244Z"
      }
    }
  ]
}