FHIR Chat · Tipps & Tricks zur Session 1 · DIT-Community-a-thon

Stream: DIT-Community-a-thon

Topic: Tipps & Tricks zur Session 1


view this post on Zulip Simone Heckmann (Oct 27 2020 at 09:45):

Hier ist der Beispieldatensatz, wie wir ihn bisher erstellt haben:

<Patient xmlns="http://hl7.org/fhir">
    <active value="true"/>
    <gender value="female"/>
    <birthDate value="2020-10-27"/>
</Patient>

view this post on Zulip Simone Heckmann (Oct 27 2020 at 09:46):

Zum Validieren gegen das IsiK-Profil muss folgendes Element hinzugefügt werden:

    <meta>
        <profile value="http://fhir.gematik.de/isik/StructureDefinition/IsikPatient"/>
    </meta>

view this post on Zulip Simone Heckmann (Oct 27 2020 at 09:46):

Hier ist nochmal der Link zum Validator: https://simplifier.net/validate?fhirVersion=R4&scope=DITConnectathon@current

view this post on Zulip Kilian Krockauer (Oct 27 2020 at 09:55):

Ich hoffe, es ist OK, wenn ich die entsprechende JSON-Resource hier mal einfüge

{
    "resourceType": "Patient",
    "meta": {
        "profile": "http://fhir.gematik.de/isik/StructureDefinition/IsikPatient"
    },
    "active": true,
    "gender": "female",
    "birthDate": "2020-10-27"
}

view this post on Zulip Simone Heckmann (Oct 27 2020 at 11:32):

Hier ist der letzte Stand meiner Testdaten:

<Patient xmlns="http://hl7.org/fhir">
    <id value="12345678"/>
    <meta>
        <profile value="http://fhir.gematik.de/isik/StructureDefinition/IsikPatient"/>
        <profile value="https://fhir.kbv.de/StructureDefinition/KBV_PR_Base_Patient"/>
        <profile value="https://www.medizininformatik-initiative.de/fhir/core/modul-person/StructureDefinition/Patient"/>
    </meta>
    <identifier>
        <type>
            <coding>
                <system value="http://fhir.de/CodeSystem/identifier-type-de-basis"/>
                <code value="GKV"/>
            </coding>
        </type>
        <system value="http://fhir.de/NamingSystem/gkv/kvid-10" />
        <value value="G995030567" />
    </identifier>
    <identifier>
        <type>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v2-0203" />
                <code value="MR" />
            </coding>
        </type>
        <system value="http://fhir.kkh-posemuckel.de/NamingSystem/patient-identifier" />
        <value value="12345678" />
    </identifier>
    <active value="true"/>
    <name>
        <use value="official"/>
        <family value="Gräfin von und zu Heckmann">
            <extension url="http://fhir.de/StructureDefinition/humanname-namenszusatz">
                <valueString value="Gräfin"/>
            </extension>
            <extension url="http://hl7.org/fhir/StructureDefinition/humanname-own-name">
                <valueString value="Heckmann"/>
            </extension>
            <extension url="http://hl7.org/fhir/StructureDefinition/humanname-own-prefix">
                <valueString value="von und zu"/>
            </extension>
        </family>
        <given value="Simone"/>
    </name>
    <gender value="female"/>
    <birthDate value="2020-10-27"/>
    <address>
        <type value="physical"/>
        <line value="Milchstr. 42">
            <extension url="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName">
                <valueString value="Milchstr."/>
            </extension>
            <extension url="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber">
                <valueString value="42"/>
            </extension>
        </line>
        <city value="Marshausen"/>
        <postalCode value="12345"/>
        <country value="DE"/>
    </address>
</Patient>

view this post on Zulip Patrick Werner (Oct 27 2020 at 11:35):

Hier die "Lösung" in JSON:

{
  "resourceType": "Patient",
  "id": "superID",
  "meta": {
    "profile": [ "http://fhir.gematik.de/isik/StructureDefinition/IsikPatient", "https://fhir.kbv.de/StructureDefinition/KBV_PR_Base_Patient", "https://www.medizininformatik-initiative.de/fhir/core/modul-person/StructureDefinition/Patient" ]
  },
  "identifier": [ {
    "type": {
      "coding": [ {
        "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
        "code": "MR"
      } ]
    },
    "system": "http://superKrankenhaus/fhir/NamingSystem/patientenID",
    "value": "0123456789"
  }, {
    "type": {
      "coding": [ {
        "system": "http://fhir.de/CodeSystem/identifier-type-de-basis",
        "code": "GKV"
      } ]
    },
    "system": "http://fhir.de/NamingSystem/gkv/kvid-10",
    "value": "0123456789",
    "assigner": {
      "identifier": {
        "system": "http://fhir.de/NamingSystem/arge-ik/iknr",
        "value": "0123456789"
      }
    }
  } ],
  "active": true,
  "name": [ {
    "extension": [ {
      "url": "http://fhir.de/StructureDefinition/humanname-namenszusatz",
      "valueString": "Gräf:in"
    }, {
      "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
      "valueString": "van"
    }, {
      "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
      "valueString": "Familienname"
    } ],
    "use": "official",
    "family": "Gräf:in van Familienname",
    "given": [ "EinVorname" ]
  } ],
  "gender": "other",
  "_gender": {
    "extension": [ {
      "url": "http://fhir.de/StructureDefinition/gender-amtlich-de",
      "valueCoding": {
        "system": "http://fhir.de/CodeSystem/gender-amtlich-de",
        "code": "D",
        "display": "divers"
      }
    } ]
  },
  "birthDate": "1980-02-20",
  "address": [ {
    "type": "physical",
    "line": [ "StraßenStraße 12A" ],
    "_line": [ {
      "extension": [ {
        "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName",
        "valueString": "StraßenStraße"
      }, {
        "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber",
        "valueString": "12A"
      } ]
    } ],
    "city": "Venusheim",
    "postalCode": "12345",
    "country": "AUS"
  } ]
}

Last updated: Apr 12 2022 at 19:14 UTC