-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample.json
42 lines (42 loc) · 870 Bytes
/
sample.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
{
"machine": {
"outlets": {
"count_n": 3
},
"beverages": {
"hot_tea": {
"hot_milk": 100,
"hot_water": 200,
"sugar_syrup": 10,
"ginger_syrup": 10,
"tea_leaves_syrup": 30
},
"black_tea": {
"hot_water": 300,
"sugar_syrup": 50,
"ginger_syrup": 30,
"tea_leaves_syrup": 30
},
"green_tea": {
"hot_water": 100,
"sugar_syrup": 50,
"ginger_syrup": 30,
"green_mixture": 30
},
"hot_coffee": {
"hot_milk": 400,
"hot_water": 100,
"sugar_syrup": 50,
"ginger_syrup": 30,
"tea_leaves_syrup": 30
}
},
"total_items_quantity": {
"hot_milk": 500,
"hot_water": 500,
"sugar_syrup": 100,
"ginger_syrup": 100,
"tea_leaves_syrup": 100
}
}
}