forked from h5p/h5p-single-choice-set
-
Notifications
You must be signed in to change notification settings - Fork 0
/
semantics.json
308 lines (308 loc) · 7.95 KB
/
semantics.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
[
{
"name": "choices",
"type": "list",
"label": "List of questions",
"importance": "high",
"entity": "question",
"min": 1,
"defaultNum": 2,
"widgets": [
{
"name": "ListEditor",
"label": "Default"
},
{
"name": "SingleChoiceSetTextualEditor",
"label": "Textual"
}
],
"field": {
"name": "choice",
"type": "group",
"isSubContent": true,
"label": "Question & alternatives",
"importance": "high",
"fields": [
{
"name": "question",
"type": "text",
"widget": "html",
"tags": [
"p",
"br",
"strong",
"em",
"code"
],
"label": "Question",
"importance": "high"
},
{
"name": "answers",
"type": "list",
"label": "Alternatives - first alternative is the correct one.",
"importance": "medium",
"entity": "answer",
"min": 2,
"max": 4,
"defaultNum": 2,
"field": {
"name": "answer",
"type": "text",
"widget": "html",
"tags": [
"p",
"br",
"strong",
"em",
"code"
],
"label": "Alternative",
"importance": "medium"
}
}
]
}
},
{
"name": "overallFeedback",
"type": "group",
"label": "Overall Feedback",
"importance": "low",
"expanded": true,
"fields": [
{
"name": "overallFeedback",
"type": "list",
"widgets": [
{
"name": "RangeList",
"label": "Default"
}
],
"importance": "high",
"label": "Define custom feedback for any score range",
"description": "Click the \"Add range\" button to add as many ranges as you need. Example: 0-20% Bad score, 21-91% Average Score, 91-100% Great Score!",
"entity": "range",
"min": 1,
"defaultNum": 1,
"optional": true,
"field": {
"name": "overallFeedback",
"type": "group",
"importance": "low",
"fields": [
{
"name": "from",
"type": "number",
"label": "Score Range",
"min": 0,
"max": 100,
"default": 0,
"unit": "%"
},
{
"name": "to",
"type": "number",
"min": 0,
"max": 100,
"default": 100,
"unit": "%"
},
{
"name": "feedback",
"type": "text",
"label": "Feedback for defined score range",
"importance": "low",
"placeholder": "Fill in the feedback",
"optional": true
}
]
}
}
]
},
{
"name": "behaviour",
"type": "group",
"label": "Behavioural settings",
"importance": "low",
"fields": [
{
"name": "autoContinue",
"type": "boolean",
"label": "Auto continue",
"description": "Automatically go to next question when alternative is selected",
"default": true
},
{
"name": "timeoutCorrect",
"type": "number",
"label": "Timeout on correct answers",
"importance": "low",
"description": "Value in milliseconds",
"default": 2000,
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "autoContinue",
"equals": true
}
]
}
},
{
"name": "timeoutWrong",
"type": "number",
"label": "Timeout on wrong answers",
"importance": "low",
"description": "Value in milliseconds",
"default": 3000,
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "autoContinue",
"equals": true
}
]
}
},
{
"name": "soundEffectsEnabled",
"type": "boolean",
"label": "Enable sound effects",
"importance": "low",
"default": true
},
{
"name": "enableRetry",
"type": "boolean",
"label": "Enable retry button",
"importance": "low",
"default": true
},
{
"name": "enableSolutionsButton",
"type": "boolean",
"label": "Enable show solution button",
"importance": "low",
"default": true
},
{
"name": "passPercentage",
"type": "number",
"label": "Pass percentage",
"description": "Percentage of Total score required for passing the quiz.",
"min": 0,
"max": 100,
"step": 1,
"default": 100
}
]
},
{
"name": "l10n",
"type": "group",
"label": "Localize single choice set",
"importance": "low",
"common": true,
"fields": [
{
"name": "nextButtonLabel",
"type": "text",
"label": "Label for the \"Next\" button",
"importance": "low",
"default": "Next question"
},
{
"name": "showSolutionButtonLabel",
"type": "text",
"label": "Label for the \"Show solution\" button",
"importance": "low",
"default": "Show solution"
},
{
"name": "retryButtonLabel",
"type": "text",
"label": "Label for the \"Retry\" button",
"importance": "low",
"default": "Retry"
},
{
"name": "solutionViewTitle",
"type": "text",
"label": "Title for the show solution view",
"importance": "low",
"default": "Solution list"
},
{
"name": "correctText",
"type": "text",
"label": "Readspeaker text for correct answer",
"importance": "low",
"default": "Correct!"
},
{
"name": "incorrectText",
"type": "text",
"label": "Readspeaker text for incorrect answer",
"importance": "low",
"default": "Incorrect!"
},
{
"name": "muteButtonLabel",
"type": "text",
"label": "Label for the \"mute\" button, to disable feedback sound",
"importance": "low",
"default": "Mute feedback sound"
},
{
"name": "closeButtonLabel",
"type": "text",
"label": "Label for the \"Close\" button",
"importance": "low",
"default": "Close"
},
{
"name": "slideOfTotal",
"type": "text",
"label": "Slide number text",
"importance": "low",
"description": "Announces current slide and total number of slides, variables are :num and :total",
"default": "Slide :num of :total"
},
{
"name": "scoreBarLabel",
"type": "text",
"label": "Textual representation of the score bar for those using a readspeaker",
"default": "You got :num out of :total points",
"importance": "low"
},
{
"name": "solutionListQuestionNumber",
"type": "text",
"label": "Label for the question number in the solution list",
"importance": "low",
"description": "Announces current question index in solution list, variables are :num",
"default": "Question :num"
},
{
"name": "a11yShowSolution",
"type": "text",
"label": "Assistive technology description for \"Show Solution\" button",
"default": "Show the solution. The task will be marked with its correct solution.",
"importance": "low"
},
{
"name": "a11yRetry",
"type": "text",
"label": "Assistive technology description for \"Retry\" button",
"default": "Retry the task. Reset all responses and start the task over again.",
"importance": "low"
}
]
}
]