Skip to content

Commit

Permalink
Amend schema to change boolean selects to checkboxes, as per adaptlea…
Browse files Browse the repository at this point in the history
  • Loading branch information
moloko authored and brian-learningpool committed Jun 28, 2017
1 parent 4a58f24 commit a714681
Showing 1 changed file with 16 additions and 55 deletions.
71 changes: 16 additions & 55 deletions properties.schema
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,16 @@
"type": "boolean",
"required": true,
"title": "Send Total Score to LMS",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"help": "If set to 'true', an overall assessment score will be submitted to the LMS",
"inputType": "Checkbox",
"help": "If enabled, an overall assessment score will be submitted to the LMS",
"validators": []
},
"_isPercentageBased": {
"type": "boolean",
"required": true,
"title": "Percentage based",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"help": "If set to 'true', the assessment score will be converted to a percentage",
"inputType": "Checkbox",
"help": "If enabled, the assessment score will be converted to a percentage",
"validators": []
},
"_scoreToPass": {
Expand All @@ -54,12 +48,9 @@
"type": "boolean",
"required": true,
"title": "Require Assessment Pass",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"inputType": "Checkbox",
"default": false,
"help": "If 'true', the learner must pass the assessment. Note: if 'Send Total Score to LMS' is also set to 'true', this will force an infinite number of attempts on any assessment.",
"help": "If enabled, the learner must pass the assessment. Note: if 'Send Total Score to LMS' is also set to 'true', this will force an infinite number of attempts on any assessment.",
"validators": []
}
}
Expand All @@ -81,10 +72,7 @@
"type": "boolean",
"required": true,
"title": "Enabled",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"inputType": "Checkbox",
"validators": []
},
"_id": {
Expand All @@ -105,10 +93,7 @@
"type": "boolean",
"required": false,
"title": "Enabled",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"inputType": "Checkbox",
"validators": []
},
"_split": {
Expand All @@ -124,10 +109,7 @@
"type": "boolean",
"required": false,
"title": "Randomised Banks",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"inputType": "Checkbox",
"validators": []
}
}
Expand All @@ -141,10 +123,7 @@
"type": "boolean",
"required": false,
"title": "Enabled",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"inputType": "Checkbox",
"validators": []
},
"_blockCount": {
Expand Down Expand Up @@ -180,30 +159,21 @@
"type": "boolean",
"required": false,
"title": "Show Feedback",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"inputType": "Checkbox",
"validators": []
},
"_canShowMarking": {
"type": "boolean",
"required": false,
"title": "Show Marking",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"inputType": "Checkbox",
"validators": []
},
"_canShowModelAnswer": {
"type": "boolean",
"required": false,
"title": "Show Model Answer",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"inputType": "Checkbox",
"validators": []
}
}
Expand All @@ -221,10 +191,7 @@
"type": "boolean",
"required": true,
"title": "Percentage based",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"inputType": "Checkbox",
"validators": []
},
"_scoreToPass": {
Expand All @@ -239,10 +206,7 @@
"type": "boolean",
"required": true,
"title": "Include in Total Score",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"inputType": "Checkbox",
"validators": []
},
"_assessmentWeight": {
Expand All @@ -257,10 +221,7 @@
"type": "boolean",
"required": true,
"title": "Reset on Revisit",
"inputType": {
"type": "Boolean",
"options": [false, true]
},
"inputType": "Checkbox",
"validators": []
},
"_attempts": {
Expand Down

0 comments on commit a714681

Please sign in to comment.