MemoryTask.Prompt
Description
The MemoryTask.Prompt
type defines a special case of component used within a
MemoryTask
. A prompt includes a list of
related words, one of which corresponds to the given correct word.
Properties
correct
(MemoryTask.Word
, required) - The correct word.words
(Array<MemoryTask.Word>
, required) - A list of words from which an end user must select one.
Example
{
"correct" : {
"category" : "Body",
"label" : "Hand",
"value" : "Hand"
},
"words" : [
{
"category" : "Body",
"label" : "Elbow",
"value" : "Elbow"
},
{
"category" : "Body",
"label" : "Hand",
"value" : "Hand"
},
{
"category" : "Body",
"label" : "Knee",
"value" : "Knee"
},
{
"category" : "Body",
"label" : "Foot",
"value" : "Foot"
}
]
}