Items API Initialization
question_modifications
Controls whether custom modifications can be applied to certain Question types during an assessment session.
You would want to use this so that you can enable tailored changes to Questions for specific learners or contexts during an assessment.
Examples
// Enabling custom question modifications
var initializationOptions = {
"config": {
"question_modifications": {
"mcq": {
"distractor_reduction": {
"exclude": "single-select",
"minimum_distractors_count": 3,
"amount": 1
}
}
}
}
};
Values
Attribute path config.question_modifications
Type object
Properties
-
mcq object
Specifies the custom settings to apply only to Multiple choice Question types.