forked from ExtensionEngine/tailor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.activities-rc.json.example
More file actions
39 lines (39 loc) · 978 Bytes
/
Copy path.activities-rc.json.example
File metadata and controls
39 lines (39 loc) · 978 Bytes
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
{
"SCHEMAS": [{
"id": "COURSE",
"name": "Example Course",
"structure": [{
"type": "GOAL",
"label": "Goal",
"color": "#ff6590",
"level": 1,
"meta":[{
"key": "description",
"type": "INPUT",
"label": "Description",
"placeholder": "Click to add...",
"validate": { "required": false, "max": 23 }
}],
"contentContainers": ["PAGE"],
"relationships": [{
"type": "prerequisites",
"label": "Prerequisites",
"multiple": true,
"searchable": true,
"allowEmpty": true,
"placeholder": "Click to select",
"allowCircularLinks": false,
"allowInsideLineage": false
"allowedTypes": ["ACTIVITY_TYPE_1", "ACTIVITY_TYPE_2"]
}, {
"type": "replacements",
"label": "replacements"
}]
}],
"contentContainers": [{
"type": "PAGE",
"label": "Page",
"multiple": false
}]
}]
}