From be3183342ca3018ba235aa2ad7c71c7ad400f584 Mon Sep 17 00:00:00 2001 From: Simon Date Date: Mon, 20 Feb 2017 16:10:54 +0000 Subject: [PATCH 1/2] Schema - Changed Items to Answers Schema change so it is easier for course creators to understand what each attribute does. --- properties.schema | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/properties.schema b/properties.schema index 6a2cc6c..1e04428 100644 --- a/properties.schema +++ b/properties.schema @@ -33,7 +33,8 @@ "_items": { "type":"array", "required":true, - "title": "Items", + "title": "Answers", + "help": "The possible answers available to the learner", "items": { "type":"object", "required":true, @@ -45,7 +46,7 @@ "title": "Item Text", "inputType": "Text", "validators": ["required"], - "help": "This text will display as the item text", + "help": "This text will display as the answer text", "translatable": true }, "_shouldBeSelected": { From b05c7ba0ac882b0dfce4d4dbe5969ad92083718b Mon Sep 17 00:00:00 2001 From: Simon Date Date: Mon, 20 Feb 2017 16:28:54 +0000 Subject: [PATCH 2/2] Update properties.schema --- properties.schema | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/properties.schema b/properties.schema index 1e04428..d363c43 100644 --- a/properties.schema +++ b/properties.schema @@ -43,7 +43,7 @@ "type":"string", "required":true, "default": "", - "title": "Item Text", + "title": "Answer Text", "inputType": "Text", "validators": ["required"], "help": "This text will display as the answer text",