-
Notifications
You must be signed in to change notification settings - Fork 15
/
socialbase.json
126 lines (126 loc) · 3.68 KB
/
socialbase.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
{
"social" : {
"comments" : {
"your_comment_id" : {
"content" : "sample comment",
"created_at" : "created_at_timestamp",
"post_id" : "sample_post_id",
"updated_at" : "updated_at_timestamp",
"user_id" : "your_user_id"
}
},
"connections" : {
"from_user_id" : {
"created_at" : "created_at_timestamp",
"enabled" : true,
"state" : "confirmed",
"to_user_id" : "to_user_id_value",
"type" : "follow",
"updated_at" : "updated_at_timestamp"
}
},
"events" : {
"your_event_id" : {
"created_at" : "created_at_timestamp",
"enabled" : true,
"object" : {
"display_names" : {
"en" : "Title of the article"
},
"id" : "article_1",
"type" : "article",
"url" : "example.com/article1"
},
"owned" : false,
"type" : "event_type",
"updated_at" : "updated_at_timestamp",
"user_id" : "your_user_id",
"visibility" : 20
}
},
"likes" : {
"your_like_id" : {
"created_at" : "created_at_timestamp",
"post_id" : "sample_post_id",
"updated_at" : "updated_at_timestamp"
}
},
"posts" : {
"your_post_id" : {
"attachements" : [ {
"content" : "http://image.url/content1.png",
"name" : "image",
"type" : "url"
}, {
"content" : "sample status message",
"name" : "post",
"type" : "text"
} ],
"created_at" : "created_at_timestamp",
"is_liked" : false,
"tags" : [ "landscape", "walk", "outside" ],
"updated_at" : "updated_at_timestamp",
"user_id" : "posted_by_user_id",
"visibility" : 30
}
},
"search" : {
"by_email" : {
"email_in_base64" : {
"first_name" : "Mohamed Amine",
"id" : "my_user_id",
"last_name" : "Aboura",
"value" : "[email protected]"
}
},
"by_social_id" : {
"social_id_base64" : {
"first_name" : "Mohamed Amine",
"id" : "sample_user_id",
"last_name" : "Aboura",
"provider" : "fb",
"value" : "sample_social_id"
}
}
},
"users" : {
"893892" : {
"connections" : {
"followers" : [ "sample_connection_id", "sample_connection_id", "sample_connection_id" ],
"following" : [ "sample_connection_id", "sample_connection_id", "sample_connection_id" ]
},
"created_at" : "created_at_timestamp",
"custom_id" : 1,
"email" : "[email protected]",
"enabled" : true,
"feeds" : {
"comments" : [ "sample_comment_id", "sample_comment_id", "sample_comment_id" ],
"events" : [ "sample_event_id", "sample_event_id", "sample_event_id" ],
"likes" : [ "sample_like_id", "sample_like_id", "sample_like_id" ]
},
"first_name" : "Mohamed Amine",
"followed_count" : 0,
"follower_count" : 0,
"friend_count" : 0,
"last_login" : "sample_timestamp",
"last_name" : "Aboura",
"metadata" : {
"another_field" : "another_value",
"fav_food" : "seafood"
},
"session_token" : {
"expire" : "your_token_expiry_timestamp",
"value" : "your_session_token_here"
},
"social_ids" : {
"facebook" : "sample_facebook_id",
"google" : "sample_google_id",
"twitter" : "sample_twitter_id"
},
"updated_at" : "updated_at_timestamp",
"url" : "example.com/amaboura",
"user_name" : "amaboura"
}
}
}
}