-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.json
142 lines (142 loc) Β· 3.39 KB
/
questions.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"actions": [
{
"collect": {
"name": "which_virtual_data_program_is_right_for_you",
"questions": [
{
"question": "You are taking a trip to company headquarters π« the destination reads: \n \n a. Boston, Massachusetts πΊπΈ \n \n b. Melbourne, Australia π¦\n \n c. Amstelveen, Netherlands π³π±",
"name": "q1",
"validate": {
"allowed_values": {
"list": [
"a",
"b",
"c"
]
},
"on_failure": {
"messages": [
{
"say": "Please send a, b, or c!"
}
],
"repeat_question": true
},
"max_attempts": {
"redirect": "task://greeting",
"num_attempts": 3
}
}
},
{
"question": "Which industry do you see yourself disrupting in the near future? \n\n a. Power, Renewable Energy, Aviation or Health (heck, maybe all of these!) π‘ \n\n b. Banking and Investments π¦ \n\n c. Auditing and Tax π§Ύ",
"name": "q2",
"validate": {
"allowed_values": {
"list": [
"a",
"b",
"c"
]
},
"on_failure": {
"messages": [
{
"say": "Please send a, b, or c!"
}
],
"repeat_question": true
},
"max_attempts": {
"redirect": "task://greeting",
"num_attempts": 3
}
}
},
{
"question": "*zoom chime rings* and you find yourself in a virtual job fair π» You tell the recruiter that you've been been sharpening your skills in: \n\n a. Data Engineering βοΈ \n\n b. Predictive Analysis π \n\n c. Data Quality Analysis π",
"name": "q3",
"validate": {
"allowed_values": {
"list": [
"a",
"b",
"c"
]
},
"on_failure": {
"messages": [
{
"say": "Please send a, b, or c!"
}
],
"repeat_question": true
},
"max_attempts": {
"redirect": "task://greeting",
"num_attempts": 3
}
}
},
{
"question": "How do you like to roll? π² \n\n a. Dataiku all the way! π¦ \n\n b. Stick to R,SAS, Python π\n\n c. Start with Excel and then run with it π",
"name": "q4",
"validate": {
"allowed_values": {
"list": [
"a",
"b",
"c"
]
},
"on_failure": {
"messages": [
{
"say": "Please send a, b, or c!"
}
],
"repeat_question": true
},
"max_attempts": {
"redirect": "task://greeting",
"num_attempts": 3
}
}
},
{
"question": "How do learn best? π€ \n \n a. Videos β© \n\n b. open-ended questionsβ\n \nc. tasks that simulate the real world π ",
"name": "q5",
"validate": {
"allowed_values": {
"list": [
"a",
"b",
"c"
]
},
"on_failure": {
"messages": [
{
"say": "Please send a, b, or c!"
}
],
"repeat_question": true
},
"max_attempts": {
"redirect": "task://greeting",
"num_attempts": 3
}
}
}
],
"on_complete": {
"redirect": {
"method": "POST",
"uri": "https://UNIQUE_USERNAME.twil.io/YOU_CHOOSE_PATH" //CHANGE THIS!
}
}
}
}
]
}