-
Notifications
You must be signed in to change notification settings - Fork 1
/
json_exemplo.json
50 lines (50 loc) · 1.05 KB
/
json_exemplo.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
{
"horario": {
"horario_inicio": "7:00",
"horario_fim": "18:00",
"almoco": {
"inicio": "12:00",
"fim": "13:00"
},
"duracao_hora_aula": 1,
"intervalo_minutos_entre_aulas": 10,
"dias_semana": [
"Segunda",
"Terça",
"Quarta",
"Quinta",
"Sexta"
]
},
"curso": {
"quantidade_turmas": 5,
"maximo_aulas_dia": 2,
"disciplinas": [
{
"nome": "Sistemas Operacionais",
"restrição_horario": "livre",
"sigla": "SO"
},
{
"nome": "Métodos Formais",
"restrição_horario": "livre",
"sigla": "MF"
},
{
"nome": "Organização de Computadores",
"restrição_horario": "livre",
"sigla": "OC"
},
{
"nome": "Compiladores",
"restrição_horario": "livre",
"sigla": "CO"
},
{
"nome": "Inteligência Artificial",
"restrição_horario": "07:00 - 12:00",
"sigla": "IA"
}
]
}
}