-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestdatabase.json
More file actions
95 lines (95 loc) · 3.04 KB
/
testdatabase.json
File metadata and controls
95 lines (95 loc) · 3.04 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
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
{
"classes": {
"classId": {
"name": "Grade 1 Math",
"owner": "Ms. Apple",
"students": ["student1Id","student2Id"],
"sets": ["set1Id","set2Id"]
}
},
"sets": {
"set1Id": {
"name": "Addition Practice",
"description": "A few additional practice questions",
"questions": [
{
"question": "What is 1 + 1?",
"time": 60
},
{
"question": "What is 3 + 7?",
"time": 420
}
]
},
"set2Id": {
"name": "Subtraction Practice",
"description": "A few more practice questions",
"questions": [
{
"question": "What is 4 - 3?",
"time": 90
},
{
"question": "What is 10 - 9?",
"time": 600
}
]
}
},
"students": {
"student1Id": {
"name": "Vitamin Water",
"age": 5,
"classes": {
"classId": {
"done": {
"set1Id": {
"questions": [
{
"time": 40,
"image": "path/to/image1",
"feedback": {
"image": "path/to/feedback1",
"text": "Very well done, Vitamin Water."
}
},
{
"time": 250,
"image": "path/to/image1"
}
]
}
}
}
}
},
"student2Id": {
"name": "Milk Tea",
"age": 7,
"classes": {
"classId": {
"completed": {
"set1Id": {
"images": ["path/to/img1", "path/to/img2"],
"feedback": [
{
"image": "path/to/feedback1",
"text": "Good thinking, Milk Tea."
},
{
"image": "path/to/feedback2",
"text": "Correct answer but please show your work more carefully!"
}
]
},
"set2Id": {
"images": ["path/to/img1", "path/to/img2"],
"feedback": []
}
}
}
}
}
}
}