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 | DEPRECATED: Same as createdOn. Date/time when the user submitted the response for this passing record. Note that this DOES NOT indicate when the user passed the certification quiz. |
createdOn | STRING | Date/time when this record was generated on a response submission (this will match the createdOn of a QuizResponse). |
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 |