File size: 632 Bytes
e18c302 | 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 | {
"weekend_premium_discount": {
"default": false,
"rules": {
"customer tier equals premium and its time for a discount": {
"when_match": true,
"conditions": [
{
"action": "EQUALS",
"key": "tier",
"value": "premium"
},
{
"action": "SCHEDULE_BETWEEN_DAYS_OF_WEEK",
"key": "CURRENT_DAY_OF_WEEK",
"value": {
"DAYS": [
"SATURDAY",
"SUNDAY"
],
"TIMEZONE": "America/New_York"
}
}
]
}
}
}
} |