-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.json
144 lines (144 loc) · 3.13 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"usuarios": [
{
"nome": "pedro",
"sobrenome": "henrique",
"telefone": "12212121221",
"email": "tesrtgmailcom",
"senha": "teste1234",
"user": "terapeuta",
"tipoDeAtendimento": "Presencial",
"valor": 204,
"bairro": "Mooca",
"id": 1
},
{
"nome": "paciente",
"sobrenome": "paciente",
"telefone": "21441242142",
"email": "pacientegmailcom",
"senha": "1234",
"user": "paciente",
"tipoDeAtendimento": null,
"valor": null,
"bairro": null,
"id": 2
},
{
"nome": "paciente",
"sobrenome": "paciente",
"telefone": "12442142142",
"email": "paciente@gmail.com",
"senha": "1234",
"user": "paciente",
"tipoDeAtendimento": null,
"valor": null,
"bairro": null,
"id": 3
},
{
"nome": "kleber",
"sobrenome": "machado",
"telefone": "21444124214",
"email": "kleber@gmail.com",
"senha": "1234",
"user": "terapeuta",
"tipoDeAtendimento": "Presencial",
"valor": 240,
"bairro": "Mooca",
"id": 4
},
{
"nome": "roger",
"sobrenome": "musical",
"telefone": "21441512512",
"email": "roger@gmail.com",
"senha": "1234",
"user": "terapeuta",
"tipoDeAtendimento": "Presencial e/ou online",
"valor": 240,
"bairro": "Penha",
"id": 5
},
{
"nome": "paciente",
"sobrenome": "jonas",
"telefone": "21212121122",
"email": "jonas@gmail.com",
"senha": "1234",
"user": "paciente",
"tipoDeAtendimento": null,
"valor": null,
"bairro": null,
"id": 6
},
{
"nome": "luis henrique",
"sobrenome": "fonseca",
"telefone": "12412421412",
"email": "luis@gmail.com",
"senha": "1234",
"user": "paciente",
"tipoDeAtendimento": null,
"valor": null,
"bairro": null,
"id": 7
},
{
"nome": "andre",
"sobrenome": "fonseca",
"telefone": "11215125125",
"email": "fonseca@gmail.com",
"senha": "1234",
"user": "paciente",
"tipoDeAtendimento": null,
"valor": null,
"bairro": null,
"id": 8
},
{
"nome": "santos",
"sobrenome": "fonseca",
"telefone": "11891257892",
"email": "santos@gmail.com",
"senha": "1234",
"user": "paciente",
"tipoDeAtendimento": null,
"valor": null,
"bairro": null,
"id": 9
}
],
"consultas": [
{
"email": "paciente@gmail.com",
"data": "2022-11-25T03:00:00.000Z",
"hora": "16:37",
"id": 1
},
{
"email": "paciente@gmail.com",
"data": "2022-11-17T03:00:00.000Z",
"hora": "19:43",
"id": 2
},
{
"email": "paciente@gmail.com",
"data": "2022-11-25T03:00:00.000Z",
"hora": "20:46",
"id": 3
},
{
"email": "fonseca@gmail.com",
"data": "2022-11-26T03:00:00.000Z",
"hora": "15:30",
"id": 4
},
{
"email": "santos@gmail.com",
"data": "2022-11-25T03:00:00.000Z",
"hora": "15:30",
"id": 5
}
]
}