-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtennis.json
70 lines (70 loc) · 1.43 KB
/
tennis.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
59
60
61
62
63
64
65
66
67
68
69
70
{
"title": "Play Tennis",
"content": "Outlook",
"type": "nary",
"labels": [
{"text": "Sunny",
"value": 0},
{"text": "Overcast",
"value": 1},
{"text": "Rain",
"value": 2}
],
"children": [
{"value": 0,
"title": "Outlook: Sunny",
"content": "Humidity",
"type": "nary",
"labels": [
{"value": 0,
"text": "High"},
{"value": 1,
"text": "Normal"}
],
"children": [
{"value": 1,
"title": "Dry",
"content": "Let's play"
},
{"value": 0,
"title": "Humid",
"content": "Dark clouds in the Sky?",
"type": "binary",
"children": [
{"value": 1,
"title": "looks like rain",
"content": "Let's play some other day"
},
{"value": 0,
"title": "Blue sky",
"content": "Let's play"
}
]
}
]
},
{"value": 1,
"title": "Outlook: Overcast",
"content": "Let's play"
},
{"value": 2,
"title": "Outlook: Rain",
"content": "Wind",
"type": "nary",
"labels": [
{"value": 0,
"text": "Strong"},
{"value": 1,
"text": "Weak"}
],
"children": [
{"value": 0,
"title": "Strong wind",
"content": "Let's play some other day"},
{"value": 1,
"title": "Weak wind",
"content": "Let's play"}
]
}
]
}