-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdb.json
69 lines (69 loc) · 1.63 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
{
"users": [
{
"id": 1,
"name": "Jhon",
"lastname": "Doe",
"picture": "user.png",
"phone": "1234567890",
"address": "1234 Main St",
"username": "jdoe",
"password": "123456",
"about": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero.",
"gender": ""
}
],
"saved_posts": [
{
"user_id": 1,
"post_id": 1,
"created_at": "2024-10-28T01:40:44.744Z",
"id": 1
}
],
"posts": [
{
"name": "firma",
"pet_type": "CAT",
"pet_gender": null,
"pet_description": "Pweo",
"pet_size": "MEDIUM",
"pet_age": "YOUNG",
"latitude": null,
"longitude": null,
"picture": "https://res.cloudinary.com/dwkizli4g/image/upload/v1730057031/evvt4gifzpnw0ml8o434.jpg",
"pet_state": "LOST",
"date_lost": "2024-10-14T19:24:00.000Z",
"id": 1
},
{
"name": "firma 2",
"pet_type": "CAT",
"pet_gender": null,
"pet_description": "Pweo",
"pet_size": "MEDIUM",
"pet_age": "YOUNG",
"latitude": null,
"longitude": null,
"picture": "https://res.cloudinary.com/dwkizli4g/image/upload/v1730057031/evvt4gifzpnw0ml8o434.jpg",
"pet_state": "LOST",
"date_lost": "2024-10-14T19:24:00.000Z",
"id": 1
}
],
"comments": [
{
"post_id": "1",
"user_id": 1,
"text": "Hola",
"timestamp": "2024-10-04T22:52:30.118Z",
"id": 1
},
{
"post_id": "cm2fbo3cr000dz4dvivk5mcc9",
"text": "Hola mascota",
"timestamp": "2024-10-18T22:49:43.691Z",
"id": 2
}
]
}