const courseSchema = { "type": "object", "properties": { "name": {"type": "string"}, "num_tests": {"type": "number"}, "num_questions_per_test": {"type": "number"}, "answers": {"type": "array"} }, "required": ["name", "num_tests", "num_questions_per_test", "answers"] }; module.exports = { courseSchema };