-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongo_collections_full.json
68 lines (68 loc) · 1.59 KB
/
mongo_collections_full.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
{
"Users": [
{
"user_id": "unique_id_1",
"username": "user1",
"email": "user1@example.com",
"password": "hashed_password",
"profile": {
"name": "John Doe",
"avatar": "url_to_avatar",
"bio": "Short bio about John"
},
"rewards": 100,
"playlists": ["playlist_id_1", "playlist_id_2"],
"role": "regular"
}
],
"Videos": [
{
"video_id": "unique_video_id_1",
"title": "Sample Video",
"description": "This is a sample video description.",
"url": "url_to_video_file",
"thumbnail": "url_to_thumbnail",
"status": "approved",
"uploader": "unique_id_1",
"booking_url": "url_to_booking_site",
"reports": [],
"metadata": {
"duration": "10 mins",
"format": "mp4"
}
}
],
"Playlists": [
{
"playlist_id": "playlist_id_1",
"name": "Favorite Videos",
"videos": ["unique_video_id_1"],
"owner": "unique_id_1"
}
],
"Reports": [
{
"report_id": "unique_report_id_1",
"video": "unique_video_id_1",
"reporter": "unique_id_1",
"reason": "Inappropriate content",
"timestamp": "2023-10-12T10:00:00Z"
}
],
"LicenseeBuckets": [
{
"bucket_id": "unique_bucket_id_1",
"videos": ["unique_video_id_1"],
"owner": "unique_licensee_id_1"
}
],
"Transactions": [
{
"transaction_id": "unique_transaction_id_1",
"licensee": "unique_licensee_id_1",
"video": "unique_video_id_1",
"amount": 10.00,
"timestamp": "2023-10-12T10:05:00Z"
}
]
}