-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsampleDT.json
More file actions
29 lines (29 loc) · 914 Bytes
/
sampleDT.json
File metadata and controls
29 lines (29 loc) · 914 Bytes
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
{
"rules": [
{
"conditions": [{ "field": "age", "operator": ">=", "value": 18 }],
"outcome": ["Adult", "Can Vote"],
"priority": 1
},
{
"conditions": [{ "field": "age", "operator": "<", "value": 18 }],
"outcome": "Minor",
"priority": 2
},
{
"conditions": [
{
"type": "OR",
"conditions": [
{ "field": "income", "operator": ">", "value": 50000 },
{ "field": "job_title", "operator": "IN", "value": ["CEO", "Manager"] }
]
},
{ "field": "age", "operator": ">=", "value": 30 }
],
"outcome": ["High Income Adult", "Eligible for Loan"],
"priority": 3
}
],
"defaultOutcome": "Unknown"
}