-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathproperties.schema
209 lines (209 loc) · 6.95 KB
/
properties.schema
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
{
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"id": "http://jsonschema.net",
"required": false,
"globals": {
"resumeButtonText": {
"type": "string",
"required": true,
"title": "Resume button text",
"default": "Resume",
"inputType": "Text",
"validators": [],
"translatable": true
},
"resumeButtonAriaLabel": {
"type": "string",
"required": true,
"title": "Resume ARIA label",
"default": "Navigate to your furthest point of progress.",
"inputType": "Text",
"validators": [],
"translatable": true
}
},
"properties": {
"pluginLocations": {
"type": "object",
"required": true,
"properties": {
"config": {
"type": "object"
},
"course": {
"type": "object",
"properties": {
"_bookmarking": {
"type": "object",
"required": false,
"legend": "Bookmarking",
"properties": {
"_isEnabled": {
"type": "boolean",
"required": true,
"default": true,
"title": "Is enabled",
"inputType": "Checkbox",
"validators": [],
"help": "Controls whether the Bookmarking extension is enabled or disabled."
},
"_level": {
"type": "string",
"required": true,
"enum": [
"page",
"block",
"component"
],
"default": "component",
"title": "Level",
"inputType": {
"type": "Select",
"options": [
"page",
"block",
"component"
]
},
"validators": ["required"],
"help": "Allows you to set whether Bookmarking is done at page, block or component level."
},
"_location": {
"type": "string",
"required": true,
"enum": [
"previous",
"furthest"
],
"default": "previous",
"title": "Location",
"inputType": {
"type": "Select",
"options": [
"previous",
"furthest"
]
},
"validators": ["required"],
"help": "Allows you to set whether Bookmarking takes learners back to their last previously visited location or your furthest incomplete location. The furthest option will pair best in a course with linear progression."
},
"_showPrompt": {
"type": "boolean",
"required": true,
"default": true,
"title": "Show prompt",
"inputType": "Checkbox",
"validators": [],
"help": "Controls whether the Bookmarking prompt is enabled or disabled. If not enabled, the user will be returned to their bookmarked position automatically."
},
"_autoRestore": {
"type": "boolean",
"required": true,
"default": true,
"title": "Auto restore",
"inputType": "Checkbox",
"validators": [],
"help": "Controls whether the Bookmarking will automatically restore if the prompt is disabled. If not enabled, the user will be not be automatically returned to their bookmarked position."
},
"title": {
"type": "string",
"default": "Bookmarking",
"required": true,
"title": "Prompt Title",
"inputType": "Text",
"validators": [],
"translatable": true
},
"body": {
"type": "string",
"default": "Would you like to continue where you left off?",
"required": false,
"title": "Prompt Message",
"inputType": "Text",
"validators": [],
"translatable": true
},
"_buttons": {
"type": "object",
"title": "Prompt Buttons",
"properties": {
"yes": {
"type": "string",
"default": "Yes",
"title": "",
"inputType": "Text",
"validators": [],
"translatable": true
},
"no": {
"type": "string",
"default": "No",
"title": "",
"inputType": "Text",
"validators": [],
"translatable": true
}
}
}
}
}
}
},
"contentobject": {
"type": "object",
"properties": {
"_bookmarking": {
"type": "object",
"required": false,
"legend": "Bookmarking",
"properties": {
"_isEnabled": {
"type": "boolean",
"required": true,
"default": true,
"title": "Is enabled",
"inputType": "Checkbox",
"validators": [],
"help": "Controls whether Bookmarking is enabled or disabled for this page of the course."
},
"_level": {
"type": "string",
"required": true,
"enum": [
"inherit",
"page",
"block",
"component"
],
"default": "inherit",
"title": "Level",
"inputType": {
"type": "Select",
"options": [
"inherit",
"page",
"block",
"component"
]
},
"validators": ["required"],
"help": "Whether you want to inherit the 'Level' setting from Project settings or override it for this page of the course."
}
}
}
}
},
"article": {
"type": "object"
},
"block": {
"type": "object"
},
"component": {
"type": "object"
}
}
}
}
}