-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-database.json
122 lines (122 loc) · 3.44 KB
/
test-database.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "Test Database",
"codename": "test-database",
"url": "https://test-database.com",
"savefile": "testdb",
"type": "database",
"license": "None",
"description": "To test triviology features. No real questions.",
"categories": [
{
"icon": "Icons.question_answer",
"text": "Test Category",
"id": 1
}
],
"total_questions": "3",
"total_categories": "1",
"total_difficulty_levels": "3",
"language": "en",
"questions_multiple": {
"1": {
"easy": [
{
"question": "What is the first letter of the English alphabet?",
"correct_answer": "A",
"incorrect_answers": [
"C",
"D",
"B"
]
}
],
"medium": [
{
"question": "What color is the sky on a clear day?",
"correct_answer": "Blue",
"incorrect_answers": [
"Green",
"Red",
"Yellow"
]
}
],
"hard": [
{
"question": "What is the capital of France?",
"correct_answer": "Paris",
"incorrect_answers": [
"London",
"Berlin",
"Madrid"
]
}
]
}
},
"questions_boolean": {
"1": {
"easy": [
{
"question": "Is C the first letter of the English alphabet?",
"correct_answer": "False",
"incorrect_answers": [
"True"
]
}
],
"medium": [
{
"question": "Is the capital of France Paris?",
"correct_answer": "True",
"incorrect_answers": [
"False"
]
},
{
"question": "Is water a solid at room temperature?",
"correct_answer": "False",
"incorrect_answers": [
"True"
]
}
],
"hard": [
{
"question": "Is the Great Wall of China visible from space?",
"correct_answer": "False",
"incorrect_answers": [
"True"
]
},
{
"question": "Is the chemical symbol for gold Au?",
"correct_answer": "True",
"incorrect_answers": [
"False"
]
}
]
}
},
"question_count": {
"1": {
"easy": {
"multiple": 1,
"boolean": 1,
"any": 2
},
"medium": {
"multiple": 1,
"boolean": 2,
"any": 3
},
"hard": {
"multiple": 1,
"boolean": 2,
"any": 2
}
}
},
"version": "v1.0.0"
}