-
Notifications
You must be signed in to change notification settings - Fork 1
/
db.json
98 lines (98 loc) · 2.59 KB
/
db.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
{
"users": [
{
"type": "student",
"email": "kenzinho@mail.com",
"password": "$2a$10$YQiiz0ANVwIgpOjYXPxc0O9H2XeX3m8OoY1xk7OGgxTnOJnsZU7FO",
"name": "Kenzinho",
"age": 11,
"id": 1,
"cpf": "00000000000",
"cpfParent": "99999999999",
"class": "502",
"grades": {
"mathematics": ["20", "10", "80"],
"portuguese": ["100", "90", "80"],
"sciences": ["100", "90", "80"],
"history": ["100", "90", "80"],
"geography": ["100", "90", "80"],
"art": ["100", "90", "80"],
"physicalEducation": ["100", "90", "80"]
}
},
{
"type": "parent",
"email": "responsavel@mail.com",
"password": "$2a$10$YQiiz0ANVwIgpOjYXPxc0O9H2XeX3m8OoY1xk7OGgxTnOJnsZU7FO",
"name": "João",
"age": 38,
"id": 2,
"cpf": "99999999999"
},
{
"type": "professor",
"email": "professor@mail.com",
"password": "$2a$10$YQiiz0ANVwIgpOjYXPxc0O9H2XeX3m8OoY1xk7OGgxTnOJnsZU7FO",
"name": "Cláudia",
"age": 45,
"id": 3,
"classes": ["501", "502"]
},
{
"type": "student",
"email": "kenzinho2@mail.com",
"password": "$2a$10$YQiiz0ANVwIgpOjYXPxc0O9H2XeX3m8OoY1xk7OGgxTnOJnsZU7FO",
"name": "Kenzinho2",
"age": 11,
"id": 4,
"cpf": "00000000001",
"cpfParent": "99999999999"
},
{
"type": "student",
"email": "kenzinho3@mail.com",
"password": "$2a$10$YQiiz0ANVwIgpOjYXPxc0O9H2XeX3m8OoY1xk7OGgxTnOJnsZU7FO",
"name": "Kenzinho3",
"age": 12,
"id": 5,
"cpf": "00000000000",
"cpfParent": "99999999999",
"class": "501",
"grades": {
"mathematics": ["10", "40", "80"],
"portuguese": ["100", "90", "80"],
"sciences": ["100", "90", "80"],
"history": ["100", "90", "80"],
"geography": ["100", "90", "80"],
"art": ["100", "90", "80"],
"physicalEducation": ["100", "90", "80"]
}
}
],
"classes": [
{
"class": "501",
"grades": {
"mathematics": ["", "", ""],
"portuguese": ["", "", ""],
"sciences": ["", "", ""],
"history": ["", "", ""],
"geography": ["", "", ""],
"art": ["", "", ""],
"physicalEducation": ["", "", ""]
}
},
{
"class": "502",
"grades": {
"mathematics": ["", "", ""],
"portuguese": ["", "", ""],
"sciences": ["", "", ""],
"history": ["", "", ""],
"geography": ["", "", ""],
"art": ["", "", ""],
"physicalEducation": ["", "", ""]
}
}
]
}