Initialization Option Items API

ignore_question_attributes

Removes specified attributes from all Questions in the Activity before loading and rendering them in the assessment.

You would want to specify this option so that you can apply global overrides for all Questions in the assessment without having to edit each Question individually from your Item bank.

Examples

// Ignore the "shuffle_options" attribute in all Questions
var initializationOptions = {
    "config": {
        "ignore_question_attributes": [
            "shuffle_options"
        ]
    }
};

Values

Request object key config.ignore_question_attributes

Type array[string]

Related articles

Was this article helpful?