-
Notifications
You must be signed in to change notification settings - Fork 38
/
users.json
107 lines (107 loc) · 2.97 KB
/
users.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
{
"name": "users",
"description": "This table contains all user records of Bindle.",
"columns": [
{
"name": "id",
"key": true,
"description": "Unique identifier of a user.",
"type": "number"
},
{
"name": "email",
"type": "text",
"description": "User’s email, unique."
},
{
"name": "first_name",
"type": "text",
"description": "User’s first name."
},
{
"name": "last_name",
"type": "text",
"description": "User’s last name."
},
{
"name": "country",
"type": "text",
"description": "User’s signup country."
},
{
"name": "signup_date",
"type": "date",
"description": "Date when user signed up."
},
{
"name": "created_at",
"type": "datetime",
"description": "Timestamp when user record was created, we can treat it as signup date and time."
},
{
"name": "status",
"type": "text",
"description": "What status user has in Bindle, could be free (can read only free books) or customer (user who purchased a subscription, can read all books)."
},
{
"name": "age",
"type": "integer",
"description": "User’s age."
},
{
"name": "referrer_id",
"type": "integer",
"description": "id of another user who referred this user (this is usually set when users sign up via referral link)."
},
{
"name": "visitor_id",
"type": "text",
"description": "Identifier of a user in the web_analytics.pageviews table. Generated by a web analytics system and stored in a cookie."
},
{
"name": "utm_source",
"type": "text",
"description": "utm_source in URL when user signed up, used for marketing attribution"
},
{
"name": "utm_campaign",
"type": "text",
"description": "utm_campaign in URL when user signed up, used for marketing attribution"
},
{
"name": "utm_term",
"type": "text",
"description": "utm_term in URL when user signed up, used for marketing attribution"
},
{
"name": "utm_content",
"type": "text",
"description": "utm_content in URL when user signed up, used for marketing attribution"
},
{
"name": "utm_medium",
"type": "text",
"description": "utm_medium in URL when user signed up, used for marketing attribution"
},
{
"name": "adjust_tracker",
"type": "text",
"description": "Adjust tracker in case user signed up via an Adjust link https://app.adjust.com/gxel3d1."
},
{
"name": "adjust_campaign",
"type": "text",
"description": "The value of campaign paramenter in Adjust URL."
},
{
"name": "adjust_adgroup",
"type": "text",
"description": "The value of adgroup paramenter in Adjust URL."
},
{
"name": "adjust_creative",
"type": "text",
"description": "The value of creative paramenter in Adjust URL."
}
]
}