projekt/data/criteria.json

166 lines
3.3 KiB
JSON
Raw Normal View History

2024-10-16 08:40:14 +00:00
{
"criteria": [
{
"id": 1,
"name": "Tardiness"
},
{
"id": 2,
"name": "Disruption"
},
{
"id": 3,
"name": "Disrespect towards teachers"
},
{
"id": 4,
"name": "Participation in class"
},
{
"id": 5,
"name": "Preparedness for class"
},
{
"id": 6,
"name": "Attendance"
},
{
"id": 7,
"name": "Involvement in projects"
},
{
"id": 8,
"name": "Warning from homeroom teacher"
},
{
"id": 9,
"name": "Warning from principal"
},
{
"id": 10,
"name": "Achievements in competitions"
},
{
"id": 11,
"name": "Representing the school"
},
{
"id": 12,
"name": "Independence"
},
{
"id": 13,
"name": "Engagement in lessons"
}
],
"categories": [
{
"id": "behavior",
"name": "Behavior",
"criteria_ids": [
1,
2,
3,
4
]
},
{
"id": "responsibility",
"name": "Responsibility",
"criteria_ids": [
5,
6,
7
]
},
{
"id": "discipline",
"name": "Discipline",
"criteria_ids": [
8,
9
]
},
{
"id": "achievement",
"name": "Achievements",
"criteria_ids": [
10,
11
]
},
{
"id": "self_assessment",
"name": "Self-Assessment",
"criteria_ids": [
12,
13
]
}
],
"roles": {
"teacher": {
2024-10-18 08:30:42 +00:00
"name": "Teacher",
2024-10-16 08:40:14 +00:00
"criteria_ids": [
1,
2,
3,
4,
5,
6,
7
]
},
"homeroom_teacher": {
2024-10-18 08:30:42 +00:00
"name": "Homeroom Teacher",
2024-10-16 08:40:14 +00:00
"criteria_ids": [
1,
2,
3,
4,
5,
6,
7,
8
]
},
"principal": {
2024-10-18 08:30:42 +00:00
"name": "Principal",
2024-10-16 08:40:14 +00:00
"criteria_ids": [
8,
9,
10,
11
]
},
"student": {
2024-10-18 08:30:42 +00:00
"name": "Student",
2024-10-16 08:40:14 +00:00
"criteria_ids": [
12,
13
]
}
},
"people": [
{
"name": "M. Pabiszczak",
"roles": [
"teacher",
"homeroom_teacher"
]
},
{
"name": "A. Nowak",
"roles": [
"principal"
]
},
{
"name": "K. Kowalski",
"roles": [
"teacher"
]
}
]
}