diff --git a/components/rsptx/data_types/question_type.py b/components/rsptx/data_types/question_type.py index f5964ed02..31f6c827d 100644 --- a/components/rsptx/data_types/question_type.py +++ b/components/rsptx/data_types/question_type.py @@ -61,6 +61,18 @@ class QuestionType(Enum): "Embed external content using an iFrame", ) + DOENET = ( + "doenet", + "Doenet", + "Embed an interactive activity using Doenet", + ) + + SPLICE = ( + "splice", + "SPLICE", + "Embed an external interactive activity using SPLICE", + ) + def to_dict(self): return { "value": self.value[0],