-
Notifications
You must be signed in to change notification settings - Fork 8
/
db.json
executable file
·36 lines (36 loc) · 952 Bytes
/
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
{
"alunos":[
{
"id": 1,
"nome": "Aluno Exemplo",
"email": "exemplo@estrategia.com.br",
"dataNascimento": "10/10/2015",
"estado": "AC",
"cursos": [
"direito-administrativo ",
"informatica "
]
},
{
"id": 2,
"nome": "Raphael Henrique Lacerda Pinho",
"email": "lacerdaph@gmail.com",
"dataNascimento": "10/10/2015",
"estado": "DF",
"cursos": [
"direito-administrativo ",
"direito-constitucional "
]
},
{
"id": 3,
"nome": "João Gordo",
"email": "panelaço@estrategia.com.br",
"dataNascimento": "24/04/1956",
"estado": "SP",
"cursos": [
"direito-constitucional "
]
}
]
}