QuestionAnswered object

A drill or test question was answered.

Examples

For test answers the payload contains the progress.

{
  "type": "TEST",
  "progress": 42
}

For drill answers the payload includes the up-to-date proficiency, whether the given answer was correct, and an estimate for the time spent, expressed in seconds, by the learner on this drill. If a single drill is being practiced, the drill ID is also included.

{
  "type": "DRILL",
  "id": "6oh1EsxpJYqEcNuRwxS76Q",
  "proficiency": {
    "current": 42,
    "highest": 80
  },
  "timeSpent": 542,
  "correct": true
}