-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeople_data.json
74 lines (74 loc) · 1.21 KB
/
people_data.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
[
{
"type": "Student",
"id": 1,
"name": "Jose",
"age": 10,
"parent_permission": true,
"classroom": null
},
{
"type": "Teacher",
"id": 2,
"name": "Juan",
"age": 35,
"parent_permission": true,
"specialization": "Math"
},
{
"type": "Teacher",
"id": 3,
"name": "Josefina",
"age": 46,
"parent_permission": true,
"specialization": "English"
},
{
"type": "Student",
"id": 4,
"name": "Stefan",
"age": 23,
"parent_permission": true,
"classroom": null
},
{
"type": "Student",
"id": 5,
"name": "Joaquin",
"age": 12,
"parent_permission": true,
"classroom": null
},
{
"type": "Teacher",
"id": 6,
"name": "Anita",
"age": 44,
"parent_permission": true,
"specialization": "Biology"
},
{
"type": "Student",
"id": 7,
"name": "Alejandro",
"age": 20,
"parent_permission": true,
"classroom": null
},
{
"type": "Student",
"id": 8,
"name": "Julio",
"age": 10,
"parent_permission": true,
"classroom": null
},
{
"type": "Student",
"id": 9,
"name": "Julio",
"age": 52,
"parent_permission": false,
"classroom": null
}
]