Skip to main content
Version: v1.0.1

RepeatedComponentBlockCondition

The RepeatedComponentBlockCondition interface is used to define a SkipCondition based on the number of correct or incorrect repeated components. You might use this if you need to check if an attention check was failed multiple times. This is similar to the ComponentBlockCondition, but it only checks a specific repeated component.

Here's an example of how to use the RepeatedComponentBlockCondition:

{
...
"skip": [
{
"name": "attentionCheck",
"check": "repeatedComponent",
"condition": "numIncorrect",
"value": 2,
"to": "end"
}
]
...
}

In this example, when the number of incorrect responses to the repeated component with the name "attentionCheck" is two, the participant will be redirected to the end of the study. If the number of incorrect responses is less than two, the participant will continue to the next component in the sequence.

Properties

PropertyTypeDescription
check"repeatedComponent"The check we'll perform.
condition"numCorrect" | "numIncorrect"The condition to check.
namestringThe name of the repeated component to check (e.g. attentionCheck).
tostringThe id of the component or block to skip to
valuenumberThe number of correct or incorrect responses to check for.