revaturelabs / caliber-2-meta

Meta Repository for Caliber 2
5 stars 1 forks source link

Import Grades from JSON #6

Open Quinn-Donnelly opened 5 years ago

Quinn-Donnelly commented 5 years ago

ISSUE KEY: CAL-48

Issue Description

RevaturePro will be able to export quiz data as JSON. Trainers can then import grades into Caliber. This will create the assessments and key in the grades for each associate automagically

Value Add (feature)

Save time and increased accuracy on evaluations.

{
    "quizzes": [
        {
            "title" : "Core Java Week 1",
            "category": "Java",
            "grades" : [
                {
                    "trainee": "ghijkl5678",
                    "grade": 75
                },
                {
                    "trainee": "abcdef1234",
                    "grade": 87
                }
            ]
        },
        {
            "title" : "JUnit",
            "category": "JUnit",
            "grades" : [
                {
                    "trainee": "ghijkl5678",
                    "grade": 81
                },
                {
                    "trainee": "abcdef1234",
                    "grade": 65
                }
            ]
        }
    ]
}
Quinn-Donnelly commented 5 years ago

This issue has been pulled from the current sprint and will be worked on in future iterations.