endoreg-db 0.3.3__py3-none-any.whl → 0.3.5__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.
Files changed (204) hide show
  1. endoreg_db/data/__init__.py +50 -1
  2. endoreg_db/data/case_template/rule/00_patient_lab_sample_add_default_value.yaml +167 -0
  3. endoreg_db/data/case_template/rule/01_patient-set-age.yaml +8 -0
  4. endoreg_db/data/case_template/rule/01_patient-set-gender.yaml +9 -0
  5. endoreg_db/data/case_template/rule/11_create_patient_lab_sample.yaml +23 -0
  6. endoreg_db/data/case_template/rule/12_create-patient_medication-anticoagulation.yaml +19 -0
  7. endoreg_db/data/case_template/rule/13_create-patient_medication_schedule-anticoagulation.yaml +19 -0
  8. endoreg_db/data/case_template/rule/19_create_patient.yaml +17 -0
  9. endoreg_db/data/case_template/rule_type/base_types.yaml +35 -0
  10. endoreg_db/data/case_template/rule_value_type/base_types.yaml +59 -0
  11. endoreg_db/data/case_template/template/base.yaml +8 -0
  12. endoreg_db/data/case_template/template_type/pre_endoscopy.yaml +3 -0
  13. endoreg_db/data/case_template/tmp/_rule_value +13 -0
  14. endoreg_db/data/case_template/tmp/rule/01_atrial_fibrillation.yaml +21 -0
  15. endoreg_db/data/case_template/tmp/rule/02_create_object.yaml +10 -0
  16. endoreg_db/data/case_template/tmp/template/atrial_fibrillation_low_risk.yaml +7 -0
  17. endoreg_db/data/center/data.yaml +8 -0
  18. endoreg_db/data/center_resource/green_endoscopy_dashboard_CenterResource.yaml +144 -0
  19. endoreg_db/data/center_waste/green_endoscopy_dashboard_CenterWaste.yaml +48 -0
  20. endoreg_db/data/disease/cardiovascular.yaml +37 -0
  21. endoreg_db/data/disease/hepatology.yaml +5 -0
  22. endoreg_db/data/disease/misc.yaml +6 -0
  23. endoreg_db/data/disease/renal.yaml +5 -0
  24. endoreg_db/data/disease_classification/chronic_kidney_disease.yaml +6 -0
  25. endoreg_db/data/disease_classification/coronary_vessel_disease.yaml +6 -0
  26. endoreg_db/data/disease_classification_choice/chronic_kidney_disease.yaml +41 -0
  27. endoreg_db/data/disease_classification_choice/coronary_vessel_disease.yaml +20 -0
  28. endoreg_db/data/distribution/date/patient.yaml +7 -0
  29. endoreg_db/data/distribution/single_categorical/patient.yaml +7 -0
  30. endoreg_db/data/emission_factor/green_endoscopy_dashboard_EmissionFactor.yaml +132 -0
  31. endoreg_db/data/event/cardiology.yaml +28 -0
  32. endoreg_db/data/event/neurology.yaml +14 -0
  33. endoreg_db/data/event/surgery.yaml +13 -0
  34. endoreg_db/data/event/thrombembolism.yaml +20 -0
  35. endoreg_db/data/examination/examinations/data.yaml +49 -0
  36. endoreg_db/data/gender/data.yaml +18 -0
  37. endoreg_db/data/information_source/medication.yaml +6 -0
  38. endoreg_db/data/lab_value/cardiac_enzymes.yaml +31 -0
  39. endoreg_db/data/lab_value/coagulation.yaml +49 -0
  40. endoreg_db/data/lab_value/electrolytes.yaml +190 -0
  41. endoreg_db/data/lab_value/gastrointestinal_function.yaml +121 -0
  42. endoreg_db/data/lab_value/hematology.yaml +169 -0
  43. endoreg_db/data/lab_value/hormones.yaml +53 -0
  44. endoreg_db/data/lab_value/lipids.yaml +44 -0
  45. endoreg_db/data/lab_value/misc.yaml +30 -0
  46. endoreg_db/data/lab_value/renal_function.yaml +11 -0
  47. endoreg_db/data/material/material.yaml +91 -0
  48. endoreg_db/data/medication/anticoagulation.yaml +65 -0
  49. endoreg_db/data/medication/tah.yaml +70 -0
  50. endoreg_db/data/medication_indication/anticoagulation.yaml +120 -0
  51. endoreg_db/data/medication_indication_type/data.yaml +11 -0
  52. endoreg_db/data/medication_indication_type/thrombembolism.yaml +41 -0
  53. endoreg_db/data/medication_intake_time/base.yaml +31 -0
  54. endoreg_db/data/medication_schedule/apixaban.yaml +95 -0
  55. endoreg_db/data/medication_schedule/ass.yaml +12 -0
  56. endoreg_db/data/medication_schedule/enoxaparin.yaml +26 -0
  57. endoreg_db/data/patient_lab_sample_type/generic.yaml +6 -0
  58. endoreg_db/data/product/green_endoscopy_dashboard_Product.yaml +66 -0
  59. endoreg_db/data/product_group/green_endoscopy_dashboard_ProductGroup.yaml +33 -0
  60. endoreg_db/data/product_material/green_endoscopy_dashboard_ProductMaterial.yaml +308 -0
  61. endoreg_db/data/product_weight/green_endoscopy_dashboard_ProductWeight.yaml +88 -0
  62. endoreg_db/data/reference_product/green_endoscopy_dashboard_ReferenceProduct.yaml +55 -0
  63. endoreg_db/data/resource/green_endoscopy_dashboard_Resource.yaml +15 -0
  64. endoreg_db/data/tmp/chronic_kidney_disease.yaml +0 -0
  65. endoreg_db/data/tmp/congestive_heart_failure.yaml +0 -0
  66. endoreg_db/data/transport_route/green_endoscopy_dashboard_TransportRoute.yaml +12 -0
  67. endoreg_db/data/unit/concentration.yaml +92 -0
  68. endoreg_db/data/unit/length.yaml +4 -4
  69. endoreg_db/data/unit/misc.yaml +20 -0
  70. endoreg_db/data/unit/rate.yaml +6 -0
  71. endoreg_db/data/unit/time.yaml +13 -0
  72. endoreg_db/data/unit/volume.yaml +13 -4
  73. endoreg_db/data/unit/weight.yaml +11 -4
  74. endoreg_db/data/waste/data.yaml +12 -0
  75. endoreg_db/forms/__init__.py +2 -1
  76. endoreg_db/forms/questionnaires/__init__.py +1 -0
  77. endoreg_db/forms/questionnaires/tto_questionnaire.py +23 -0
  78. endoreg_db/management/commands/load_base_db_data.py +58 -1
  79. endoreg_db/management/commands/load_disease_classification_choices_data.py +41 -0
  80. endoreg_db/management/commands/load_disease_classification_data.py +41 -0
  81. endoreg_db/management/commands/load_disease_data.py +40 -0
  82. endoreg_db/management/commands/load_distribution_data.py +66 -0
  83. endoreg_db/management/commands/load_event_data.py +41 -0
  84. endoreg_db/management/commands/load_g_play_data.py +113 -0
  85. endoreg_db/management/commands/load_gender_data.py +44 -0
  86. endoreg_db/management/commands/load_green_endoscopy_wuerzburg_data.py +133 -0
  87. endoreg_db/management/commands/load_lab_value_data.py +50 -0
  88. endoreg_db/management/commands/load_medication_data.py +41 -0
  89. endoreg_db/management/commands/load_medication_indication_data.py +63 -0
  90. endoreg_db/management/commands/load_medication_indication_type_data.py +41 -0
  91. endoreg_db/management/commands/load_medication_intake_time_data.py +41 -0
  92. endoreg_db/management/commands/load_medication_schedule_data.py +55 -0
  93. endoreg_db/migrations/0023_ttoquestionnaire_alter_pdftype_endoscope_info_line.py +59 -0
  94. endoreg_db/migrations/0024_remove_ttoquestionnaire_infections_and_more.py +27 -0
  95. endoreg_db/migrations/0025_event_alter_rawpdffile_file_patientevent.py +42 -0
  96. endoreg_db/migrations/0026_disease_diseaseclassification_and_more.py +166 -0
  97. endoreg_db/migrations/0027_labvalue_abbreviation_labvalue_default_normal_range_and_more.py +38 -0
  98. endoreg_db/migrations/0028_alter_unit_abbreviation.py +18 -0
  99. endoreg_db/migrations/0029_medicationintaketime_and_more.py +75 -0
  100. endoreg_db/migrations/0030_medicationindicationtype_and_more.py +101 -0
  101. endoreg_db/migrations/0031_rename_adapt_to_liver_function_medication_adapt_to_age_and_more.py +38 -0
  102. endoreg_db/migrations/0032_alter_medicationschedule_therapy_duration_d.py +18 -0
  103. endoreg_db/migrations/0033_medicationindication_sources.py +18 -0
  104. endoreg_db/migrations/0034_alter_rawpdffile_file.py +20 -0
  105. endoreg_db/migrations/0035_alter_medicationindication_sources.py +18 -0
  106. endoreg_db/migrations/0036_alter_rawpdffile_file.py +20 -0
  107. endoreg_db/migrations/0037_alter_medicationindication_sources.py +18 -0
  108. endoreg_db/migrations/0038_emissionfactor_material_product_productgroup_and_more.py +164 -0
  109. endoreg_db/migrations/0039_referenceproduct_name.py +19 -0
  110. endoreg_db/migrations/0040_quizanswertype_quizquestiontype_quizquestion_and_more.py +50 -0
  111. endoreg_db/migrations/0041_gender_patientmedication_medication_indication_and_more.py +40 -0
  112. endoreg_db/migrations/0042_casetemplateruletype_casetemplaterulevalue_and_more.py +74 -0
  113. endoreg_db/migrations/0043_casetemplatetype_name_de_casetemplatetype_name_en.py +23 -0
  114. endoreg_db/migrations/0044_casetemplateruletype_name_de_and_more.py +23 -0
  115. endoreg_db/migrations/0045_casetemplaterulevalue_value_type.py +19 -0
  116. endoreg_db/migrations/0046_casetemplaterulevalue_target_field.py +18 -0
  117. endoreg_db/migrations/0047_casetemplaterule_target_model.py +18 -0
  118. endoreg_db/migrations/0048_remove_casetemplaterule_chained_rules_and_more.py +22 -0
  119. endoreg_db/migrations/0049_remove_casetemplaterule_rule_values.py +17 -0
  120. endoreg_db/migrations/0050_casetemplaterule_rule_values.py +18 -0
  121. endoreg_db/migrations/0051_remove_casetemplaterule_calling_rules_and_more.py +27 -0
  122. endoreg_db/migrations/0052_rename_case_template_type_casetemplate_template_type.py +18 -0
  123. endoreg_db/migrations/0053_patientlabsampletype_patientlabsample_and_more.py +38 -0
  124. endoreg_db/migrations/0054_multiplecategoricalvaluedistribution_and_more.py +69 -0
  125. endoreg_db/migrations/0055_remove_casetemplaterule_rule_values_and_more.py +59 -0
  126. endoreg_db/migrations/0056_datevaluedistribution_and_more.py +32 -0
  127. endoreg_db/migrations/0057_remove_datevaluedistribution_max_date_and_more.py +72 -0
  128. endoreg_db/migrations/0058_datevaluedistribution_description_and_more.py +28 -0
  129. endoreg_db/migrations/0059_casetemplaterule_rule_values.py +18 -0
  130. endoreg_db/migrations/0060_labvalue__default_date_value_distribution_and_more.py +44 -0
  131. endoreg_db/migrations/0061_remove_patientlabvalue_date_patientlabvalue_datetime.py +24 -0
  132. endoreg_db/migrations/0062_labvalue_numeric_precision.py +18 -0
  133. endoreg_db/migrations/0063_alter_labvalue_numeric_precision.py +18 -0
  134. endoreg_db/migrations/0064_casetemplaterule_extra_parameters_and_more.py +23 -0
  135. endoreg_db/migrations/0065_rename__date_value_distribution_casetemplaterule_date_value_distribution_and_more.py +58 -0
  136. endoreg_db/migrations/0066_alter_patientlabvalue_patient_and_more.py +29 -0
  137. endoreg_db/migrations/0067_alter_medicationindication_indication_type.py +19 -0
  138. endoreg_db/models/__init__.py +30 -11
  139. endoreg_db/models/case_template/__init__.py +6 -0
  140. endoreg_db/models/case_template/case_template.py +81 -0
  141. endoreg_db/models/case_template/case_template_rule.py +276 -0
  142. endoreg_db/models/case_template/case_template_rule_value.py +73 -0
  143. endoreg_db/models/case_template/case_template_type.py +28 -0
  144. endoreg_db/models/center/__init__.py +4 -0
  145. endoreg_db/models/center/center_product.py +34 -0
  146. endoreg_db/models/center/center_resource.py +19 -0
  147. endoreg_db/models/center/center_waste.py +11 -0
  148. endoreg_db/models/data_file/import_classes/raw_pdf.py +4 -1
  149. endoreg_db/models/data_file/metadata/video_meta.py +4 -3
  150. endoreg_db/models/disease.py +56 -0
  151. endoreg_db/models/emission/__init__.py +1 -0
  152. endoreg_db/models/emission/emission_factor.py +20 -0
  153. endoreg_db/models/event.py +22 -0
  154. endoreg_db/models/information_source.py +7 -0
  155. endoreg_db/models/laboratory/__init__.py +1 -0
  156. endoreg_db/models/laboratory/lab_value.py +102 -0
  157. endoreg_db/models/medication/__init__.py +1 -0
  158. endoreg_db/models/medication/medication.py +148 -0
  159. endoreg_db/models/other/__init__.py +5 -0
  160. endoreg_db/models/other/distribution.py +215 -0
  161. endoreg_db/models/other/material.py +16 -0
  162. endoreg_db/models/other/resource.py +18 -0
  163. endoreg_db/models/other/transport_route.py +21 -0
  164. endoreg_db/models/other/waste.py +20 -0
  165. endoreg_db/models/persons/__init__.py +3 -2
  166. endoreg_db/models/persons/gender.py +22 -0
  167. endoreg_db/models/persons/patient/__init__.py +8 -0
  168. endoreg_db/models/persons/patient/case/__init__.py +0 -0
  169. endoreg_db/models/persons/patient/case/case.py +30 -0
  170. endoreg_db/models/persons/patient/patient.py +216 -0
  171. endoreg_db/models/persons/patient/patient_disease.py +16 -0
  172. endoreg_db/models/persons/patient/patient_event.py +22 -0
  173. endoreg_db/models/persons/patient/patient_lab_sample.py +106 -0
  174. endoreg_db/models/persons/patient/patient_lab_value.py +176 -0
  175. endoreg_db/models/persons/patient/patient_medication.py +44 -0
  176. endoreg_db/models/persons/patient/patient_medication_schedule.py +28 -0
  177. endoreg_db/models/persons/person.py +1 -4
  178. endoreg_db/models/persons/portal_user_information.py +0 -2
  179. endoreg_db/models/product/__init__.py +5 -0
  180. endoreg_db/models/product/product.py +97 -0
  181. endoreg_db/models/product/product_group.py +19 -0
  182. endoreg_db/models/product/product_material.py +24 -0
  183. endoreg_db/models/product/product_weight.py +26 -0
  184. endoreg_db/models/product/reference_product.py +99 -0
  185. endoreg_db/models/questionnaires/__init__.py +114 -0
  186. endoreg_db/models/quiz/__init__.py +2 -0
  187. endoreg_db/models/quiz/quiz_answer.py +41 -0
  188. endoreg_db/models/quiz/quiz_question.py +54 -0
  189. endoreg_db/models/rules/__init__.py +5 -0
  190. endoreg_db/models/rules/rule.py +24 -0
  191. endoreg_db/models/rules/rule_applicator.py +224 -0
  192. endoreg_db/models/rules/rule_attribute_dtype.py +19 -0
  193. endoreg_db/models/rules/rule_type.py +22 -0
  194. endoreg_db/models/rules/ruleset.py +19 -0
  195. endoreg_db/models/unit.py +6 -4
  196. endoreg_db/utils/dataloader.py +13 -106
  197. {endoreg_db-0.3.3.dist-info → endoreg_db-0.3.5.dist-info}/METADATA +1 -1
  198. endoreg_db-0.3.5.dist-info/RECORD +357 -0
  199. {endoreg_db-0.3.3.dist-info → endoreg_db-0.3.5.dist-info}/WHEEL +1 -1
  200. endoreg_db/models/persons/patient.py +0 -58
  201. endoreg_db/models.py +0 -3
  202. endoreg_db-0.3.3.dist-info/RECORD +0 -180
  203. /endoreg_db/models/{center.py → center/center.py} +0 -0
  204. {endoreg_db-0.3.3.dist-info → endoreg_db-0.3.5.dist-info}/LICENSE +0 -0
