-
Notifications
You must be signed in to change notification settings - Fork 50
/
semantics.json
238 lines (238 loc) · 5.92 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
[
{
"name": "intro",
"type": "text",
"widget": "html",
"label": "Introduction text",
"importance": "high",
"default": "Choose the correct statement.",
"description": "Will be displayed above the summary task.",
"enterMode": "p",
"tags": [
"strong",
"em",
"u",
"a",
"ul",
"ol",
"h2",
"h3",
"hr",
"pre",
"code"
],
"common": false
},
{
"name": "summaries",
"importance": "high",
"type": "list",
"widgets": [
{
"name": "ListEditor",
"label": "Default"
},
{
"name": "SummaryTextualEditor",
"label": "Textual"
}
],
"label": "Summary",
"entity": "statements",
"max": 100,
"min": 1,
"field": {
"name": "statements",
"type": "group",
"label": "Set of statements",
"importance": "high",
"isSubContent": true,
"fields": [
{
"name": "summary",
"type": "list",
"label": "List of statements for the summary - the first statement is correct.",
"entity": "statement",
"importance": "medium",
"min": 2,
"field": {
"name": "text",
"type": "text",
"label": "Statement",
"importance": "medium",
"widget": "html",
"enterMode": "p",
"tags": []
}
},
{
"name": "tip",
"type": "group",
"label": "Tip",
"importance": "low",
"optional": true,
"fields": [
{
"name": "tip",
"label": "Tip text",
"importance": "low",
"type": "text",
"widget": "html",
"tags": [
"p",
"br",
"strong",
"em",
"code"
],
"optional": true
}
]
}
]
}
},
{
"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": "solvedLabel",
"type": "text",
"label": "Text displayed before number of statements solved in the summary task.",
"importance": "low",
"default": "Progress:",
"description": "Will be displayed above the statements. Example: 'Progress: 2/5'",
"common": true
},
{
"name": "scoreLabel",
"type": "text",
"label": "Text displayed before number of wrong statements selected in the summary task.",
"importance": "low",
"default": "Wrong answers:",
"description": "Will be displayed above the statements. Example: 'Wrong answers: 4'",
"common": true
},
{
"name": "resultLabel",
"type": "text",
"label": "Summary feedback header",
"importance": "low",
"default": "Your result",
"description": "Will be displayed above the summary feedback.",
"common": true
},
{
"name": "labelCorrect",
"type": "text",
"label": "Readspeaker text for correct answer",
"importance": "low",
"default": "Correct.",
"common": true
},
{
"name": "labelIncorrect",
"type": "text",
"label": "Readspeaker text for announcing incorrect answer",
"importance": "low",
"default": "Incorrect! Please try again.",
"common": true
},
{
"name": "alternativeIncorrectLabel",
"type": "text",
"label": "Readspeaker label for incorrect answer",
"importance": "low",
"default": "Incorrect",
"common": true
},
{
"name": "labelCorrectAnswers",
"type": "text",
"label": "Label list of correct answers",
"importance": "low",
"default": "Correct answers.",
"common": true
},
{
"name": "tipButtonLabel",
"type": "text",
"label": "Label for the show tip button",
"importance": "low",
"default": "Show tip",
"common": true
},
{
"name": "scoreBarLabel",
"type": "text",
"label": "Textual representation of the score bar for those using a readspeaker",
"description": ":num and :total are special keywords which are programmatically updated",
"default": "You got :num out of :total points",
"importance": "low",
"common": true
},
{
"name": "progressText",
"type": "text",
"label": "Text used for readspeakers to communicate progress",
"description": ":num and :total are special keywords which are programmatically updated",
"default": "Progress :num of :total",
"importance": "low",
"common": true
}
]