-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfields.json
More file actions
249 lines (249 loc) · 6.65 KB
/
Copy pathfields.json
File metadata and controls
249 lines (249 loc) · 6.65 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
[
{
"id": "basket_product_name",
"type": "[]string",
"shortdesc": "All Products added to basket",
"longdesc": "List of all product names added to basket by the user.",
"is_pii": false,
"is_identifier": false,
"mergeop": "merge",
"tags": [
"basket",
"ecommerce",
"product"
]
},
{
"id": "basket_latest_product",
"type": "string",
"shortdesc": "Latest Item Added to Basket",
"longdesc": "The most recent product name added to the basket by the user.",
"is_pii": false,
"is_identifier": false,
"mergeop": "latest",
"tags": [
"basket",
"ecommerce",
"product"
]
},
{
"id": "basket_product_sku",
"type": "[]string",
"shortdesc": "All SKU's added to basket ",
"longdesc": "List of all product SKUs added to basket by the user.",
"is_pii": false,
"is_identifier": false,
"mergeop": "merge",
"tags": [
"basket",
"ecommerce",
"product"
]
},
{
"id": "basket_product_category",
"type": "[]string",
"shortdesc": "All Categories added to basket",
"longdesc": "List of all product categories added to bakset by the user.",
"is_pii": false,
"is_identifier": false,
"mergeop": "merge",
"tags": [
"basket",
"ecommerce",
"category"
]
},
{
"id": "basket_begin_checkout",
"type": "bool",
"shortdesc": "Started Checkout",
"longdesc": "Indicates whether the user initiated checkout.",
"is_pii": false,
"is_identifier": false,
"tags": [
"basket",
"checkout",
"purchase"
]
},
{
"id": "basket_complete_checkout",
"type": "bool",
"shortdesc": "Checkout Status",
"longdesc": "Status of checkout completion.",
"is_pii": false,
"is_identifier": false,
"tags": [
"basket",
"checkout",
"purchase"
]
},
{
"id": "basket_currency",
"type": "string",
"shortdesc": "Basket Currency",
"longdesc": "ISO currency code (e.g. USD, EUR, INR).",
"is_pii": false,
"is_identifier": false,
"mergeop": "latest",
"tags": [
"basket",
"ecommerce",
"currency"
]
},
{
"id": "country",
"type": "string",
"shortdesc": "Country",
"longdesc": "Shipping country available on checkout-related events.",
"is_pii": false,
"is_identifier": false,
"mergeop": "latest",
"tags": [
"customer",
"location",
"checkout"
]
},
{
"id": "basket_coupon_code",
"type": "string",
"shortdesc": "Coupon Code",
"longdesc": "Applied discount or promo code.",
"is_pii": false,
"is_identifier": false,
"mergeop": "latest",
"tags": [
"basket",
"discount",
"promotion"
]
},
{
"id": "basket_total",
"type": "number",
"shortdesc": "Cart Total",
"longdesc": "Total cart value after discounts and before taxes or shipping.",
"is_pii": false,
"is_identifier": false,
"mergeop": "latest",
"tags": [
"basket",
"cart",
"revenue"
]
},
{
"id": "products_viewed",
"type": "map[string]intsum",
"shortdesc": "Count of products viewed",
"longdesc": "A map of product IDs to the number of times each product has been viewed.",
"is_pii": false,
"is_identifier": false,
"mergeop": "sum",
"tags": [
"product",
"browsing",
"engagement"
]
},
{
"id": "products_viewed_categories",
"type": "map[string]intsum",
"shortdesc": "Count of products viewed by category",
"longdesc": "A map of product category names to the number of times products in each category have been viewed.",
"is_pii": false,
"is_identifier": false,
"mergeop": "sum",
"tags": [
"product",
"category",
"browsing",
"engagement"
]
},
{
"id": "topic_browsed",
"type": "map[string]intsum",
"shortdesc": "Count of topics browsed",
"longdesc": "A map of topic names to the number of times a user has browsed content under each topic.",
"is_pii": false,
"is_identifier": false,
"mergeop": "sum",
"tags": [
"topic",
"browsing",
"engagement"
]
},
{
"id": "products_purchased",
"type": "map[string]intsum",
"shortdesc": "Products Purchased",
"longdesc": "Count of products purchased by SKU.",
"is_pii": false,
"is_identifier": false,
"mergeop": "sum",
"tags": [
"purchase",
"product"
]
},
{
"id": "products_categories_purchased",
"type": "map[string]intsum",
"shortdesc": "Purchased Categories",
"longdesc": "Count of purchased categories.",
"is_pii": false,
"is_identifier": false,
"mergeop": "sum",
"tags": [
"purchase",
"category"
]
},
{
"id": "basket_count",
"type": "number",
"shortdesc": "Basket Item Count",
"longdesc": "Total number of items currently in the user's basket.",
"is_pii": false,
"is_identifier": false,
"mergeop": "latest",
"tags": [
"basket",
"ecommerce"
]
},
{
"id": "host_url",
"type": "string",
"shortdesc": "Website Host URL",
"longdesc": "The host URL of the website the user is visiting.",
"is_pii": false,
"is_identifier": false,
"mergeop": "latest",
"tags": [
"web",
"session"
]
},
{
"id": "recently_viewed_products",
"type": "map[string]string",
"shortdesc": "Recently Viewed Products",
"longdesc": "A map of viewed product IDs to the epoch-ms timestamp they were last viewed.",
"is_pii": false,
"is_identifier": false,
"mergeop": "merge",
"tags": [
"product",
"browsing",
"engagement"
]
}
]