-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsurveyjson.js
executable file
·40 lines (37 loc) · 1.68 KB
/
surveyjson.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
export const json = {
"elements": [
{
"type": "ranking",
"name": "Health-Benefits",
"title": "Please rank the following health benefits in terms of their importance to you and your family. From a mobile device, long press and drag into position ",
"isRequired": true,
"choices": [
"Diabetes Management",
"High Blood Pressure Management",
"High Cholesterol Management",
"Remote Employee Health Monitoring",
],
},
{
"name": "Fund-Allocation",
"type": "checkbox",
"title": "How would you prefer additional funds for health benefits be used?",
"description": "Please choose one option.",
"choices": ["Improve or add benefit programs", "Reduce currently required employee contributions"],
"isRequired": true,
"colCount": 1,
},
{
"name": "Opinion-Check",
"type": "checkbox",
"title": "Which of the follow statements reflects your opinion?",
"description": "Check one",
"choices": ["More emphasis should be placed on improving my current health plans and less on adding new alternative benefits for chronic diseases such as diabetes, high blood pressure, and cancer.",
"More emphasis should be placed on adding this new alternative health benefits for chronic illneess such as diabetes, high blood pressure and cancer.",
"The sample emphasis, as in the past, should be placed on improving and adding both existing beneifts and new alternative health benefits."],
"isRequired": true,
"colCount": 1,
}
],
"showQuestionNumbers": false
};