-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproperties.schema
197 lines (197 loc) · 11 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
{
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"id": "http://jsonschema.net",
"required": false,
"globals": {
"linkText" : {
"type" : "string",
"inputType" : "Text",
"title" : "Link text",
"default" : "Outcomes",
"validators" : [ ],
"help" : "The text which appears as the link in the theme to show the skillsFramework popup.",
"translatable" : true
},
"titleText" : {
"type" : "string",
"inputType" : "Text",
"title" : "Title",
"default" : "Learning outcomes",
"validators" : [ ],
"help" : "The title shown in the skillsFramework section/popup.",
"translatable" : true
}
},
"properties" : {
"pluginLocations" : {
"type" : "object",
"required" : true,
"properties" : {
"course" : {
"type" : "object",
"properties" : {
"_skillsFramework" : {
"type" : "object",
"required" : false,
"legend" : "Related programmes",
"properties": {
"_items" : {
"type": "array",
"title" : "Related programmes",
"help" : "The programmes this course is included in",
"required": true,
"items": {
"type" : "object",
"required" : true,
"properties" : {
"title": {
"type" : "string",
"inputType" : "Text",
"title" : "Title",
"default" : "",
"validators" : [ ],
"help" : "The title of the programme this course is a part of.",
"translatable" : true
},
"uri": {
"type" : "string",
"inputType" : "Text",
"title" : "URL/URI",
"default" : "",
"validators" : [ ],
"help" : "A link to the programme URL,URI",
"translatable" : true
},
"aim": {
"type" : "string",
"inputType" : "TextArea",
"title" : "Aim",
"default" : "The aim of this programme is to ...",
"validators" : [ ],
"help" : "The aim of the programme this course is a part of.",
"translatable" : true
},
"positionDescription": {
"type" : "string",
"inputType" : "TextArea",
"title" : "Position description",
"default" : "",
"validators" : [ ],
"help" : "A description of where this course sits in the programme.",
"translatable" : true
},
"learningOutcomes" : {
"type" : "array",
"required" : true,
"title" : "Related programme outcomes",
"help" : "The ILOs from the programme this course covers",
"items" : {
"type" : "object",
"required" : true,
"properties" : {
"outcome" : {
"type" : "string",
"inputType" : "Text",
"title" : "Learning outcome",
"default" : "",
"validators" : [],
"help" : "Decription of the skill of learning outcome.",
"translatable" : true
}
}
}
},
"reflectiveQuestions" : {
"type" : "array",
"required" : true,
"title" : "Reflective questions",
"help" : "Reflective questions for this course that are only relevant to the programme.",
"items" : {
"type" : "object",
"required" : true,
"properties" : {
"question" : {
"type" : "string",
"inputType" : "Text",
"title" : "Question/Exercise",
"default" : "",
"validators" : [],
"help" : "A place to list specific reflective questions and activities related to this module that are only relevant to the programme.",
"translatable" : true
}
}
}
}
}
}
}
}
}
}
},
"contentobject" : {
"type" : "object",
"properties" : {
"_skillsFramework" : {
"type" : "object",
"required" : false,
"legend" : "Aim, outcomes and reflective questions",
"properties" : {
"aim": {
"type" : "string",
"inputType" : "TextArea",
"title" : "Aim",
"default" : "The aim of this module is to ...",
"validators" : [ ],
"help" : "The aim of the module.",
"translatable" : true
},
"learningOutcomes" : {
"type" : "array",
"required" : true,
"title" : "Learning outcomes",
"items" : {
"type" : "object",
"required" : true,
"properties" : {
"outcome" : {
"type" : "string",
"inputType" : "Text",
"title" : "Learning outcome",
"default" : "",
"validators" : [],
"help" : "Decription of the skill of learning outcome. e.g. Define a learning outcome.",
"translatable" : true
}
}
}
},
"reflectiveQuestions" : {
"type" : "array",
"required" : true,
"title" : "Reflective questions",
"items" : {
"type" : "object",
"required" : true,
"properties" : {
"question" : {
"type" : "string",
"inputType" : "Text",
"title" : "Question/Exercise",
"default" : "",
"validators" : [],
"help" : "A place to list specific reflective questions and activities related to this module.",
"translatable" : true
}
}
}
}
}
}
}
}
}
}
}
}