14 lines
347 B
JavaScript
14 lines
347 B
JavaScript
module.exports.default = {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {"type": "string"},
|
|
"num_tests": {"type": "number"},
|
|
"num_questions_per_test": {"type": "number"},
|
|
"answers": {
|
|
"type": "array",
|
|
"items": { "type": "string" }
|
|
}
|
|
},
|
|
"required": ["name", "num_tests", "num_questions_per_test", "answers"]
|
|
};
|