-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
131 lines (131 loc) · 2.94 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
{
"posts": [
{
"id": 1,
"title": "json-server",
"author": "typicode"
}
],
"comments": [
{
"id": 1,
"body": "some comment",
"postId": 1
}
],
"profile": {
"name": "typicode"
},
"message": [
{
"id": "1",
"user_id": "user123",
"message": "Hello there!",
"created_at": "2024-04-01T12:30:45Z",
"is_approved": true,
"name": "John Doe"
},
{
"id": "2",
"user_id": "user456",
"message": "Hey, how are you?",
"created_at": "2024-04-02T09:15:22Z",
"is_approved": false
},
{
"id": "3",
"user_id": "user789",
"message": "I'm doing great, thanks!",
"created_at": "2024-04-03T18:00:00Z",
"is_approved": true,
"name": "Alice Smith"
},
{
"id": "4",
"user_id": "user321",
"message": "What's new?",
"created_at": "2024-04-04T14:20:10Z",
"is_approved": true
},
{
"id": "5",
"user_id": "user654",
"message": "Not much, just working.",
"created_at": "2024-04-05T10:45:30Z",
"is_approved": false
},
{
"id": "6",
"user_id": "user987",
"message": "How about you?",
"created_at": "2024-04-06T16:55:00Z",
"is_approved": true,
"name": "Emily Johnson"
},
{
"id": "7",
"user_id": "user135",
"message": "Same here, busy with projects.",
"created_at": "2024-04-07T13:10:20Z",
"is_approved": true
},
{
"id": "8",
"user_id": "user246",
"message": "We should catch up soon.",
"created_at": "2024-04-08T20:00:00Z",
"is_approved": false,
"name": "Michael Brown"
},
{
"id": "9",
"user_id": "user579",
"message": "Definitely, let's plan something.",
"created_at": "2024-04-09T11:30:15Z",
"is_approved": true
},
{
"id": "10",
"user_id": "user369",
"message": "I'm free next weekend.",
"created_at": "2024-04-10T09:45:30Z",
"is_approved": true,
"name": "Sophia Miller"
},
{
"id": "11",
"user_id": "user753",
"message": "Sounds good, I'll check my schedule.",
"created_at": "2024-04-11T17:20:40Z",
"is_approved": false
},
{
"id": "12",
"user_id": "user852",
"message": "Let me know when you're available.",
"created_at": "2024-04-12T14:00:00Z",
"is_approved": true
},
{
"id": "13",
"user_id": "user147",
"message": "Sure, I'll send you a message.",
"created_at": "2024-04-13T12:10:25Z",
"is_approved": false
},
{
"id": "14",
"user_id": "user369",
"message": "Great, looking forward to it.",
"created_at": "2024-04-14T19:30:00Z",
"is_approved": true
},
{
"id": "15",
"user_id": "user852",
"message": "Me too, take care!",
"created_at": "2024-04-15T08:45:00Z",
"is_approved": true
}
]
}