-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdatabase.json
More file actions
156 lines (156 loc) · 4.54 KB
/
Copy pathdatabase.json
File metadata and controls
156 lines (156 loc) · 4.54 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
{
"users": {
"francis@gmail.com": {
"user_id": "francis@gmail.com",
"email": "francis@gmail.com",
"password": "wordpass",
"name": "Francis Maddumba",
"age": 20,
"location": "Dasmarinas, Cavite",
"bio": "i love star wars",
"skills": [
"Programming in Python",
"Programming in Java",
"Programming in C++",
"Programming in C"
],
"experiences": [],
"educations": [],
"post_ids": [
"1",
"2",
"4"
]
},
"chris@gmail.com": {
"user_id": "chris@gmail.com",
"email": "chris@gmail.com",
"password": "password",
"name": "",
"age": null,
"location": "",
"bio": "",
"skills": [],
"experiences": [],
"educations": [],
"post_ids": [
"3"
]
},
"johnrhei@gmail.com": {
"user_id": "johnrhei@gmail.com",
"email": "johnrhei@gmail.com",
"password": "password",
"name": "Johnrhei Matthew",
"age": 35,
"location": "Dagat ng Kawit",
"bio": "I really love video games",
"skills": [],
"experiences": [
{
"company": "DLSUD",
"role": "CS Professor",
"start_date": "Jan 2022",
"end_date": "May 2026",
"is_current": false
}
],
"educations": [],
"post_ids": []
},
"kyle@gmail.com": {
"user_id": "kyle@gmail.com",
"email": "kyle@gmail.com",
"password": "wordword",
"name": "",
"age": null,
"location": "",
"bio": "",
"skills": [],
"experiences": [],
"educations": [],
"post_ids": []
},
"leicester@gmail.com": {
"user_id": "leicester@gmail.com",
"email": "leicester@gmail.com",
"password": "qwertyuiop",
"name": "",
"age": null,
"location": "",
"bio": "",
"skills": [],
"experiences": [],
"educations": [],
"post_ids": []
},
"iggy@gmail.com": {
"user_id": "iggy@gmail.com",
"email": "iggy@gmail.com",
"password": "qwertyuiop",
"name": "",
"age": null,
"location": "",
"bio": "",
"skills": [],
"experiences": [],
"educations": [],
"post_ids": []
}
},
"posts": {
"1": {
"post_id": "1",
"author_id": "francis@gmail.com",
"author_name": "Francis Maddumba",
"content": "basta",
"timestamp": "2026-05-09 01:20",
"type": "job",
"job_title": "it tech",
"company": "dlsud",
"job_type": "fulltime"
},
"2": {
"post_id": "2",
"author_id": "francis@gmail.com",
"author_name": "Francis Maddumba",
"content": "I have successfully tabayed at SIKAPTala 2026",
"timestamp": "2026-05-15 11:09",
"type": "achievement",
"achievement_title": "SIKAPTala Tambay"
},
"3": {
"post_id": "3",
"author_id": "chris@gmail.com",
"author_name": "chris@gmail.com",
"content": "I enjoy being BCS11's President",
"timestamp": "2026-05-15 11:10",
"type": "text"
},
"4": {
"post_id": "4",
"author_id": "francis@gmail.com",
"author_name": "Francis Maddumba",
"content": "i want to be a banana",
"timestamp": "2026-05-17 11:15",
"type": "text"
}
},
"connections": [
{
"sender_id": "chris@gmail.com",
"receiver_id": "francis@gmail.com",
"status": "accepted"
},
{
"sender_id": "johnrhei@gmail.com",
"receiver_id": "francis@gmail.com",
"status": "pending"
},
{
"sender_id": "kyle@gmail.com",
"receiver_id": "francis@gmail.com",
"status": "pending"
}
]
}