-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.json
More file actions
49 lines (49 loc) · 951 Bytes
/
example.json
File metadata and controls
49 lines (49 loc) · 951 Bytes
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
{
"name": "Example Questionnaire",
"questions": [
{
"id": "name",
"text": "What is your name?",
"type": "text"
},
{
"id": "quest",
"text": "What is your quest?",
"type": "text"
},
{
"id": "col",
"text": "What is your favourite colour?",
"type": "text"
},
{
"id": "velo",
"text": "What is the air-speed velocity of an unladen swallow?",
"type": "number"
},
{
"id": "lord",
"text": "Which is the best lord?",
"type": "single-select",
"options": [
"Lord of the Rings",
"Lord of the Flies",
"Lord of the Dance",
"Lorde"
]
},
{
"id": "langs",
"text": "Which computer languages have you used?",
"type": "multi-select",
"options": [
"JavaScript",
"Java",
"C",
"Python",
"Ook",
"LISP"
]
}
]
}