1{
2 "datasetLinkName" : "transactionMapping",
3 “conditions” :[
4 {
5 “conditionsList”: [
6 {
7 "fieldName": "Product__c",
8 "value": "Nike",
9 "operator": "Matches" //Operator is optional
10 },
11 {
12 "fieldName": "Price__c",
13 "value": 1000,
14 "operator": "GreaterThan"
15 }
16 ]
17 },
18 {
19 “conditionsList”: [
20 {
21 "fieldName": "Product__c",
22 "value": "Adidas",
23 "operator": "Matches" //Operator is optional
24 },
25 {
26 "fieldName": "Price__c",
27 "value": 1500,
28 "operator": "GreaterThan"
29 }
30 ]