From 2da5d183aafc0f03617a954a54b591184c65a905 Mon Sep 17 00:00:00 2001 From: Admin Date: Tue, 21 Apr 2026 12:10:53 +0000 Subject: [PATCH] Dateien nach "mts-config" hochladen --- mts-config/flowcharts.json | 33 ++++++++++++++++++++++++++++++ mts-config/questions.de.json | 39 ++++++++++++++++++++++++++++++++++++ mts-config/questions.en.json | 39 ++++++++++++++++++++++++++++++++++++ 3 files changed, 111 insertions(+) create mode 100644 mts-config/flowcharts.json create mode 100644 mts-config/questions.de.json create mode 100644 mts-config/questions.en.json diff --git a/mts-config/flowcharts.json b/mts-config/flowcharts.json new file mode 100644 index 0000000..f4534fd --- /dev/null +++ b/mts-config/flowcharts.json @@ -0,0 +1,33 @@ +{ + "flowcharts": [ + { + "code": "CHEST_PAIN", + "label": "Chest pain", + "notes": "Maps to Manchester Triage chest pain flowchart.", + "linked_chief_complaints": [ + "chest_pain" + ] + }, + { + "code": "ABDOMINAL_PAIN", + "label": "Abdominal pain", + "linked_chief_complaints": [ + "abdominal_pain" + ] + }, + { + "code": "HEADACHE", + "label": "Headache", + "linked_chief_complaints": [ + "headache" + ] + }, + { + "code": "UNWELL_ADULT", + "label": "Unwell adult", + "linked_chief_complaints": [ + "unwell" + ] + } + ] +} \ No newline at end of file diff --git a/mts-config/questions.de.json b/mts-config/questions.de.json new file mode 100644 index 0000000..6febbfa --- /dev/null +++ b/mts-config/questions.de.json @@ -0,0 +1,39 @@ +{ + "language": "de", + "questions": [ + { + "code": "chief_complaint", + "type": "choice", + "title": "Wo ist das Hauptproblem?", + "options": [ + { + "value": "chest_pain", + "label": "Brust" + }, + { + "value": "abdominal_pain", + "label": "Bauch" + }, + { + "value": "headache", + "label": "Kopf" + }, + { + "value": "trauma", + "label": "Unfall/Verletzung" + }, + { + "value": "unwell", + "label": "Allgemein schlecht" + } + ] + }, + { + "code": "pain_intensity", + "type": "slider", + "title": "Wie stark sind die Schmerzen?", + "min": 0, + "max": 10 + } + ] +} \ No newline at end of file diff --git a/mts-config/questions.en.json b/mts-config/questions.en.json new file mode 100644 index 0000000..842b79f --- /dev/null +++ b/mts-config/questions.en.json @@ -0,0 +1,39 @@ +{ + "language": "en", + "questions": [ + { + "code": "chief_complaint", + "type": "choice", + "title": "Where is the main problem?", + "options": [ + { + "value": "chest_pain", + "label": "Chest" + }, + { + "value": "abdominal_pain", + "label": "Abdomen" + }, + { + "value": "headache", + "label": "Head" + }, + { + "value": "trauma", + "label": "Accident/Injury" + }, + { + "value": "unwell", + "label": "Generally unwell" + } + ] + }, + { + "code": "pain_intensity", + "type": "slider", + "title": "How strong is the pain?", + "min": 0, + "max": 10 + } + ] +} \ No newline at end of file