-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.json
58 lines (58 loc) · 1.05 KB
/
rules.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
{
"rules": [
{
"username": "unilever",
"rule": "x_for_y",
"rule_params": {
"ad": "classic",
"xCount": 3,
"yCount": 2
}
},
{
"username": "apple",
"rule": "price_drop",
"rule_params": {
"ad": "standout",
"discountedPrice": 299.99,
"countOrMore": 1
}
},
{
"username": "nike",
"rule": "price_drop",
"rule_params": {
"ad": "premium",
"discountedPrice": 379.99,
"countOrMore": 4
}
},
{
"username": "ford",
"rule": "x_for_y",
"rule_params": {
"ad": "classic",
"xCount": 5,
"yCount": 4
}
},
{
"username": "ford",
"rule": "price_drop",
"rule_params": {
"ad": "standout",
"discountedPrice": 309.99,
"countOrMore": 1
}
},
{
"username": "ford",
"rule": "price_drop",
"rule_params": {
"ad": "premium",
"discountedPrice": 389.99,
"countOrMore": 3
}
}
]
}