1{
2  "Virgin Daiquiri": {
3    "garnish": "Lime wedge",
4    "ingredients": [
5      {
6        "kind": "Water",
7        "qty": 2
8      },
9      {
10        "kind": "Vanilla Essence",
11        "qty": "dash"
12      },
13      {
14        "kind": "Angustura Bitters",
15        "qty": "dash"
16      },
17      {
18        "kind": "Lime",
19        "qty": 1
20      },
21      {
22        "kind": "Simple Syrup",
23        "qty": 0.5
24      }
25    ],
26    "served": "Straight Up"
27  },
28  "Virgin Whiskey Sour": {
29    "garnish": "Lemon Juice twist",
30    "ingredients": [
31      {
32        "kind": "Water",
33        "qty": 2
34      },
35      {
36        "kind": "Angustura Bitters",
37        "qty": "tsp"
38      },
39      {
40        "kind": "Lemon Juice",
41        "qty": 1
42      },
43      {
44        "kind": "Simple Syrup",
45        "qty": 0.5
46      }
47    ],
48    "served": "Straight Up"
49  },
50  "Whiskey Sour": {
51    "ingredients": [
52      {
53        "kind": "Whiskey",
54        "qty": 2
55      },
56      {
57        "kind": "Lemon Juice",
58        "qty": 1
59      },
60      {
61        "kind": "Simple Syrup",
62        "qty": 0.5
63      }
64    ],
65    "served": "In a plastic cup"
66  }
67}
68