Vantis Patient Data Overview

Vantis enables patients to request their data as XML in accordance with MIO DiGA Toolkit format from KBV.

All the data is wrapped in the Bundle component. General patient information, measurements (e.g. sensor data), activities are accessible as a separate entries of the Bundle.
The following data entries are provided in the Bundle:

For reference a minimal, exemplary XML export is shown below. It contains a Bundle with a Patient entry:

    
<Bundle xmlns="http://hl7.org/fhir">
  <id value="5df07ca8-ea84-4016-a85f-a997f47c38f5" />
  <meta>
    <versionId value="1" />
    <lastUpdated value="2021-11-08T13:28:17.239+02:00" />
    <profile value="https://fhir.kbv.de/StructureDefinition/KBV_PR_MIO_DIGA_Bundle|1.0.0" />
  </meta>
  <identifier>
    <type>
      <coding>
        <system value="http://terminology.hl7.org/CodeSystem/v2-0203" />
        <version value="2.9" />
        <code value="RI" />
        <display value="Resource identifier" />
      </coding>
    </type>
    <system value="urn:ietf:rfc:3986" />
    <value value="urn:uuid:a64adff1-43f5-4996-8842-17ef6b7db94c" />
  </identifier>
  <type value="document" />
  <timestamp value="2021-11-08T13:28:17Z" />
  <entry>
    <fullUrl value="urn:uuid:f2281c5b-3368-5870-bcff-fa38a5d7cd05"/>
    <resource>
      <Patient>
        <id value="f2281c5b-3368-5870-bcff-fa38a5d7cd05"/>
        <meta>
          <versionId value="1"/>
          <lastUpdated value="2022-08-17T12:36:39.575140+00:00"/>
          <profile value="https://fhir.kbv.de/StructureDefinition/KBV_PR_MIO_DIGA_Patient|1.0.0"/>
        </meta>
        <identifier>
          <type>
            <coding>
              <system value="http://terminology.hl7.org/CodeSystem/v2-0203"/>
              <version value="2.9"/>
              <code value="RI"/>
              <display value="Resource identifier"/>
            </coding>
          </type>
          <system value="urn:ietf:rfc:3986"/>
          <value value="urn:uuid:f2281c5b-3368-5870-bcff-fa38a5d7cd05"/>
        </identifier>
        <name>
          <use value="official"/>
          <text value="Max Mustermann"/>
          <family value="Mustermann">
            <extension url="http://hl7.org/fhir/StructureDefinition/humanname-own-name">
              <valueString value="Mustermann"/>
            </extension>
          </family>
          <given value="Max"/>
        </name>
        <gender value="male"/>
      </Patient>
    </resource>
  </entry>
</Bundle>