-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunit_config_example.json
35 lines (33 loc) · 1.04 KB
/
unit_config_example.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
{
"id": 23,
"locale": "uk/en",
"title": "Sending email attachments",
"description": "This is what you'll learn",
"steps": [ // In theory this allows for any number of learning steps
{
"step": 1,
"type": "learning",
"format": "adapt",
"config": {
"url": "/courses/email/en/uk" // Path that iframe loads
}
},
{
"step": 2, // Step 2 onwards if optional
"type": "practise",
"format": "customPractise",
"config": {
// For different types of object you may have custom config passed in
}
}
],
"completion": {
"description": "You've learned X, Y, Z",
"resources": {
},
"overviewQuestions": {
// Overview (synaptic) quiz questions relating to this topic that can be pulled out elsewhere
}
// This includes any config for the end of the unit - including any optional feedback questions & messaging
}
}