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
{
"Pisco Sour": {
"garnish": "Angostura bitters",
"ingredients": [
{
"kind": "Machu Pisco",
"qty": 2
},
{
"kind": "Egg white",
"qty": 1
},
{
"kind": "Lemon Juice",
"qty": 1
},
{
"kind": "Simple Syrup",
"qty": 1
}
],
"served": "Straight Up"
},
"Whiskey Sour": {
"garnish": "Orange bitters",
"ingredients": [
{
"kind": "Bulleit Bourbon",
"qty": 2
},
{
"kind": "Egg white",
"qty": 1
},
{
"kind": "Lemon Juice",
"qty": 1
},
{
"kind": "Simple Syrup",
"qty": 1
}
],
"served": "Straight Up"
}
}