quiz: Add Quiz.introduction for an optional intro message
[quizzer.git] / quizzes / monty-python.json
1 {
2         "version": "0.1",
3         "introduction": "Test your knowledge of Monty Python and the Holy Grail!",
4         "questions": [
5                 {
6                         "class": "ChoiceQuestion",
7                         "prompt": "What is your name?",
8                         "answer": [
9                                 "Sir Lancelot",
10                                 "Sir Robin"
11                                 ],
12                         "help": "This should be easy"
13                 },
14                 {
15                         "prompt": "What is your quest?",
16                         "answer": "To seek the Holy Grail",
17                         "help": "Think like a Pythonista",
18                         "dependencies": [
19                                 "What is your name?"
20                                 ]
21                 },
22                 {
23                         "class": "NormalizedStringQuestion",
24                         "prompt": "What is your favourite color?",
25                         "answer": "blue",
26                         "help": "Channel Sir Lancelot",
27                         "dependencies": [
28                                 "What is your quest?"
29                                 ]
30                 },
31                 {
32                         "prompt": "What is the capital of Assyria?",
33                         "answer": "I don't know that",
34                         "help": "Sir Robin didn't know it either",
35                         "dependencies": [
36                                 "What is your quest?"
37                                 ]
38                 }
39         ]
40 }