-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.json
95 lines (95 loc) · 2.2 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
{
"lostpets": [
{
"pet": {
"name": "teo",
"type": "dog",
"age": {
"number": "3",
"type": "year"
},
"sex": "female",
"breed": "",
"size": "small",
"lostDate": "2024-10-04T05:00:00.000Z",
"location": {
"latitude": -12.140414715481612,
"longitude": -77.03571261376955
},
"state": "lost",
"image": {},
"description": ""
},
"contact": {
"name": "Jane",
"phone": "999165999",
"address": "Av. 7 de Abril 2020, Lima"
},
"userId": "4ec0d485-8f54-429e-8ed7-ef9e9aa17d75",
"id": 1
}
],
"adoptionpets": [
{
"pet": {
"name": "kiara",
"type": "dog",
"age": {
"number": "4",
"type": "year"
},
"sex": "female",
"breed": "",
"size": "small",
"location": {
"latitude": -12.145648618705778,
"longitude": -77.03296603173811
},
"state": "available",
"image": {},
"description": ""
},
"contact": {
"name": "Jane",
"phone": "999165999",
"address": "Av. 7 de Abril 2020, Lima"
},
"userId": "4ec0d485-8f54-429e-8ed7-ef9e9aa17d75",
"id": 1
}
],
"users": [
{
"id": "4ec0d485-8f54-429e-8ed7-ef9e9aa17d75",
"name": "Anna",
"email": "[email protected]",
"password": "123456",
"phone": "999165999",
"address": "Av 7 de Abril - Punta Hermosa"
},
{
"id": "bcd7c40c-afaa-4a37-b8db-1db7ae76bf25",
"name": "Luis",
"email": "[email protected]",
"password": "123456",
"phone": "999111999",
"address": "Av 7 de Abril - Punta Hermosa"
},
{
"id": "32860882-b4e7-4426-84e0-abdcc58611ff",
"name": "Teo",
"email": "[email protected]",
"password": "123456",
"phone": "999123999",
"address": "Av. 7 de Abril - Punta Hermosa"
},
{
"id": "a8517a14-6304-4925-bad2-3784865010dd",
"name": "Emilio",
"email": "[email protected]",
"password": "123456",
"phone": "912123123",
"address": "Av. 28 de Julio"
}
]
}