Stream: german/kbv
Topic: Validierung Problem bei Diagnose Code
Sarat Chand Kandukuri (Sep 25 2020 at 11:46):
Ich habe eine Diagnose Ressource, dass ich von eine KBV-VOS Profil abgebildet hat.
https://simplifier.net/verordnungssoftware-schnittstelle/74prvosdiagnose
In Condition Ressource, ist es so hinzufügt:
<Condition xmlns="http://hl7.org/fhir">
<id value="123"></id>
<code>
<coding>
<extension url="http://fhir.de/StructureDefinition/icd-10-gm-haupt-kreuz/0.2">
<valueCodeableConcept>
<coding>
<system value="http://fhir.de/CodeSystem/dimdi/icd-10-gm"></system>
<version value="2017"></version>
<code value="U07.1"></code>
</coding>
</valueCodeableConcept>
</extension>
<system value="http://fhir.de/CodeSystem/dimdi/icd-10-gm"></system>
<version value="1.0"></version>
<code value="J12.0"></code>
</coding>
</code>
Beim validieren bekomme ich solche Fehler:
Error @ Bundle.entry[9].resource.ofType(Condition).code.coding[0] (line 483, col24) : The code provided (http://fhir.de/CodeSystem/dimdi/icd-10-gm#J12.0) is not in the value set http://fhir.de/ValueSet/dimdi/icd-10-gm, and a code from this value set is required: CodeSystem uri 'http://fhir.de/CodeSystem/dimdi/icd-10-gm|*' is unknown (from http://tx.fhir.org/r3)
Error @ Bundle.entry[9].resource.ofType(Condition).code.coding[0].extension[0].value.ofType(CodeableConcept).coding[0] (line 486, col33) : The code provided (http://fhir.de/CodeSystem/dimdi/icd-10-gm#U07.1) is not in the value set http://fhir.de/ValueSet/dimdi/icd-10-gm, and a code from this value set is required: CodeSystem uri 'http://fhir.de/CodeSystem/dimdi/icd-10-gm|*' is unknown (from http://tx.fhir.org/r3)
Ich verstehe nicht, was da genau erwartet wird.
Was hat die Fehlermeldung zu bedeuten und kann ich dagegen irgendwas tun?
Sven Helfer (Sep 25 2020 at 12:26):
Ich glaube, die Version in der Primärdiagnose ist falsch, oder?
Patrick Werner (Sep 25 2020 at 12:32):
Sarat Chand Kandukuri said:
Ich habe eine Diagnose Ressource, dass ich von eine KBV-VOS Profil abgebildet hat.
https://simplifier.net/verordnungssoftware-schnittstelle/74prvosdiagnoseIn Condition Ressource, ist es so hinzufügt:
<Condition xmlns="http://hl7.org/fhir"> <id value="123"></id> <code> <coding> <extension url="http://fhir.de/StructureDefinition/icd-10-gm-haupt-kreuz/0.2"> <valueCodeableConcept> <coding> <system value="http://fhir.de/CodeSystem/dimdi/icd-10-gm"></system> <version value="2017"></version> <code value="U07.1"></code> </coding> </valueCodeableConcept> </extension> <system value="http://fhir.de/CodeSystem/dimdi/icd-10-gm"></system> <version value="1.0"></version> <code value="J12.0"></code> </coding> </code>
Beim validieren bekomme ich solche Fehler:
Error @ Bundle.entry[9].resource.ofType(Condition).code.coding[0] (line 483, col24) : The code provided (http://fhir.de/CodeSystem/dimdi/icd-10-gm#J12.0) is not in the value set http://fhir.de/ValueSet/dimdi/icd-10-gm, and a code from this value set is required: CodeSystem uri 'http://fhir.de/CodeSystem/dimdi/icd-10-gm|*' is unknown (from http://tx.fhir.org/r3) Error @ Bundle.entry[9].resource.ofType(Condition).code.coding[0].extension[0].value.ofType(CodeableConcept).coding[0] (line 486, col33) : The code provided (http://fhir.de/CodeSystem/dimdi/icd-10-gm#U07.1) is not in the value set http://fhir.de/ValueSet/dimdi/icd-10-gm, and a code from this value set is required: CodeSystem uri 'http://fhir.de/CodeSystem/dimdi/icd-10-gm|*' is unknown (from http://tx.fhir.org/r3)
Ich verstehe nicht, was da genau erwartet wird.
Was hat die Fehlermeldung zu bedeuten und kann ich dagegen irgendwas tun?
Es bedeutet, dass der Java Validator per default tx.fhir.org als Terminologieserver verwendet. Dieser kennt das CodeSystem http://fhir.de/CodeSystem/dimdi/icd-10-gm aber nicht und wirft deshalb einen Fehler.
Beheben lässt sich das durch die Nutzung eines Terminologieservers welcher das CS supportet.
Der Parameter dazu ist: -tx [URL_DES_TERM_SERVERS]
Sarat Chand Kandukuri (Sep 25 2020 at 12:39):
@Patrick Werner danke für die Rückmeldung..
Ich habe aber die alle Profile lokal runtergeladen und für die Validator verfügbar gestellt.. Würde das nicht reichen?
Und ich sehe, dass es eine FHIR-DE Codesystem(https://simplifier.net/BasisprofilDE/icd-10-gm-duplicate-2/~xml) ist: Wo kann ich sehen, im welche TerminologieServer es drin ist?
Patrick Werner (Sep 25 2020 at 12:40):
Dies ist ein leeres CodeSystem und kann daher nicht zur Validierung verwendet werden.
Patrick Werner (Sep 25 2020 at 12:46):
Mit ist kein öffentlich zugänglicher Server bekannt der das CS, incl. content, zur Verfügung stellt.
Last updated: Apr 12 2022 at 19:14 UTC