-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproperties.schema
120 lines (120 loc) · 3.83 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
{
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema",
"id": "http://jsonschema.net",
"required": false,
"properties":{
"pluginLocations": {
"type": "object",
"required": true,
"properties": {
"config": {
"type": "object"
},
"course": {
"type": "object",
"properties": {
"_pageIncompletePrompt": {
"type": "object",
"required": false,
"legend": "Page Incomplete Prompt",
"properties": {
"_isEnabled": {
"type": "boolean",
"required": true,
"default": true,
"title": "Enabled?",
"inputType": "Checkbox",
"validators": [],
"help": "Enables a page level notification that warns the learner if they haven't completed everything required on the page."
},
"title": {
"type": "string",
"required": true,
"default": "Page incomplete",
"title": "Prompt title",
"inputType": "Text",
"validators": [],
"translatable": true
},
"message": {
"type": "string",
"required": true,
"default": "Are you sure you would like to leave?",
"title": "Prompt message",
"inputType": "Text",
"validators": [],
"translatable": true
},
"_classes": {
"type": "string",
"required": false,
"default": "",
"title": "Classes",
"inputType": "Text",
"validators": [],
"help": "CSS classes for styling the prompt"
},
"_buttons": {
"type": "object",
"required":true,
"legend": "Button labels",
"properties" : {
"yes": {
"type": "string",
"required": true,
"default": "Yes",
"title": "'Yes' button label",
"inputType": "Text",
"validators": [],
"translatable": true
},
"no": {
"type": "string",
"required": true,
"default": "No",
"title": "'No' button label",
"inputType": "Text",
"validators": [],
"translatable": true
}
}
}
}
}
}
},
"contentobject": {
"type": "object",
"properties": {
"_pageIncompletePrompt": {
"type": "object",
"required": false,
"legend": "Page Incomplete Prompt",
"properties": {
"_isEnabled": {
"type": "boolean",
"required": true,
"default": true,
"title": "Enabled?",
"inputType": "Checkbox",
"validators": [],
"help": "Whether Page Incomplete Prompt is enabled for this page or not. This is setting is only required if you want this page to override the global setting."
}
}
}
}
},
"article": {
"type": "object"
},
"block": {
"type": "object"
},
"component": {
"type": "object"
}
}
}
}
}