UNPKG

@instructure/quiz-interactions

Version:

A React UI component Library for quiz interaction types.

64 lines (52 loc) 618 B
--- content_id: "121077945" title: Equivalence --- # Equivalence ## possible_choices: `"uuid1", "uuid2", "uuid3"` ## scoring_data: ```js { "value": "uuid1" } ``` ## Correct Case ### user_response: ```js { "value": "uuid1" } ``` ```js { "value":{ "uuid1": { "result_score": 1, "user_responded": true } } } ``` ## Incorrect Case ### user_response: ```js { "value": "uuid2" } ``` ### scored_data: ```js { "value": { "uuid1": { "result_score": 1, "user_responded": false }, "uuid2": { "result_score": 0, "user_responded": true } } } ```