-
Notifications
You must be signed in to change notification settings - Fork 0
/
poll.json
104 lines (104 loc) · 2.06 KB
/
poll.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
{
"polls": [{
"id": 1,
"title": "Is bitcoin worth the time and money that mining requires?",
"publishedDate": 1516605447,
"answer": {
"type": "Single",
"options": [{
"id": 1,
"label": "Yes"
},
{
"id": 2,
"label": "No"
}
]
}
},
{
"id": 2,
"title": "Should chatbots replace humans in customer service jobs?",
"publishedDate": 1516000647,
"answer": {
"type": "Single",
"options": [{
"id": 3,
"label": "Yes"
},
{
"id": 4,
"label": "No"
}
]
}
},
{
"id": 3,
"title": "How are we feeling about 2018?",
"publishedDate": 1515568647,
"answer": {
"type": "Single",
"options": [{
"id": 5,
"label": "Hopeful"
},
{
"id": 6,
"label": "Doubtful"
}
]
}
},
{
"id": 4,
"title": "Which country/region have you ever visited? (Select all that applies)",
"publishedDate": 1515482247,
"answer": {
"type": "Multi",
"options": [{
"id": 7,
"label": "Hong Kong"
},
{
"id": 8,
"label": "China"
},
{
"id": 9,
"label": "Australia"
},
{
"id": 10,
"label": "Thailand"
},
{
"id": 11,
"label": "Korea"
},
{
"id": 12,
"label": "Japan"
}
]
}
},
{
"id": 5,
"title": "Will new benefits encourage you to study or work in mainland?",
"publishedDate": 1515309447,
"answer": {
"type": "Single",
"options": [{
"id": 13,
"label": "Yes"
},
{
"id": 14,
"label": "No"
}
]
}
}
]
}