-
Notifications
You must be signed in to change notification settings - Fork 0
/
users.json
46 lines (46 loc) · 1.3 KB
/
users.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
[
{
"id": 1,
"username": "student1",
"email": "[email protected]",
"password": "student123",
"role": "student",
"attendance": [
{ "date": "2022-01-01", "status": "present" },
{ "date": "2022-01-02", "status": "absent" },
{ "date": "2022-01-03", "status": "present" }
],
"notes": [
{ "subject": "math", "notes": "Chapters 1 and 2 covered today" },
{ "subject": "history", "notes": "Lecture on World War II" }
],
"timetable": [
{ "day": "Monday", "subjects": ["math", "history"] },
{ "day": "Tuesday", "subjects": ["english", "science"] }
],
"profile": {
"name": "John Doe",
"qrCode": "abcdefghijklmnopqrstuvwxyz"
}
},
{
"id": 2,
"username": "teacher1",
"email": "[email protected]",
"password": "teacher123",
"role": "teacher",
"attendance": [],
"notes": [
{ "subject": "math", "notes": "Chapters 1 and 2 covered today" },
{ "subject": "history", "notes": "Lecture on World War II" }
],
"timetable": [
{ "day": "Monday", "subjects": ["math", "history"] },
{ "day": "Tuesday", "subjects": ["english", "science"] }
],
"classes": [
{ "subject": "math", "students": [1, 2, 3, 4] },
{ "subject": "history", "students": [1, 2, 3] }
]
}
]