-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.json
44 lines (41 loc) · 999 Bytes
/
form.json
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
41
{
"survey_properties": {
"intro_message": "None...It will be skipped!",
"end_message": "Thank you for having the time to take our survey.",
"skip_intro": true
},
"questions": [
{
"question_type": "Radioboxes",
"question_title": "On a scale of 1 (worst) to 5 (best), how do you rate the app?",
"description": "",
"required": true,
"random_choices": false,
"choices": [
"1",
"2",
"3",
"4",
"5"
]
},
{
"question_type": "Checkboxes",
"question_title": "What do you like about the app? [Select all that apply]",
"description": "",
"required": true,
"random_choices": false,
"choices": [
"App Design",
"Usability",
"Information available in the app"
]
},
{
"question_type": "String",
"question_title": "How would you like us to improve?",
"description": "",
"required": true
}
]
}