-
Notifications
You must be signed in to change notification settings - Fork 0
/
task_presenter.json
118 lines (118 loc) · 3.98 KB
/
task_presenter.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
{
"language":{
"default":"en",
"available":[
"en",
"fr"
]
},
"why":{
"en":"This is a simple project that shows you how to create a multilingual questionnaire.",
"fr":"Ceci est un projet qui a pour but de vous montrer comment créer une questionnaire multilingue."
},
"subject":{
"type":"image"
},
"questionnaire":{
"questions":[
{
"key":"isWaterVisible",
"type":"binary",
"title":{
"en":"Can you see any water in the photo?",
"fr":"Can you see any water in the photo? (fr)"
},
"hint":{
"en":"More specifically, can you see small water bodies like puddles, or large ones such as rivers or lakes?",
"fr":"More specifically, can you see small water bodies like puddles, or large ones such as rivers or lakes? (fr)"
},
"branch":{
"yes":"waterColor",
"no":"name"
}
},
{
"key":"waterColor",
"type":"select",
"title":{
"en":"What color is the water?",
"fr":"Quelle est la couleur de l'eau?"
},
"parameters":{
"options":[
{
"label":{
"en":"Red",
"fr":"Rouge"
},
"value":"Red"
},
{
"label":{
"en":"Aqua Blue",
"fr":"Bleu Aquatique"
},
"value":"AquaBlue"
},
{
"label":{
"en":"Green",
"fr":"Verte"
},
"value":"Green"
},
{
"label":{
"en":"Orange",
"fr":"Orange"
},
"value":"Orange"
}
]
}
},
{
"key":"smallPoolsOfWaterVisible",
"type":"binary",
"title":{
"en":"Can you see small pools of water?",
"fr":"Can you see small pools of water? (fr)"
},
"branch":{
"no":"largeBodyOfWaterVisible"
}
},
{
"key":"smallPoolsOfWaterNearShelters",
"type":"binary",
"title":{
"en":"Are these small pools of water near human shelters or a settlement?",
"fr":"Are these small pools of water near human shelters or a settlement? (fr)"
},
"branch":"name"
},
{
"key":"largeBodyOfWaterVisible",
"type":"binary",
"title":{
"en":"Can you see a large body of water?",
"fr":"Can you see a large body of water? (fr)"
}
},
{
"key":"name",
"type":"text",
"title":{
"en":"Please enter your name",
"fr":"Please enter your name (fr)"
},
"parameters":{
"placeholder":{
"en":"A fake name will do",
"fr":"A fake name will do (fr)"
}
}
}
]
}
}