PassingRecord
org.sagebionetworks.repo.model.quiz.PassingRecord
A record of whether a given user passed a given test
Field | Type | Description |
---|---|---|
userId | STRING | The principal id of the user |
quizId | INTEGER | The id of the quiz |
responseId | INTEGER | The id of the user's response |
score | INTEGER | The score the user received on the test |
passed | BOOLEAN | Whether the user passed the given test |
passedOn | STRING | Date/time when the user passed the test (omitted if the user has not passed) |
revokedOn | STRING | Date/time when the passing record was revoked (omitted if the record was not revoked) |
revoked | BOOLEAN | True if the record is revoked, false otherwise |
certified | BOOLEAN | True if the record is not revoked and passed is true, false otherwise |
corrections | ARRAY<ResponseCorrectness> | For each response, whether it was correct |