-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlog.txt
1772 lines (1276 loc) · 236 KB
/
log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\AdverseEvent-mii-pr-onko-nebenwirkung-0.json 05:14:25
[1, 2] AdverseEvent: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] AdverseEvent: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[10, 4] AdverseEvent.event.coding[0].system: Warning - A definition for CodeSystem 'https://www.meddra.org' version 'Version 4' could not be found, so the code cannot be validated. Valid versions: []
[23, 4] AdverseEvent.severity: Error - Keiner der bereitgestellten Codes ist im ValueSet 'AdverseEventSeverity' (http://hl7.org/fhir/ValueSet/adverse-event-severity|4.0.1), und ein Code aus diesem ValueSet ist erforderlich) (Codes = https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/CodeSystem/mii-vs-onko-nebenwirkung-ctcae-grad#4)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CapabilityStatement-mii-cps-onko-capabilitystatement.json 05:14:25
[1, 2] CapabilityStatement: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[130, 148] CapabilityStatement.rest[0].resource[0].searchParam[3].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-condition-verification-status' kann nicht aufgelöst werden
[141, 161] CapabilityStatement.rest[0].resource[0].searchParam[4].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/SearchParameter/mii-sp-onko-condition-ext-morphology-behavior-icdo' kann nicht aufgelöst werden
[207, 142] CapabilityStatement.rest[0].resource[0].searchParam[10].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-condition-asserted-date' kann nicht aufgelöst werden
[218, 137] CapabilityStatement.rest[0].resource[0].searchParam[11].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-condition-evidence' kann nicht aufgelöst werden
[518, 134] CapabilityStatement.rest[0].resource[3].supportedProfile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-anzahl-befallene-lymphknoten' kann nicht aufgelöst werden
[519, 136] CapabilityStatement.rest[0].resource[3].supportedProfile[1]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-anzahl-untersuchte-lymphknoten' kann nicht aufgelöst werden
[521, 143] CapabilityStatement.rest[0].resource[3].supportedProfile[3]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-anzahl-befallene-sentinel-lymphknoten' kann nicht aufgelöst werden
[522, 113] CapabilityStatement.rest[0].resource[3].supportedProfile[4]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-grading' kann nicht aufgelöst werden
[524, 124] CapabilityStatement.rest[0].resource[3].supportedProfile[6]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tnm-klassifikation' kann nicht aufgelöst werden
[525, 121] CapabilityStatement.rest[0].resource[3].supportedProfile[7]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tnm-t-kategorie' kann nicht aufgelöst werden
[526, 121] CapabilityStatement.rest[0].resource[3].supportedProfile[8]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tnm-n-kategorie' kann nicht aufgelöst werden
[527, 121] CapabilityStatement.rest[0].resource[3].supportedProfile[9]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tnm-m-kategorie' kann nicht aufgelöst werden
[528, 118] CapabilityStatement.rest[0].resource[3].supportedProfile[10]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tnm-a-symbol' kann nicht aufgelöst werden
[529, 118] CapabilityStatement.rest[0].resource[3].supportedProfile[11]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tnm-m-symbol' kann nicht aufgelöst werden
[530, 121] CapabilityStatement.rest[0].resource[3].supportedProfile[12]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tnm-l-kategorie' kann nicht aufgelöst werden
[531, 122] CapabilityStatement.rest[0].resource[3].supportedProfile[13]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tnm-pn-kategorie' kann nicht aufgelöst werden
[532, 118] CapabilityStatement.rest[0].resource[3].supportedProfile[14]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tnm-r-symbol' kann nicht aufgelöst werden
[533, 121] CapabilityStatement.rest[0].resource[3].supportedProfile[15]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tnm-v-kategorie' kann nicht aufgelöst werden
[534, 118] CapabilityStatement.rest[0].resource[3].supportedProfile[16]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tnm-y-symbol' kann nicht aufgelöst werden
[535, 121] CapabilityStatement.rest[0].resource[3].supportedProfile[17]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tnm-s-kategorie' kann nicht aufgelöst werden
[536, 130] CapabilityStatement.rest[0].resource[3].supportedProfile[18]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-weitere-klassifikationen' kann nicht aufgelöst werden
[537, 120] CapabilityStatement.rest[0].resource[3].supportedProfile[19]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-residualstatus' kann nicht aufgelöst werden
[538, 120] CapabilityStatement.rest[0].resource[3].supportedProfile[20]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-fernmetastasen' kann nicht aufgelöst werden
[539, 134] CapabilityStatement.rest[0].resource[3].supportedProfile[21]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-allgemeiner-leistungszustand' kann nicht aufgelöst werden
[540, 113] CapabilityStatement.rest[0].resource[3].supportedProfile[22]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-verlauf' kann nicht aufgelöst werden
[541, 109] CapabilityStatement.rest[0].resource[3].supportedProfile[23]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tod' kann nicht aufgelöst werden
[542, 125] CapabilityStatement.rest[0].resource[3].supportedProfile[24]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-genetische-variante' kann nicht aufgelöst werden
[954, 145] CapabilityStatement.rest[0].resource[3].searchParam[16].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-observation-interpretation' kann nicht aufgelöst werden
[976, 135] CapabilityStatement.rest[0].resource[3].searchParam[18].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-observation-note' kann nicht aufgelöst werden
[1139, 123] CapabilityStatement.rest[0].resource[4].searchParam[4].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-mode' kann nicht aufgelöst werden
[1183, 123] CapabilityStatement.rest[0].resource[4].searchParam[8].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-flag' kann nicht aufgelöst werden
[1223, 115] CapabilityStatement.rest[0].resource[5].supportedProfile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-operation' kann nicht aufgelöst werden
[1224, 122] CapabilityStatement.rest[0].resource[5].supportedProfile[1]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-strahlentherapie' kann nicht aufgelöst werden
[1225, 126] CapabilityStatement.rest[0].resource[5].supportedProfile[2]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-systemische-therapie' kann nicht aufgelöst werden
[1226, 115] CapabilityStatement.rest[0].resource[5].supportedProfile[3]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-operation' kann nicht aufgelöst werden
[1384, 136] CapabilityStatement.rest[0].resource[5].searchParam[9].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-procedure-outcome' kann nicht aufgelöst werden
[1395, 141] CapabilityStatement.rest[0].resource[5].searchParam[10].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-procedure-complication' kann nicht aufgelöst werden
[1450, 167] CapabilityStatement.rest[0].resource[5].searchParam[15].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/SearchParameter/mii-sp-onko-procedure-ext-strahlentherapie-stellungzurop' kann nicht aufgelöst werden
[1538, 166] CapabilityStatement.rest[0].resource[5].searchParam[23].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/SearchParameter/mii-sp-onko-procedure-systemischetherapie-ext-intention' kann nicht aufgelöst werden
[1549, 170] CapabilityStatement.rest[0].resource[5].searchParam[24].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/SearchParameter/mii-sp-onko-procedure-systemischetherapie-ext-stellungzurop' kann nicht aufgelöst werden
[1578, 118] CapabilityStatement.rest[0].resource[6].supportedProfile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-nebenwirkung' kann nicht aufgelöst werden
[1646, 72] CapabilityStatement.rest[0].resource[6].searchParam[3].definition: Information - Canonical URL 'http://hl7.org/fhir/SearchParameter/event' kann nicht aufgelöst werden
[1668, 128] CapabilityStatement.rest[0].resource[6].searchParam[5].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-encounter' kann nicht aufgelöst werden
[1679, 78] CapabilityStatement.rest[0].resource[6].searchParam[6].definition: Information - Canonical URL 'http://hl7.org/fhir/SearchParameter/seriousness' kann nicht aufgelöst werden
[1690, 127] CapabilityStatement.rest[0].resource[6].searchParam[7].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-instance' kann nicht aufgelöst werden
[1719, 137] CapabilityStatement.rest[0].resource[7].supportedProfile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-systemische-therapie-medikation' kann nicht aufgelöst werden
[1787, 147] CapabilityStatement.rest[0].resource[7].searchParam[3].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-medicationstatement-based-on' kann nicht aufgelöst werden
[1809, 91] CapabilityStatement.rest[0].resource[7].searchParam[5].definition: Information - Canonical URL 'http://hl7.org/fhir/SearchParameter/MedicationStatement-code' kann nicht aufgelöst werden
[1842, 143] CapabilityStatement.rest[0].resource[7].searchParam[8].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-medicationstatement-note' kann nicht aufgelöst werden
[1871, 120] CapabilityStatement.rest[0].resource[8].supportedProfile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-tumorkonferenz' kann nicht aufgelöst werden
[2005, 135] CapabilityStatement.rest[0].resource[8].searchParam[9].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-careplan-created' kann nicht aufgelöst werden
[2016, 137] CapabilityStatement.rest[0].resource[8].searchParam[10].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-careplan-addresses' kann nicht aufgelöst werden
[2027, 143] CapabilityStatement.rest[0].resource[8].searchParam[11].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-careplan-supporting-info' kann nicht aufgelöst werden
[2049, 143] CapabilityStatement.rest[0].resource[8].searchParam[13].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-careplan-activity-status' kann nicht aufgelöst werden
[2060, 150] CapabilityStatement.rest[0].resource[8].searchParam[14].definition: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/SearchParameter/mii-sp-meta-careplan-activity-status-reason' kann nicht aufgelöst werden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CarePlan-mii-exa-onko-tumorkonferenz-01.json 05:14:25
[1, 2] CarePlan: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] CarePlan: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CarePlan-mii-exa-onko-tumorkonferenz-02.json 05:14:25
[1, 2] CarePlan: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] CarePlan: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CarePlan-PatientKimMusterperson-Tumorkonferenz-1.json 05:14:25
[1, 2] CarePlan: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] CarePlan: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CarePlan-PatientKimMusterperson-Tumorkonferenz-2.json 05:14:25
[1, 2] CarePlan: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] CarePlan: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[11, 6] CarePlan.category[0].coding[0].display: Error - Der Displayname für https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/CodeSystem/mii-cs-onko-therapieplanung-typ#praeth sollte einer von ''prätherapeutische Tumorkonferenz (Festlegung der Therapiestrategie)'' anstelle von 'prätherapeutische Tumorkonferenz (Festlegung der Therapiestrategie' sein.
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CarePlan-PatientKimMusterperson-Tumorkonferenz-3.json 05:14:25
[1, 2] CarePlan: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] CarePlan: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[11, 6] CarePlan.category[0].coding[0].display: Error - Der Displayname für https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/CodeSystem/mii-cs-onko-therapieplanung-typ#postop sollte einer von ''postoperative Tumorkonferenz (Planung der postoperativen Therapie, z. B. zur Frage adjuvante Therapie)'' anstelle von 'Posttherapeutische Tumorkonferenz' sein.
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CarePlan-PatientKimMusterperson-Tumorkonferenz-4.json 05:14:25
[1, 2] CarePlan: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] CarePlan: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[11, 6] CarePlan.category[0].coding[0].display: Error - Der Displayname für https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/CodeSystem/mii-cs-onko-therapieplanung-typ#postop sollte einer von ''postoperative Tumorkonferenz (Planung der postoperativen Therapie, z. B. zur Frage adjuvante Therapie)'' anstelle von 'posttherapeutische Tumorkonferenz (manche Tumoren werden nicht operiert)' sein.
[24, 26] CarePlan.status: Error - !!Der angegebene Wert ('in-progress') ist nicht im ValueSet 'RequestStatus' (http://hl7.org/fhir/ValueSet/request-status|4.0.1), und ein Code aus diesem Valueset ist erforderlich) (error message = !!!!!!!!!!!!!!!!Die System-URI konnte für den Code in-progress im ValueSet http://hl7.org/fhir/ValueSet/request-status|4.0.1 nicht ermittelt werden; Der angegebene Code '#in-progress' befindet sich nicht im ValueSet 'http://hl7.org/fhir/ValueSet/request-status|4.0.1')
[47, 27] CarePlan.activity[0].detail.status: Error - !!Der angegebene Wert ('active') ist nicht im ValueSet 'CarePlanActivityStatus' (http://hl7.org/fhir/ValueSet/care-plan-activity-status|4.0.1), und ein Code aus diesem Valueset ist erforderlich) (error message = !!!!!!!!!!!!!!!!Die System-URI konnte für den Code active im ValueSet http://hl7.org/fhir/ValueSet/care-plan-activity-status|4.0.1 nicht ermittelt werden; Der angegebene Code '#active' befindet sich nicht im ValueSet 'http://hl7.org/fhir/ValueSet/care-plan-activity-status|4.0.1')
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-allgemeiner-leistungszustand-ecog.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-allgemeiner-leistungszustand-karnofsky.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-fernmetastasen.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-genetische-variante-auspraegung.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-grading.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-intention.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-nebenwirkung-ctcae-grad.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-operation-komplikation.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-primaertumor-diagnosesicherung.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-residualstatus.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[59, 116] CodeSystem.valueSet: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/ValueSet/mii-vs-onko-residualstatus' kann nicht aufgelöst werden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-seitenlokalisation.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-strahlentherapie-applikationsart.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[127, 134] CodeSystem.valueSet: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/ValueSet/mii-vs-onko-strahlentherapie-applikationsart' kann nicht aufgelöst werden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-strahlentherapie-boost.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-strahlentherapie-strahlenart.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[103, 130] CodeSystem.valueSet: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/ValueSet/mii-vs-onko-strahlentherapie-strahlenart' kann nicht aufgelöst werden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-strahlentherapie-zielgebiet.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[423, 129] CodeSystem.valueSet: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/ValueSet/mii-vs-onko-strahlentherapie-zielgebiet' kann nicht aufgelöst werden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-studienteilnahme.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-therapie-ende-grund.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-therapie-stellungzurop.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-therapie-typ.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-therapieabweichung.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-therapieplanung-typ.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-tnm-uicc.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-tnm-version.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-tod.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-verlauf-fernmetastasen.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-verlauf-gesamtbeurteilung.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-verlauf-lymphknoten.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\CodeSystem-mii-cs-onko-verlauf-primaertumor.json 05:14:25
[1, 2] CodeSystem: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-allgemeiner-leistungszustand-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-fernmetastasen-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[14, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-genetische-variante-auspraegung-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-grading-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
[20, 22] ConceptMap.group[0].element[0].code: Warning - !!Source display 'primär erworbene Melanose ohne zelluläre Atypien (nur beim malignen Melanom der Konjunktiva)' ist nicht gültig. Mögliche Codes 'primär erworbene Melanose ohne zelluläre Atypien'
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-intention-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-nebenwirkung-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-operation-komplikation-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
[211, 51] ConceptMap.group[0].element[17].target[0].display: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-primaertumor-diagnosesicherung-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
[161, 24] ConceptMap.group[0].element[13].code: Warning - !!Source display 'histologische Untersuchung des Gewebes bei Autopsie' ist nicht gültig. Mögliche Codes 'Histologie der Autopsie'
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-seitenlokalisation-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
[36, 52] ConceptMap.group[0].element[1].target[0].display: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-strahlentherapie-applikationsart-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-strahlentherapie-boost-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-strahlentherapie-strahlenart-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-strahlentherapie-strahleneinheit-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].source: Warning - Das Quellcode-System http://unitsofmeasure.org hat nicht alle Inhalte (Inhalt = not-present), so dass die Codes nicht geprüft werden können.
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-strahlentherapie-zielgebiet-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-studienteilnahme-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-therapie-ende-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
[91, 69] ConceptMap.group[0].element[6].target[0].display: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-therapie-stellung-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-therapie-typ-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-therapieabweichung-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-therapieplanung-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-tnm-uicc-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[12, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-tod-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-verlauf-fernmetastasen-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
[20, 22] ConceptMap.group[0].element[0].code: Warning - !!Source display 'kein Fernmetastasen nachweisbar' ist nicht gültig. Mögliche Codes 'keine Fernmetastasen nachweisbar'
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-verlauf-gesamtbeurteilung-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-verlauf-lymphknoten-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ConceptMap-mii-cm-onko-verlauf-primaertumor-sct.json 05:14:25
[1, 2] ConceptMap: Warning - Constraint failed: cmd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/ConceptMap)
[1, 2] ConceptMap: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 6] ConceptMap.group[0].target: Information - Target Code System http://snomed.info/sct is only supported on the terminology server, so the target codes are not validated for performance reasons
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Condition-mii-exa-onko-diagnose.json 05:14:25
[1, 2] Condition: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Condition: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 8] Condition.extension[1].value.ofType(CodeableConcept).coding[0].display: Error - Wrong Display Name 'Invasives duktales Karzinom o.n.A. [C50.-]' for http://terminology.hl7.org/CodeSystem/icd-o-3#8500/3. Valid display is 'Infiltrating duct carcinoma, NOS' (for the language(s) 'en')
[15, 8] Condition.extension[1].value.ofType(CodeableConcept): Error - Keiner der bereitgestellten Codes ist im ValueSet 'MII VS Onkologie Histology Morphology Behavior ICDO3' (https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/ValueSet/mii-vs-onko-histology-morphology-behavior-icdo3|2025.0.0), und ein Code aus diesem ValueSet ist erforderlich) (Codes = http://terminology.hl7.org/CodeSystem/icd-o-3#8500/3)
[27, 4] Condition.code.coding[0].system: Warning - A definition for CodeSystem 'http://fhir.de/CodeSystem/bfarm/icd-10-gm' version '2020' could not be found, so the code cannot be validated. Valid versions: []
[32, 12] Condition.code.coding[0].extension[0]: Error - !!Die extension http://fhir.de/StructureDefinition/seitenlokalisation ist nicht bekannt, and hier nicht erlaubt
[34, 14] Condition.code.coding[0].extension[0].value.ofType(Coding): Information - !!!!!!!!Das CodeSystem https://fhir.kbv.de/CodeSystem/KBV_CS_SFHIR_ICD_SEITENLOKALISATION ist unbekannt
[61, 6] Condition.bodySite[0].coding[1].code: Warning - Unknown Code 'C50.4' in the system 'http://terminology.hl7.org/CodeSystem/icd-o-3' version '2000' - note that the code system is labeled as a fragment, so the code may be valid in some other fragment
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Condition-PatientKimMusterperson-Diagnosis-1.json 05:14:25
[1, 2] Condition: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Condition: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[15, 4] Condition.verificationStatus: Error - Keiner der bereitgestellten Codes ist im ValueSet 'ConditionVerificationStatus' (http://hl7.org/fhir/ValueSet/condition-ver-status|4.0.1), und ein Code aus diesem ValueSet ist erforderlich) (Codes = https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/CodeSystem/mii-cs-onko-primaertumor-diagnosesicherung#2)
[25, 6] Condition.bodySite[0].coding[0].code: Warning - Unknown Code 'C56.9' in the system 'http://terminology.hl7.org/CodeSystem/icd-o-3' version '2000' - note that the code system is labeled as a fragment, so the code may be valid in some other fragment
[39, 4] Condition.clinicalStatus.coding[0].code: Error - Unbekannter Code active in http://terminology.hl7.org/CodeSystem/condition-ver-status Version 2.0.1
[39, 4] Condition.clinicalStatus: Error - Keiner der bereitgestellten Codes ist im ValueSet 'Condition Clinical Status Codes' (http://hl7.org/fhir/ValueSet/condition-clinical|4.0.1), und ein Code aus diesem ValueSet ist erforderlich) (Codes = http://terminology.hl7.org/CodeSystem/condition-ver-status#active)
[47, 4] Condition.code.coding[0].system: Warning - A definition for CodeSystem 'http://fhir.de/CodeSystem/bfarm/icd-10-gm' could not be found, so the code cannot be validated
[52, 117] Condition.code.coding[0].display: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Condition-PatientKimMusterperson-PrimaryDiagnosis-2.json 05:14:25
[1, 2] Condition: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Condition: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[28, 6] Condition.bodySite[0].coding[0].code: Warning - Unknown Code 'C56.9' in the system 'http://terminology.hl7.org/CodeSystem/icd-o-3' version '2000' - note that the code system is labeled as a fragment, so the code may be valid in some other fragment
[42, 4] Condition.clinicalStatus.coding[0]: Warning - !!Kodierung hat kein System - kann nicht validiert werden
[42, 4] Condition.clinicalStatus: Error - Keiner der bereitgestellten Codes ist im ValueSet 'Condition Clinical Status Codes' (http://hl7.org/fhir/ValueSet/condition-clinical|4.0.1), und ein Code aus diesem ValueSet ist erforderlich) (Codes = null#active)
[49, 4] Condition.code.coding[0].system: Warning - A definition for CodeSystem 'http://fhir.de/CodeSystem/bfarm/icd-10-gm' could not be found, so the code cannot be validated
[54, 117] Condition.code.coding[0].display: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\DiagnosticReport-mii-exa-onko-befund-1.json 05:14:25
[1, 2] DiagnosticReport: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] DiagnosticReport: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\DiagnosticReport-PatientKimMusterperson-PathoReport-1.json 05:14:25
[1, 2] DiagnosticReport: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[7, 23] DiagnosticReport.status: Error - !!Der angegebene Wert ('complete') ist nicht im ValueSet 'DiagnosticReportStatus' (http://hl7.org/fhir/ValueSet/diagnostic-report-status|4.0.1), und ein Code aus diesem Valueset ist erforderlich) (error message = !!!!!!!!!!!!!!!!Die System-URI konnte für den Code complete im ValueSet http://hl7.org/fhir/ValueSet/diagnostic-report-status|4.0.1 nicht ermittelt werden; Der angegebene Code '#complete' befindet sich nicht im ValueSet 'http://hl7.org/fhir/ValueSet/diagnostic-report-status|4.0.1')
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\ImplementationGuide-mii-ig-onko-de-v2025.json 05:14:25
[1, 2] ImplementationGuide: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[30, 96] ImplementationGuide.dependsOn[0].uri: Information - Canonical URL 'http://fhir.org/packages/de.basisprofil.r4/ImplementationGuide/de.basisprofil.r4' kann nicht aufgelöst werden
[36, 160] ImplementationGuide.dependsOn[1].uri: Information - Canonical URL 'http://fhir.org/packages/de.medizininformatikinitiative.kerndatensatz.meta/ImplementationGuide/de.medizininformatikinitiative.kerndatensatz.meta' kann nicht aufgelöst werden
[42, 129] ImplementationGuide.dependsOn[2].uri: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/core/modul-diagnose/ImplementationGuide/mii-ig-diagnose-de-v2025' kann nicht aufgelöst werden
[48, 168] ImplementationGuide.dependsOn[3].uri: Information - Canonical URL 'http://fhir.org/packages/de.medizininformatikinitiative.kerndatensatz.prozedur/ImplementationGuide/de.medizininformatikinitiative.kerndatensatz.prozedur' kann nicht aufgelöst werden
[54, 166] ImplementationGuide.dependsOn[4].uri: Information - Canonical URL 'http://fhir.org/packages/de.medizininformatikinitiative.kerndatensatz.biobank/ImplementationGuide/de.medizininformatikinitiative.kerndatensatz.biobank' kann nicht aufgelöst werden
[60, 172] ImplementationGuide.dependsOn[5].uri: Information - Canonical URL 'http://fhir.org/packages/de.medizininformatikinitiative.kerndatensatz.medikation/ImplementationGuide/de.medizininformatikinitiative.kerndatensatz.medikation' kann nicht aufgelöst werden
[66, 164] ImplementationGuide.dependsOn[6].uri: Information - Canonical URL 'http://fhir.org/packages/de.medizininformatikinitiative.kerndatensatz.molgen/ImplementationGuide/de.medizininformatikinitiative.kerndatensatz.molgen' kann nicht aufgelöst werden
[72, 126] ImplementationGuide.dependsOn[7].uri: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/ext/modul-symptom/ImplementationGuide/mii-ig-symptom-de-v2024' kann nicht aufgelöst werden
[83, 88] ImplementationGuide.definition.resource[0].description: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
[91, 88] ImplementationGuide.definition.resource[1].description: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
[539, 116] ImplementationGuide.definition.resource[57].description: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
[547, 103] ImplementationGuide.definition.resource[58].description: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
[555, 113] ImplementationGuide.definition.resource[59].description: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
[563, 114] ImplementationGuide.definition.resource[60].description: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
[811, 426] ImplementationGuide.definition.resource[91].description: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
[1958, 28] ImplementationGuide.definition.resource[239].description: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
[1966, 28] ImplementationGuide.definition.resource[240].description: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
[1998, 223] ImplementationGuide.definition.resource[244].description: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
[2049, 32] ImplementationGuide.definition.parameter[0].code: Error - !!Der angegebene Wert ('copyrightyear') ist nicht im ValueSet 'GuideParameterCode' (http://hl7.org/fhir/ValueSet/guide-parameter-code|4.0.1), und ein Code aus diesem Valueset ist erforderlich) (error message = !!!!!!!!!!!!!!!!Die System-URI konnte für den Code copyrightyear im ValueSet http://hl7.org/fhir/ValueSet/guide-parameter-code|4.0.1 nicht ermittelt werden; Der angegebene Code '#copyrightyear' befindet sich nicht im ValueSet 'http://hl7.org/fhir/ValueSet/guide-parameter-code|4.0.1')
[2053, 31] ImplementationGuide.definition.parameter[1].code: Error - !!Der angegebene Wert ('releaselabel') ist nicht im ValueSet 'GuideParameterCode' (http://hl7.org/fhir/ValueSet/guide-parameter-code|4.0.1), und ein Code aus diesem Valueset ist erforderlich) (error message = !!!!!!!!!!!!!!!!Die System-URI konnte für den Code releaselabel im ValueSet http://hl7.org/fhir/ValueSet/guide-parameter-code|4.0.1 nicht ermittelt werden; Der angegebene Code '#releaselabel' befindet sich nicht im ValueSet 'http://hl7.org/fhir/ValueSet/guide-parameter-code|4.0.1')
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\List-mii-exa-onko-liste-evidenz-erstdiagnose-1.json 05:14:25
[1, 2] List: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\MedicationStatement-mii-exa-onko-systemische-therapie-medikation1.json 05:14:25
[1, 2] MedicationStatement: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] MedicationStatement: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[12, 20] MedicationStatement.status: Error - !!Der angegebene Wert ('final') ist nicht im ValueSet 'Medication status codes' (http://hl7.org/fhir/ValueSet/medication-statement-status|4.0.1), und ein Code aus diesem Valueset ist erforderlich) (error message = !!!!!!!!!!!!!!!!Die System-URI konnte für den Code final im ValueSet http://hl7.org/fhir/ValueSet/medication-statement-status|4.0.1 nicht ermittelt werden; Der angegebene Code '#final' befindet sich nicht im ValueSet 'http://hl7.org/fhir/ValueSet/medication-statement-status|4.0.1')
[17, 4] MedicationStatement.medication.ofType(CodeableConcept).coding[0].system: Warning - A definition for CodeSystem 'http://fhir.de/CodeSystem/bfarm/atc' version 'Version 2022' could not be found, so the code cannot be validated. Valid versions: []
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\MedicationStatement-mii-exa-onko-systemische-therapie-medikation2.json 05:14:25
[1, 2] MedicationStatement: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] MedicationStatement: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[12, 20] MedicationStatement.status: Error - !!Der angegebene Wert ('final') ist nicht im ValueSet 'Medication status codes' (http://hl7.org/fhir/ValueSet/medication-statement-status|4.0.1), und ein Code aus diesem Valueset ist erforderlich) (error message = !!!!!!!!!!!!!!!!Die System-URI konnte für den Code final im ValueSet http://hl7.org/fhir/ValueSet/medication-statement-status|4.0.1 nicht ermittelt werden; Der angegebene Code '#final' befindet sich nicht im ValueSet 'http://hl7.org/fhir/ValueSet/medication-statement-status|4.0.1')
[17, 4] MedicationStatement.medication.ofType(CodeableConcept).coding[0].system: Warning - A definition for CodeSystem 'http://fhir.de/CodeSystem/bfarm/atc' version 'Version 2022' could not be found, so the code cannot be validated. Valid versions: []
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\MedicationStatement-PatientKimMusterperson-SystemicTherapyMedication-1a.json 05:14:25
[1, 2] MedicationStatement: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] MedicationStatement: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[9, 4] MedicationStatement.medication.ofType(CodeableConcept).coding[0].system: Warning - A definition for CodeSystem 'http://fhir.de/CodeSystem/bfarm/atc' could not be found, so the code cannot be validated
[21, 23] MedicationStatement.status: Error - !!Der angegebene Wert ('recorded') ist nicht im ValueSet 'Medication status codes' (http://hl7.org/fhir/ValueSet/medication-statement-status|4.0.1), und ein Code aus diesem Valueset ist erforderlich) (error message = !!!!!!!!!!!!!!!!Die System-URI konnte für den Code recorded im ValueSet http://hl7.org/fhir/ValueSet/medication-statement-status|4.0.1 nicht ermittelt werden; Der angegebene Code '#recorded' befindet sich nicht im ValueSet 'http://hl7.org/fhir/ValueSet/medication-statement-status|4.0.1')
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\MedicationStatement-PatientKimMusterperson-SystemicTherapyMedication-1b.json 05:14:25
[1, 2] MedicationStatement: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] MedicationStatement: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[9, 4] MedicationStatement.medication.ofType(CodeableConcept).coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/atc ist unbekannt
[21, 23] MedicationStatement.status: Error - !!Der angegebene Wert ('recorded') ist nicht im ValueSet 'Medication status codes' (http://hl7.org/fhir/ValueSet/medication-statement-status|4.0.1), und ein Code aus diesem Valueset ist erforderlich) (error message = !!!!!!!!!!!!!!!!Die System-URI konnte für den Code recorded im ValueSet http://hl7.org/fhir/ValueSet/medication-statement-status|4.0.1 nicht ermittelt werden; Der angegebene Code '#recorded' befindet sich nicht im ValueSet 'http://hl7.org/fhir/ValueSet/medication-statement-status|4.0.1')
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\MedicationStatement-PatientKimMusterperson-SystemicTherapyMedication-2a.json 05:14:25
[1, 2] MedicationStatement: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] MedicationStatement: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[9, 4] MedicationStatement.medication.ofType(CodeableConcept).coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/atc ist unbekannt
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\MedicationStatement-PatientKimMusterperson-SystemicTherapyMedication-2b.json 05:14:25
[1, 2] MedicationStatement: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] MedicationStatement: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[9, 4] MedicationStatement.medication.ofType(CodeableConcept).coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/atc ist unbekannt
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\MedicationStatement-PatientKimMusterperson-SystemicTherapyMedication-3.json 05:14:25
[1, 2] MedicationStatement: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] MedicationStatement: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[9, 4] MedicationStatement.medication.ofType(CodeableConcept).coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/atc ist unbekannt
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-allgemeiner-leistungszustand-1.json 05:14:25
[1, 2] Observation: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Observation: Warning - !!Alle Observations sollten ein effectiveDateTime oder eine effectivePeriode haben
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[46, 8] Observation.component[1].value.ofType(CodeableConcept).coding[0].display: Error - Der Displayname für https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/CodeSystem/mii-cs-onko-allgemeiner-leistungszustand-ecog#3 sollte einer von ''Nur begrenzte Selbstversorgung möglich; ist 50 % oder mehr der Wachzeit an Bett oder Stuhl gebunden (30 40 % nach Karnofsky)'' anstelle von 'Nur begrenzte Selbstversorgung möglich; ist 50 % oder mehr der Wachzeit an Bett oder Stuhl gebunden (30 - 40 % nach Karnofsky)' sein.
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-anzahl-befallene-lymphknoten-0.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-anzahl-befallene-sentinel-lymphknoten-0.json 05:14:25
[1, 2] Observation: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-anzahl-untersuchte-lymphknoten-23.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-anzahl-untersuchte-sentinel-lymphknoten-0.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-fernmetastasen-1.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-genetische-variante-braf.json 05:14:25
[1, 2] Observation: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[38, 6] Observation.interpretation[0]: Warning - Keiner der angegebenen Codes ist im Valueset 'Observation Interpretation Codes' (http://hl7.org/fhir/ValueSet/observation-interpretation|4.0.1), und ein Code sollte aus diesem Valueset stammen, es sei denn, er enthält keinen geeigneten Code) (Codes = https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/CodeSystem/mii-cs-onko-genetische-variante-auspraegung#M)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-grading-1.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-histologie-icdo3.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten ein effectiveDateTime oder eine effectivePeriode haben
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[18, 4] Observation.value.ofType(CodeableConcept).coding[0].display: Error - Wrong Display Name 'Invasives duktales Karzinom o.n.A. [C50.-]' for http://terminology.hl7.org/CodeSystem/icd-o-3#8500/3. Valid display is 'Infiltrating duct carcinoma, NOS' (for the language(s) 'en')
[18, 4] Observation.value.ofType(CodeableConcept): Error - !!Ein Verweis auf ein CodeSystem (http://terminology.hl7.org/CodeSystem/icd-o-3) gefunden wo ein ValueSet vorgeschrieben ist
[33, 4] Observation.bodySite.coding[0].code: Warning - Unknown Code 'C50.4' in the system 'http://terminology.hl7.org/CodeSystem/icd-o-3' version '2000' - note that the code system is labeled as a fragment, so the code may be valid in some other fragment
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-residualstatus-1.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-studienteilnahme.json 05:14:25
[1, 2] Observation: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[27, 4] Observation.value.ofType(CodeableConcept).coding[0]: Warning - !!Kodierung hat kein System - kann nicht validiert werden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-klassifikation-TisN0M0.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-klassifikation-uT2a2pN0023i-sncM1.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-l-kategorie-L.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-l-kategorie-L1.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-m-kategorie-cM1.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-m-kategorie-M0.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-n-kategorie-N0.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-n-kategorie-pN0i-sn.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-pn-kategorie-Pn1.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-s-kategorie-S1.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-t-kategorie-Tis.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-t-kategorie-uT2a2.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tnm-v-kategorie-V1.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tod-j.json 05:14:25
[1, 2] Observation: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[17, 4] Observation.value.ofType(CodeableConcept).coding[0].system: Warning - A definition for CodeSystem 'http://fhir.de/CodeSystem/bfarm/icd-10-gm' version 'ICD-10 GM Version 2024' could not be found, so the code cannot be validated. Valid versions: []
[32, 6] Observation.interpretation[0]: Warning - Keiner der angegebenen Codes ist im Valueset 'Observation Interpretation Codes' (http://hl7.org/fhir/ValueSet/observation-interpretation|4.0.1), und ein Code sollte aus diesem Valueset stammen, es sei denn, er enthält keinen geeigneten Code) (Codes = https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/CodeSystem/mii-cs-onko-tod#J)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tod-n.json 05:14:25
[1, 2] Observation: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[17, 4] Observation.value.ofType(CodeableConcept).coding[0].system: Warning - A definition for CodeSystem 'http://fhir.de/CodeSystem/bfarm/icd-10-gm' version 'ICD-10 GM Version 2019' could not be found, so the code cannot be validated. Valid versions: []
[32, 6] Observation.interpretation[0]: Warning - Keiner der angegebenen Codes ist im Valueset 'Observation Interpretation Codes' (http://hl7.org/fhir/ValueSet/observation-interpretation|4.0.1), und ein Code sollte aus diesem Valueset stammen, es sei denn, er enthält keinen geeigneten Code) (Codes = https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/CodeSystem/mii-cs-onko-tod#N)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-tod-u.json 05:14:25
[1, 2] Observation: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[17, 4] Observation.value.ofType(CodeableConcept).coding[0].system: Warning - A definition for CodeSystem 'http://fhir.de/CodeSystem/bfarm/icd-10-gm' version 'ICD-10 GM Version 2022' could not be found, so the code cannot be validated. Valid versions: []
[32, 6] Observation.interpretation[0]: Warning - Keiner der angegebenen Codes ist im Valueset 'Observation Interpretation Codes' (http://hl7.org/fhir/ValueSet/observation-interpretation|4.0.1), und ein Code sollte aus diesem Valueset stammen, es sei denn, er enthält keinen geeigneten Code) (Codes = https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/CodeSystem/mii-cs-onko-tod#U)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-verlauf-tumor.json 05:14:25
[1, 2] Observation: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[11, 8] Observation.component[0].code.coding[0].display: Error - Wrong Display Name 'Status des Residualtumors' for http://snomed.info/sct#277062004. Valid display is one of 3 choices: 'Residual tumor status', 'Residual tumour status' or 'Residual tumor status (attribute)' (for the language(s) 'en')
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-weitere-klassifikationen-1.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[10, 4] Observation.code.coding[0].display: Error - Wrong Display Name 'International Federation of Gynecology and Obstetrics stage for gynecological malignancy (observable entity' for http://snomed.info/sct#385361009. Valid display is one of 5 choices: 'FIGO stage for gynaecological malignancy', 'FIGO stage for gynecological malignancy', 'International Federation of Gynecology and Obstetrics stage for gynecological malignancy', 'International Federation of Gynecology and Obstetrics stage for gynecological malignancy (observable entity)' or 'International Federation of Gynecology and Obstetrics stage for gynaecological malignancy' (for the language(s) 'en')
[33, 4] Observation.value.ofType(CodeableConcept).coding[0]: Warning - !!Kodierung hat kein System - kann nicht validiert werden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-mii-exa-onko-weitere-klassifikationen-2.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[10, 4] Observation.code.coding[0].display: Error - Wrong Display Name 'Ann Arbor Klassifkation' for http://snomed.info/sct#385388004. Valid display is one of 2 choices: 'Lymphoma stage (observable entity)' or 'Lymphoma stage' (for the language(s) 'en')
[24, 4] Observation.value.ofType(CodeableConcept).coding[0]: Warning - !!Kodierung hat kein System - kann nicht validiert werden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-PatientKimMusterperson-Verlauf-2022-01-22.json 05:14:25
[1, 2] Observation: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[20, 8] Observation.component[0].code.coding[0].display: Error - Wrong Display Name 'Status des Residualtumors' for http://snomed.info/sct#277062004. Valid display is one of 3 choices: 'Residual tumor status', 'Residual tumour status' or 'Residual tumor status (attribute)' (for the language(s) 'en')
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-TNM-Klassifikation-Observation-2.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-TNM-L-Observation-2.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-TNM-M-Observation-2.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-TNM-Pn-Observation-2.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-TNM-T-Observation-2.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-TNM-V-Observation-2.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[9, 4] Observation.code: Error - !!!!!!!!!!!!!!!!!!Das im Profil https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/StructureDefinition/mii-pr-onko-tnm-l-kategorie|2025.0.0 definierte Pattern [System http://snomed.info/sct, Code 395715009, und Anzeige 'null'] wurde nicht gefunden. Probleme: [ValidationMessage[level=ERROR,type=VALUE,location=Observation.code.coding.code,message=!!Der Wert ist '371493002', muss aber '395715009' sein.]]
[36, 4] Observation.value.ofType(CodeableConcept): Error - Keiner der bereitgestellten Codes ist im ValueSet 'MII VS Onkologie TNM L Kategorie Werte' (https://www.medizininformatik-initiative.de/fhir/ext/modul-onko/ValueSet/mii-vs-onko-tnm-l-kategorie-werte|2025.0.0), und ein Code aus diesem ValueSet ist erforderlich) (Codes = https://www.uicc.org/resources/tnm#V0)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Observation-TNM-y-Symbol-Observation-2.json 05:14:25
[1, 2] Observation: Warning - !!Alle Observations sollten einen Performer haben
[1, 2] Observation: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Patient-PatientKimMusterperson.json 05:14:25
[1, 2] Patient: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-mii-exa-onko-operation-1.json 05:14:25
[1, 2] Procedure: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[9, 4] Procedure.code.coding[0].system: Warning - A definition for CodeSystem 'http://fhir.de/CodeSystem/bfarm/ops' version 'OPS 2021' could not be found, so the code cannot be validated. Valid versions: []
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-mii-exa-onko-strahlentherapie.json 05:14:25
[1, 2] Procedure: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[111, 4] Procedure.code.coding[0].system: Warning - A definition for CodeSystem 'http://fhir.de/CodeSystem/bfarm/ops' could not be found, so the code cannot be validated
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-mii-exa-onko-systemische-therapie-1.json 05:14:25
[1, 2] Procedure: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-PatientKimMusterperson-Procedure-1.json 05:14:25
[1, 2] Procedure.meta.profile[0]: Warning - !!Die Profilreferenz 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' wurde nicht geprüft, da sie unbekannt ist, und das Abrufen führte zu dem Fehler org.hl7.fhir.r4.utils.client.EFhirClientException: Error from https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur: Unparseable HTML
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[6, 107] Procedure.meta.profile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' kann nicht aufgelöst werden
[13, 4] Procedure.code.coding[0].system: Warning - A definition for CodeSystem 'http://fhir.de/CodeSystem/bfarm/ops' version 'OPS 2024' could not be found, so the code cannot be validated. Valid versions: []
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-PatientKimMusterperson-Procedure-2.json 05:14:25
[1, 2] Procedure.meta.profile[0]: Warning - !!Die Profilreferenz 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' wurde nicht geprüft, da sie unbekannt ist, und das Abrufen führte zu dem Fehler org.hl7.fhir.r4.utils.client.EFhirClientException: Error from https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur: Unparseable HTML
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[6, 107] Procedure.meta.profile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' kann nicht aufgelöst werden
[13, 4] Procedure.code.coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/ops ist unbekannt
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-PatientKimMusterperson-Procedure-3.json 05:14:25
[1, 2] Procedure.meta.profile[0]: Warning - !!Die Profilreferenz 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' wurde nicht geprüft, da sie unbekannt ist, und das Abrufen führte zu dem Fehler org.hl7.fhir.r4.utils.client.EFhirClientException: Error from https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur: Unparseable HTML
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[6, 107] Procedure.meta.profile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' kann nicht aufgelöst werden
[13, 4] Procedure.code.coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/ops ist unbekannt
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-PatientKimMusterperson-Procedure-4.json 05:14:25
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-PatientKimMusterperson-Procedure-4a.json 05:14:25
[1, 2] Procedure.meta.profile[0]: Warning - !!Die Profilreferenz 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' wurde nicht geprüft, da sie unbekannt ist, und das Abrufen führte zu dem Fehler org.hl7.fhir.r4.utils.client.EFhirClientException: Error from https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur: Unparseable HTML
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[6, 107] Procedure.meta.profile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' kann nicht aufgelöst werden
[13, 4] Procedure.code.coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/ops ist unbekannt
[13, 4] Procedure.code.coding[1]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/ops ist unbekannt
[13, 4] Procedure.code.coding[2]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/ops ist unbekannt
[13, 4] Procedure.code.coding[3]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/ops ist unbekannt
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-PatientKimMusterperson-Procedure-4b.json 05:14:25
[1, 2] Procedure.meta.profile[0]: Warning - !!Die Profilreferenz 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' wurde nicht geprüft, da sie unbekannt ist, und das Abrufen führte zu dem Fehler org.hl7.fhir.r4.utils.client.EFhirClientException: Error from https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur: Unparseable HTML
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[6, 107] Procedure.meta.profile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' kann nicht aufgelöst werden
[13, 4] Procedure.code.coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/ops ist unbekannt
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-PatientKimMusterperson-Procedure-4c.json 05:14:25
[1, 2] Procedure.meta.profile[0]: Warning - !!Die Profilreferenz 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' wurde nicht geprüft, da sie unbekannt ist, und das Abrufen führte zu dem Fehler org.hl7.fhir.r4.utils.client.EFhirClientException: Error from https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur: Unparseable HTML
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[6, 107] Procedure.meta.profile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' kann nicht aufgelöst werden
[13, 4] Procedure.code.coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/ops ist unbekannt
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-PatientKimMusterperson-Procedure-4d.json 05:14:25
[1, 2] Procedure.meta.profile[0]: Warning - !!Die Profilreferenz 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' wurde nicht geprüft, da sie unbekannt ist, und das Abrufen führte zu dem Fehler org.hl7.fhir.r4.utils.client.EFhirClientException: Error from https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur: Unparseable HTML
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[6, 107] Procedure.meta.profile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/core/modul-prozedur/StructureDefinition/Procedure' kann nicht aufgelöst werden
[13, 4] Procedure.code.coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/ops ist unbekannt
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-PatientKimMusterperson-SystemicTherapy-1.json 05:14:25
[1, 2] Procedure: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[46, 4] Procedure.code.coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/ops ist unbekannt
[51, 36] Procedure.code.coding[0].display: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-PatientKimMusterperson-SystemicTherapy-2.json 05:14:25
[1, 2] Procedure: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[38, 4] Procedure.code.coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/ops ist unbekannt
[43, 36] Procedure.code.coding[0].display: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\Procedure-PatientKimMusterperson-SystemicTherapy-3.json 05:14:25
[1, 2] Procedure: Error - StructureDefinition hat keinen Snapshot - die Validierung erfolgt gegen den Snapshot, daher muss dieser bereitgestellt werden
[1, 2] Procedure: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[38, 4] Procedure.code.coding[0]: Warning - !!!!!!!!Das CodeSystem http://fhir.de/CodeSystem/bfarm/ops ist unbekannt
[43, 36] Procedure.code.coding[0].display: Warning - Wert sollte nicht mit Leerzeichen beginnen oder enden
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\SearchParameter-mii-sp-onko-condition-ext-morphology-behavior-icdo3.json 05:14:25
[1, 2] SearchParameter.meta.profile[0]: Warning - !!Die Profilreferenz 'https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-pr-meta-searchparameter' wurde nicht geprüft, da sie unbekannt ist, und das Abrufen führte zu dem Fehler org.hl7.fhir.r4.utils.client.EFhirClientException: Error from https://www.medizininformatik-initiative.de/fhir/modul-meta: Unparseable HTML
[1, 2] SearchParameter: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[1, 2] SearchParameter: Warning - Constraint failed: spd-0: 'Name should be usable as an identifier for the module by machine processing applications such as code generation' (defined in http://hl7.org/fhir/StructureDefinition/SearchParameter)
[6, 116] SearchParameter.meta.profile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-pr-meta-searchparameter' kann nicht aufgelöst werden
[22, 6] SearchParameter.extension[0]: Error - !!Die extension https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-ex-meta-license-codeable ist nicht bekannt, and hier nicht erlaubt
[24, 8] SearchParameter.extension[0].value.ofType(CodeableConcept): Information - Reference to draft CodeSystem http://hl7.org/fhir/spdx-license|84728b7
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\SearchParameter-mii-sp-onko-ext-strahlentherapie-stellungzurop.json 05:14:25
[1, 2] SearchParameter: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\SearchParameter-mii-sp-onko-ext-systemischetherapie-stellungzurop.json 05:14:25
[1, 2] SearchParameter: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\SearchParameter-mii-sp-onko-observation-ext-tnm-m-cppraefix.json 05:14:25
[1, 2] SearchParameter.meta.profile[0]: Warning - !!Die Profilreferenz 'https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-pr-meta-searchparameter' wurde nicht geprüft, da sie unbekannt ist, und das Abrufen führte zu dem Fehler org.hl7.fhir.r4.utils.client.EFhirClientException: Error from https://www.medizininformatik-initiative.de/fhir/modul-meta: Unparseable HTML
[1, 2] SearchParameter: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[6, 116] SearchParameter.meta.profile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-pr-meta-searchparameter' kann nicht aufgelöst werden
[22, 6] SearchParameter.extension[0]: Error - !!Die extension https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-ex-meta-license-codeable ist nicht bekannt, and hier nicht erlaubt
[24, 8] SearchParameter.extension[0].value.ofType(CodeableConcept): Information - Reference to draft CodeSystem http://hl7.org/fhir/spdx-license|84728b7
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\SearchParameter-mii-sp-onko-observation-ext-tnm-n-cppraefix.json 05:14:25
[1, 2] SearchParameter.meta.profile[0]: Warning - !!Die Profilreferenz 'https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-pr-meta-searchparameter' wurde nicht geprüft, da sie unbekannt ist, und das Abrufen führte zu dem Fehler org.hl7.fhir.r4.utils.client.EFhirClientException: Error from https://www.medizininformatik-initiative.de/fhir/modul-meta: Unparseable HTML
[1, 2] SearchParameter: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[6, 116] SearchParameter.meta.profile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-pr-meta-searchparameter' kann nicht aufgelöst werden
[22, 6] SearchParameter.extension[0]: Error - !!Die extension https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-ex-meta-license-codeable ist nicht bekannt, and hier nicht erlaubt
[24, 8] SearchParameter.extension[0].value.ofType(CodeableConcept): Information - Reference to draft CodeSystem http://hl7.org/fhir/spdx-license|84728b7
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\SearchParameter-mii-sp-onko-observation-ext-tnm-n-itc.json 05:14:25
[1, 2] SearchParameter.meta.profile[0]: Warning - !!Die Profilreferenz 'https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-pr-meta-searchparameter' wurde nicht geprüft, da sie unbekannt ist, und das Abrufen führte zu dem Fehler org.hl7.fhir.r4.utils.client.EFhirClientException: Error from https://www.medizininformatik-initiative.de/fhir/modul-meta: Unparseable HTML
[1, 2] SearchParameter: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[6, 116] SearchParameter.meta.profile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-pr-meta-searchparameter' kann nicht aufgelöst werden
[22, 6] SearchParameter.extension[0]: Error - !!Die extension https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-ex-meta-license-codeable ist nicht bekannt, and hier nicht erlaubt
[24, 8] SearchParameter.extension[0].value.ofType(CodeableConcept): Information - Reference to draft CodeSystem http://hl7.org/fhir/spdx-license|84728b7
----------------------------------------------------------------------------------
C:\Users\thoma\coding\kds-oncology\kerndatensatzmodul-onkologie\kerndatensatzmodul-onkologie\fsh-generated\resources\SearchParameter-mii-sp-onko-observation-ext-tnm-n-sn-suffix.json 05:14:25
[1, 2] SearchParameter.meta.profile[0]: Warning - !!Die Profilreferenz 'https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-pr-meta-searchparameter' wurde nicht geprüft, da sie unbekannt ist, und das Abrufen führte zu dem Fehler org.hl7.fhir.r4.utils.client.EFhirClientException: Error from https://www.medizininformatik-initiative.de/fhir/modul-meta: Unparseable HTML
[1, 2] SearchParameter: Warning - Constraint failed: dom-6: 'A resource should have narrative for robust management' (defined in http://hl7.org/fhir/StructureDefinition/DomainResource) (Best Practice Recommendation)
[6, 116] SearchParameter.meta.profile[0]: Information - Canonical URL 'https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-pr-meta-searchparameter' kann nicht aufgelöst werden
[22, 6] SearchParameter.extension[0]: Error - !!Die extension https://www.medizininformatik-initiative.de/fhir/modul-meta/StructureDefinition/mii-ex-meta-license-codeable ist nicht bekannt, and hier nicht erlaubt
[24, 8] SearchParameter.extension[0].value.ofType(CodeableConcept): Information - Reference to draft CodeSystem http://hl7.org/fhir/spdx-license|84728b7