endoreg-db 0.6.2__py3-none-any.whl → 0.6.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of endoreg-db might be problematic. Click here for more details.

Files changed (97) hide show
  1. endoreg_db/data/__init__.py +14 -0
  2. endoreg_db/data/disease_classification/chronic_kidney_disease.yaml +2 -2
  3. endoreg_db/data/disease_classification_choice/chronic_kidney_disease.yaml +6 -6
  4. endoreg_db/data/distribution/numeric/data.yaml +1 -1
  5. endoreg_db/data/examination/examinations/data.yaml +22 -21
  6. endoreg_db/data/examination/type/data.yaml +12 -0
  7. endoreg_db/data/examination_indication/endoscopy.yaml +417 -1
  8. endoreg_db/data/examination_indication_classification/endoscopy.yaml +157 -5
  9. endoreg_db/data/finding/data.yaml +18 -11
  10. endoreg_db/data/finding_intervention/endoscopy.yaml +26 -121
  11. endoreg_db/data/finding_intervention/endoscopy_colonoscopy.yaml +163 -0
  12. endoreg_db/data/finding_intervention/endoscopy_egd.yaml +128 -0
  13. endoreg_db/data/finding_intervention/endoscopy_ercp.yaml +32 -0
  14. endoreg_db/data/finding_intervention/endoscopy_eus_lower.yaml +9 -0
  15. endoreg_db/data/finding_intervention/endoscopy_eus_upper.yaml +36 -0
  16. endoreg_db/data/information_source/endoscopy_guidelines.yaml +7 -0
  17. endoreg_db/data/medication_indication/anticoagulation.yaml +4 -4
  18. endoreg_db/data/pdf_type/data.yaml +9 -16
  19. endoreg_db/data/requirement/colonoscopy_indications.yaml +56 -0
  20. endoreg_db/data/requirement/disease_cardiovascular.yaml +79 -0
  21. endoreg_db/data/requirement/disease_classification_choice_cardiovascular.yaml +38 -0
  22. endoreg_db/data/requirement/disease_hepatology.yaml +12 -0
  23. endoreg_db/data/requirement/disease_misc.yaml +12 -0
  24. endoreg_db/data/requirement/disease_renal.yaml +80 -0
  25. endoreg_db/data/requirement/event_cardiology.yaml +251 -0
  26. endoreg_db/data/requirement/lab_value.yaml +120 -0
  27. endoreg_db/data/requirement_operator/lab_operators.yaml +128 -0
  28. endoreg_db/data/requirement_operator/model_operators.yaml +90 -0
  29. endoreg_db/data/requirement_set/endoscopy_bleeding_risk.yaml +12 -0
  30. endoreg_db/data/requirement_set_type/data.yaml +20 -0
  31. endoreg_db/data/requirement_type/requirement_types.yaml +83 -0
  32. endoreg_db/data/risk/bleeding.yaml +26 -0
  33. endoreg_db/data/risk/thrombosis.yaml +37 -0
  34. endoreg_db/data/risk_type/data.yaml +27 -0
  35. endoreg_db/data/unit/time.yaml +36 -1
  36. endoreg_db/management/commands/load_base_db_data.py +14 -1
  37. endoreg_db/management/commands/load_center_data.py +46 -21
  38. endoreg_db/management/commands/load_examination_indication_data.py +49 -27
  39. endoreg_db/management/commands/load_requirement_data.py +156 -0
  40. endoreg_db/management/commands/load_risk_data.py +56 -0
  41. endoreg_db/mermaid/Overall_flow_patient_finding_intervention.md +10 -0
  42. endoreg_db/mermaid/anonymized_image_annotation.md +20 -0
  43. endoreg_db/mermaid/binary_classification_annotation.md +50 -0
  44. endoreg_db/mermaid/classification.md +8 -0
  45. endoreg_db/mermaid/examination.md +8 -0
  46. endoreg_db/mermaid/findings.md +7 -0
  47. endoreg_db/mermaid/image_classification.md +28 -0
  48. endoreg_db/mermaid/interventions.md +8 -0
  49. endoreg_db/mermaid/morphology.md +8 -0
  50. endoreg_db/mermaid/patient_creation.md +14 -0
  51. endoreg_db/mermaid/video_segmentation_annotation.md +17 -0
  52. endoreg_db/migrations/0009_requirementoperator_requirementsettype_and_more.py +154 -0
  53. endoreg_db/models/__init__.py +20 -0
  54. endoreg_db/models/ai_model/ai_model.py +0 -13
  55. endoreg_db/models/ai_model/model_meta.py +2 -12
  56. endoreg_db/models/data_file/base_classes/abstract_frame.py +0 -2
  57. endoreg_db/models/data_file/base_classes/abstract_pdf.py +0 -9
  58. endoreg_db/models/data_file/base_classes/abstract_video.py +7 -8
  59. endoreg_db/models/data_file/base_classes/utils.py +0 -22
  60. endoreg_db/models/data_file/frame.py +1 -1
  61. endoreg_db/models/data_file/import_classes/raw_pdf.py +5 -11
  62. endoreg_db/models/data_file/import_classes/raw_video.py +6 -4
  63. endoreg_db/models/data_file/video/video.py +3 -3
  64. endoreg_db/models/disease.py +88 -19
  65. endoreg_db/models/event.py +108 -21
  66. endoreg_db/models/examination/examination_indication.py +108 -29
  67. endoreg_db/models/examination/examination_type.py +20 -6
  68. endoreg_db/models/information_source.py +37 -1
  69. endoreg_db/models/laboratory/lab_value.py +83 -32
  70. endoreg_db/models/requirement/__init__.py +11 -0
  71. endoreg_db/models/requirement/requirement.py +325 -0
  72. endoreg_db/models/requirement/requirement_evaluation/__init__.py +134 -0
  73. endoreg_db/models/requirement/requirement_evaluation/requirement_type_parser.py +102 -0
  74. endoreg_db/models/requirement/requirement_operator.py +58 -0
  75. endoreg_db/models/requirement/requirement_set.py +127 -0
  76. endoreg_db/models/risk/__init__.py +7 -0
  77. endoreg_db/models/risk/risk.py +72 -0
  78. endoreg_db/models/risk/risk_type.py +55 -0
  79. endoreg_db/serializers/raw_pdf_anony_text_validation.py +137 -0
  80. endoreg_db/serializers/raw_pdf_meta_validation.py +223 -0
  81. endoreg_db/serializers/raw_video_meta_validation.py +163 -1
  82. endoreg_db/serializers/video_segmentation.py +208 -126
  83. endoreg_db/urls.py +127 -14
  84. endoreg_db/utils/__init__.py +43 -0
  85. endoreg_db/utils/dataloader.py +38 -19
  86. endoreg_db/utils/hashs.py +1 -0
  87. endoreg_db/utils/paths.py +86 -0
  88. endoreg_db/views/raw_pdf_anony_text_validation_views.py +95 -0
  89. endoreg_db/views/raw_pdf_meta_validation_views.py +111 -0
  90. endoreg_db/views/raw_video_meta_validation_views.py +128 -18
  91. endoreg_db/views/video_segmentation_views.py +28 -11
  92. endoreg_db/views/views.py +107 -0
  93. {endoreg_db-0.6.2.dist-info → endoreg_db-0.6.4.dist-info}/METADATA +1 -1
  94. {endoreg_db-0.6.2.dist-info → endoreg_db-0.6.4.dist-info}/RECORD +96 -46
  95. endoreg_db/management/commands/load_name_data.py +0 -37
  96. {endoreg_db-0.6.2.dist-info → endoreg_db-0.6.4.dist-info}/WHEEL +0 -0
  97. {endoreg_db-0.6.2.dist-info → endoreg_db-0.6.4.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,32 @@
1
+ - model: endoreg_db.finding_intervention
2
+ fields:
3
+ name: ercp
4
+ # ...existing code...
5
+ - model: endoreg_db.finding_intervention
6
+ fields:
7
+ name: ercp_sphincterotomy
8
+ # ...existing code...
9
+ - model: endoreg_db.finding_intervention
10
+ fields:
11
+ name: ercp_stent
12
+ # ...existing code...
13
+ - model: endoreg_db.finding_intervention
14
+ fields:
15
+ name: ercp_extraction
16
+ # ...existing code...
17
+ - model: endoreg_db.finding_intervention
18
+ fields:
19
+ name: ercp_biopsy
20
+ # ...existing code...
21
+ - model: endoreg_db.finding_intervention
22
+ fields:
23
+ name: erc
24
+ # ...existing code...
25
+ - model: endoreg_db.finding_intervention
26
+ fields:
27
+ name: erp
28
+ # ...existing code...
29
+ - model: endoreg_db.finding_intervention
30
+ fields:
31
+ name: ercp_radiofrequency_ablation
32
+ # ...existing code...
@@ -0,0 +1,9 @@
1
+ # (currently no interventions)
2
+ - model: endoreg_db.finding_intervention
3
+ fields:
4
+ name: endosonography_lower_gi_solid_lesion_fna
5
+
6
+ # endosonography_lower_gi_lymph_node_fna
7
+ - model: endoreg_db.finding_intervention
8
+ fields:
9
+ name: endosonography_lower_gi_lymph_node_fna
@@ -0,0 +1,36 @@
1
+ - model: endoreg_db.finding_intervention
2
+ fields:
3
+ name: endosonography_upper_gi_solid_lesion_fna
4
+ # ...existing code...
5
+ - model: endoreg_db.finding_intervention
6
+ fields:
7
+ name: endosonography_upper_gi_cyst_fna
8
+ # ...existing code...
9
+ - model: endoreg_db.finding_intervention
10
+ fields:
11
+ name: endosonography_upper_gi_pseudocyst_fna
12
+ # ...existing code...
13
+ - model: endoreg_db.finding_intervention
14
+ fields:
15
+ name: endosonography_upper_gi_biliary_drainage
16
+ # ...existing code...
17
+ - model: endoreg_db.finding_intervention
18
+ fields:
19
+ name: endosonography_upper_gi_pancreatic_drainage
20
+ # ...existing code...
21
+ - model: endoreg_db.finding_intervention
22
+ fields:
23
+ name: endosonography_upper_gi_cyst_gastrostomy
24
+ # ...existing code...
25
+ - model: endoreg_db.finding_intervention
26
+ fields:
27
+ name: endosonography_upper_gi_pancreaticogastrostomy
28
+ # ...existing code...
29
+ - model: endoreg_db.finding_intervention
30
+ fields:
31
+ name: endosonography_upper_gi_cholangioduodenostomy
32
+ # ...existing code...
33
+ - model: endoreg_db.finding_intervention
34
+ fields:
35
+ name: endosonography_upper_gi_pancreaticoduodenostomy
36
+ # ...existing code...
@@ -0,0 +1,7 @@
1
+ - model: endoreg_db.InformationSource
2
+ fields:
3
+ name: "guideline_quality_in_gi"
4
+ name_de: "Qualitätsanforderungen in der gastrointestinalen Endoskopie v2.0"
5
+ name_en: "Quality requirements in gastrointestinal endoscopy v2.0"
6
+ date: "2025-01-01" # not final
7
+ #TODO Implement information_source
@@ -2,7 +2,7 @@
2
2
  - model: endoreg_db.medication_indication
3
3
  fields:
4
4
  name: "te_prevention-after_hip-apixaban"
5
- events: ["hip_replacement"]
5
+ events: ["hip_replacement_surgery"]
6
6
  diseases: []
7
7
  disease_classification_choices: []
8
8
  medication_schedules: [
@@ -14,7 +14,7 @@
14
14
  - model: endoreg_db.medication_indication
15
15
  fields:
16
16
  name: "te_prevention-after_knee-apixaban"
17
- events: ["knee_replacement"]
17
+ events: ["knee_replacement_surgery"]
18
18
  diseases: []
19
19
  disease_classification_choices: []
20
20
  medication_schedules: [
@@ -27,7 +27,7 @@
27
27
  fields:
28
28
  name: "te_prevention-non_valvular_af-apixaban"
29
29
  events: []
30
- diseases: ["non_valvular_af"]
30
+ diseases: ["non_valvular_atrial_fibrillation"]
31
31
  disease_classification_choices: []
32
32
  medication_schedules: [
33
33
  "apixaban-5mg-twice_daily", # no limit
@@ -55,7 +55,7 @@
55
55
  fields:
56
56
  name: "te_prevention-non_valvular_af-apixaban-dr" #dr = dose reduction
57
57
  events: []
58
- diseases: ["non_valvular_af"]
58
+ diseases: ["non_valvular_atrial_fibrillation"]
59
59
  disease_classification_choices: []
60
60
  medication_schedules: [
61
61
  "apixaban-2.5mg-twice_daily", # no limit
@@ -1,19 +1,16 @@
1
-
2
1
  - model: endoreg_db.pdf_type
3
2
  fields:
4
3
  name: "ukw-endoscopy-examination-report-generic"
5
4
  patient_info_line: "ukw-examination-generic-patient-info-line"
6
5
  endoscope_info_line: "ukw-examination-generic-endoscope-info-line"
7
6
  examiner_info_line: "ukw-examination-generic-examiner-info-line"
8
- cut_off_above_lines: [
9
- "ukw-examination-generic-anamnese-info-line",
10
- "ukw-examination-generic-endoscope-info-line",
11
- "ukw-examination-generic-examiner-info-line",
12
- ]
13
- cut_off_below_lines: [
14
- "ukw-examination-generic-cut-off-below-line-01"
15
- ]
16
-
7
+ cut_off_above_lines:
8
+ [
9
+ "ukw-examination-generic-anamnese-info-line",
10
+ "ukw-examination-generic-endoscope-info-line",
11
+ "ukw-examination-generic-examiner-info-line",
12
+ ]
13
+ cut_off_below_lines: ["ukw-examination-generic-cut-off-below-line-01"]
17
14
 
18
15
  - model: endoreg_db.pdf_type
19
16
  fields:
@@ -21,9 +18,5 @@
21
18
  patient_info_line: "ukw-histology-generic-patient-info-line"
22
19
  endoscope_info_line: "ukw-histology-generic-endoscope-info-line"
23
20
  examiner_info_line: "ukw-histology-generic-examiner-info-line"
24
- cut_off_above_lines: [
25
- "ukw-histology-generic-patient-info-line"
26
- ]
27
- cut_off_below_lines: [
28
- "ukw-endoscopy-histology-cut-off-below-line-flag-01"
29
- ]
21
+ cut_off_above_lines: ["ukw-histology-generic-patient-info-line"]
22
+ cut_off_below_lines: ["ukw-histology-generic-cut-off-below-line-01"]
@@ -0,0 +1,56 @@
1
+ - model: endoreg_db.requirement
2
+ fields:
3
+ name: "endoscopy_intervention_bleeding_risk_high"
4
+ name_de: "Endoskopische Intervention - Blutungsrisiko: hoch"
5
+ name_en: "Endoscopy Intervention - Bleeding Risk: High"
6
+ description: "Endoskopische Intervention - Blutungsrisiko: hoch"
7
+ requirement_types:
8
+ - "patient_examination"
9
+ operators:
10
+ - "models_match_any"
11
+ finding_interventions:
12
+ - "egd_lesion_polypectomy_cold_snare"
13
+ - "egd_lesion_polypectomy_hot_snare"
14
+ - "colon_lesion_polypectomy_cold_snare"
15
+ - "colon_lesion_polypectomy_hot_snare"
16
+ - "egd_lesion_emr"
17
+ - "egd_lesion_esd"
18
+ - "egd_poem"
19
+ - "ercp_sphincterotomy"
20
+ - "egd_varice_band_ligation"
21
+ - "egd_varice_sclerotherapy"
22
+ - "egd_percutaneous_gastroenterostomy"
23
+ - "percutaneous_transhepatic_cholangiography"
24
+ - "percutaneous_transhepatic_biliary_drainage"
25
+ - "ercp_radiofrequency_ablation"
26
+
27
+ - model: endoreg_db.requirement
28
+ fields:
29
+ name: "endoscopy_intervention_bleeding_risk_low"
30
+ name_de: "Endoskopische Intervention - Blutungsrisiko: niedrig"
31
+ name_en: "Endoscopy Intervention - Bleeding Risk: Low"
32
+ description: "Endoskopische Intervention - Blutungsrisiko: niedrig"
33
+ requirement_types:
34
+ - "patient_examination"
35
+ operators:
36
+ - "models_match_any"
37
+ finding_interventions:
38
+ - "egd_lesion_biopsy"
39
+ - "colon_lesion_biopsy"
40
+ - "ercp"
41
+ - "egd_argon_plasma_coagulation"
42
+
43
+ - model: endoreg_db.requirement
44
+ fields:
45
+ name: "indication_is_colon_emr"
46
+ name_de: "Indikation Kolon EMR"
47
+ name_en: "Indication colon EMR"
48
+ description: "This functions evaluates whether the input ()"
49
+ requirement_types:
50
+ - "finding_intervention"
51
+ operators:
52
+ - "models_match_any"
53
+ # when creating a requirement involving other models,
54
+ # we need to create the relationship here:
55
+ examination_indications:
56
+ - "colonoscopy_lesion_removal_emr"
@@ -0,0 +1,79 @@
1
+ # KHK
2
+ - model: endoreg_db.requirement
3
+ fields:
4
+ name: "disease_is_coronary_artery_disease"
5
+ name_de: "Koronare Gefäßerkrankung"
6
+ name_en: "Coronary artery disease"
7
+ description: "Coronary artery disease"
8
+ requirement_types:
9
+ - "disease"
10
+ operators:
11
+ - models_match_all
12
+ diseases:
13
+ - "coronary_artery_disease"
14
+
15
+ # Hypertension
16
+ - model: endoreg_db.requirement
17
+ fields:
18
+ name: "disease_is_hypertension"
19
+ name_de: "Arterielle Hypertonie"
20
+ name_en: "Hypertension"
21
+ description: "Hypertension"
22
+ requirement_types:
23
+ - "disease"
24
+ operators:
25
+ - models_match_all
26
+ diseases:
27
+ - "hypertension"
28
+
29
+ - model: endoreg_db.requirement
30
+ fields:
31
+ name: "disease_is_congestive_heart_failure"
32
+ name_de: "Chron. Herzinsuffizienz"
33
+ name_en: "Congestive heart failure"
34
+ description: "Congestive heart failure"
35
+ requirement_types:
36
+ - "disease"
37
+ operators:
38
+ - models_match_all
39
+ diseases:
40
+ - "congestive_heart_failure"
41
+
42
+ - model: endoreg_db.requirement
43
+ fields:
44
+ name: "disease_is_diabetes_mellitus_I"
45
+ name_de: "Diabetes mellitus Typ I"
46
+ name_en: "Diabetes mellitus type I"
47
+ description: "Diabetes mellitus type I"
48
+ requirement_types:
49
+ - "disease"
50
+ operators:
51
+ - models_match_all
52
+ diseases:
53
+ - "diabetes_mellitus_I"
54
+
55
+ - model: endoreg_db.requirement
56
+ fields:
57
+ name: "disease_is_diabetes_mellitus_II"
58
+ name_de: "Diabetes mellitus Typ II"
59
+ name_en: "Diabetes mellitus type II"
60
+ description: "Diabetes mellitus type II"
61
+ requirement_types:
62
+ - "disease"
63
+ operators:
64
+ - models_match_all
65
+ diseases:
66
+ - "diabetes_mellitus_II"
67
+
68
+ - model: endoreg_db.requirement
69
+ fields:
70
+ name: "disease_is_non_valvular_atrial_fibrillation"
71
+ name_de: "Nicht valvuläres Vorhofflimmern"
72
+ name_en: "Non valvular atrial fibrillation"
73
+ description: "Non valvular atrial fibrillation"
74
+ requirement_types:
75
+ - "disease"
76
+ operators:
77
+ - models_match_all
78
+ diseases:
79
+ - "non_valvular_atrial_fibrillation"
@@ -0,0 +1,38 @@
1
+ - model: endoreg_db.requirement
2
+ fields:
3
+ name: "disease_is_coronary_artery_disease_1_vessel"
4
+ name_de: "Koronare Gefäßerkrankung (1-Gefäß-Erkrankung)"
5
+ name_en: "Coronary artery disease (1-vessel disease)"
6
+ description: "Coronary artery disease (1-vessel disease)"
7
+ requirement_types:
8
+ - "disease_classification_choice"
9
+ operators:
10
+ - models_match_all
11
+ disease_classification_choices:
12
+ - "khk_1_ge"
13
+
14
+ - model: endoreg_db.requirement
15
+ fields:
16
+ name: "disease_is_coronary_artery_disease_2_vessel"
17
+ name_de: "Koronare Gefäßerkrankung (2-Gefäß-Erkrankung)"
18
+ name_en: "Coronary artery disease (2-vessel disease)"
19
+ description: "Coronary artery disease (2-vessel disease)"
20
+ requirement_types:
21
+ - "disease_classification_choice"
22
+ operators:
23
+ - models_match_all
24
+ disease_classification_choices:
25
+ - "khk_2_ge"
26
+
27
+ - model: endoreg_db.requirement
28
+ fields:
29
+ name: "disease_is_coronary_artery_disease_3_vessel"
30
+ name_de: "Koronare Gefäßerkrankung (3-Gefäß-Erkrankung)"
31
+ name_en: "Coronary artery disease (3-vessel disease)"
32
+ description: "Coronary artery disease (3-vessel disease)"
33
+ requirement_types:
34
+ - "disease_classification_choice"
35
+ operators:
36
+ - models_match_all
37
+ disease_classification_choices:
38
+ - "khk_3_ge"
@@ -0,0 +1,12 @@
1
+ - model: endoreg_db.requirement
2
+ fields:
3
+ name: "disease_is_liver_cirrhosis"
4
+ name_de: "Erkrankung Leberzirrhose"
5
+ name_en: "Disease Liver Cirrhosis"
6
+ description: "Disease Liver Cirrhosis"
7
+ requirement_types:
8
+ - "disease"
9
+ operators:
10
+ - models_match_all
11
+ diseases:
12
+ - "liver_cirrhosis"
@@ -0,0 +1,12 @@
1
+ - model: endoreg_db.requirement
2
+ fields:
3
+ name: "malignoma_unspecified"
4
+ name_de: "Malignom, nicht näher bezeichnet"
5
+ name_en: "Malignoma, unspecified"
6
+ description: "Malignoma, unspecified"
7
+ requirement_types:
8
+ - "disease"
9
+ operators:
10
+ - models_match_all
11
+ diseases:
12
+ - "malignoma_unspecified"
@@ -0,0 +1,80 @@
1
+ - model: endoreg_db.requirement
2
+ fields:
3
+ name: "disease_is_chronic_kidney_disease"
4
+ name_de: "Erkrankung chronische Nierenerkrankung"
5
+ name_en: "Disease Chronic Kidney Disease"
6
+ description: "Disease Chronic Kidney Disease"
7
+ requirement_types:
8
+ - "disease"
9
+ operators:
10
+ - models_match_all
11
+ diseases:
12
+ - "chronic_kidney_disease"
13
+
14
+ - model: endoreg_db.requirement
15
+ fields:
16
+ name: "disease_classification_choice_is_ckd_kdigo_1"
17
+ name_de: "Erkrankung Klassifikation chronische Nierenerkrankung (KDIGO) (Stadium 1)"
18
+ name_en: "Disease Classification Chronic Kidney Disease (KDIGO) (Stage 1)"
19
+ description: "Disease Classification Chronic Kidney Disease (KDIGO) (Stage 1)"
20
+ requirement_types:
21
+ - "disease_classification_choice"
22
+ operators:
23
+ - models_match_all
24
+ disease_classification_choices:
25
+ - "ckd_kdigo_1"
26
+
27
+ - model: endoreg_db.requirement
28
+ fields:
29
+ name: "disease_classification_choice_is_ckd_kdigo_2"
30
+ name_de: "Erkrankung Klassifikation chronische Nierenerkrankung (KDIGO) (Stadium 2)"
31
+ name_en: "Disease Classification Chronic Kidney Disease (KDIGO) (Stage 2)"
32
+ description: "Disease Classification Chronic Kidney Disease (KDIGO) (Stage 2)"
33
+ operators:
34
+ - models_match_all
35
+ disease_classification_choices:
36
+ - "ckd_kdigo_2"
37
+
38
+ - model: endoreg_db.requirement
39
+ fields:
40
+ name: "disease_classification_choice_is_ckd_kdigo_3a"
41
+ name_de: "Erkrankung Klassifikation chronische Nierenerkrankung (KDIGO) (Stadium 3a)"
42
+ name_en: "Disease Classification Chronic Kidney Disease (KDIGO) (Stage 3a)"
43
+ description: "Disease Classification Chronic Kidney Disease (KDIGO) (Stage 3a)"
44
+ operators:
45
+ - models_match_all
46
+ disease_classification_choices:
47
+ - "ckd_kdigo_3a"
48
+
49
+ - model: endoreg_db.requirement
50
+ fields:
51
+ name: "disease_classification_choice_is_ckd_kdigo_3b"
52
+ name_de: "Erkrankung Klassifikation chronische Nierenerkrankung (KDIGO) (Stadium 3b)"
53
+ name_en: "Disease Classification Chronic Kidney Disease (KDIGO) (Stage 3b)"
54
+ description: "Disease Classification Chronic Kidney Disease (KDIGO) (Stage 3b)"
55
+ operators:
56
+ - models_match_all
57
+ disease_classification_choices:
58
+ - "ckd_kdigo_3b"
59
+
60
+ - model: endoreg_db.requirement
61
+ fields:
62
+ name: "disease_classification_choice_is_ckd_kdigo_4"
63
+ name_de: "Erkrankung Klassifikation chronische Nierenerkrankung (KDIGO) (Stadium 4)"
64
+ name_en: "Disease Classification Chronic Kidney Disease (KDIGO) (Stage 4)"
65
+ description: "Disease Classification Chronic Kidney Disease (KDIGO) (Stage 4)"
66
+ operators:
67
+ - models_match_all
68
+ disease_classification_choices:
69
+ - "ckd_kdigo_4"
70
+
71
+ - model: endoreg_db.requirement
72
+ fields:
73
+ name: "disease_classification_choice_is_ckd_kdigo_5"
74
+ name_de: "Erkrankung Klassifikation chronische Nierenerkrankung (KDIGO) (Stadium 5)"
75
+ name_en: "Disease Classification Chronic Kidney Disease (KDIGO) (Stage 5)"
76
+ description: "Disease Classification Chronic Kidney Disease (KDIGO) (Stage 5)"
77
+ operators:
78
+ - models_match_all
79
+ disease_classification_choices:
80
+ - "ckd_kdigo_5"