@@ -0,0 +1,91 @@
1
+ - model: endoreg_db.Material
2
+ fields:
3
+ name: cardboard
4
+ name_de: Pappe
5
+ name_en: cardboard
6
+ emission_factor: material_emission_cardboard
7
+
8
+ - fields:
9
+ name: foil
10
+ name_de: Folien
11
+ name_en: foil
12
+ emission_factor: material_emission_foil
13
+ model: endoreg_db.Material
14
+
15
+ - fields:
16
+ name: gold
17
+ name_de: Gold
18
+ name_en: gold
19
+ emission_factor: material_emission_gold
20
+
21
+
22
+ - fields:
23
+ name: metal
24
+ name_de: Metall
25
+ name_en: metal
26
+ emission_factor: material_emission_metal
27
+ model: endoreg_db.Material
28
+
29
+ - fields:
30
+ name: nickel
31
+ name_de: Nickel
32
+ name_en: nickel
33
+ emission_factor: material_emission_nickel
34
+ model: endoreg_db.Material
35
+
36
+ - fields:
37
+ name: paper
38
+ name_de: Papier
39
+ name_en: paper
40
+ emission_factor: material_emission_paper
41
+ model: endoreg_db.Material
42
+
43
+ - fields:
44
+ name: paper_coated
45
+ name_de: Beschichtetes Papier
46
+ name_en: paper_coated
47
+ emission_factor: material_emission_paper_coated
48
+ model: endoreg_db.Material
49
+
50
+ - fields:
51
+ name: plastic
52
+ name_de: Kunststoff
53
+ name_en: plastic
54
+ emission_factor: material_emission_plastic
55
+ model: endoreg_db.Material
56
+ - fields:
57
+ name: plastic_coated
58
+ name_de: Kunststoff beschichtet
59
+ name_en: plastic_coated
60
+ emission_factor: material_emission_plastic_coated
61
+ model: endoreg_db.Material
62
+ - fields:
63
+ name: silicone
64
+ name_de: Silikon
65
+ name_en: silicone
66
+ emission_factor: material_emission_silicone
67
+ model: endoreg_db.Material
68
+ - fields:
69
+ name: steel
70
+ name_de: Stahl
71
+ name_en: steel
72
+ emission_factor: material_emission_steel
73
+ model: endoreg_db.Material
74
+ - fields:
75
+ name: tantal
76
+ name_de: Tantal
77
+ name_en: tantal
78
+ emission_factor: material_emission_tantal
79
+ model: endoreg_db.Material
80
+ - fields:
81
+ name: textile
82
+ name_de: Textil
83
+ name_en: textile
84
+ emission_factor: material_emission_textile
85
+ model: endoreg_db.Material
86
+ - fields:
87
+ name: titan
88
+ name_de: Titan
89
+ name_en: titan
90
+ emission_factor: material_emission_titan
91
+ model: endoreg_db.Material
@@ -0,0 +1,65 @@
1
+ - models: endoreg_db.models.medication
2
+ fields:
3
+ name: "apixaban"
4
+ name_de: "Apixaban"
5
+ name_en: "Apixaban"
6
+ adapt_to_renal_function: true
7
+ adapt_to_hepatic_function: true
8
+ adapt_to_indication: true
9
+ adapt_to_age: true
10
+ adapt_to_weight: false
11
+ adapt_to_risk: true
12
+ default_unit: "miligram"
13
+
14
+ - models: endoreg_db.models.medication
15
+ fields:
16
+ name: "dabigatran"
17
+ name_de: "Dabigatran"
18
+ name_en: "Dabigatran"
19
+ adapt_to_renal_function: true
20
+ adapt_to_hepatic_function: true
21
+ adapt_to_indication: true
22
+ adapt_to_age: true
23
+ adapt_to_weight: false
24
+ adapt_to_risk: true
25
+ default_unit: "miligram"
26
+
27
+ - models: endoreg_db.models.medication
28
+ fields:
29
+ name: "edoxaban"
30
+ name_de: "Edoxaban"
31
+ name_en: "Edoxaban"
32
+ adapt_to_renal_function: true
33
+ adapt_to_hepatic_function: true
34
+ adapt_to_indication: true
35
+ adapt_to_age: true
36
+ adapt_to_weight: false
37
+ adapt_to_risk: true
38
+ default_unit: "miligram"
39
+
40
+ - models: endoreg_db.models.medication
41
+ fields:
42
+ name: "rivaroxaban"
43
+ name_de: "Rivaroxaban"
44
+ name_en: "Rivaroxaban"
45
+ adapt_to_renal_function: true
46
+ adapt_to_hepatic_function: true
47
+ adapt_to_indication: true
48
+ adapt_to_age: true
49
+ adapt_to_weight: false
50
+ adapt_to_risk: true
51
+ default_unit: "miligram"
52
+
53
+ - models: endoreg_db.models.medication
54
+ fields:
55
+ name: "enoxaparin"
56
+ name_de: "Enoxaparin"
57
+ name_en: "Enoxaparin"
58
+ adapt_to_renal_function: true
59
+ adapt_to_hepatic_function: false
60
+ adapt_to_indication: true
61
+ adapt_to_age: false
62
+ adapt_to_weight: true
63
+ adapt_to_risk: true
64
+ default_unit: "miligram"
65
+
@@ -0,0 +1,70 @@
1
+ # ASS
2
+ - models: endoreg_db.models.medication
3
+ fields:
4
+ name: "aspirin"
5
+ name_de: "Aspririn"
6
+ name_en: "Aspirin"
7
+ adapt_to_renal_function: false
8
+ adapt_to_hepatic_function: false
9
+ adapt_to_indication: true
10
+ adapt_to_age: false
11
+ adapt_to_weight: false
12
+ adapt_to_risk: false
13
+ default_unit: "miligram"
14
+
15
+ # Clopidogrel
16
+ - models: endoreg_db.models.medication
17
+ fields:
18
+ name: "clopidogrel"
19
+ name_de: "Clopidogrel"
20
+ name_en: "Clopidogrel"
21
+ adapt_to_renal_function: false
22
+ adapt_to_hepatic_function: false
23
+ adapt_to_indication: true
24
+ adapt_to_age: false
25
+ adapt_to_weight: false
26
+ adapt_to_risk: false
27
+ default_unit: "miligram"
28
+
29
+ # Prasugrel
30
+ - models: endoreg_db.models.medication
31
+ fields:
32
+ name: "prasugrel"
33
+ name_de: "Prasugrel"
34
+ name_en: "Prasugrel"
35
+ adapt_to_renal_function: false
36
+ adapt_to_hepatic_function: false
37
+ adapt_to_indication: true
38
+ adapt_to_age: false
39
+ adapt_to_weight: false
40
+ adapt_to_risk: false
41
+ default_unit: "miligram"
42
+
43
+
44
+ # Ticagrelor
45
+ - models: endoreg_db.models.medication
46
+ fields:
47
+ name: "ticagrelor"
48
+ name_de: "Ticagrelor"
49
+ name_en: "Ticagrelor"
50
+ adapt_to_renal_function: false
51
+ adapt_to_hepatic_function: true
52
+ adapt_to_indication: true
53
+ adapt_to_age: false
54
+ adapt_to_weight: false
55
+ adapt_to_risk: false
56
+ default_unit: "miligram"
57
+
58
+ # Tirofiban
59
+ - models: endoreg_db.models.medication
60
+ fields:
61
+ name: "tirofiban"
62
+ name_de: "Tirofiban"
63
+ name_en: Tirofiban"
64
+ adapt_to_renal_function: true
65
+ adapt_to_hepatic_function: true
66
+ adapt_to_indication: true
67
+ adapt_to_age: false
68
+ adapt_to_weight: false
69
+ adapt_to_risk: false
70
+ default_unit: "miligram"
@@ -0,0 +1,120 @@
1
+ # Quellen: Fachinformationen d. entsprechenden Medikamente
2
+ - model: endoreg_db.medication_indication
3
+ fields:
4
+ name: "te_prevention-after_hip-apixaban"
5
+ events: ["hip_replacement"]
6
+ medication_schedules: [
7
+ "apixaban-2.5mg-twice_daily_32d", # min 32d, max 38d
8
+ ]
9
+ indication_type: "thromboembolism-prevention-after_hip_replacement"
10
+ sources: [
11
+ "fachinformation-apixaban-eliquis_2.5mg-bristol_meyer_squibbs"
12
+ ]
13
+
14
+ - model: endoreg_db.medication_indication
15
+ fields:
16
+ name: "te_prevention-after_knee-apixaban"
17
+ events: ["knee_replacement"]
18
+ medication_schedules: [
19
+ "apixaban-2.5mg-twice_daily_10d", # min 10d, max 14d
20
+ ]
21
+ indication_type: "thromboembolism-prevention-after_knee_replacement"
22
+ sources: [
23
+ "fachinformation-apixaban-eliquis_2.5mg-bristol_meyer_squibbs"
24
+ ]
25
+
26
+ - model: endoreg_db.medication_indication
27
+ fields:
28
+ name: "te_prevention-non_valvular_af-apixaban"
29
+ diseases: ["non_valvular_af"]
30
+ medication_schedules: [
31
+ "apixaban-5mg-twice_daily", # no limit
32
+ ]
33
+ indication_type: "thromboembolism-prevention-non_valvular_af"
34
+ sources: [
35
+ "fachinformation-apixaban-eliquis_2.5mg-bristol_meyer_squibbs"
36
+ ]
37
+
38
+ # - model: endoreg_db.medication_indication
39
+ # fields:
40
+ # name: "te_prevention_non_valvular_af-apixaban-ckd_stage_4"
41
+ # classification_choices: [
42
+ # "ckd_4"
43
+ # ]
44
+ # medication_schedules: [
45
+ # "apixaban-2.5mg-twice_daily"
46
+ # ]
47
+ # indication_type: "thromboembolism-prevention-non_valvular_af"
48
+ # sources: [
49
+ # "fachinformation-apixaban-eliquis_2.5mg-bristol_meyer_squibbs"
50
+ # ]
51
+
52
+ # generally same as ckd4 above but technically different definition
53
+ # Applies for example when risk factors (2 of three: age >= 80; KG <= 60 kg; Kreatinin >= 1.5 mg/dl)
54
+ - model: endoreg_db.medication_indication
55
+ fields:
56
+ name: "te_prevention-non_valvular_af-apixaban-dr" #dr = dose reduction
57
+ diseases: ["non_valvular_af"]
58
+ medication_schedules: [
59
+ "apixaban-2.5mg-twice_daily", # no limit
60
+ ]
61
+ indication_type: "thromboembolism-prevention-non_valvular_af"
62
+ sources: [
63
+ "fachinformation-apixaban-eliquis_2.5mg-bristol_meyer_squibbs"
64
+ ]
65
+
66
+ - model: endoreg_db.medication_indication
67
+ fields:
68
+ name: "dvt_treatment-apixaban-3mo"
69
+ events: ["deep_vein_thrombosis"]
70
+ medication_schedules: [
71
+ "apixaban-5g-twice_daily_7d", # first 7d of treatment 10 mg twice daily
72
+ "apixaban-5g-twice_daily_3mo", # no limit
73
+ ]
74
+ indication_type: "deep_vein_thrombosis-treatment"
75
+ sources: [
76
+ "fachinformation-apixaban-eliquis_2.5mg-bristol_meyer_squibbs"
77
+ ]
78
+
79
+ - model: endoreg_db.medication_indication
80
+ fields:
81
+ name: "pe_treatment-apixaban-3mo"
82
+ events: ["pulmonary_embolism"]
83
+ medication_schedules: [
84
+ "apixaban-5g-twice_daily_7d", # first 7d of treatment 10 mg twice daily
85
+ "apixaban-5g-twice_daily_3mo", # no limit
86
+ ]
87
+ indication_type: "pulmonary_embolism-treatment"
88
+ sources: [
89
+ "fachinformation-apixaban-eliquis_2.5mg-bristol_meyer_squibbs"
90
+ ]
91
+
92
+ - model: endoreg_db.medication_indication
93
+ fields:
94
+ name: "pe_treatment-apixaban-6mo"
95
+ events: ["pulmonary_embolism"]
96
+ medication_schedules: [
97
+ "apixaban-5g-twice_daily_7d", # first 7d of treatment 10 mg twice daily
98
+ "apixaban-5g-twice_daily_6mo", # no limit
99
+ ]
100
+ indication_type: "pulmonary_embolism-treatment"
101
+ sources: [
102
+ "fachinformation-apixaban-eliquis_2.5mg-bristol_meyer_squibbs"
103
+ ]
104
+
105
+ - model: endoreg_db.medication_indication
106
+ fields:
107
+ name: "te_prevention-recurrent-te-apixaban"
108
+ events: [
109
+ "recurrent_thrombembolism"
110
+ ]
111
+ medication_schedules: [
112
+ "apixaban-2.5mg-twice_daily"
113
+ ]
114
+ indication_type: "thrombembolism-prevention-recurrent_thrombembolism"
115
+ sources: [
116
+ "fachinformation-apixaban-eliquis_2.5mg-bristol_meyer_squibbs"
117
+ ]
118
+
119
+ # templates to create:
120
+ # medication_schedules:
@@ -0,0 +1,11 @@
1
+ - model: endoreg_db.medication_indication_type
2
+ fields:
3
+ name: "event"
4
+ name_de: "Ereignis"
5
+ name_en: "event"
6
+
7
+ - model: endoreg_db.medication_indication_type
8
+ fields:
9
+ name: "disease"
10
+ name_de: "Krankheit"
11
+ name_en: "disease"
@@ -0,0 +1,41 @@
1
+ - model: endoreg_db.medication_indication_type
2
+ fields:
3
+ name: "thromboembolism-prevention-after_hip_replacement"
4
+ name_de: "Thromboembolie-Prophylaxe nach Hüft-TEP"
5
+ name_en: "Thromboembolism Prevention after Hip Replacement"
6
+
7
+ - model: endoreg_db.medication_indication_type
8
+ fields:
9
+ name: "thromboembolism-prevention-after_knee_replacement"
10
+ name_de: "Thromboembolie-Prophylaxe nach Knie-TEP"
11
+ name_en: "Thromboembolism Prevention after Knee Replacement"
12
+
13
+ - model: endoreg_db.medication_indication_type
14
+ fields:
15
+ name: "thromboembolism-prevention-non_valvular_af"
16
+ name_de: "Thromboembolie-Prophylaxe bei nicht-valvulärem Vorhofflimmern"
17
+ name_en: "Thromboembolism Prevention in Non-Valvular Atrial Fibrillation"
18
+
19
+ - model: endoreg_db.medication_indication_type
20
+ fields:
21
+ name: "thromboembolism-prevention-recurrent_thrombembolism"
22
+ name_de: "Thromboembolie-Prophylaxe bei rezidivierenden Thrombembolien"
23
+ name_en: "Thromboembolism Prevention in Recurrent Thrombembolism"
24
+
25
+ - model: endoreg_db.medication_indication_type
26
+ fields:
27
+ name: "deep_vein_thrombosis-treatment"
28
+ name_de: "Thrombose-Behandlung bei tiefer Beinvenenthrombose"
29
+ name_en: "Deep Vein Thrombosis Treatment"
30
+
31
+ - model: endoreg_db.medication_indication_type
32
+ fields:
33
+ name: "pulmonary_embolism-treatment"
34
+ name_de: "Thrombose-Behandlung bei Lungenembolie"
35
+ name_en: "Pulmonary Embolism Treatment"
36
+
37
+ - model: endoreg_db.medication_indication_type
38
+ fields:
39
+ name: "thrombembolism-prevention-recurrent_thrombembolism"
40
+ name_de: "Thromboembolie-Prophylaxe bei rezidivierenden Thrombembolien"
41
+ name_en: "Thromboembolism Prevention in Recurrent Thrombembolism"
@@ -0,0 +1,31 @@
1
+ - model: medication_intake_time
2
+ fields:
3
+ name: "daily-morning"
4
+ name_de: "täglich, morgens"
5
+ name_en: "daily, morning"
6
+ repeats: "daily"
7
+ time: "07:00:00"
8
+
9
+ - model: medication_intake_time
10
+ fields:
11
+ name: "daily-evening"
12
+ name_de: "täglich, abends"
13
+ name_en: "daily, evening"
14
+ repeats: "daily"
15
+ time: "19:00:00"
16
+
17
+ - model: medication_intake_time
18
+ fields:
19
+ name: "daily-noon"
20
+ name_de: "täglich, mittags"
21
+ name_en: "daily, noon"
22
+ repeats: "daily"
23
+ time: "13:00:00"
24
+
25
+ - model: medication_intake_time
26
+ fields:
27
+ name: "daily-night"
28
+ name_de: "täglich, nachts"
29
+ name_en: "daily, night"
30
+ repeats: "daily"
31
+ time: "01:00:00"
@@ -0,0 +1,95 @@
1
+ - model: endoreg_db.medication_schedule
2
+ fields:
3
+ name: "apixaban-2.5mg-twice_daily_32d"
4
+ name_de: "Apixaban 2.5mg, 2x täglich, 32 Tage"
5
+ name_en: "Apixaban 2.5mg, twice daily, 32 days"
6
+ therapy_duration_d: 32
7
+ medication: "apixaban"
8
+ dose: 2.5
9
+ unit: "miligram"
10
+ intake_times: [
11
+ "daily-morning",
12
+ "daily-evening"
13
+ ]
14
+
15
+ - model: endoreg_db.medication_schedule
16
+ fields:
17
+ name: "apixaban-2.5mg-twice_daily_10d"
18
+ name_de: "Apixaban 2.5mg, 2x täglich, 10 Tage"
19
+ name_en: "Apixaban 2.5mg, twice daily, 10 days"
20
+ therapy_duration_d: 10
21
+ medication: "apixaban"
22
+ dose: 2.5
23
+ unit: "miligram"
24
+ intake_times: [
25
+ "daily-morning",
26
+ "daily-evening"
27
+ ]
28
+
29
+ - model: endoreg_db.medication_schedule
30
+ fields:
31
+ name: "apixaban-5mg-twice_daily"
32
+ name_de: "Apixaban 5mg, 2x täglich"
33
+ name_en: "Apixaban 5mg, twice daily"
34
+ medication: "apixaban"
35
+ dose: 5
36
+ unit: "miligram"
37
+ intake_times: [
38
+ "daily-morning",
39
+ "daily-evening"
40
+ ]
41
+
42
+ - model: endoreg_db.medication_schedule
43
+ fields:
44
+ name: "apixaban-2.5mg-twice_daily"
45
+ name_de: "Apixaban 2.5mg, 2x täglich"
46
+ name_en: "Apixaban 2.5mg, twice daily"
47
+ medication: "apixaban"
48
+ dose: 2.5
49
+ unit: "miligram"
50
+ intake_times: [
51
+ "daily-morning",
52
+ "daily-evening"
53
+ ]
54
+
55
+ - model: endoreg_db.medication_schedule
56
+ fields:
57
+ name: "apixaban-5g-twice_daily_7d"
58
+ name_de: "Apixaban 5g, 2x täglich, 7 Tage"
59
+ name_en: "Apixaban 5g, twice daily, 7 days"
60
+ therapy_duration_d: 7
61
+ medication: "apixaban"
62
+ dose: 5
63
+ unit: "miligram"
64
+ intake_times: [
65
+ "daily-morning",
66
+ "daily-evening"
67
+ ]
68
+
69
+ - model: endoreg_db.medication_schedule
70
+ fields:
71
+ name: "apixaban-5g-twice_daily_3mo"
72
+ name_de: "Apixaban 5g, 2x täglich, 3 Monate"
73
+ name_en: "Apixaban 5g, twice daily, 3 months"
74
+ therapy_duration_d: 90
75
+ medication: "apixaban"
76
+ dose: 5
77
+ unit: "miligram"
78
+ intake_times: [
79
+ "daily-morning",
80
+ "daily-evening"
81
+ ]
82
+
83
+ - model: endoreg_db.medication_schedule
84
+ fields:
85
+ name: "apixaban-5g-twice_daily_6mo"
86
+ name_de: "Apixaban 5g, 2x täglich, 6 Monate"
87
+ name_en: "Apixaban 5g, twice daily, 6 months"
88
+ therapy_duration_d: 180
89
+ medication: "apixaban"
90
+ dose: 5
91
+ unit: "miligram"
92
+ intake_times: [
93
+ "daily-morning",
94
+ "daily-evening"
95
+ ]
@@ -0,0 +1,12 @@
1
+ - model: endoreg_db.medication_schedule
2
+ fields:
3
+ name: "ass-100mg-once_daily"
4
+ name_de: "ASS 100mg, 1x täglich"
5
+ name_en: "ASS 100mg, once daily"
6
+ therapy_duration_d: -1
7
+ medication: "aspirin"
8
+ dose: 100
9
+ unit: "miligram"
10
+ intake_times: [
11
+ "daily-morning",
12
+ ]
@@ -0,0 +1,26 @@
1
+ - model: endoreg_db.medication_schedule
2
+ fields:
3
+ name: "enoxaparin-80mg-twice_daily"
4
+ name_de: "Enoxaparin 80mg, 2x täglich"
5
+ name_en: "Enoxaparin 80mg, twice daily"
6
+ therapy_duration_d: -1
7
+ medication: "enoxaparin"
8
+ dose: 80
9
+ unit: "miligram"
10
+ intake_times: [
11
+ "daily-morning",
12
+ "daily-evening"
13
+ ]
14
+
15
+ - model: endoreg_db.medication_schedule
16
+ fields:
17
+ name: "enoxaparin-40mg-one_daily"
18
+ name_de: "Enoxaparin 80mg, 1x täglich"
19
+ name_en: "Enoxaparin 80mg, once daily"
20
+ therapy_duration_d: -1
21
+ medication: "enoxaparin"
22
+ dose: 40
23
+ unit: "miligram"
24
+ intake_times: [
25
+ "daily-morning"
26
+ ]
@@ -0,0 +1,6 @@
1
+ - model: endoreg_db.patient_lab_sample_type
2
+ fields:
3
+ name: "generic"
4
+ name_de: "generisch"
5
+ name_en: "generic"
6
+ description: "Generische Laborprobe"
@@ -0,0 +1,66 @@
1
+ - fields:
2
+ name: extraction_balloon_escort_2
3
+ name_de: Escort II Extraction Balloon
4
+ product_group: Balloon
5
+ transport_route: generic_overseas
6
+ model: endoreg_db.Product
7
+ - fields:
8
+ name: esophageal_dilator
9
+ name_de: Esophageal Dilator
10
+ product_group: Bougie
11
+ transport_route: generic_europe
12
+ model: endoreg_db.Product
13
+ - fields:
14
+ name: visiglide_2
15
+ name_de: VisiGlide 2
16
+ product_group: Wire
17
+ transport_route: generic_overseas
18
+ model: endoreg_db.Product
19
+ - fields:
20
+ name: peg_freka_15_ch
21
+ name_de: Freka PEG CH/FR15
22
+ product_group: PEG
23
+ transport_route: generic_europe
24
+ model: endoreg_db.Product
25
+ - fields:
26
+ name: biopsy_grasper_hot_radial_jaw_4
27
+ name_de: Biopsiezange 4 Hot Radial Jaw
28
+ product_group: Instrument
29
+ transport_route: generic_overseas
30
+ model: endoreg_db.Product
31
+ - fields:
32
+ name: nitinol_stent_aix_oel
33
+ name_de: Nitinol Stent, aix stent OEL
34
+ product_group: Metal-Stent
35
+ transport_route: generic_europe
36
+ model: endoreg_db.Product
37
+ - fields:
38
+ name: biliary_stent_cotton_leung_sof_flex
39
+ name_de: Cotton-Leung Sof-Flex Biliary Stent
40
+ product_group: Plastic-Stent
41
+ transport_route: generic_overseas
42
+ model: endoreg_db.Product
43
+ - fields:
44
+ name: bite_protector
45
+ name_de: "Einmal Bei\xDFring"
46
+ product_group: Plastic
47
+ transport_route: generic_europe
48
+ model: endoreg_db.Product
49
+ - fields:
50
+ name: pressure_syringe_60_ml
51
+ name_de: Druckspritze 60ml System Alliance II
52
+ product_group: Plastic-Large
53
+ transport_route: generic_overseas
54
+ model: endoreg_db.Product
55
+ - fields:
56
+ name: foliodress_gown_standard
57
+ name_de: Foliodress gown Standard
58
+ product_group: Coat
59
+ transport_route: generic_europe
60
+ model: endoreg_db.Product
61
+ - fields:
62
+ name: absorbant_pad
63
+ name_de: Unterlage
64
+ product_group: Absorbant-Pad
65
+ transport_route: generic_overseas
66
+ model: endoreg_db.Product
@@ -0,0 +1,33 @@
1
+ - fields:
2
+ name: Balloon
3
+ model: endoreg_db.ProductGroup
4
+ - fields:
5
+ name: Bougie
6
+ model: endoreg_db.ProductGroup
7
+ - fields:
8
+ name: Wire
9
+ model: endoreg_db.ProductGroup
10
+ - fields:
11
+ name: PEG
12
+ model: endoreg_db.ProductGroup
13
+ - fields:
14
+ name: Instrument
15
+ model: endoreg_db.ProductGroup
16
+ - fields:
17
+ name: Metal-Stent
18
+ model: endoreg_db.ProductGroup
19
+ - fields:
20
+ name: Plastic-Stent
21
+ model: endoreg_db.ProductGroup
22
+ - fields:
23
+ name: Plastic
24
+ model: endoreg_db.ProductGroup
25
+ - fields:
26
+ name: Plastic-Large
27
+ model: endoreg_db.ProductGroup
28
+ - fields:
29
+ name: Coat
30
+ model: endoreg_db.ProductGroup
31
+ - fields:
32
+ name: Absorbant-Pad
33
+ model: endoreg_db.ProductGroup