result = new HashMap<>();
- nameToId.forEach((name, id) -> {
- if (nameToId.containsKey(name + "IC")) {
- result.put(id, nameToId.get(name + "IC"));
- }
- });
- return result;
- }
-
- /**
- * Switch the eligible visits belonging to a clinic to the equivalent +IC clinic.
- *
- * @param clinic the old clinic path
- * @param newClinic the new clinic path
- * @param session a valid JCR session
- */
- private void updateVisits(final String clinic, final String newClinic, final Session session)
- {
- try {
- // Query:
- final String query = String.format(
- // select the Visit Information forms
- "select distinct visitInformation.*"
- + " from [cards:Form] as visitInformation"
- + " inner join [cards:ResourceAnswer] as clinic on clinic.form = visitInformation.[jcr:uuid]"
- + " inner join [cards:TextAnswer] as status on status.form = visitInformation.[jcr:uuid]"
- + " inner join [cards:DateAnswer] as visitDate on visitDate.form=visitInformation.[jcr:uuid]"
- + " where"
- // the form is a Visit Information form
- + " visitInformation.questionnaire = '%1$s'"
- // the form belongs to the correct clinic
- + " and clinic.question = '%2$s' and clinic.value = '%3$s'"
- // the status is in-progress
- + " and status.question = '%4$s' and status.value = 'in-progress'"
- // the visit happened more than 30 days ago
- + " and visitDate.question = '%5$s' and visitDate.value <= '%6$s'"
- // use the fast index for the query
- + " OPTION (index tag cards)",
- this.visitInformationQuestionnaire.getIdentifier(),
- this.clinicQuestion.getIdentifier(), clinic,
- this.statusQuestion.getIdentifier(),
- this.visitDateQuestion.getIdentifier(),
- ZonedDateTime.now().minusDays(30).format(DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSSxxx")));
- final NodeIterator visits = session.getWorkspace().getQueryManager().createQuery(query,
- Query.JCR_SQL2).execute().getNodes();
- while (visits.hasNext()) {
- Node visitForm = visits.nextNode();
- final Node clinicAnswer = this.formUtils.getAnswer(visitForm, this.clinicQuestion);
- final Node statusAnswer = this.formUtils.getAnswer(visitForm, this.statusQuestion);
- final Long submittedAnswer =
- (Long) this.formUtils.getValue(this.formUtils.getAnswer(visitForm, this.submittedQuestion));
- final boolean checkinNeeded = checkoutIfNeeded(visitForm, session);
- statusAnswer.setProperty("value", "discharged");
- if (Long.valueOf(1L).equals(submittedAnswer)) {
- clinicAnswer.setProperty("value", DEFAULT_IC_CLINIC);
- } else {
- clinicAnswer.setProperty("value", newClinic);
- }
- session.save();
- if (checkinNeeded) {
- checkin(visitForm, session);
- }
- }
- } catch (RepositoryException e) {
- LOGGER.error("Failed to update clinic: {}", e.getMessage(), e);
- }
- }
-
- private boolean checkoutIfNeeded(final Node form, final Session session) throws RepositoryException
- {
- session.refresh(true);
- if (!form.isCheckedOut()) {
- session.getWorkspace().getVersionManager().checkout(form.getPath());
- return true;
- }
- return false;
- }
-
- private void checkin(final Node form, final Session session)
- {
- try {
- session.getWorkspace().getVersionManager().checkin(form.getPath());
- } catch (final RepositoryException e) {
- LOGGER.warn("Failed check in the form: {}", e.getMessage(), e);
- }
- }
-}
diff --git a/prems-resources/clinical-data/pom.xml b/prems-resources/clinical-data/pom.xml
deleted file mode 100644
index cb1feedbf9..0000000000
--- a/prems-resources/clinical-data/pom.xml
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
- 4.0.0
-
-
- io.uhndata.cards
- prems-resources
- 0.9.22-SNAPSHOT
-
-
- prems-resources-clinical-data
- bundle
- Cards for PREMs Resources - Clinical Data
-
-
-
-
-
- org.apache.felix
- maven-bundle-plugin
- true
-
-
- {maven-resources},src/main/media
-
- SLING-INF/content/Survey/ED.xml;path:=/Survey/ED;overwrite:=true,
- SLING-INF/content/Survey/AIP.xml;path:=/Survey/AIP;overwrite:=true,
- SLING-INF/content/Survey/EDIP.xml;path:=/Survey/EDIP;overwrite:=true,
- SLING-INF/content/Survey/CPES.xml;path:=/Survey/CPES;overwrite:=true,
- SLING-INF/content/Survey/IC.xml;path:=/Survey/IC;overwrite:=true,
- SLING-INF/content/Survey/EDIC.xml;path:=/Survey/EDIC;overwrite:=true,
- SLING-INF/content/Survey/IPIC.xml;path:=/Survey/IPIC;overwrite:=true,
- SLING-INF/content/Survey/EDIPIC.xml;path:=/Survey/EDIPIC;overwrite:=true,
- SLING-INF/content/Survey/Rehab.xml;path:=/Survey/Rehab;overwrite:=true,
- SLING-INF/content/Survey/YVM.xml;path:=/Survey/YVM;overwrite:=true,
- SLING-INF/content/Survey/ClinicMapping.xml;path:=/Survey/ClinicMapping;overwrite:=true,
- SLING-INF/content/Survey/PatientAccess.xml;path:=/Survey/PatientAccess;overwrite:=true,
- SLING-INF/content/Survey/TermsOfUse.xml;path:=/Survey/TermsOfUse;overwrite:=true,
- SLING-INF/content/Survey/SurveyInstructions.xml;path:=/Survey/SurveyInstructions;overwrite:=true,
- SLING-INF/content/Survey/DashboardSettings.xml;path:=/Survey/DashboardSettings;overwrite:=true,
- SLING-INF/content/Questionnaires/;path:=/Questionnaires/;overwriteProperties:=true;uninstall:=true;checkin:=true,
- SLING-INF/content/Extensions/;path:=/Extensions/;overwriteProperties:=true;uninstall:=true,
- SLING-INF/content/libs/cards/resources/media/prems/;path:=/libs/cards/resources/media/prems/;overwrite:=true;uninstall:=true,
- SLING-INF/content/libs/cards/conf/Media.json;path:=/libs/cards/conf/Media;overwriteProperties:=true,
- SLING-INF/content/libs/cards/conf/AppName.json;path:=/libs/cards/conf/AppName;overwrite:=true,
- SLING-INF/content/libs/cards/conf/ThemeColor.json;path:=/libs/cards/conf/ThemeColor;overwrite:=true,
- SLING-INF/content/apps/cards/config/CopyAnswers;path:=/apps/cards/config/CopyAnswers;overwriteProperties:=true;uninstall:=true,
- SLING-INF/content/apps/cards/mailTemplates;path:=/apps/cards/mailTemplates;overwrite:=true,
- SLING-INF/content/apps/cards/clinics/CPES/mailTemplates;path:=/apps/cards/clinics/CPES/mailTemplates;overwrite:=true,
- SLING-INF/content/apps/cards/clinics/UHN-ED/mailTemplates;path:=/apps/cards/clinics/UHN-ED/mailTemplates;overwrite:=true,
- SLING-INF/content/apps/cards/clinics/UHN-IP/mailTemplates;path:=/apps/cards/clinics/UHN-IP/mailTemplates;overwrite:=true,
- SLING-INF/content/apps/cards/clinics/UHN-EDIP/mailTemplates;path:=/apps/cards/clinics/UHN-EDIP/mailTemplates;overwrite:=true,
- SLING-INF/content/apps/cards/clinics/UHN-IC/mailTemplates;path:=/apps/cards/clinics/UHN-IC/mailTemplates;overwrite:=true,
- SLING-INF/content/apps/cards/clinics/UHN-IC-ED/mailTemplates;path:=/apps/cards/clinics/UHN-IC-ED/mailTemplates;overwrite:=true,
- SLING-INF/content/apps/cards/clinics/UHN-IC-IP/mailTemplates;path:=/apps/cards/clinics/UHN-IC-IP/mailTemplates;overwrite:=true,
- SLING-INF/content/apps/cards/clinics/UHN-IC-EDIP/mailTemplates;path:=/apps/cards/clinics/UHN-IC-EDIP/mailTemplates;overwrite:=true,
- SLING-INF/content/apps/cards/clinics/UHN-Rehab/mailTemplates;path:=/apps/cards/clinics/UHN-Rehab/mailTemplates;overwrite:=true,
- SLING-INF/content/apps/cards/clinics/PMH-YVM/mailTemplates;path:=/apps/cards/clinics/PMH-YVM/mailTemplates;overwrite:=true,
- SLING-INF/content/apps/cards/clarityImport/YourExperience.xml;path:=/apps/cards/clarityImport/YourExperience;overwrite:=true,
- SLING-INF/content/apps/cards/clarityImport/PMH-YVM.xml;path:=/apps/cards/clarityImport/PMH-YVM;overwrite:=true,
- SLING-INF/content/Statistics/;path:=/Statistics/;overwriteProperties:=true;uninstall:=true,
-
-
-
-
-
-
-
-
-
- ${project.groupId}
- cards-patient-subject-type
- ${project.version}
- runtime
-
-
- ${project.groupId}
- cards-visit-subject-type
- ${project.version}
- runtime
-
-
-
diff --git a/prems-resources/clinical-data/src/main/media/SLING-INF/content/libs/cards/resources/media/prems/logo.png b/prems-resources/clinical-data/src/main/media/SLING-INF/content/libs/cards/resources/media/prems/logo.png
deleted file mode 100644
index e70f2c87f8..0000000000
Binary files a/prems-resources/clinical-data/src/main/media/SLING-INF/content/libs/cards/resources/media/prems/logo.png and /dev/null differ
diff --git a/prems-resources/clinical-data/src/main/media/SLING-INF/content/libs/cards/resources/media/prems/logo2.png b/prems-resources/clinical-data/src/main/media/SLING-INF/content/libs/cards/resources/media/prems/logo2.png
deleted file mode 100644
index c690041431..0000000000
Binary files a/prems-resources/clinical-data/src/main/media/SLING-INF/content/libs/cards/resources/media/prems/logo2.png and /dev/null differ
diff --git a/prems-resources/clinical-data/src/main/media/SLING-INF/content/libs/cards/resources/media/prems/logo_light_bg.png b/prems-resources/clinical-data/src/main/media/SLING-INF/content/libs/cards/resources/media/prems/logo_light_bg.png
deleted file mode 100644
index 7de0bcee97..0000000000
Binary files a/prems-resources/clinical-data/src/main/media/SLING-INF/content/libs/cards/resources/media/prems/logo_light_bg.png and /dev/null differ
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/CPES.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/CPES.json
deleted file mode 100644
index add64e281a..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/CPES.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:Extension",
- "cards:extensionPointId": "cards/coreUI/sidebar/entry",
- "cards:extensionName": "CPES",
- "cards:targetURL": "/content.html/Dashboard/2075099",
- "cards:icon": "asset:patient-portal.clinicIcon.js",
- "cards:defaultOrder": 10
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/PMH-YVM.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/PMH-YVM.json
deleted file mode 100644
index fadcd60cbb..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/PMH-YVM.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:Extension",
- "cards:extensionPointId": "cards/coreUI/sidebar/entry",
- "cards:extensionName": "PMH YVM",
- "cards:targetURL": "/content.html/Dashboard/PMH-YVM",
- "cards:icon": "asset:patient-portal.clinicIcon.js",
- "cards:defaultOrder": 19
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-ED.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-ED.json
deleted file mode 100644
index 3739f1225a..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-ED.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:Extension",
- "cards:extensionPointId": "cards/coreUI/sidebar/entry",
- "cards:extensionName": "UHN ED",
- "cards:targetURL": "/content.html/Dashboard/-1792626799",
- "cards:icon": "asset:patient-portal.clinicIcon.js",
- "cards:defaultOrder": 12
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-EDIC.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-EDIC.json
deleted file mode 100644
index 9ae9e032aa..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-EDIC.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:Extension",
- "cards:extensionPointId": "cards/coreUI/sidebar/entry",
- "cards:extensionName": "UHN ED-IC",
- "cards:targetURL": "/content.html/Dashboard/-432465813",
- "cards:icon": "asset:patient-portal.clinicIcon.js",
- "cards:defaultOrder": 17
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-EDIP.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-EDIP.json
deleted file mode 100644
index 36984618b1..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-EDIP.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:Extension",
- "cards:extensionPointId": "cards/coreUI/sidebar/entry",
- "cards:extensionName": "UHN ED-IP",
- "cards:targetURL": "/content.html/Dashboard/-432465800",
- "cards:icon": "asset:patient-portal.clinicIcon.js",
- "cards:defaultOrder": 13
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-EDIPIC.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-EDIPIC.json
deleted file mode 100644
index 673efdfdcc..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-EDIPIC.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:Extension",
- "cards:extensionPointId": "cards/coreUI/sidebar/entry",
- "cards:extensionName": "UHN ED-IP-IC",
- "cards:targetURL": "/content.html/Dashboard/1012196242",
- "cards:icon": "asset:patient-portal.clinicIcon.js",
- "cards:defaultOrder": 18
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-IC.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-IC.json
deleted file mode 100644
index 621db67892..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-IC.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:Extension",
- "cards:extensionPointId": "cards/coreUI/sidebar/entry",
- "cards:extensionName": "UHN IC",
- "cards:targetURL": "/content.html/Dashboard/-1792626676",
- "cards:icon": "asset:patient-portal.clinicIcon.js",
- "cards:defaultOrder": 15
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-IP.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-IP.json
deleted file mode 100644
index a8644e345f..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-IP.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:Extension",
- "cards:extensionPointId": "cards/coreUI/sidebar/entry",
- "cards:extensionName": "UHN IP",
- "cards:targetURL": "/content.html/Dashboard/-1792626663",
- "cards:icon": "asset:patient-portal.clinicIcon.js",
- "cards:defaultOrder": 11
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-IPIC.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-IPIC.json
deleted file mode 100644
index 1229877f4b..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-IPIC.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:Extension",
- "cards:extensionPointId": "cards/coreUI/sidebar/entry",
- "cards:extensionName": "UHN IP-IC",
- "cards:targetURL": "/content.html/Dashboard/-432335117",
- "cards:icon": "asset:patient-portal.clinicIcon.js",
- "cards:defaultOrder": 16
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-Rehab.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-Rehab.json
deleted file mode 100644
index 713e4a2892..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Extensions/Sidebar/UHN-Rehab.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:Extension",
- "cards:extensionPointId": "cards/coreUI/sidebar/entry",
- "cards:extensionName": "UHN Rehab",
- "cards:targetURL": "/content.html/Dashboard/78840662",
- "cards:icon": "asset:patient-portal.clinicIcon.js",
- "cards:defaultOrder": 14
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/CPESIC.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/CPESIC.xml
deleted file mode 100644
index ef968cb5d7..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/CPESIC.xml
+++ /dev/null
@@ -1,6234 +0,0 @@
-
-
-
- CPESIC
- cards:Questionnaire
-
- title
- Canadian Patient Experience Survey
- String
-
-
- requiredSubjectTypes
-
- /SubjectTypes/Patient/Visit
-
- Reference
-
-
- requireCompletion
- True
- Boolean
-
-
- hideAnswerInstructions
- True
- Boolean
-
-
- paginate
- True
- Boolean
-
-
- paginationVariant
- progress
- String
-
-
- maxPerSubject
- 1
- Long
-
-
- Section1
- cards:Section
-
- cpesic_intro
- cards:Information
-
- dataType
- info
- String
-
-
- text
- You should fill out this questionnaire only if you are the patient who received the invitation email. You may need to get help from a family member or friend to answer the questions. That’s okay.
-
-Answer **all** the questions by selecting the circle to the left of your answer.
-
-Your response to this survey is voluntary but will provide us with important information.
- String
-
-
-
- cpesic_hospital
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- Hospital
- String
-
-
- displayMode
- hidden
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/location
- String
-
-
-
- cpesic_department
- cards:Question
-
- dataType
- text
- String
-
-
- text
- Department
- String
-
-
- displayMode
- hidden
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/provider
- String
-
-
-
-
- YourCarefromNurses
- cards:Section
-
- label
- Your Care from Nurses
- String
-
-
- cpesic_1
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, how often did nurses treat you with _courtesy and respect_?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- cpesic_2
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, how often did nurses _listen carefully to you_?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- cpesic_3
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, how often did nurses _explain things_ in a way you could understand?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- cpesic_4
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, after you pressed the call button, how often did you get help as soon as you wanted it?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I never pressed the call button
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
-
- YourCarefromDoctors
- cards:Section
-
- label
- Your Care from Doctors
- String
-
-
- cpesic_5
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, how often did doctors treat you with _courtesy and respect_?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- cpesic_6
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, how often did doctors _listen carefully to you_?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- cpesic_7
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, how often did doctors _explain things_ in a way you could understand?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- TheHospitalEnvironment
- cards:Section
-
- label
- The Hospital Environment
- String
-
-
- cpesic_8
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, how often were your room and bathroom kept clean?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- cpesic_9
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, how often was the area around your room quiet at night?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- YourExperiencesinThisHospital
- cards:Section
-
- label
- Your Experiences in This Hospital
- String
-
-
- minAnswers
- 1
- Long
-
-
- maxAnswers
- 1
- Long
-
-
- cpesic_10
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- boolean
- String
-
-
- text
- During this hospital stay, did you need help from nurses or other hospital staff in getting to the bathroom or in using a bedpan?
- String
-
-
- minAnswers
- 1
- Long
-
-
-
- cpesic_11section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_10
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 1
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cpesic_11
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- How often did you get help in getting to the bathroom or in using a bedpan as soon as you wanted?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- cpesic_12
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- boolean
- String
-
-
- text
- During this hospital stay, did you need medicine for pain?
- String
-
-
- minAnswers
- 1
- Long
-
-
-
- cpesic_13section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_12
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 1
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cpesic_13
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, how often was your pain well controlled?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- cpesic_14section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_12
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 1
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cpesic_14
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, how often did the hospital staff do everything they could to help you with your pain?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- cpesic_15
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- boolean
- String
-
-
- text
- During this hospital stay, were you given any medicine that you had not taken before?
- String
-
-
- minAnswers
- 1
- Long
-
-
-
- cpesic_16section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_15
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 1
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cpesic_16
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Before giving you any new medicine, how often did hospital staff tell you what the medicine was for?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- cpesic_17section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_15
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 1
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cpesic_17
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Before giving you any new medicine, how often did hospital staff describe possible side effects in a way you could understand?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
-
- WhenYouLefttheHospital
- cards:Section
-
- label
- When You Left the Hospital
- String
-
-
- minAnswers
- 1
- Long
-
-
- maxAnswers
- 1
- Long
-
-
- cpesic_18
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- After you left the hospital, did you go directly to your own home, to someone else’s home or to another health facility?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Own home
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Someone else's home
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Another health facility
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
-
- cpesic_19section
- cards:Section
-
- conditionalGroup0
- cards:ConditionalGroup
-
- requireAll
- False
- Boolean
-
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_18
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 0
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- condition1
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_18
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 1
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
-
- cpesic_19
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- minAnswers
- 1
- Long
-
-
- dataType
- boolean
- String
-
-
- text
- During this hospital stay, did doctors, nurses or other hospital staff talk with you about whether you would have the help you needed when you left the hospital?
- String
-
-
-
-
- cpesic_20section
- cards:Section
-
- conditionalGroup0
- cards:ConditionalGroup
-
- requireAll
- False
- Boolean
-
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_18
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 0
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- condition1
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_18
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 1
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
-
- cpesic_20
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- minAnswers
- 1
- Long
-
-
- dataType
- boolean
- String
-
-
- text
- During this hospital stay, did you get information in writing about what symptoms or health problems to look out for after you left the hospital?
- String
-
-
-
-
-
- OverallRatingofHospital
- cards:Section
-
- label
- Overall Rating of Hospital
- String
-
-
- cpesic_hospital_overall
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
-
- String
-
-
- displayMode
- formatted
- String
-
-
- entryMode
- computed
- String
-
-
- expression
- return "Please answer the following questions about your stay at **" + @{cpesic_hospital:-UHN} + "**. Do not include any other hospital stays in your answers."
- String
-
-
-
- cpesic_21
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- What number would you use to rate this hospital during your stay?
- String
-
-
- description
- Using any number from 0 to 10, where 0 is the worst hospital possible and 10 is the best hospital possible.
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- 0 - Worst hospital possible
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- 1
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- 2
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- 3
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 4
- cards:AnswerOption
-
- label
- 4
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- 5
- cards:AnswerOption
-
- label
- 5
- String
-
-
- value
- 5
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
- 6
- cards:AnswerOption
-
- label
- 6
- String
-
-
- value
- 6
- String
-
-
- defaultOrder
- 7
- Long
-
-
-
- 7
- cards:AnswerOption
-
- label
- 7
- String
-
-
- value
- 7
- String
-
-
- defaultOrder
- 8
- Long
-
-
-
- 8
- cards:AnswerOption
-
- label
- 8
- String
-
-
- value
- 8
- String
-
-
- defaultOrder
- 9
- Long
-
-
-
- 9
- cards:AnswerOption
-
- label
- 9
- String
-
-
- value
- 9
- String
-
-
- defaultOrder
- 10
- Long
-
-
-
- 10
- cards:AnswerOption
-
- label
- 10 - Best hospital possible
- String
-
-
- value
- 10
- String
-
-
- defaultOrder
- 11
- Long
-
-
-
-
- cpesic_22
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Would you recommend this hospital to your friends and family?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Definitely no
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Probably no
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Probably yes
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Definitely yes
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- YourArrivalattheHospital
- cards:Section
-
- label
- Your Arrival at the Hospital
- String
-
-
- description
- In this next section, we ask several more questions about your stay at the hospital.
- String
-
-
- minAnswers
- 1
- Long
-
-
- maxAnswers
- 1
- Long
-
-
- cpesic_23
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- boolean
- String
-
-
- text
- When you arrived at the hospital, did you go to the emergency department?
- String
-
-
- minAnswers
- 1
- Long
-
-
-
- cpesic_24section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_23
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 0
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cpesic_24
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Before coming to the hospital, did you have enough information about what was going to happen during the admission process?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- cpesic_25section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_23
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 0
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cpesic_25
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Was your admission into the hospital organized?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- cpesic_26section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_23
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 1
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cpesic_26
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- When you were in the emergency department, did you get enough information about your condition and treatment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- cpesic_27section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_23
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 1
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cpesic_27
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were you given enough information about what was going to happen during your admission to the hospital?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- cpesic_28section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_23
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 1
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cpesic_28
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- boolean
- String
-
-
- text
- After you knew that you needed to be admitted to a hospital bed, did you have to wait too long before getting there?
- String
-
-
- minAnswers
- 1
- Long
-
-
-
-
- cpesic_29section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_23
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 1
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cpesic_29
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Was your transfer from the emergency department into a hospital bed organized?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
-
- DuringYourHospitalStay
- cards:Section
-
- label
- During Your Hospital Stay
- String
-
-
- cpesic_30
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Do you feel that there was good communication about your care between doctors, nurses and other hospital staff?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- cpesic_31
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- How often did doctors, nurses and other hospital staff seem informed and up-to-date about your hospital care?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- cpesic_32
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- How often were tests and procedures done when you were told they would be done?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I did not have any tests or procedures
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- cpesic_33
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, did you get all the information you needed about your condition and treatment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- cpesis_34
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you get the support you needed to help you with any anxieties, fears or worries you had during this hospital stay?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Not applicable
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
- notApplicable
- True
- Boolean
-
-
-
-
- cpesic_35
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were you involved as much as you wanted to be in decisions about your care and treatment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- cpesic_36
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were your family or friends involved as much as you wanted in decisions about your care and treatment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I did not want them to be involved
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- -2
- cards:AnswerOption
-
- label
- I did not have family or friends to be involved
- String
-
-
- value
- -2
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
-
-
- LeavingtheHospital
- cards:Section
-
- label
- Leaving the Hospital
- String
-
-
- cpesic_37
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Before you left the hospital, did you have a clear understanding about all of your prescribed medications, including those you were taking before your hospital stay?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Not applicable
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
- notApplicable
- True
- Boolean
-
-
-
-
- cpesic_38
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you receive enough information from hospital staff about what to do if you were worried about your condition or treatment after you left the hospital?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- cpesic_39
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- When you left the hospital, did you have a better understanding of your condition than when you entered?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- YourOverallRatings
- cards:Section
-
- label
- Your Overall Ratings
- String
-
-
- cpesic_40
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Overall, do you feel you were helped by your hospital stay?
- String
-
-
- description
- Please answer on a scale where 0 is “not helped at all” and 10 is “helped completely.”
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- 0 - Not helped at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- 1
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- 2
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- 3
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 4
- cards:AnswerOption
-
- label
- 4
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- 5
- cards:AnswerOption
-
- label
- 5
- String
-
-
- value
- 5
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
- 6
- cards:AnswerOption
-
- label
- 6
- String
-
-
- value
- 6
- String
-
-
- defaultOrder
- 7
- Long
-
-
-
- 7
- cards:AnswerOption
-
- label
- 7
- String
-
-
- value
- 7
- String
-
-
- defaultOrder
- 8
- Long
-
-
-
- 8
- cards:AnswerOption
-
- label
- 8
- String
-
-
- value
- 8
- String
-
-
- defaultOrder
- 9
- Long
-
-
-
- 9
- cards:AnswerOption
-
- label
- 9
- String
-
-
- value
- 9
- String
-
-
- defaultOrder
- 10
- Long
-
-
-
- 10
- cards:AnswerOption
-
- label
- 10 - Helped completely
- String
-
-
- value
- 10
- String
-
-
- defaultOrder
- 11
- Long
-
-
-
-
- cpesic_41
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Overall... (please answer on a scale where 0 is “I had a very poor experience” and 10 is “I had a very good experience”)
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- 0 - I had a very poor experience
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- 1
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- 2
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- 3
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 4
- cards:AnswerOption
-
- label
- 4
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- 5
- cards:AnswerOption
-
- label
- 5
- String
-
-
- value
- 5
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
- 6
- cards:AnswerOption
-
- label
- 6
- String
-
-
- value
- 6
- String
-
-
- defaultOrder
- 7
- Long
-
-
-
- 7
- cards:AnswerOption
-
- label
- 7
- String
-
-
- value
- 7
- String
-
-
- defaultOrder
- 8
- Long
-
-
-
- 8
- cards:AnswerOption
-
- label
- 8
- String
-
-
- value
- 8
- String
-
-
- defaultOrder
- 9
- Long
-
-
-
- 9
- cards:AnswerOption
-
- label
- 9
- String
-
-
- value
- 9
- String
-
-
- defaultOrder
- 10
- Long
-
-
-
- 10
- cards:AnswerOption
-
- label
- 10 - I had a very good experience
- String
-
-
- value
- 10
- String
-
-
- defaultOrder
- 11
- Long
-
-
-
-
-
- AboutYou
- cards:Section
-
- label
- About You
- String
-
-
- cpesic_42
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- In general, how would you rate your overall physical health?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 4
- cards:AnswerOption
-
- label
- Excellent
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Very good
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Good
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Fair
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- Poor
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- cpesic_43
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- In general, how would you rate your overall mental or emotional health?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 4
- cards:AnswerOption
-
- label
- Excellent
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Very good
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Good
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Fair
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- Poor
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- cpesic_44
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- What is the highest grade or level of school that you have _completed_?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 8thgradeorless
- cards:AnswerOption
-
- label
- 8th grade or less
- String
-
-
- value
- 8th grade or less
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- somehighschoolbutdidnotgraduate
- cards:AnswerOption
-
- label
- Some high school, but did not graduate
- String
-
-
- value
- Some high school, but did not graduate
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- highschoolorhighschoolequivalencycertificate
- cards:AnswerOption
-
- label
- High school or high school equivalency certificate
- String
-
-
- value
- High school or high school equivalency certificate
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- collegecegeporothernon-universitycertificateordiploma
- cards:AnswerOption
-
- label
- College, CEGEP or other non-university certificate or diploma
- String
-
-
- value
- College, CEGEP or other non-university certificate or diploma
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- undergraduatedegreeorsomeuniversity
- cards:AnswerOption
-
- label
- Undergraduate degree or some university
- String
-
-
- value
- Undergraduate degree or some university
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- post-graduatedegreeorprofessionaldesignation
- cards:AnswerOption
-
- label
- Post-graduate degree or professional designation
- String
-
-
- value
- Post-graduate degree or professional designation
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
-
- cpesic_45
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- What is your gender?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- m
- cards:AnswerOption
-
- label
- Male
- String
-
-
- value
- M
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- f
- cards:AnswerOption
-
- label
- Female
- String
-
-
- value
- F
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- o
- cards:AnswerOption
-
- label
- Other
- String
-
-
- value
- O
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
-
- cpesic_46
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- What is your year of birth?
- String
-
-
- description
- Please write in; for example, “1934”.
- String
-
-
- minAnswers
- 1
- Long
-
-
- minValue
- 1900
- Long
-
-
- maxValue
- 2023
- Long
-
-
-
- cpesic_47
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- boolean
- String
-
-
- text
- Was your most recent stay at this hospital for a childbirth experience?
- String
-
-
- minAnswers
- 1
- Long
-
-
-
- cpesic_48
- cards:Question
-
- maxAnswers
- 0
- Long
-
-
- dataType
- text
- String
-
-
- text
- People living in Canada come from many different cultural and racial backgrounds. The following question will help us to better understand the experiences of the communities that we serve. Do you consider yourself to be...
- String
-
-
- description
- Please check all that apply
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- firstnation
- cards:AnswerOption
-
- label
- First Nation
- String
-
-
- value
- First Nation
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- inuit
- cards:AnswerOption
-
- label
- Inuit
- String
-
-
- value
- Inuit
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- métis
- cards:AnswerOption
-
- label
- Métis
- String
-
-
- value
- Métis
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- indigenous-aboriginalnotincludedabove
- cards:AnswerOption
-
- label
- Indigenous/Aboriginal (not included above)
- String
-
-
- value
- IndigenousAboriginal (not included above)
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- arab
- cards:AnswerOption
-
- label
- Arab
- String
-
-
- value
- Arab
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- blacknorthamericancaribbeanafricanetc.
- cards:AnswerOption
-
- label
- Black (North American, Caribbean, African, etc.)
- String
-
-
- value
- Black (North American, Caribbean, African, etc.)
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
- chinese
- cards:AnswerOption
-
- label
- Chinese
- String
-
-
- value
- Chinese
- String
-
-
- defaultOrder
- 7
- Long
-
-
-
- filipino
- cards:AnswerOption
-
- label
- Filipino
- String
-
-
- value
- Filipino
- String
-
-
- defaultOrder
- 8
- Long
-
-
-
- japanese
- cards:AnswerOption
-
- label
- Japanese
- String
-
-
- value
- Japanese
- String
-
-
- defaultOrder
- 9
- Long
-
-
-
- korean
- cards:AnswerOption
-
- label
- Korean
- String
-
-
- value
- Korean
- String
-
-
- defaultOrder
- 10
- Long
-
-
-
- latinamerican
- cards:AnswerOption
-
- label
- Latin American
- String
-
-
- value
- Latin American
- String
-
-
- defaultOrder
- 11
- Long
-
-
-
- southasianeastindianpakistanisrilankanetc.
- cards:AnswerOption
-
- label
- South Asian (East Indian, Pakistani, Sri Lankan, etc.)
- String
-
-
- value
- South Asian (East Indian, Pakistani, Sri Lankan, etc.)
- String
-
-
- defaultOrder
- 12
- Long
-
-
-
- southeastasianvietnamesecambodianmalaysianlaotianetc.
- cards:AnswerOption
-
- label
- Southeast Asian (Vietnamese, Cambodian, Malaysian, Laotian, etc.)
- String
-
-
- value
- Southeast Asian (Vietnamese, Cambodian, Malaysian, Laotian, etc.)
- String
-
-
- defaultOrder
- 13
- Long
-
-
-
- westasianiranianafghanetc.
- cards:AnswerOption
-
- label
- West Asian (Iranian, Afghan, etc.)
- String
-
-
- value
- West Asian (Iranian, Afghan, etc.)
- String
-
-
- defaultOrder
- 14
- Long
-
-
-
- whitenorthamericaneuropeanetc.
- cards:AnswerOption
-
- label
- White (North American, European,etc.)
- String
-
-
- value
- White (North American, European,etc.)
- String
-
-
- defaultOrder
- 15
- Long
-
-
-
- other
- cards:AnswerOption
-
- label
- Other
- String
-
-
- value
- Other
- String
-
-
- defaultOrder
- 16
- Long
-
-
-
-
- cpesic_48_othersection
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- cpesic_48
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- Other
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cpesic_48_other
- cards:Question
-
- dataType
- vocabulary
- String
-
-
- text
- What other ethnicity would you consider yourself to be?
- String
-
-
- displayMode
- input
- String
-
-
- sourceVocabularies
-
- HANCESTRO
-
- String
-
-
- vocabularyFilters
- cards:VocabularyFilterGroup
-
- HANCESTRO
-
- HANCESTRO_0004
-
- String
-
-
-
-
-
- cpesic_49
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- Is there anything else you would like to share about your hospital stay?
- String
-
-
- displayMode
- textbox
- String
-
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/IC.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/IC.xml
deleted file mode 100644
index 704a6d0e56..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/IC.xml
+++ /dev/null
@@ -1,1090 +0,0 @@
-
-
-
- IC
- cards:Questionnaire
-
- title
- UHN Integrated Care Patient Experience Survey
- String
-
-
- requiredSubjectTypes
-
- /SubjectTypes/Patient/Visit
-
- Reference
-
-
- requireCompletion
- True
- Boolean
-
-
- hideAnswerInstructions
- True
- Boolean
-
-
- paginate
- True
- Boolean
-
-
- maxPerSubject
- 1
- Long
-
-
- ic_intro
- cards:Information
-
- maxAnswers
- 1
- Long
-
-
- dataType
- info
- String
-
-
- text
-
-### As you look to fill out this survey, you were likely discharged from your stay at a UHN hospital site within the last 30 days.
-
-We would like you to reflect on your experience with the Integrated Care Program in the last month when you were discharged from the hospital and transitioned home, and to provide us with some feedback on supports that you may have received. We appreciate any insights you can provide and will look to make improvements based on your feedback.
-
- String
-
-
-
- ic_hospital
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- Hospital
- String
-
-
- displayMode
- hidden
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/location
- String
-
-
-
- ic_department
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- Department
- String
-
-
- displayMode
- hidden
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/provider
- String
-
-
-
- ic_1
- cards:Question
-
- dataType
- boolean
- String
-
-
- text
- During this hospital stay, did you get information in writing about what symptoms or health problems to look out for after you left hospital?
- String
-
-
- minAnswers
- 1
- Long
-
-
-
- ic_2
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- boolean
- String
-
-
- text
- Before leaving the hospital, did someone speak with you about whether you would have the help and equipment you needed at home?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 1
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
-
- ic_3
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- boolean
- String
-
-
- text
- Did you receive information about community services available to help you during your recovery at home?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 1
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
-
- ic_4
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did the home care and/or community services you received meet your needs?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 2
- cards:AnswerOption
-
- label
- Yes, all of my needs
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Yes, some of my needs
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No, none of my needs
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
-
- ic_5
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Was the team able to support and ensure you were connected with your primary care provider through assistance or information?
- String
-
-
- description
- Note: _Primary care provider_ is a broader term that encompasses family doctor/physician, general practitioner or nurse practitioner.
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 1
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Not applicable
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 3
- Long
-
-
- notApplicable
- True
- Boolean
-
-
-
-
- ic_6
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Do you feel that you were treated with kindness, compassion and concern when receiving care at home?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Don’t know/not sure
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- ic_7
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- How would you rate the Integrated Care Program on a scale of 1-5 (lowest to highest rating)?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 1
- cards:AnswerOption
-
- label
- 1
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- 2
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- 3
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 4
- cards:AnswerOption
-
- label
- 4
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 5
- cards:AnswerOption
-
- label
- 5
- String
-
-
- value
- 5
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- ic_8
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- What else would you like to say about this experience?
- String
-
-
- displayMode
- textbox
- String
-
-
- minAnswers
- 0
- Long
-
-
-
- ic_feedback
- cards:Section
-
- ic_feedback_intro
- cards:Information
-
- text
-
-### If you would like to provide further input into your experience, please provide your name or that of your family caregiver, and a way to reach you (phone or email).
-
-A member of the quality improvement team will reach out to you for an interview. Interviews would be maximum 30 minutes and in appreciation of your time, you would receive compensation.
-
- String
-
-
-
- ic_contact_mode
- cards:Question
-
- text
- I would like to be contacted by
- String
-
-
- displayMode
- list
- String
-
-
- maxAnswers
- 1
- Long
-
-
- Phone
- cards:AnswerOption
-
- label
- Phone call
- String
-
-
- value
- Phone
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- Text
- cards:AnswerOption
-
- label
- Text
- String
-
-
- value
- Text
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- Email
- cards:AnswerOption
-
- label
- Email
- String
-
-
- value
- Email
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- No
- cards:AnswerOption
-
- label
- I do not want to be contacted
- String
-
-
- value
- No
- String
-
-
- defaultOrder
- 4
- Long
-
-
- noneOfTheAbove
- True
- Boolean
-
-
-
-
- ic_contact_phone_section
- cards:Section
-
- condition1
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- ic_contact_mode
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- Phone
- Text
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cards:Question
- ic_contact_phone
-
- text
- Phone number
- String
-
-
- dataType
- phone
- String
-
-
- onlyCountries
- ca
- String
-
-
- minAnswers
- 1
- Long
-
-
- maxAnswers
- 1
- Long
-
-
-
-
- ic_contact_email_section
- cards:Section
-
- condition1
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- ic_contact_mode
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- Email
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cards:Question
- ic_contact_email
-
- text
- Email address
- String
-
-
- validationRegexp
- ^([a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,})$
- String
-
-
- validationErrorText
- Please enter a valid email address
- String
-
-
- minAnswers
- 1
- Long
-
-
- maxAnswers
- 1
- Long
-
-
-
-
- ic_contact_name_section
- cards:Section
-
- condition1
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- ic_contact_mode
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- Phone
- Text
- Email
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- cards:Question
- ic_contact_name
-
- text
- Name
- String
-
-
- minAnswers
- 1
- Long
-
-
- maxAnswers
- 1
- Long
-
-
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/OAIP.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/OAIP.xml
deleted file mode 100644
index 18ad78b298..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/OAIP.xml
+++ /dev/null
@@ -1,1806 +0,0 @@
-
-
-
- OAIP
- cards:Questionnaire
-
- title
- UHN Patient Experience Inpatient Survey
- String
-
-
- requiredSubjectTypes
-
- /SubjectTypes/Patient/Visit
-
- Reference
-
-
- requireCompletion
- True
- Boolean
-
-
- hideAnswerInstructions
- True
- Boolean
-
-
- paginate
- True
- Boolean
-
-
- paginationVariant
- text
- String
-
-
- maxPerSubject
- 1
- Long
-
-
- oaip_module1
- cards:Section
-
- label
-
- String
-
-
- oaip_hospital
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- Hospital
- String
-
-
- displayMode
- hidden
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/location
- String
-
-
-
- oaip_department
- cards:Question
-
- dataType
- text
- String
-
-
- text
- Department
- String
-
-
- displayMode
- hidden
- String
-
-
- maxAnswers
- 0
- Long
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/provider
- String
-
-
-
- oaip_1
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you feel that there was good communication about your care between doctors, nurses and other hospital staff?
- String
-
-
- description
- Examples of other hospital staff include: Dietitians, Personal Support Workers, Pharmacists, Physiotherapists, Occupational Therapists, Social Workers, Speech Language Pathologists, etc.
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Don’t know / Not sure
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- oaip_2
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, did you get all the information you needed about your condition and treatment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- oaip_3
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you get the support you needed to help you with any anxieties, fears or worries you had during this hospital stay?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- oaip_4
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were you involved as much as you wanted to be in decisions about your care and treatment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- oaip_5
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were you able to get a member of hospital staff to help you when you needed attention?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 2
- cards:AnswerOption
-
- label
- Yes, always
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No, never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I did not need attention
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- oaip_6
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Before you left the hospital did you have a clear understanding about all of your prescribed medications, including those you were taking before your hospital stay?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Not applicable
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
- notApplicable
- True
- Boolean
-
-
-
-
- oaip_7
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you receive enough information from hospital staff about what to do if you were worried about your condition or treatment after you left the hospital?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- oaip_8
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Overall... (please answer on a scale where 0 is “I had a very poor experience” and 10 is “I had a very good experience”)
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- 0 - I had a very poor experience
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- 1
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- 2
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- 3
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 4
- cards:AnswerOption
-
- label
- 4
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- 5
- cards:AnswerOption
-
- label
- 5
- String
-
-
- value
- 5
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
- 6
- cards:AnswerOption
-
- label
- 6
- String
-
-
- value
- 6
- String
-
-
- defaultOrder
- 7
- Long
-
-
-
- 7
- cards:AnswerOption
-
- label
- 7
- String
-
-
- value
- 7
- String
-
-
- defaultOrder
- 8
- Long
-
-
-
- 8
- cards:AnswerOption
-
- label
- 8
- String
-
-
- value
- 8
- String
-
-
- defaultOrder
- 9
- Long
-
-
-
- 9
- cards:AnswerOption
-
- label
- 9
- String
-
-
- value
- 9
- String
-
-
- defaultOrder
- 10
- Long
-
-
-
- 10
- cards:AnswerOption
-
- label
- 10 - I had a very good experience
- String
-
-
- value
- 10
- String
-
-
- defaultOrder
- 11
- Long
-
-
-
-
- oaip_9
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Would you recommend this hospital to your friends and family?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- 0 - Not at all likely
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- 1
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- 2
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- 3
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 4
- cards:AnswerOption
-
- label
- 4
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- 5
- cards:AnswerOption
-
- label
- 5 - Neutral
- String
-
-
- value
- 5
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
- 6
- cards:AnswerOption
-
- label
- 6
- String
-
-
- value
- 6
- String
-
-
- defaultOrder
- 7
- Long
-
-
-
- 7
- cards:AnswerOption
-
- label
- 7
- String
-
-
- value
- 7
- String
-
-
- defaultOrder
- 8
- Long
-
-
-
- 8
- cards:AnswerOption
-
- label
- 8
- String
-
-
- value
- 8
- String
-
-
- defaultOrder
- 9
- Long
-
-
-
- 9
- cards:AnswerOption
-
- label
- 9
- String
-
-
- value
- 9
- String
-
-
- defaultOrder
- 10
- Long
-
-
-
- 10
- cards:AnswerOption
-
- label
- 10 - Extremely likely
- String
-
-
- value
- 10
- String
-
-
- defaultOrder
- 11
- Long
-
-
-
-
- oaip_10
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- What else would you like to say about this experience?
- String
-
-
- displayMode
- textbox
- String
-
-
-
-
- oaip_module2
- cards:Section
-
- label
- Additional questions about your recent stay at the hospital
- String
-
-
- oaip_11
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Do you feel that you were treated with kindness and compassion?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Don’t know/not sure
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- oaip_12
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were you given enough information about what was going to happen during your stay at the hospital?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Don’t know/not sure
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- oaip_13
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were your caregiver(s) (family member or friend) involved as much as you wanted in decisions about your care and treatment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Not applicable
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
- notApplicable
- True
- Boolean
-
-
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/OED.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/OED.xml
deleted file mode 100644
index 8d4cac308a..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/OED.xml
+++ /dev/null
@@ -1,1557 +0,0 @@
-
-
-
- OED
- cards:Questionnaire
-
- title
- UHN Patient Experience Emergency Department Survey
- String
-
-
- requiredSubjectTypes
-
- /SubjectTypes/Patient/Visit
-
- Reference
-
-
- requireCompletion
- True
- Boolean
-
-
- hideAnswerInstructions
- True
- Boolean
-
-
- paginate
- True
- Boolean
-
-
- paginationVariant
- text
- String
-
-
- maxPerSubject
- 1
- Long
-
-
- oed_module1
- cards:Section
-
- label
- During this emergency department visit...
- String
-
-
- oed_hospital
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- Hospital
- String
-
-
- displayMode
- hidden
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/location
- String
-
-
-
- oed_1
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- If you had a long wait, were you told why?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 2
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No, but I would have liked a reason
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- No, but I did not mind
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Don’t know / Can’t remember
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- I did not have a long wait
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- oed_2
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- How often did care providers treat you with courtesy and respect?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- oed_3
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- How often did care providers explain things in a way you could understand?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- oed_4
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you feel that there was good communication about your care between doctors, nurses and other hospital staff?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Don’t know / Not sure
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- oed_5
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you get the emotional support you needed to help you with any anxieties, fears or worries you had during this hospital visit?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Not applicable
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
- notApplicable
- True
- Boolean
-
-
-
-
- oed_6
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did care providers do everything they could do to ease your discomfort or symptoms?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Yes, somewhat
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Yes, mostly
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Not applicable
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
- notApplicable
- True
- Boolean
-
-
-
-
- oed_7
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you receive enough information from hospital staff about what to do if you were worried about your condition or treatment after you left the hospital?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- oed_8
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Overall... (please answer on a scale where 0 is “I had a very poor experience” and 10 is “I had a very good experience”)
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- 0 - I had a very poor experience
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- 1
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- 2
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- 3
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 4
- cards:AnswerOption
-
- label
- 4
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- 5
- cards:AnswerOption
-
- label
- 5
- String
-
-
- value
- 5
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
- 6
- cards:AnswerOption
-
- label
- 6
- String
-
-
- value
- 6
- String
-
-
- defaultOrder
- 7
- Long
-
-
-
- 7
- cards:AnswerOption
-
- label
- 7
- String
-
-
- value
- 7
- String
-
-
- defaultOrder
- 8
- Long
-
-
-
- 8
- cards:AnswerOption
-
- label
- 8
- String
-
-
- value
- 8
- String
-
-
- defaultOrder
- 9
- Long
-
-
-
- 9
- cards:AnswerOption
-
- label
- 9
- String
-
-
- value
- 9
- String
-
-
- defaultOrder
- 10
- Long
-
-
-
- 10
- cards:AnswerOption
-
- label
- 10 - I had a very good experience
- String
-
-
- value
- 10
- String
-
-
- defaultOrder
- 11
- Long
-
-
-
-
- oed_9
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Would you recommend this hospital to your friends and family?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- 0 - Not at all likely
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- 1
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- 2
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- 3
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 4
- cards:AnswerOption
-
- label
- 4
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- 5
- cards:AnswerOption
-
- label
- 5 - Neutral
- String
-
-
- value
- 5
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
- 6
- cards:AnswerOption
-
- label
- 6
- String
-
-
- value
- 6
- String
-
-
- defaultOrder
- 7
- Long
-
-
-
- 7
- cards:AnswerOption
-
- label
- 7
- String
-
-
- value
- 7
- String
-
-
- defaultOrder
- 8
- Long
-
-
-
- 8
- cards:AnswerOption
-
- label
- 8
- String
-
-
- value
- 8
- String
-
-
- defaultOrder
- 9
- Long
-
-
-
- 9
- cards:AnswerOption
-
- label
- 9
- String
-
-
- value
- 9
- String
-
-
- defaultOrder
- 10
- Long
-
-
-
- 10
- cards:AnswerOption
-
- label
- 10 - Extremely likely
- String
-
-
- value
- 10
- String
-
-
- defaultOrder
- 11
- Long
-
-
-
-
- oed_10
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- What else would you like to say about this experience?
- String
-
-
- displayMode
- textbox
- String
-
-
-
-
- oed_module2
- cards:Section
-
- label
- Additional question about your recent emergency visit
- String
-
-
- oed_11
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Do you feel that you were treated with kindness and compassion?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Don’t know/Not sure
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/Rehab.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/Rehab.xml
deleted file mode 100644
index a80b88651f..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/Rehab.xml
+++ /dev/null
@@ -1,2305 +0,0 @@
-
-
-
- Rehab
- cards:Questionnaire
-
- title
- UHN Patient Experience Inpatient Rehab Survey
- String
-
-
- requiredSubjectTypes
-
- /SubjectTypes/Patient/Visit
-
- Reference
-
-
- requireCompletion
- True
- Boolean
-
-
- hideAnswerInstructions
- True
- Boolean
-
-
- paginate
- True
- Boolean
-
-
- paginationVariant
- progress
- String
-
-
- maxPerSubject
- 1
- Long
-
-
- rs_module1
- cards:Section
-
- rs_hospital
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- Hospital
- String
-
-
- displayMode
- hidden
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/location
- String
-
-
-
- rs_department
- cards:Question
-
- dataType
- text
- String
-
-
- text
- Department
- String
-
-
- maxAnswers
- 0
- Long
-
-
- displayMode
- hidden
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/provider
- String
-
-
-
- rs_1
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you feel that there was good communication about your care between doctors, nurses, therapists and other hospital staff?
- String
-
-
- description
- Examples of other hospital staff include: Dietitians, Personal Support Workers, Pharmacists, Physiotherapists, Occupational Therapists, Social Workers, Speech Language Pathologists, etc.
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Don’t know / Not sure
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
-
- Section1
- cards:Section
-
- rs_2
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, did you get all the information you needed about your condition and treatment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- Section2
- cards:Section
-
- rs_3
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you get the support you needed to help you with any anxieties, fears or worries you had during this hospital stay?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- Section3
- cards:Section
-
- rs_4
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were you involved as much as you wanted to be in decisions about your care and treatment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- Section4
- cards:Section
-
- rs_5
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were you able to get a member of hospital staff to help you when you needed attention?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 2
- cards:AnswerOption
-
- label
- Yes, always
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No, never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I did not need attention
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- Section5
- cards:Section
-
- rs_6
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Before you left the hospital did you have a clear understanding about all of your prescribed medications, including those you were taking before your hospital stay?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Not applicable
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
- notApplicable
- True
- Boolean
-
-
-
-
-
- Section6
- cards:Section
-
- rs_7
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you receive enough information from hospital staff about what to do if you were worried about your condition or treatment after you left the hospital?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- Section7
- cards:Section
-
- rs_8
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Overall... (please answer on a scale where 0 is “I had a very poor experience” and 10 is “I had a very good experience”)
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- 0 - I had a very poor experience
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- 1
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- 2
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- 3
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 4
- cards:AnswerOption
-
- label
- 4
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- 5
- cards:AnswerOption
-
- label
- 5
- String
-
-
- value
- 5
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
- 6
- cards:AnswerOption
-
- label
- 6
- String
-
-
- value
- 6
- String
-
-
- defaultOrder
- 7
- Long
-
-
-
- 7
- cards:AnswerOption
-
- label
- 7
- String
-
-
- value
- 7
- String
-
-
- defaultOrder
- 8
- Long
-
-
-
- 8
- cards:AnswerOption
-
- label
- 8
- String
-
-
- value
- 8
- String
-
-
- defaultOrder
- 9
- Long
-
-
-
- 9
- cards:AnswerOption
-
- label
- 9
- String
-
-
- value
- 9
- String
-
-
- defaultOrder
- 10
- Long
-
-
-
- 10
- cards:AnswerOption
-
- label
- 10 - I had a very good experience
- String
-
-
- value
- 10
- String
-
-
- defaultOrder
- 11
- Long
-
-
-
-
-
- Section8
- cards:Section
-
- rs_9
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Would you recommend this hospital to your friends and family?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- 0 - Not at all likely
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- 1
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- 2
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- 3
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 4
- cards:AnswerOption
-
- label
- 4
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- 5
- cards:AnswerOption
-
- label
- 5 - Neutral
- String
-
-
- value
- 5
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
- 6
- cards:AnswerOption
-
- label
- 6
- String
-
-
- value
- 6
- String
-
-
- defaultOrder
- 7
- Long
-
-
-
- 7
- cards:AnswerOption
-
- label
- 7
- String
-
-
- value
- 7
- String
-
-
- defaultOrder
- 8
- Long
-
-
-
- 8
- cards:AnswerOption
-
- label
- 8
- String
-
-
- value
- 8
- String
-
-
- defaultOrder
- 9
- Long
-
-
-
- 9
- cards:AnswerOption
-
- label
- 9
- String
-
-
- value
- 9
- String
-
-
- defaultOrder
- 10
- Long
-
-
-
- 10
- cards:AnswerOption
-
- label
- 10 - Extremely likely
- String
-
-
- value
- 10
- String
-
-
- defaultOrder
- 11
- Long
-
-
-
-
-
- Section9
- cards:Section
-
- rs_10
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- What else would you like to say about this experience?
- String
-
-
- displayMode
- textbox
- String
-
-
-
-
- rs_module2
- cards:Section
-
- label
- Additional questions about your recent stay at the hospital
- String
-
-
- rs_11
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Do you feel that you were treated with kindness and compassion?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Don’t know / Not sure
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
-
- Section10
- cards:Section
-
- rs_12
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were you given enough information about what was going to happen during your stay at the hospital?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Don’t know / Not sure
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
-
- Section11
- cards:Section
-
- rs_13
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were your caregiver(s) (family member or friend) involved as much as you wanted in decisions about your care and treatment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Never
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Sometimes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Usually
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Always
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- Not applicable
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
- notApplicable
- True
- Boolean
-
-
-
-
-
- rs_module3
- cards:Section
-
- label
- Your rehabilitation experience
- String
-
-
- rs_14
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, did the care team invite you to participate in setting your rehab goals?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- Section12
- cards:Section
-
- rs_15
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, were you kept well informed about your progress in areas that were important to you?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- Section13
- cards:Section
-
- rs_16
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, did you learn what you needed to know in order to manage your care when you left the hospital?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- Section14
- cards:Section
-
- rs_17
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- During this hospital stay, were you given enough information about support services in the community (for example: nursing, home care, therapy)?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 0
- cards:AnswerOption
-
- label
- Not at all
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Partly
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Quite a bit
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Completely
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I did not require support services
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/Survey events.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/Survey events.xml
deleted file mode 100644
index c5e1f00a6a..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/Survey events.xml
+++ /dev/null
@@ -1,478 +0,0 @@
-
-
-
- Survey events
- cards:Questionnaire
-
- title
- Survey events
- String
-
-
- requiredSubjectTypes
-
- /SubjectTypes/Patient/Visit
-
- Reference
-
-
- maxPerSubject
- 1
- Long
-
-
- hospital
- cards:Question
-
- minAnswers
- 1
- Long
-
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- Hospital
- String
-
-
- displayMode
- plain
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/location
- String
-
-
-
- department
- cards:Question
-
- dataType
- text
- String
-
-
- text
- Department
- String
-
-
- displayMode
- plain
- String
-
-
- maxAnswers
- 0
- Long
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/provider
- String
-
-
-
- discharged_date
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- date
- String
-
-
- text
- Discharged on
- String
-
-
- dateFormat
- yyyy-MM-dd'T'HH:mm:ss.sssZ
- String
-
-
- displayMode
- plain
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/time
- String
-
-
-
- assigned_survey
- cards:Question
-
- minAnswers
- 1
- Long
-
-
- maxAnswers
- 1
- Long
-
-
- dataType
- resource
- String
-
-
- text
- Assigned survey
- String
-
-
- primaryType
- cards:ClinicMapping
- String
-
-
- labelProperty
- displayName
- String
-
-
- displayMode
- plain
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/clinic
- String
-
-
-
- survey_expiry
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- date
- String
-
-
- text
- Survey expires on
- String
-
-
- dateFormat
- yyyy-MM-dd'T'HH:mm:ss.sssZ
- String
-
-
- displayMode
- plain
- String
-
-
- entryMode
- autocreated
- String
-
-
-
- invitation_sent
- cards:Question
-
- minAnswers
- 1
- Long
-
-
- maxAnswers
- 1
- Long
-
-
- dataType
- date
- String
-
-
- text
- Invitation email sent on
- String
-
-
- dateFormat
- yyyy-MM-dd'T'HH:mm:ss.sssZ
- String
-
-
- displayMode
- plain
- String
-
-
- entryMode
- autocreated
- String
-
-
-
- reminder1_sent
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- date
- String
-
-
- text
- First reminder email sent on
- String
-
-
- dateFormat
- yyyy-MM-dd'T'HH:mm:ss.sssZ
- String
-
-
- displayMode
- plain
- String
-
-
- entryMode
- autocreated
- String
-
-
-
- reminder2_sent
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- date
- String
-
-
- text
- Second reminder email sent on
- String
-
-
- dateFormat
- yyyy-MM-dd'T'HH:mm:ss.sssZ
- String
-
-
- displayMode
- plain
- String
-
-
- entryMode
- autocreated
- String
-
-
-
- responses_received
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- date
- String
-
-
- text
- Patient responses received on
- String
-
-
- dateFormat
- yyyy-MM-dd'T'HH:mm:ss.sssZ
- String
-
-
- displayMode
- plain
- String
-
-
- entryMode
- autocreated
- String
-
-
-
- ic_invitation_sent
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- date
- String
-
-
- text
- Integrated Care invitation email sent on
- String
-
-
- dateFormat
- yyyy-MM-dd'T'HH:mm:ss.sssZ
- String
-
-
- displayMode
- plain
- String
-
-
- entryMode
- autocreated
- String
-
-
-
- ic_reminder1_sent
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- date
- String
-
-
- text
- First Integrated Care reminder email sent on
- String
-
-
- dateFormat
- yyyy-MM-dd'T'HH:mm:ss.sssZ
- String
-
-
- displayMode
- plain
- String
-
-
- entryMode
- autocreated
- String
-
-
-
- ic_reminder2_sent
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- date
- String
-
-
- text
- Second Integrated Care reminder email sent on
- String
-
-
- dateFormat
- yyyy-MM-dd'T'HH:mm:ss.sssZ
- String
-
-
- displayMode
- plain
- String
-
-
- entryMode
- autocreated
- String
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/YVM.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/YVM.xml
deleted file mode 100644
index 50324f5e8a..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Questionnaires/YVM.xml
+++ /dev/null
@@ -1,3194 +0,0 @@
-
-
- YVM
- cards:Questionnaire
-
- title
- Your Voice Matters
- String
-
-
- requiredSubjectTypes
-
- /SubjectTypes/Patient/Visit
-
- Reference
-
-
- paginate
- True
- Boolean
-
-
- requireCompletion
- True
- Boolean
-
-
- hideAnswerInstructions
- True
- Boolean
-
-
- maxPerSubject
- 1
- Long
-
-
- section_appt
- cards:Section
-
- label
- Your most recent appointment
- String
-
-
- yvm_hospital
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- Hospital
- String
-
-
- displayMode
- hidden
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/location
- String
-
-
-
- yvm_department
- cards:Question
-
- maxAnswers
- 0
- Long
-
-
- dataType
- text
- String
-
-
- text
- Department
- String
-
-
- displayMode
- hidden
- String
-
-
- entryMode
- reference
- String
-
-
- question
- /Questionnaires/Visit information/provider
- String
-
-
-
- yvm_1
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- How did you attend your most recent cancer care appointment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- inperson
- cards:AnswerOption
-
- label
- In person
- String
-
-
- value
- in person
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- telephone
- cards:AnswerOption
-
- label
- Telephone
- String
-
-
- value
- telephone
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- video
- cards:AnswerOption
-
- label
- Video
- String
-
-
- value
- video
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
-
- yvm_2
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- When was your most recent cancer care appointment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- withinthepastmonth
- cards:AnswerOption
-
- label
- Within the past month
- String
-
-
- value
- within the past month
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- morethan1monthago
- cards:AnswerOption
-
- label
- More than 1 month ago
- String
-
-
- value
- more than 1 month ago
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- idonotremember
- cards:AnswerOption
-
- label
- I do not remember
- String
-
-
- value
- i do not remember
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
-
-
- section_before_appt
- cards:Section
-
- label
- Before your appointment
- String
-
-
- yvm_3
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were you given the choice of an in-person or virtual (by telephone or video) appointment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 2
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- No, but I was given a reason why
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I do not remember
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- section_yvm_3_opt
- cards:Section
-
- conditionalGroup0
- cards:ConditionalGroup
-
- requireAll
- True
- Boolean
-
-
- condition0
- cards:Conditional
-
- comparator
- ]]>
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- yvm_1
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- video
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- condition1
- cards:Conditional
-
- comparator
- ]]>
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- yvm_3
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 0
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- condition2
- cards:Conditional
-
- comparator
- ]]>
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- yvm_3
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 1
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
-
- yvm_3_opt
- cards:Question
-
- maxAnswers
- 0
- Long
-
-
- text
- Did you decline a video virtual visit? If yes, why?
- String
-
-
- description
- Choose all that apply. You can add other reasons in the text box.
- String
-
-
- displayMode
- list+input
- String
-
-
- notApplicable
- cards:AnswerOption
-
- notApplicable
- True
- Boolean
-
-
- label
- I did not decline a virtual visit
- String
-
-
- value
- i did not decline a virtual visit
- String
-
-
- defaultOrder
- 0
- Long
-
-
-
- irequireanin-personappointmentformycare
- cards:AnswerOption
-
- label
- I require an in-person appointment for my care
- String
-
-
- value
- i require an in-person appointment for my care
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- idonothaveaccesstothepersonalequipmenteg
- cards:AnswerOption
-
- label
- I do not have access to the needed personal equipment, eg. a computer, tablet, or smart phone
- String
-
-
- value
- i do not have access to the personal equipment eg. a computer, tablet, or smart phone
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- idonothaveaccesstostableinternet
- cards:AnswerOption
-
- label
- I do not have access to stable internet
- String
-
-
- value
- i do not have access to stable internet
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- idonothaveaccesstomsteams
- cards:AnswerOption
-
- label
- I do not have access to MS Teams
- String
-
-
- value
- i do not have access to ms teams
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- iamnotconfidentusingthecomputerorinterne
- cards:AnswerOption
-
- label
- I am not confident using the computer or internet
- String
-
-
- value
- i am not confident using the computer or internet
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- idonothaveasuitablespaceforaprivateconve
- cards:AnswerOption
-
- label
- I do not have a suitable space for a private conversation
- String
-
-
- value
- i do not have a suitable space for a private conversation
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
- idonotfeelcomfortableshowingmyfaceorbody
- cards:AnswerOption
-
- label
- I do not feel comfortable showing my face or body on a video camera
- String
-
-
- value
- i do not feel comfortable showing my face or body on a video camera
- String
-
-
- defaultOrder
- 7
- Long
-
-
-
- irequiredassistancecommunicatingorinterp
- cards:AnswerOption
-
- label
- I required assistance communicating or interpretation services
- String
-
-
- value
- i required assistance communicating or interpretation services
- String
-
-
- defaultOrder
- 8
- Long
-
-
-
- ifeelthatmypersonalinformationwillnotbes
- cards:AnswerOption
-
- label
- I feel that my personal information will not be safe over the internet
- String
-
-
- value
- i feel that my personal information will not be safe over the internet
- String
-
-
- defaultOrder
- 9
- Long
-
-
-
-
-
- yvm_4
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were you given the option to have a family member, friend or care partner join your most recent cancer care appointment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 1
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I do not remember
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
-
- yvm_5section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- ]]>
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- yvm_1
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- in person
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- yvm_5
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were the instructions for how to join your virtual (telephone or video) appointment clear?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 2
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Somewhat
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I was not given instructions
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
- yvm_6a
- cards:Question
-
- maxAnswers
- 0
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you contact the cancer clinic for any of these reasons before your appointment?
- String
-
-
- description
- Choose all that apply.
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 3
- cards:AnswerOption
-
- label
- Yes, about my health (examples: symptoms, medications, treatment)
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Yes, about my appointment (examples: appointment time, instructions)
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Yes, for another reason
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No, I did not know how to contact the clinic
- String
-
-
- value
- 0
- String
-
-
- notApplicable
- True
- Boolean
-
-
- defaultOrder
- 4
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- No, I did not contact the clinic
- String
-
-
- value
- -1
- String
-
-
- noneOfTheAbove
- True
- Boolean
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- yvm_6bsection
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- ]]>
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- yvm_6a
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 0
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- yvm_6b
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Were you satisfied with the response from the cancer clinic?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 2
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Somewhat
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I do not remember
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
-
-
- section_during_appt_1
- cards:Section
-
- label
- During your appointment
- String
-
-
- yvm_7a
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did your most recent cancer care appointment start on time?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 1
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I do not remember
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
-
- yvm_7bsection
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- yvm_7a
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 0
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- yvm_7b
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- How long did you wait past your scheduled appointment time?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 1
- cards:AnswerOption
-
- label
- Less than 30 minutes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- 30 minutes or more
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I do not remember
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
-
-
- yvm_8section
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- ]]>
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- yvm_1
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- in person
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- yvm_8
- cards:Question
-
- maxAnswers
- 0
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you have any of these problems during your virtual (telephone or video) appointment?
- String
-
-
- description
- Choose all that apply.
-Note: If you had a telephone appointment, some of these options may not apply to you.
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 4
- cards:AnswerOption
-
- label
- Hearing my cancer care team
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Seeing my cancer care team on the screen
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Setting up the computer program
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Connecting to the internet
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- Joining my appointment
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I did not have any of these problems
- String
-
-
- value
- -1
- String
-
-
- noneOfTheAbove
- True
- Boolean
-
-
- defaultOrder
- 6
- Long
-
-
-
-
-
- yvm_9
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did the cancer clinic provide care in your language of choice?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 1
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I do not remember
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
-
-
- section_during_appt_2
- cards:Section
-
- label
- How much do you agree with this statement about your most recent cancer care appointment?
- String
-
-
- yvm_10a
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- My cancer care team spent enough time with me.
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 4
- cards:AnswerOption
-
- label
- Agree
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Somewhat agree
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Neutral
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Somewhat disagree
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- Disagree
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- yvm_10b
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- My cancer care team explained things in a way I could understand.
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 4
- cards:AnswerOption
-
- label
- Agree
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Somewhat agree
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Neutral
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Somewhat disagree
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- Disagree
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- yvm_10c
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- My cancer care team treated me with respect.
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 4
- cards:AnswerOption
-
- label
- Agree
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Somewhat agree
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Neutral
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Somewhat disagree
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- Disagree
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- yvm_10d
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- My cancer care team involved me in making decisions about my care in the way I wanted.
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 4
- cards:AnswerOption
-
- label
- Agree
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Somewhat agree
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Neutral
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Somewhat disagree
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- Disagree
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- This does not apply
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 6
- Long
-
-
-
-
-
- section_during_appt_3
- cards:Section
-
- label
- During your appointment
- String
-
-
- yvm_11a
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did your cancer care team talk with you about your physical symptoms (examples: pain, nausea) as much as you wanted?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 2
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Somewhat
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- This does not apply
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- yvm_11bsection
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =]]>
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- yvm_11a
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 0
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- yvm_11b
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did your cancer care team help you manage your physical symptoms (examples: gave you advice, information, referral, medication)?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 1
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- This does not apply
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
-
-
- yvm_11c
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did your cancer care team talk with you about your emotional worries and concerns (examples: fear, sadness) as much as you wanted?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 2
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Somewhat
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- This does not apply
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- yvm_11dsection
- cards:Section
-
- condition0
- cards:Conditional
-
- comparator
- =]]>
- String
-
-
- operandA
- cards:ConditionalValue
-
- value
-
- yvm_11c
-
- String
-
-
- isReference
- True
- Boolean
-
-
-
- operandB
- cards:ConditionalValue
-
- value
-
- 0
-
- String
-
-
- isReference
- False
- Boolean
-
-
-
-
- yvm_11d
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did your cancer care team help you manage your emotional worries and concerns (examples: gave you advice, information, referral, medication)?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 1
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- This does not apply
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
-
-
-
- section_after_appt
- cards:Section
-
- label
- After your appointment
- String
-
-
- yvm_12
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you have all the information you needed about the next steps in your care after your appointment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 2
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Somewhat
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I do not remember
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
-
- yvm_13
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Did you know who to contact if you had questions or concerns after your appointment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 1
- cards:AnswerOption
-
- label
- Yes
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- No
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- -1
- cards:AnswerOption
-
- label
- I do not remember
- String
-
-
- value
- -1
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
-
-
- section_overall
- cards:Section
-
- label
- Overall
- String
-
-
- yvm_14
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- long
- String
-
-
- text
- Overall, how would you rate the care you received at your most recent cancer care appointment?
- String
-
-
- displayMode
- list
- String
-
-
- minAnswers
- 1
- Long
-
-
- 4
- cards:AnswerOption
-
- label
- Very good
- String
-
-
- value
- 4
- String
-
-
- defaultOrder
- 1
- Long
-
-
-
- 3
- cards:AnswerOption
-
- label
- Good
- String
-
-
- value
- 3
- String
-
-
- defaultOrder
- 2
- Long
-
-
-
- 2
- cards:AnswerOption
-
- label
- Neutral
- String
-
-
- value
- 2
- String
-
-
- defaultOrder
- 3
- Long
-
-
-
- 1
- cards:AnswerOption
-
- label
- Poor
- String
-
-
- value
- 1
- String
-
-
- defaultOrder
- 4
- Long
-
-
-
- 0
- cards:AnswerOption
-
- label
- Very poor
- String
-
-
- value
- 0
- String
-
-
- defaultOrder
- 5
- Long
-
-
-
-
- yvm_15
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- text
- String
-
-
- text
- What is one thing we could improve at Princess Margaret?
- String
-
-
- displayMode
- textbox
- String
-
-
-
- yvm_16
- cards:Question
-
- maxAnswers
- 1
- Long
-
-
- dataType
- boolean
- String
-
-
- text
- Sometimes it is helpful for us to speak with people who have completed this survey to help us improve care at PM. Is it ok for us to contact you in the future?
- String
-
-
- compact
- True
- Boolean
-
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/CPES-Overall.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/CPES-Overall.xml
deleted file mode 100644
index 5a14506734..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/CPES-Overall.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
- CPES-Overall
- cards:Statistic
-
- name
- Long Form Overall Rating, split by hospital
- String
-
-
- order
- 5
- Long
-
-
- type
- bar
- String
-
-
- xVar
- /Questionnaires/CPESIC/YourOverallRatings/cpesic_41
- Reference
-
-
- yVar
- /SubjectTypes/Patient/Visit
- Reference
-
-
- splitVar
- /Questionnaires/CPESIC/Section1/cpesic_hospital
- Reference
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/ED-Overall.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/ED-Overall.xml
deleted file mode 100644
index c028cd04cb..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/ED-Overall.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
- ED-Overall
- cards:Statistic
-
- name
- Emergency Department Overall Rating, split by hospital
- String
-
-
- order
- 10
- Long
-
-
- type
- bar
- String
-
-
- xVar
- /Questionnaires/OED/oed_module1/oed_8
- Reference
-
-
- yVar
- /SubjectTypes/Patient/Visit
- Reference
-
-
- splitVar
- /Questionnaires/OED/oed_module1/oed_hospital
- Reference
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/IP-Overall.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/IP-Overall.xml
deleted file mode 100644
index 301d9c882a..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/IP-Overall.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
- IP-Overall
- cards:Statistic
-
- name
- Inpatient Overall Rating, split by hospital
- String
-
-
- order
- 20
- Long
-
-
- type
- bar
- String
-
-
- xVar
- /Questionnaires/OAIP/oaip_module1/oaip_8
- Reference
-
-
- yVar
- /SubjectTypes/Patient/Visit
- Reference
-
-
- splitVar
- /Questionnaires/OAIP/oaip_module1/oaip_hospital
- Reference
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/Rehab-Overall.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/Rehab-Overall.xml
deleted file mode 100644
index b6cd35abad..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/Rehab-Overall.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
- Rehab-Overall
- cards:Statistic
-
- name
- Rehab Overall Rating, split by location
- String
-
-
- order
- 30
- Long
-
-
- type
- bar
- String
-
-
- xVar
- /Questionnaires/Rehab/Section7/rs_8
- Reference
-
-
- yVar
- /SubjectTypes/Patient/Visit
- Reference
-
-
- splitVar
- /Questionnaires/Rehab/rs_module1/rs_hospital
- Reference
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/Surveys.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/Surveys.xml
deleted file mode 100644
index 897f12e0c7..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/Surveys.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
- Survey distribution
- cards:Statistic
-
- name
- Survey Distribution, split by submission status
- String
-
-
- order
- 3
- Long
-
-
- type
- bar
- String
-
-
- xVar
- /Questionnaires/Visit information/clinic
- Reference
-
-
- yVar
- /SubjectTypes/Patient/Visit
- Reference
-
-
- splitVar
- /Questionnaires/Visit information/surveys_submitted
- Reference
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/Unsubscribed.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/Unsubscribed.xml
deleted file mode 100644
index 5fd46006b9..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/Unsubscribed.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
- Unsubscribed
- cards:Statistic
-
- name
- Unsubscribed Patients
- String
-
-
- order
- 1
- Long
-
-
- type
- bar
- String
-
-
- xVar
- /Questionnaires/Patient information/email_unsubscribed
- Reference
-
-
- yVar
- /SubjectTypes/Patient
- Reference
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/YVM-Overall.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/YVM-Overall.xml
deleted file mode 100644
index 64c2df5197..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Statistics/YVM-Overall.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
- YVM-Overall
- cards:Statistic
-
- name
- YVM Overall Rating
- String
-
-
- order
- 35
- Long
-
-
- type
- bar
- String
-
-
- xVar
- /Questionnaires/YVM/section_overall/yvm_14
- Reference
-
-
- yVar
- /SubjectTypes/Patient/Visit
- Reference
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/AIP.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/AIP.xml
deleted file mode 100644
index 6330cf4ad5..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/AIP.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
- AIP
- cards:QuestionnaireSet
-
- name
-
- String
-
-
- intro
-
-Please answer some questions about your recent stay at:
-
-**@{visit.location}**
-
-Please do not include any other hospital stays in your answers.
-
- String
-
-
- frequencyIgnoreClinic
- True
- Boolean
-
-
- Inpatient Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/OAIP
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd HH:mm",
- "link" : "dashboard+path"
- },
- {
- "key": "oaip_11",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/CPES.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/CPES.xml
deleted file mode 100644
index fee98bcb32..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/CPES.xml
+++ /dev/null
@@ -1,97 +0,0 @@
-
-
-
- CPES
- cards:QuestionnaireSet
-
- name
-
- String
-
-
- intro
-
-Please answer some questions about your recent stay at:
-
-**@{visit.location}**
-
-Do not include any other hospital stays in your answers.
-
- String
-
-
- frequencyIgnoreClinic
- True
- Boolean
-
-
- enableReviewScreen
- True
- Boolean
-
-
- CPESIC
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/CPESIC
- Reference
-
-
- estimate
- 15
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd HH:mm",
- "link" : "dashboard+path"
- },
- {
- "key": "cpesic_41",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-.
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/ClinicMapping.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/ClinicMapping.xml
deleted file mode 100644
index 6402e4c6d3..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/ClinicMapping.xml
+++ /dev/null
@@ -1,293 +0,0 @@
-
-
-
- ClinicMapping
- cards:ClinicMappingFolder
-
- childNodeType
- cards:ClinicMapping
- String
-
-
- 2075099
- cards:ClinicMapping
-
- clinicName
- CPES
- String
-
-
- survey
- CPES
- String
-
-
- displayName
- Canadian Patient Experience
- String
-
-
- sidebarLabel
- CPES
- String
-
-
-
- -1792626663
- cards:ClinicMapping
-
- clinicName
- UHN-IP
- String
-
-
- survey
- AIP
- String
-
-
- displayName
- UHN Inpatient
- String
-
-
- sidebarLabel
- UHN IP
- String
-
-
-
- -1792626799
- cards:ClinicMapping
-
- clinicName
- UHN-ED
- String
-
-
- survey
- ED
- String
-
-
- displayName
- UHN Emergency Department
- String
-
-
- sidebarLabel
- UHN ED
- String
-
-
-
- -432465800
- cards:ClinicMapping
-
- clinicName
- UHN-EDIP
- String
-
-
- survey
- EDIP
- String
-
-
- displayName
- UHN Emergency and Inpatient
- String
-
-
- sidebarLabel
- UHN ED-IP
- String
-
-
-
- 78840662
- cards:ClinicMapping
-
- clinicName
- Rehab
- String
-
-
- survey
- Rehab
- String
-
-
- displayName
- UHN Rehab
- String
-
-
- sidebarLabel
- Rehab
- String
-
-
-
- -1792626676
- cards:ClinicMapping
-
- clinicName
- UHN-IC
- String
-
-
- survey
- IC
- String
-
-
- displayName
- UHN Integrated Care Program
- String
-
-
- sidebarLabel
- UHN IC
- String
-
-
- daysRelativeToEventWhileSurveyIsValid
- 60
- Double
-
-
-
- -432465813
- cards:ClinicMapping
-
- clinicName
- UHN-EDIC
- String
-
-
- survey
- EDIC
- String
-
-
- displayName
- UHN Emergency and Integrated Care Program
- String
-
-
- sidebarLabel
- UHN ED-IC
- String
-
-
- daysRelativeToEventWhileSurveyIsValid
- 60
- Double
-
-
-
- -432335117
- cards:ClinicMapping
-
- clinicName
- UHN-IPIC
- String
-
-
- survey
- IPIC
- String
-
-
- displayName
- UHN Inpatient and Integrated Care Program
- String
-
-
- sidebarLabel
- UHN IP-IC
- String
-
-
- daysRelativeToEventWhileSurveyIsValid
- 60
- Double
-
-
-
- 1012196242
- cards:ClinicMapping
-
- clinicName
- UHN-EDIPIC
- String
-
-
- survey
- EDIPIC
- String
-
-
- displayName
- UHN Emergency, Inpatient and Integrated Care Program
- String
-
-
- sidebarLabel
- UHN ED-IP-IC
- String
-
-
- daysRelativeToEventWhileSurveyIsValid
- 60
- Double
-
-
-
- PMH-YVM
- cards:ClinicMapping
-
- clinicName
- PMH-YVM
- String
-
-
- survey
- YVM
- String
-
-
- displayName
- Your Voice Matters (PMH)
- String
-
-
- sidebarLabel
- PMH YVM
- String
-
-
- daysRelativeToEventWhileSurveyIsValid
- 12
- Double
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/DashboardSettings.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/DashboardSettings.xml
deleted file mode 100644
index d688b1f1c9..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/DashboardSettings.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- DashboardSettings
-
- enableTimeTabs
- False
- Boolean
-
-
- eventsLabel
- Hospital discharge
- String
-
-
- eventTimeLabel
- Time
- String
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/ED.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/ED.xml
deleted file mode 100644
index 79e607da8b..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/ED.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
- ED
- cards:QuestionnaireSet
-
- name
-
- String
-
-
- intro
-
-Please answer some questions about your recent emergency visit at:
-
-**@{visit.location}**
-
-Please do not include any other hospital stays in your answers.
-
- String
-
-
- frequencyIgnoreClinic
- True
- Boolean
-
-
- ED Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/OED
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd HH:mm",
- "link" : "dashboard+path"
- },
- {
- "key": "oed_9",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/EDIC.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/EDIC.xml
deleted file mode 100644
index 3da74dc5ee..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/EDIC.xml
+++ /dev/null
@@ -1,138 +0,0 @@
-
-
-
- EDIC
- cards:QuestionnaireSet
-
- name
-
- String
-
-
- intro
-
-We’d like to hear about your experience while you were a patient in UHN’s Emergency Department.
-We would also like you to reflect on your experience with the Integrated Care Program in the last month when you were discharged from the hospital and transitioned home, and to provide us with some feedback on supports that you may have received.
-We appreciate any insights you can provide and will look to make improvements based on your feedback.
-
- String
-
-
- frequencyIgnoreClinic
- True
- Boolean
-
-
- ED Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/OED
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd HH:mm",
- "link" : "dashboard+path"
- },
- {
- "key": "oed_9",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
- IC Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/IC
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd",
- "link" : "dashboard+path"
- },
- {
- "key": "ic_7",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/EDIP.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/EDIP.xml
deleted file mode 100644
index e3e1e2be74..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/EDIP.xml
+++ /dev/null
@@ -1,140 +0,0 @@
-
-
-
- EDIP
- cards:QuestionnaireSet
-
- name
-
- String
-
-
- intro
-
-Please answer some questions about your recent emergency visit and hospital stay at:
-
-**@{visit.location}**
-
-Please do not include any other hospital stays in your answers.
-
- String
-
-
- frequencyIgnoreClinic
- True
- Boolean
-
-
- ED Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/OED
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd HH:mm",
- "link" : "dashboard+path"
- },
- {
- "key": "oed_9",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
- Inpatient Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/OAIP
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd HH:mm",
- "link" : "dashboard+path"
- },
- {
- "key": "oaip_11",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/EDIPIC.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/EDIPIC.xml
deleted file mode 100644
index c13912d591..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/EDIPIC.xml
+++ /dev/null
@@ -1,186 +0,0 @@
-
-
-
- EDIPIC
- cards:QuestionnaireSet
-
- name
-
- String
-
-
- intro
-
-We’d like to hear about your experience while you were a patient at UHN.
-We would also like you to reflect on your experience with the Integrated Care Program in the last month when you were discharged from the hospital and transitioned home, and to provide us with some feedback on supports that you may have received.
-We appreciate any insights you can provide and will look to make improvements based on your feedback.
-
- String
-
-
- frequencyIgnoreClinic
- True
- Boolean
-
-
- ED Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/OED
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd HH:mm",
- "link" : "dashboard+path"
- },
- {
- "key": "oed_9",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
- Inpatient Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/OAIP
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd HH:mm",
- "link" : "dashboard+path"
- },
- {
- "key": "oaip_11",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
- IC Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/IC
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd",
- "link" : "dashboard+path"
- },
- {
- "key": "ic_7",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/IC.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/IC.xml
deleted file mode 100644
index 8d934910b8..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/IC.xml
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
- IC
- cards:QuestionnaireSet
-
- name
-
- String
-
-
- intro
-
-We would like you to reflect on your experience with the Integrated Care Program in the last month when you were discharged from the hospital and transitioned home, and to provide us with some feedback on supports that you may have received.
-We appreciate any insights you can provide and will look to make improvements based on your feedback.
-
- String
-
-
- frequencyIgnoreClinic
- True
- Boolean
-
-
- IC Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/IC
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd",
- "link" : "dashboard+path"
- },
- {
- "key": "ic_7",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/IPIC.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/IPIC.xml
deleted file mode 100644
index 2205f8d59e..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/IPIC.xml
+++ /dev/null
@@ -1,138 +0,0 @@
-
-
-
- IPIC
- cards:QuestionnaireSet
-
- name
-
- String
-
-
- intro
-
-We’d like to hear about your experience while you were an inpatient at UHN.
-We would also like you to reflect on your experience with the Integrated Care Program in the last month when you were discharged from the hospital and transitioned home, and to provide us with some feedback on supports that you may have received.
-We appreciate any insights you can provide and will look to make improvements based on your feedback.
-
- String
-
-
- frequencyIgnoreClinic
- True
- Boolean
-
-
- Inpatient Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/OAIP
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd HH:mm",
- "link" : "dashboard+path"
- },
- {
- "key": "oaip_11",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
- IC Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/IC
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd",
- "link" : "dashboard+path"
- },
- {
- "key": "ic_7",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/PatientAccess.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/PatientAccess.xml
deleted file mode 100644
index 7992eb859f..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/PatientAccess.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
- PatientAccess
-
- tokenlessAuthEnabled
- False
- Boolean
-
-
- PIIAuthRequired
- False
- Boolean
-
-
- daysRelativeToEventWhileSurveyIsValid
- 30
- Long
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/Rehab.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/Rehab.xml
deleted file mode 100644
index c0b4246b31..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/Rehab.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
- Rehab
- cards:QuestionnaireSet
-
- name
-
- String
-
-
- intro
-
-Please answer some questions about your recent stay at:
-
-**@{visit.location}**
-
-Please do not include any other hospital stays in your answers.
-
- String
-
-
- frequencyIgnoreClinic
- True
- Boolean
-
-
- Rehab Survey
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/Rehab
- Reference
-
-
- estimate
- 10
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Discharge date",
- "format": "date:yyyy-MM-dd HH:mm",
- "link" : "dashboard+path"
- },
- {
- "key": "rs_8",
- "label": "Overall experience",
- "link" : "string"
- }
-]
-
- String
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/SurveyInstructions.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/SurveyInstructions.xml
deleted file mode 100644
index f439baab3c..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/SurveyInstructions.xml
+++ /dev/null
@@ -1,94 +0,0 @@
-
-
-
- SurveyInstructions
-
- welcomeMessage
-
-Your opinions are valuable to us.
-
-At University Health Network we want to provide the best possible service to our patients. In order to do so, we need to know what we are doing right and what may need improvement. **Your feedback will be used to improve how we provide care.**
-
-Completing this survey is voluntary, and your name and contact information will be kept confidential.
-
-
- String
-
-
- noEventsMessage
-
- String
-
-
- eventSelectionMessage
-
- String
-
-
- eventLabel
-
- String
-
-
- noSurveysMessage
-
- String
-
-
- enableStartScreen
- True
- Boolean
-
-
- surveyIntro
-
- String
-
-
- surveyDraftInfo
-
- String
-
-
- enableReviewScreen
- True
- Boolean
-
-
- disclaimer
-
- String
-
-
- summaryInstructions
-
-Thank you for taking the time to complete this survey.
-
-At University Health Network (UHN) we want to provide safe, compassionate and high quality care. Your opinions are valuable to us and will be used to help UHN continuously improve the quality of care patients receive.
-
-**Your responses have been received. You can now close this browser window.**
- String
-
-
- interpretationInstructions
-
- String
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/TermsOfUse.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/TermsOfUse.xml
deleted file mode 100644
index 40ac2ad60d..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/TermsOfUse.xml
+++ /dev/null
@@ -1,187 +0,0 @@
-
-
-
- TermsOfUse
-
- title
- Your Experience Terms of Use and Privacy Policy
- String
-
-
- version
- 2023-02-03
- String
-
-
- acceptanceRequired
- False
- Boolean
-
-
- text
-
-## Your Experience Application Terms of Use
-
-By using or accessing the _Your Experience Application_, you agree to these Terms of Use (“**Terms**”). These Terms are a legal agreement between you and the University Health Network (“**UHN**”). If you do not agree to all of these Terms, do not use the application and do not submit the survey through the application. There are alternative methods to complete the survey if you do not want to use this application. Please contact yourexperience@uhn.ca to access alternate methods. If you do use the application, relying on any information you see in the application is solely at your own risk.
-
-
-**The information that you provide to UHN in _Your Experience Application_ will be anonymous and will not be shared with your care team. It will also not impact your care at UHN now or in the future. Always seek advice from your care provider for any questions you may have about your medical symptoms or condition. Never disregard professional medical advice or delay in seeking it because of something you have read in the application. Never delay obtaining medical advice or disregard medical advice because of something you have or have not read on the _Your Experience App_.**
-
-**You should not report medical symptoms using _Your Experience App_ and responses are not reviewed in real-time. _Your Experience App_ is not a place to seek medical advice or treatment. If you think you have a medical or psychiatric emergency, call 911 or go to the nearest hospital.**
-
-### What these Terms will tell you:
-1. The purpose of _Your Experience App_
-2. The limits of _Your Experience App_
-3. Your Responsibilities in using _Your Experience App_
-4. How we Protect your Privacy
-5. How to get your Questions Answered about _Your Experience App_
-
-### 1. Purpose of the _Your Experience App_
-
-_Your Experience App_ is an information collection tool for UHN to be able to better understand the experience patients have while being cared for at the hospital. The Application is meant to make it easier for patients to report to UHN how their experience was, in order to help us make improvements. The Application also provides general patient education relative to their experience at UHN. The feedback you provide may be further used for research purposes, where such research is approved by a Research Ethics Board. The data you provide is anonymous and only your anonymously submitted responses can be used for research purposes
-
-#### Collection, Use and Disclosure of Data
-
-**a) Transmission of non-Identifying data to UHN.** The Application collects data (user metrics), which are transmitted back to UHN through the Application. The information that is collected is aggregate and anonymous data relating to the use of the Application (e.g., number of users accessing the Application per day, the number of surveys submitted, etc.) in order for UHN to better understand use of the Application. If you do not consent to the transmission of this non-identifying user metrics data to UHN, then you must not use the _Your Experience App_.
-
-**b) Transmission and Storage of Identifying Data and Personal Health Information (PHI).** The Application will not collect any identifying data about the user. The Application will collect anonymously submitted experience measures. This information is stored on the Application and also transferred to the DATA-PRO Server. The DATA-PRO server is hosted at University Health Network. Information stored on UHN Servers is accessible by UHN-authorized staff at these sites. More information can be found in the Application Privacy Policy.
-
-### 2. Limits of the _Your Experience App_
-
-The _Your Experience App_ is not a medical device. Nothing contained in the _Your Experience App_ should be construed, directly or indirectly, as the practice of medicine or provision of medical advice or medical services by UHN. The Application is not intended to diagnose, cure, mitigate, treat, or prevent disease or other conditions.
-
-The _Your Experience App_ and its content are provided on an “as is” basis. This means that:
-
-* While UHN will take all reasonable steps to make sure that your information is protected, accurate and available to you, UHN assumes no liability for a delay, failure, inaccuracy, interruption or corruption of any information transmitted via _Your Experience App_.
-* UHN reserves the right to change, suspend or deactivate _Your Experience App_ at any time.
-* UHN reserves the right to change these Terms at any time and will make these changes available to you the next time you access _Your Experience App_. The updated Terms will be available for you to review on the Application. Using _Your Experience App_ after these changes have been made means that you agree to the changes.
-
-#### No Regulatory Approval
-
-The _Your Experience App_ has not been evaluated by Health Canada, the United States Food and Drug Administration (USFDA) or any other domestic or foreign regulatory agency and is not approved to diagnose, treat, cure or prevent any disease or for the prescription of any medication or treatment. While the information contained may be of use in other jurisdictions, these materials were provided and designed for use in Canada and you are solely responsible for ensuring suitability and permitted use in other jurisdictions.
-
-
-### 3. Your Rights and Responsibilities while using the App
-
-You received the email containing your link to the _Your Experience App_ because you consented to the use of email by UHN to communicate with you about your care. If you change your mind and no longer want to receive emails about _Your Experience App_, or any emails from UHN, it is your responsibility to let us know. To communicate this instruction, contact your care provider and/or the UHN Privacy Office at the contact information below.
-
-Answering this survey is voluntary. You may decline to complete the survey and you will still be able to receive care from UHN.
-
-Once you have decided to use the _Your Experience App_ and start completing your survey information, it is your responsibility to protect it. UHN is not liable for breaches that result from your not taking the following steps to protect your information. By using the _Your Experience App_, you agree to take these steps:
-* Ensure that no one is “shoulder-surfing” or watching you when viewing or entering your information.
- * You agree to choose more private spaces (like your home) over public ones (like on public transportation).
- * You agree to not use a public computer to access the _Your Experience App_ (for example, in a library).
- * You agree to not use free and/or untrusted Wi-Fi to access the _Your Experience App_ survey.
-* Only use the Patient Education material that may be provided to you via the _Your Experience App_ for your personal, non-commercial use
- * You agree that it is your responsibility to protect materials that you download, because someone who finds them could make conclusions about your health from the content of the materials.
- * You agree that any other use of the Patient Education material is strictly prohibited without written permission.
-* Tell your care provider or the UHN Privacy Office (contact information below) about any suspicious activity so we can investigate it.
-
-You can learn more about your privacy rights at the UHN Privacy website (see below).
-
-> **UHN Privacy Office:**
-> Telephone: 416-340-4800 ext. 6937
-> Email: privacy@uhn.ca
-> Website: http://www.uhn.ca/PatientsFamilies/Patient_Safety_Advocacy/Privacy/Pages/privacy_policy.aspx
-
-### 4. How we Protect your Privacy
-
-UHN’s interactions with you and other patients must comply with the rules set out in the _Personal Health Information Protection Act_ (PHIPA).
-
-UHN takes steps to make sure that your information is safeguarded by meeting best practice standards for security. UHN has individuals who review any potential changes to the Application to make sure that the changes are lawful and protect your privacy to the best of our ability. A privacy review, security review and Vulnerability Test were completed by experts in their fields to ensure that legal requirements are met and best practices are followed. Key functions of the _Your Experience App_ are regularly reviewed and checked, and changes are made where necessary.
-
-Your feedback collected in this survey will not be made available by UHN to anyone other than the designated individuals at UHN who have the responsibility to maintain this Application and are trained to manage this data.
-
-### 5. How to get your Questions Answered
-
-For information, questions, concerns, or would like to answer the survey in a different way, please contact: yourexperience@uhn.ca .
-
-### Limitation of Liability
-
-EXCEPT WHERE SUCH EXCLUSIONS ARE PROHIBITED BY LAW, UNDER NO CIRCUMSTANCE WILL UHN, ITS AFFILIATES OR THEIR RESPECTIVE DIRECTORS, OFFICERS, EMPLOYEES, AGENTS, OR CONTRACTORS BE LIABLE FOR NEGLIGENCE, NEGLIGENT MISREPRESENTATION, FUNDAMENTAL BREACH, DAMAGES OF ANY KIND, UNDER ANY LEGAL THEORY, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, INCLUDING, BUT NOT LIMITED TO, LOSS OF REVENUE, LOSS OF PROFITS, LOSS OF BUSINESS OR ANTICIPATED SAVINGS, LOSS OF USE, LOSS OF GOODWILL, LOSS OF DATA, AND WHETHER CAUSED BY TORT (INCLUDING NEGLIGENCE), BREACH OF CONTRACT, BREACH OF PRIVACY, OR OTHERWISE, ARISING OUT OF OR IN CONNECTION WITH YOUR USE, OR INABILITY TO USE, OR RELIANCE ON, THE APPLICATION, ANY LINKED WEBSITES, NOR ANY APPLICATION CONTENT, MATERIALS, POSTING, OR INFORMATION THEREON.
-
-### Indemnity
-
-To the maximum extent permitted by applicable law, you agree to defend, indemnify, and hold harmless UHN, its affiliates, and their respective directors, officers, employees, agents, and contractors from and against any claims, liabilities, damages, judgments, awards, losses, costs, expenses, or fees arising out of or relating to your breach of this Agreement.
-
-### Copyright ©
-**Date Last Revised: October 27, 2022**
-
----
-
-## YOUR EXPERIENCE APPLICATION PRIVACY POLICY
-
-This privacy policy governs your use of the software _Your Experience Application_ that was created by UHN. The _Your Experience App_ assists patients in reporting their experience to UHN.
-
-### What information does the Application collect and how is it used?
-
-**User Provided Information.** _Your Experience App_ obtains the feedback you provide about your experience of care when you complete and submit the _Your Experience Application_ surveys.
-
-When you use the _Your Experience App_, you provide consent for UHN to (a) to send you emails generally related to _Your Experience App_; (b) ask for some information when you contact us for technical help with the application.
-
-UHN may also use your contact information (phone or email) to share important information about the Application and required updates.
-
-**Automatically Collected Information.** In addition, _Your Experience App_ may collect certain anonymous information automatically, including, but not limited to statistics about the way you use the Application (e.g., how often you use the link to complete and submit a survey). Your statistical information will be aggregated with other peoples’ metrics and included as an overall count – your individual information will not be identifiable.
-
-### Do third parties see and/or have access to information obtained by the Application?
-
-Only aggregated, anonymized data is periodically transmitted to external services to help us improve _Your Experience App_ and our service. We only share survey responses with third parties in ways that are described in this privacy statement. We may disclose User Provided and Automatically Collected Information:
-* As required by law, such as to comply with a subpoena, or similar legal process;
-* With the Canadian Institute for Health Information (CIHI) who will only receive reports consisting of aggregated responses from all patients within the specific reporting period.
-
-**Use of your Information by your Health Care Team.** The feedback you provide to UHN about your care experience through the _Your Experience App_ will not become part of your medical record.
-
-### What are my rights?
-
-You can stop all collection of information via the surveys by not using the _Your Experience App_. To prevent receipt of additional _Your Experience App_-related emails, you can use the unsubscribe button in the emails you have already received. The unsubscribe feature will prevent you from receiving future emails from _Your Experience App_, but not all emails from UHN. To stop receiving all emails from UHN please contact the Privacy Office (contact information is below).
-
-### Data Retention Policy, Managing Your Information
-_Your Experience App_ user-provided data will not become part of your health record, nor will it be shared with your care team. It will be retained for a period of time consistent with the Records Retention and Destruction Policy at UHN.
-
-### Security
-
-We are concerned about safeguarding the confidentiality of your information. We provide reasonable physical, electronic, and procedural safeguards to protect information that we process and maintain. For example, we reasonably limit access to this information to authorized employees and contractors who need to know that information in order to operate, develop or improve our Application.
-
-### Changes
-
-This Privacy Policy may be updated from time to time for any reason. We will notify you of any changes to our Privacy Policy by posting the new Privacy Policy here and informing you via the application. You are advised to consult this Privacy Policy regularly for any changes, as continued use is deemed approval of all changes.
-
-### Contact us
-
-For more detailed information about who sees your information and about your choices contact the Privacy Office.
-
-> **UHN Privacy Office:**
-> Telephone: 416-340-4800 ext. 6937
-> Email: privacy@uhn.ca
-> Website: http://www.uhn.ca/PatientsFamilies/Patient_Safety_Advocacy/Privacy/Pages/privacy_policy.aspx
-
-### Complaints
-
-If you have complaints about UHN's compliance with this privacy policy or PHIPA, please contact UHN's Privacy Office at the above contact information. Further questions and concerns can be directed to the Office of the Information and Privacy Commissioner of Ontario at:
-
-> **Office of the Information and Privacy Commissioner of Ontario**
-> 2 Bloor Street East Suite 1400 Toronto, ON M4W 1A8
-> Phone: 1-800-387-0073
-> Website: www.ipc.on.ca
-
- String
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/YVM.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/YVM.xml
deleted file mode 100644
index 2afedbbf96..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/Survey/YVM.xml
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
- YVM
- cards:QuestionnaireSet
-
- name
-
- String
-
-
- intro
-
-**Your Voice Matters** is a set of questions that gives you the chance to share your cancer care
-experience. Your answers will help us know how to improve the experience for patients and care
-partners at your hospital and across Ontario.
-
-Tell us about your most recent in-person (at the cancer clinic) or virtual (by telephone or video)
-cancer care appointment. It will take **about 5 minutes** to complete this survey. This survey is
-**confidential** (private). Your cancer care team will not see your responses to the questions. Your
-answers are combined with other people’s responses to help Ontario Health (Cancer Care Ontario)
-understand how to best support patients.
-
- String
-
-
- ending
-
-Thank you for completing the Your Voice Matters survey.
-
-Your answers will be used by @{visit.location} and Ontario Health
-([Cancer Care Ontario](https://www.cancercareontario.ca/)) to help improve
-the cancer care experience.
-
-If you want to provide detailed feedback about your experience directly to the hospital, please
-contact [PMExperience@uhn.ca](mailto:PMExperience@uhn.ca).
-
-**Your answers have been received. You can now close this page.**
-
- String
-
-
- Your Voice Matters
- cards:QuestionnaireRef
-
- questionnaire
- /Questionnaires/YVM
- Reference
-
-
- estimate
- 5
- Long
-
-
- frequency
- 26
- Long
-
-
- order
- 1
- Long
-
-
- view
-
-[
- {
- "key": "mrn",
- "label": "MRN",
- "format": "string"
- },
- {
- "key": "time",
- "label": "Visit date",
- "format": "date:yyyy-MM-dd",
- "link" : "dashboard+path"
- },
- {
- "key": "yvm_14",
- "label": "Overall experience"
- }
-]
-
- String
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clarityImport/PMH-YVM.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clarityImport/PMH-YVM.xml
deleted file mode 100644
index 8cbeb3bc4d..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clarityImport/PMH-YVM.xml
+++ /dev/null
@@ -1,306 +0,0 @@
-
-
-
- PMH-YVM
- sling:Folder
-
- Patient
- cards:ClaritySubjectMapping
-
- subjectIDColumn
- PAT_MRN
- String
-
-
- subjectType
- /SubjectTypes/Patient
- String
-
-
- questionnaires
- sling:Folder
-
- Patient information
- cards:ClarityQuestionnaireMapping
-
- updatesExisting
- true
- Boolean
-
-
- 00000001
- cards:ClarityQuestionMapping
-
- column
- PAT_MRN
- String
-
-
- question
- /Questionnaires/Patient information/mrn
- String
-
-
-
- 00000002
- cards:ClarityQuestionMapping
-
- column
- PAT_FIRST_NAME
- String
-
-
- question
- /Questionnaires/Patient information/first_name
- String
-
-
-
- 00000003
- cards:ClarityQuestionMapping
-
- column
- PAT_LAST_NAME
- String
-
-
- question
- /Questionnaires/Patient information/last_name
- String
-
-
-
- 00000004
- cards:ClarityQuestionMapping
-
- column
- EMAIL_ADDRESS
- String
-
-
- question
- /Questionnaires/Patient information/email
- String
-
-
-
- 00000005
- cards:ClarityQuestionMapping
-
- column
- EMAIL_CONSENT_YN
- String
-
-
- question
- /Questionnaires/Patient information/email_ok
- String
-
-
-
- 00000006
- cards:ClarityQuestionMapping
-
- column
- MYCHART_STATUS
- String
-
-
- question
-
- String
-
-
-
- 00000007
- cards:ClarityQuestionMapping
-
- column
- DEATH_DATE
- String
-
-
- question
-
- String
-
-
-
-
-
- childSubjects
- sling:Folder
-
- Visit
- cards:ClaritySubjectMapping
-
- subjectType
- /SubjectTypes/Patient/Visit
- String
-
-
- subjectIDColumn
- PAT_ENC_CSN_ID
- String
-
-
- incrementMetricOnCreation
- ImportedAppointments
- String
-
-
- questionnaires
- sling:Folder
-
- Visit information
- cards:ClarityQuestionnaireMapping
-
- updatesExisting
- true
- Boolean
-
-
- 00000001
- cards:ClarityQuestionMapping
-
- column
- DISCH_DEPT_NAME
- String
-
-
- question
- /Questionnaires/Visit information/provider
- String
-
-
-
- 00000002
- cards:ClarityQuestionMapping
-
- column
- HOSP_DISCHARGE_DTTM
- String
-
-
- question
- /Questionnaires/Visit information/time
- String
-
-
-
- 00000003
- cards:ClarityQuestionMapping
-
- column
- DISCH_LOC_NAME
- String
-
-
- question
- /Questionnaires/Visit information/location
- String
-
-
-
- 00000004
- cards:ClarityQuestionMapping
-
- column
- CLINIC
- String
-
-
- question
- /Questionnaires/Visit information/clinic
- String
-
-
- computed
- True
- Boolean
-
-
-
- 00000005
- cards:ClarityQuestionMapping
-
- column
- STATUS
- String
-
-
- question
- /Questionnaires/Visit information/status
- String
-
-
- computed
- True
- Boolean
-
-
-
- 00000007
- cards:ClarityQuestionMapping
-
- column
- DISCH_DISPOSITION
- String
-
-
- question
-
- String
-
-
-
- 00000008
- cards:ClarityQuestionMapping
-
- column
- PAT_ENC_CSN_ID
- String
-
-
- question
-
- String
-
-
-
- 00000009
- cards:ClarityQuestionMapping
-
- column
- PATIENT_CLASS
- String
-
-
- question
-
- String
-
-
-
-
-
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clarityImport/YourExperience.xml b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clarityImport/YourExperience.xml
deleted file mode 100644
index 18fc144c32..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clarityImport/YourExperience.xml
+++ /dev/null
@@ -1,404 +0,0 @@
-
-
-
- YourExperience
- sling:Folder
-
- Patient
- cards:ClaritySubjectMapping
-
- subjectIDColumn
- PAT_MRN
- String
-
-
- subjectType
- /SubjectTypes/Patient
- String
-
-
- questionnaires
- sling:Folder
-
- Patient information
- cards:ClarityQuestionnaireMapping
-
- updatesExisting
- true
- Boolean
-
-
- 00000001
- cards:ClarityQuestionMapping
-
- column
- PAT_MRN
- String
-
-
- question
- /Questionnaires/Patient information/mrn
- String
-
-
-
- 00000002
- cards:ClarityQuestionMapping
-
- column
- PAT_FIRST_NAME
- String
-
-
- question
- /Questionnaires/Patient information/first_name
- String
-
-
-
- 00000003
- cards:ClarityQuestionMapping
-
- column
- PAT_LAST_NAME
- String
-
-
- question
- /Questionnaires/Patient information/last_name
- String
-
-
-
- 00000004
- cards:ClarityQuestionMapping
-
- column
- EMAIL_ADDRESS
- String
-
-
- question
- /Questionnaires/Patient information/email
- String
-
-
-
- 00000005
- cards:ClarityQuestionMapping
-
- column
- EMAIL_CONSENT_YN
- String
-
-
- question
- /Questionnaires/Patient information/email_ok
- String
-
-
-
- 00000006
- cards:ClarityQuestionMapping
-
- column
- MYCHART_STATUS
- String
-
-
- question
-
- String
-
-
-
- 00000007
- cards:ClarityQuestionMapping
-
- column
- DEATH_DATE
- String
-
-
- question
-
- String
-
-
-
-
-
- childSubjects
- sling:Folder
-
- Visit
- cards:ClaritySubjectMapping
-
- subjectType
- /SubjectTypes/Patient/Visit
- String
-
-
- subjectIDColumn
- PAT_ENC_CSN_ID
- String
-
-
- incrementMetricOnCreation
- ImportedAppointments
- String
-
-
- questionnaires
- sling:Folder
-
- Visit information
- cards:ClarityQuestionnaireMapping
-
- updatesExisting
- true
- Boolean
-
-
- 00000001
- cards:ClarityQuestionMapping
-
- column
- DISCH_DEPT_NAME
- String
-
-
- question
- /Questionnaires/Visit information/provider
- String
-
-
-
- 00000002
- cards:ClarityQuestionMapping
-
- column
- HOSP_DISCHARGE_DTTM
- String
-
-
- question
- /Questionnaires/Visit information/time
- String
-
-
-
- 00000003
- cards:ClarityQuestionMapping
-
- column
- DISCH_LOC_NAME
- String
-
-
- question
- /Questionnaires/Visit information/location
- String
-
-
-
- 00000004
- cards:ClarityQuestionMapping
-
- column
- CLINIC
- String
-
-
- question
- /Questionnaires/Visit information/clinic
- String
-
-
- computed
- True
- Boolean
-
-
-
- 00000005
- cards:ClarityQuestionMapping
-
- column
- STATUS
- String
-
-
- question
- /Questionnaires/Visit information/status
- String
-
-
- computed
- True
- Boolean
-
-
-
- 00000007
- cards:ClarityQuestionMapping
-
- column
- DISCH_DISPOSITION
- String
-
-
- question
-
- String
-
-
-
- 00000008
- cards:ClarityQuestionMapping
-
- column
- LEVEL_OF_CARE
- String
-
-
- question
-
- String
-
-
-
- 00000009
- cards:ClarityQuestionMapping
-
- column
- ED_IP_TRANSFER_YN
- String
-
-
- question
-
- String
-
-
-
- 00000010
- cards:ClarityQuestionMapping
-
- column
- LENGTH_OF_STAY_DAYS
- String
-
-
- question
-
- String
-
-
-
- 00000012
- cards:ClarityQuestionMapping
-
- column
- HOSP_ADMISSION_DTTM
- String
-
-
- question
-
- String
-
-
-
- 00000013
- cards:ClarityQuestionMapping
-
- column
- PRIMARY_DX_NAME
- String
-
-
- question
-
- String
-
-
-
- 00000014
- cards:ClarityQuestionMapping
-
- column
- PAT_ENC_CSN_ID
- String
-
-
- question
-
- String
-
-
-
- 00000015
- cards:ClarityQuestionMapping
-
- column
- PATIENT_CLASS
- String
-
-
- question
-
- String
-
-
-
- 00000016
- cards:ClarityQuestionMapping
-
- column
- UHN_ICC_STATUS
- String
-
-
- question
-
- String
-
-
-
- 00000017
- cards:ClarityQuestionMapping
-
- column
- UHN_ICC_PATIENT_ELIGIBILITY
- String
-
-
- question
-
- String
-
-
-
-
-
-
-
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/InitialInvitation/ROOT.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/InitialInvitation/ROOT.json
deleted file mode 100644
index 735c0d8ad8..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/InitialInvitation/ROOT.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:EmailTemplate",
- "senderAddress": "yourexperience@uhn.ca",
- "senderName": "Your Experience",
- "subject": "UHN Patient Experience Survey",
- "first_name": "/Questionnaires/Patient information/first_name",
- "last_name": "/Questionnaires/Patient information/last_name"
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/InitialInvitation/bodyTemplate.html b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/InitialInvitation/bodyTemplate.html
deleted file mode 100644
index 4682261d0f..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/InitialInvitation/bodyTemplate.html
+++ /dev/null
@@ -1,47 +0,0 @@
- Dear ${first_name} ${last_name},
-
- You are receiving this email because you have recently been discharged from a University Health Network (UHN) hospital.
-
-
- We’d like to hear about your experience while you were an inpatient at UHN. Your opinions are valuable to us.
- Your responses will be anonymous and will be used to help UHN continuously improve the quality of care patients receive.
-
-
- Complete the survey
-
-
- Completing this survey is voluntary. Your responses will not be shared with the care
- team and answering will not impact future care you receive at UHN.
-
-
- This questionnaire will take about 15 to 20 minutes to complete. Based on your responses you may be asked up to 49 questions.
-
-
- The survey will be available until ${expirationDate}. Please do not delay.
-
-
-
-
- If the button does not work for you, please copy this web address and paste it in your web browser's address bar:
-
- ${surveysLink}
-
-
-
- The survey will not load if you are using Internet Explorer. Please use another web browser, such as Edge, Chrome, or Firefox.
-
-
-
- If you have any questions, concerns, or wish to be removed from the survey, please contact us at yourexperience@uhn.ca.
- You can also unsubscribe from all further emails from Your Experience.
-
-
- Thank you for your time and help. Your effort will help us provide better care to all our patients and ensure
-it is reflective of UHN’s Patient Declaration of Values.
-
-
-
- Best regards,
- The Patient Experience Team
- University Health Network
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/InitialInvitation/bodyTemplate.txt b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/InitialInvitation/bodyTemplate.txt
deleted file mode 100644
index 3077423e38..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/InitialInvitation/bodyTemplate.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-Dear ${first_name} ${last_name},
-
-You are receiving this email because you have recently been discharged from a
-University Health Network (UHN) hospital.
-
-We’d like to hear about your experience while you were an inpatient at UHN.
-Your opinions are valuable to us. Your responses will be anonymous and will
-be used to help UHN continuously improve the quality of care patients receive.
-
-Completing this survey is voluntary. Your responses will not be shared with
-the care team and answering will not impact future care you receive at UHN.
-
-This questionnaire will take about 15 to 20 minutes to complete. Based on your
-responses you may be asked up to 49 questions.
-
-To begin the survey, click the following link:
-${surveysLink}
-
-If you have any questions or concerns or wish to be removed from the survey,
-please contact us at yourexperience@uhn.ca. You can also unsubscribe from all
-further emails from Your Experience by following this link:
-${unsubscribeLink}
-
-The survey will be available until ${expirationDate}. Please do not delay.
-
-Thank you for your time and help. Your effort will help us provide better care to
-all our patients and ensure it is reflective of UHN’s Patient Declaration of Values
-https://www.uhn.ca/corporate/AboutUHN/Quality_Patient_Safety/Pages/patient_values.aspx.
-
-Best regards,
-The Patient Experience Team
-University Health Network
-
-------------------------------------------------------------------------
-
-Unsubscribe from further emails from Your Experience: ${unsubscribeLink}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/ReminderNotification/ROOT.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/ReminderNotification/ROOT.json
deleted file mode 100644
index 735c0d8ad8..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/ReminderNotification/ROOT.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:EmailTemplate",
- "senderAddress": "yourexperience@uhn.ca",
- "senderName": "Your Experience",
- "subject": "UHN Patient Experience Survey",
- "first_name": "/Questionnaires/Patient information/first_name",
- "last_name": "/Questionnaires/Patient information/last_name"
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/ReminderNotification/bodyTemplate.html b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/ReminderNotification/bodyTemplate.html
deleted file mode 100644
index 00f493cd4b..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/ReminderNotification/bodyTemplate.html
+++ /dev/null
@@ -1,48 +0,0 @@
- Dear ${first_name} ${last_name},
-
- You are receiving this email because you have recently been discharged from a University Health Network (UHN) hospital
- and our records indicate that we sent you a survey asking about your experience. However we have not heard back from you.
-
-
- We’d like to hear about your experience while you were an inpatient at UHN. Your opinions are valuable to us.
- Your responses will be anonymous and will be used to help UHN continuously improve the quality of care patients receive.
-
-
- Complete the survey
-
-
- Completing this survey is voluntary. Your responses will not be shared with the care
- team and answering will not impact future care you receive at UHN.
-
-
- This questionnaire will take about 15 to 20 minutes to complete. Based on your responses you may be asked up to 49 questions.
-
-
- The survey will be available until ${expirationDate}. Please do not delay.
-
-
-
-
- If the button does not work for you, please copy this web address and paste it in your web browser's address bar:
-
- ${surveysLink}
-
-
-
- The survey will not load if you are using Internet Explorer. Please use another web browser, such as Edge, Chrome, or Firefox.
-
-
-
- If you have any questions, concerns, or wish to be removed from the survey, please contact us at yourexperience@uhn.ca.
- You can also unsubscribe from all further emails from Your Experience.
-
-
- Thank you for your time and help. Your effort will help us provide better care to all our patients and ensure
-it is reflective of UHN’s Patient Declaration of Values.
-
-
-
- Best regards,
- The Patient Experience Team
- University Health Network
-
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/ReminderNotification/bodyTemplate.txt b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/ReminderNotification/bodyTemplate.txt
deleted file mode 100644
index f1d9b21eb6..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/CPES/mailTemplates/ReminderNotification/bodyTemplate.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-Dear ${first_name} ${last_name},
-
-You are receiving this email because you have recently been discharged from a
-University Health Network (UHN) hospital and our records indicate that we sent
-you a survey asking about your experience. However we have not heard back from you.
-
-We’d like to hear about your experience while you were an inpatient at UHN.
-Your opinions are valuable to us. Your responses will be anonymous and will
-be used to help UHN continuously improve the quality of care patients receive.
-
-Completing this survey is voluntary. Your responses will not be shared with
-the care team and answering will not impact future care you receive at UHN.
-
-This questionnaire will take about 15 to 20 minutes to complete. Based on your
-responses you may be asked up to 49 questions.
-
-To begin the survey, click the following link:
-${surveysLink}
-
-If you have any questions or concerns or wish to be removed from the survey,
-please contact us at yourexperience@uhn.ca. You can also unsubscribe from all
-further emails from Your Experience by following this link:
-${unsubscribeLink}
-
-The survey will be available until ${expirationDate}. Please do not delay.
-
-Thank you for your time and help. Your effort will help us provide better care to
-all our patients and ensure it is reflective of UHN’s Patient Declaration of Values
-https://www.uhn.ca/corporate/AboutUHN/Quality_Patient_Safety/Pages/patient_values.aspx.
-
-Best regards,
-The Patient Experience Team
-University Health Network
-
-------------------------------------------------------------------------
-
-Unsubscribe from further emails from Your Experience: ${unsubscribeLink}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/PMH-YVM/mailTemplates/InitialInvitation/ROOT.json b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/PMH-YVM/mailTemplates/InitialInvitation/ROOT.json
deleted file mode 100644
index 5c0efc159b..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/PMH-YVM/mailTemplates/InitialInvitation/ROOT.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "jcr:primaryType": "cards:EmailTemplate",
- "senderAddress": "PMExperience@uhn.ca",
- "senderName": "The Patient Experience Team",
- "subject": "About Your Recent Experience at Princess Margaret Cancer Centre",
- "first_name": "/Questionnaires/Patient information/first_name",
- "last_name": "/Questionnaires/Patient information/last_name"
-}
diff --git a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/PMH-YVM/mailTemplates/InitialInvitation/bodyTemplate.footer.html b/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/PMH-YVM/mailTemplates/InitialInvitation/bodyTemplate.footer.html
deleted file mode 100644
index 7c5f90693c..0000000000
--- a/prems-resources/clinical-data/src/main/resources/SLING-INF/content/apps/cards/clinics/PMH-YVM/mailTemplates/InitialInvitation/bodyTemplate.footer.html
+++ /dev/null
@@ -1,7 +0,0 @@
-
-