11export default {
22 $schema : "http://json-schema.org/draft-07/schema#" ,
3- $id : "http ://coderoad.io/tutorial_version. schema.json" ,
4- title : "Tutorial Version " ,
3+ $id : "https ://coderoad.io/tutorial- schema.json" ,
4+ title : "Tutorial Schema " ,
55 description :
6- "A CodeRoad tutorial version . This JSON data is converted into a tutorial with the CodeRoad editor extension" ,
6+ "A CodeRoad tutorial schema data . This JSON data is converted into a tutorial with the CodeRoad editor extension" ,
77 definitions : {
88 semantic_version : {
99 type : "string" ,
@@ -39,7 +39,7 @@ export default {
3939 "An array of files which will be opened by the editor when entering the level or step" ,
4040 items : {
4141 $ref : "#/definitions/file_path" ,
42- uniqueItems : true ,
42+ // uniqueItems: true,
4343 } ,
4444 } ,
4545 command_array : {
@@ -57,7 +57,7 @@ export default {
5757 "An array of git commits which will be loaded when the level/step or solution is loaded" ,
5858 items : {
5959 $ref : "#/definitions/sha1_hash" ,
60- uniqueItems : true ,
60+ // uniqueItems: true,
6161 } ,
6262 minItems : 1 ,
6363 } ,
@@ -79,7 +79,7 @@ export default {
7979 type : "array" ,
8080 items : {
8181 $ref : "#/definitions/file_path" ,
82- uniqueItems : true ,
82+ // uniqueItems: true,
8383 } ,
8484 description :
8585 "An array file paths that, when updated, will trigger the test runner to run" ,
0 commit comments