-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
51 lines (51 loc) · 945 Bytes
/
db.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
{
"polls": [
{
"id": "e0bb420c6dfa2",
"title": "What is your favorite way to travel somewhere?",
"options": [
{
"index": "1",
"option": "Train",
"votes": 2
},
{
"index": "2",
"option": "Boat",
"votes": 0
},
{
"index": "3",
"option": "Plane",
"votes": 0
},
{
"index": "4",
"option": "Car",
"votes": 1
},
{
"index": "5",
"option": "Walk",
"votes": 4
}
]
},
{
"id": "95066b9b9a65c",
"title": "Are you an introvert or an extrovert?",
"options": [
{
"index": "1",
"option": "Introvert",
"votes": 0
},
{
"index": "2",
"option": "Extrovert",
"votes": 0
}
]
}
]
}