-
Notifications
You must be signed in to change notification settings - Fork 65
/
semantics.json
314 lines (314 loc) · 8.13 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
309
310
311
312
313
314
[
{
"name": "media",
"type": "group",
"label": "Media",
"importance": "medium",
"fields": [
{
"name": "type",
"type": "library",
"label": "Type",
"importance": "medium",
"options": [
"H5P.Image 1.1",
"H5P.Video 1.6",
"H5P.Audio 1.5"
],
"optional": true,
"description": "Optional media to display above the question."
},
{
"name": "disableImageZooming",
"type": "boolean",
"label": "Disable image zooming",
"importance": "low",
"default": false,
"optional": true,
"widget": "showWhen",
"showWhen": {
"rules": [
{
"field": "type",
"equals": "H5P.Image 1.1"
}
]
}
}
]
},
{
"label": "Task description",
"importance": "high",
"name": "taskDescription",
"type": "text",
"widget": "html",
"description": "Describe how the user should solve the task.",
"placeholder": "Click on all the verbs in the text that follows.",
"enterMode": "p",
"tags": [
"strong",
"em",
"u",
"a",
"ul",
"ol",
"h2",
"h3",
"hr",
"pre",
"code"
]
},
{
"label": "Textfield",
"importance": "high",
"name": "textField",
"type": "text",
"widget": "html",
"tags": [
"p",
"br",
"strong",
"em",
"code"
],
"placeholder": "This is an answer: *answer*.",
"description": "",
"important": {
"description": "<ul><li>Correct words are marked with asterisks (*) before and after the word.</li><li>Asterisks can be added within marked words by adding another asterisk, *correctword*** => correctword*.</li><li>Only words may be marked as correct. Not phrases.</li></ul>",
"example": "The correct words are marked like this: *correctword*, an asterisk is written like this: *correctword***."
}
},
{
"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
}
]
}
}
]
},
{
"label": "Text for \"Check\" button",
"importance": "low",
"name": "checkAnswerButton",
"type": "text",
"default": "Check",
"common": true
},
{
"label": "Text for \"Submit\" button",
"importance": "low",
"name": "submitAnswerButton",
"type": "text",
"default": "Submit",
"common": true
},
{
"label": "Text for \"Retry\" button",
"importance": "low",
"name": "tryAgainButton",
"type": "text",
"default": "Retry",
"common": true
},
{
"label": "Text for \"Show solution\" button",
"importance": "low",
"name": "showSolutionButton",
"type": "text",
"default": "Show solution",
"common": true
},
{
"name": "behaviour",
"importance": "low",
"type": "group",
"label": "Behavioural settings.",
"description": "These options will let you control how the task behaves.",
"optional": true,
"fields": [
{
"name": "enableRetry",
"type": "boolean",
"label": "Enable \"Retry\"",
"importance": "low",
"default": true
},
{
"name": "enableSolutionsButton",
"type": "boolean",
"label": "Enable \"Show solution\" button",
"importance": "low",
"default": true
},
{
"name": "enableCheckButton",
"type": "boolean",
"label": "Enable \"Check\" button",
"widget": "none",
"importance": "low",
"default": true,
"optional": true
},
{
"name": "showScorePoints",
"type": "boolean",
"label": "Show score points",
"description": "Show points earned for each answer.",
"importance": "low",
"default": true
}
]
},
{
"label": "Correct answer text",
"importance": "low",
"name": "correctAnswer",
"type": "text",
"default": "Correct!",
"description": "Text used to indicate that an answer is correct",
"common": true
},
{
"label": "Incorrect answer text",
"importance": "low",
"name": "incorrectAnswer",
"type": "text",
"default": "Incorrect!",
"description": "Text used to indicate that an answer is incorrect",
"common": true
},
{
"label": "Missed answer text",
"importance": "low",
"name": "missedAnswer",
"type": "text",
"default": "Answer not found!",
"description": "Text used to indicate that an answer is missing",
"common": true
},
{
"label": "Description for Display Solution",
"importance": "low",
"name": "displaySolutionDescription",
"type": "text",
"default": "Task is updated to contain the solution.",
"description": "This text tells the user that the tasks has been updated with the solution.",
"common": true
},
{
"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",
"common": true
},
{
"name": "a11yFullTextLabel",
"type": "text",
"label": "Label for the full readable text for assistive technologies",
"default": "Full readable text",
"importance": "low",
"common": true
},
{
"name": "a11yClickableTextLabel",
"type": "text",
"label": "Label for the text where words can be marked for assistive technologies",
"default": "Full text where words can be marked",
"importance": "low",
"common": true
},
{
"name": "a11ySolutionModeHeader",
"type": "text",
"label": "Solution mode header for assistive technologies",
"default": "Solution mode",
"importance": "low",
"common": true
},
{
"name": "a11yCheckingHeader",
"type": "text",
"label": "Checking mode header for assistive technologies",
"default": "Checking mode",
"importance": "low",
"common": true
},
{
"name": "a11yCheck",
"type": "text",
"label": "Assistive technology description for \"Check\" button",
"default": "Check the answers. The responses will be marked as correct, incorrect, or unanswered.",
"importance": "low",
"common": true
},
{
"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",
"common": true
},
{
"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",
"common": true
}
]