1{
2  "Happy Hour Bloody Mary": {
3    "garnish": "Celery salt & pepper",
4    "ingredients": [
5      {
6        "kind": "Vodka",
7        "qty": 1.5
8      },
9      {
10        "kind": "Tomato Juice",
11        "qty": 3
12      },
13      {
14        "kind": "Lemon Juice",
15        "qty": 1.5
16      },
17      {
18        "kind": "Worcestershire",
19        "qty": 0.25
20      },
21      {
22        "kind": "Tobasco Sauce",
23        "qty": 0.15
24      }
25    ],
26    "served": "Tall"
27  },
28  "Happy Hour Mimosa": {
29    "garnish": "Orange Slice",
30    "ingredients": [
31      {
32        "kind": "Cheap Sparkling Wine",
33        "qty": 3
34      },
35      {
36        "kind": "Orange Juice",
37        "qty": 3
38      }
39    ],
40    "served": "Champagne Flute"
41  },
42  "Happy Hour Pina Colada": {
43    "garnish": "Pineapple slice",
44    "ingredients": [
45      {
46        "kind": "Rum",
47        "qty": 3
48      },
49      {
50        "kind": "Pineapple Juice",
51        "qty": 6
52      },
53      {
54        "kind": "Coconut Cream",
55        "qty": 2
56      },
57      {
58        "kind": "Ice",
59        "qty": 12
60      }
61    ],
62    "served": "Frozen"
63  }
64}
65