-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
98 lines (98 loc) · 2.68 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
{
"users": [
{
"id": "501",
"name": "Leonard Hofstadter",
"role": "driver",
"profilePicture": "https://images.unsplash.com/photo-1539571696357-5a69c17a67c6?q=80&w=500&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
"earnings": 1560.065,
"review": 4.9
},
{
"id": "502",
"name": "Bob Williams",
"role": "driver",
"profilePicture": "https://example.com/driver2.png",
"earnings": 2000,
"review": 4.8
},
{
"id": "101",
"name": "David Lee",
"role": "customer",
"profilePicture": "https://images.unsplash.com/photo-1492562080023-ab3db95bfbce?q=80&w=500&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
},
{
"id": "102",
"name": "Emily Garcia",
"role": "customer",
"profilePicture": "https://images.unsplash.com/photo-1521566652839-697aa473761a?q=80&w=500&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
}
],
"rideRequests": [
{
"id": "sakay-001",
"userId": "101",
"driverId": null,
"pickupLocation": {
"latitude": 14.298239,
"longitude": 121.033009
},
"destination": {
"latitude": 14.3016156,
"longitude": 121.0449762
},
"status": "pending",
"pickupTime": "2024-10-15T02:00:00.000000Z",
"timestamp": "2024-10-15T01:00:00.000000Z"
},
{
"id": "sakay-002",
"userId": "102",
"driverId": null,
"pickupLocation": {
"latitude": 14.294027,
"longitude": 121.03733
},
"destination": {
"latitude": 14.289645,
"longitude": 121.0415979
},
"status": "pending",
"pickupTime": "2024-10-15T03:00:00.000000Z",
"timestamp": "2024-10-15T02:00:00.000000Z"
},
{
"id": "sakay-003",
"userId": "101",
"driverId": null,
"pickupLocation": {
"latitude": 14.304904,
"longitude": 121.0424115
},
"destination": {
"latitude": 14.3048547,
"longitude": 121.0358095
},
"status": "pending",
"pickupTime": "2024-10-15T04:00:00.000000Z",
"timestamp": "2024-10-15T03:00:00.000000Z"
},
{
"id": "sakay-004",
"userId": "102",
"driverId": null,
"pickupLocation": {
"latitude": 14.296789,
"longitude": 121.030156
},
"destination": {
"latitude": 14.292345,
"longitude": 121.039876
},
"status": "pending",
"pickupTime": "2024-10-15T05:00:00.000000Z",
"timestamp": "2024-10-15T04:00:00.000000Z"
}
]
}