-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQuestionBank.json
More file actions
54 lines (54 loc) · 1.63 KB
/
QuestionBank.json
File metadata and controls
54 lines (54 loc) · 1.63 KB
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
{
"$schema": "./QuestionBank-schema.json",
"Questions_EN" : [
{
"question" : "Which is the largest continent in the world!",
"option_1" : "Asia",
"option_2" : "Africa",
"option_3" : "Antartica",
"option_4" : "Europe",
"correct_option" : 1,
"moreInfo" : "Asia is X sq meters in area",
"category": "GEOGRAPHY",
"level" : 3
},
{
"question" : "Who is the person in the picture?",
"option_1": {
"image" : "mtx1"
},
"option_2": {
"image" : "mtx2"
},
"option_3": {
"image" : "mtx3"
},
"option_4": {
"image" : "mtx4"
},
"correct_option" : 1,
"multimedia" : [
{
"id" : "mtx1",
"type" : "image",
"path" : "https://someimageserver.com/image12.png"
},
{
"id" : "mtx2",
"type" : "image",
"path" : "https://someimageserver.com/image13.png"
},
{
"id" : "mtx3",
"type" : "image",
"path" : "https://someimageserver.com/image14.png"
},
{
"id" : "mtx4",
"type" : "image",
"path" : "https://someimageserver.com/image15.png"
}
]
}
]
}