1{
2  "Daiquiri": {
3    "garnish": "Lime wedge",
4    "ingredients": [
5      {
6        "kind": "Banks 7 Rum",
7        "qty": 2
8      },
9      {
10        "kind": "Lime",
11        "qty": 1
12      },
13      {
14        "kind": "Simple Syrup",
15        "qty": 0.5
16      }
17    ],
18    "served": "Straight Up"
19  },
20  "Deluxe Sour": {
21    "garnish": "Lemon Juice twist",
22    "ingredients": [
23      {
24        "kind": "Whiskey",
25        "qty": 2
26      },
27      {
28        "kind": "Lemon Juice",
29        "qty": 1
30      },
31      {
32        "kind": "Gomme Syrup",
33        "qty": 0.5
34      }
35    ],
36    "served": "Straight Up"
37  },
38  "Nor'Easter": {
39    "garnish": "Lime twist",
40    "ingredients": [
41      {
42        "kind": "Whiskey",
43        "qty": 2
44      },
45      {
46        "kind": "Lime",
47        "qty": 0.5
48      },
49      {
50        "kind": "Maple Syrup",
51        "qty": 0.5
52      },
53      {
54        "kind": "Ginger Beer",
55        "qty": 1
56      }
57    ],
58    "served": "Straight Up"
59  },
60  "Whiskey Sour": {
61    "garnish": "Lemon Juice twist",
62    "ingredients": [
63      {
64        "kind": "Whiskey",
65        "qty": 2
66      },
67      {
68        "kind": "Lemon Juice",
69        "qty": 1
70      },
71      {
72        "kind": "Simple Syrup",
73        "qty": 0.5
74      }
75    ],
76    "served": "Straight Up"
77  }
78}
79