Question
Models a question of a quiz.
Supertype
None
Subtypes
FreeAnswerNumberQuestion, FreeAnswerTextQuestion, MultipleChoicesOneGoodAnswerQuestion, MultipleChoicesSeveralGoodAnswersQuestion, TrueFalseQuestion
JSON Representation
{
"title" : string
"type" : string
("media" : { "type" : string, "url" : URL },)
("goodAnswer" : value | value[])
}
Fields description
| Field | Meaning | Constraints |
|---|---|---|
title |
Title of the question. | Between 1 and 250 characters long. |
type |
Type of the question. | One of the Question subclass name, without the suffix "Question" : "FreeAnswerNumber", "FreeAnswerText", "MultipleChoicesOneGoodAnwer", "MultipleChoicesSeveralGoodAnwers", "TrueFalse". |
media |
Infos on the media associated to this question. |
Optional.
|
goodAnswer |
The good answer associated to this question. |
|