-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmappings.json
More file actions
77 lines (77 loc) · 1.87 KB
/
Copy pathmappings.json
File metadata and controls
77 lines (77 loc) · 1.87 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
[
{
"field": "basket_product_name",
"expr": "set(product_name)",
"guard_expr": "eq(trigger, \"item_add\")",
"stream": "default"
},
{
"field": "basket_product_sku",
"expr": "set(product_sku)",
"guard_expr": "eq(trigger, \"item_add\")",
"stream": "default"
},
{
"field": "basket_product_category",
"expr": "set(categories)",
"guard_expr": "eq(trigger, \"item_add\")",
"stream": "default"
},
{
"field": "basket_begin_checkout",
"expr": "purchase_started",
"stream": "default"
},
{
"field": "basket_complete_checkout",
"expr": "purchase_completed",
"stream": "default"
},
{
"field": "basket_currency",
"expr": "currency",
"stream": "default"
},
{
"field": "country",
"expr": "country",
"stream": "default"
},
{
"field": "basket_coupon_code",
"expr": "coupon_code",
"stream": "default"
},
{
"field": "basket_total",
"expr": "cart_total",
"stream": "default"
},
{
"field": "products_viewed",
"expr": "map(product_viewed, 1)",
"stream": "default"
},
{
"field": "products_viewed_categories",
"expr": "map(product_viewed_category, 1)",
"stream": "default"
},
{
"field": "products_purchased",
"expr": "map(products.sku, products.quantity)",
"guard_expr": "eq(trigger, \"purchase\")",
"stream": "default"
},
{
"field": "products_categories_purchased",
"expr": "map(products.categories, 1)",
"guard_expr": "eq(trigger, \"purchase\")",
"stream": "default"
},
{
"field": "topic_browsed",
"expr": "map(topic_browsed, 1)",
"stream": "default"
}
]