brewery_db 0.0.1 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +2 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/CHANGELOG.md +15 -0
- data/README.md +81 -29
- data/Rakefile +5 -0
- data/brewery_db.gemspec +6 -5
- data/lib/brewery_db.rb +15 -19
- data/lib/brewery_db/client.rb +19 -7
- data/lib/brewery_db/collection.rb +42 -0
- data/lib/brewery_db/config.rb +7 -6
- data/lib/brewery_db/mash.rb +18 -0
- data/lib/brewery_db/middleware/error_handler.rb +28 -0
- data/lib/brewery_db/request.rb +27 -0
- data/lib/brewery_db/resource.rb +16 -22
- data/lib/brewery_db/resources/beers.rb +2 -2
- data/lib/brewery_db/resources/breweries.rb +2 -2
- data/lib/brewery_db/resources/brewery.rb +16 -0
- data/lib/brewery_db/resources/categories.rb +2 -2
- data/lib/brewery_db/resources/glassware.rb +2 -2
- data/lib/brewery_db/resources/search.rb +1 -1
- data/lib/brewery_db/resources/styles.rb +2 -2
- data/lib/brewery_db/response.rb +26 -12
- data/lib/brewery_db/version.rb +1 -1
- data/lib/brewery_db/web_hook.rb +32 -0
- data/spec/brewery_db/client_spec.rb +41 -30
- data/spec/brewery_db/config_spec.rb +25 -28
- data/spec/brewery_db/{response_spec.rb → mash_spec.rb} +1 -1
- data/spec/brewery_db/middleware/error_handler_spec.rb +49 -0
- data/spec/brewery_db/resource_spec.rb +35 -22
- data/spec/brewery_db/resources/beers_spec.rb +10 -82
- data/spec/brewery_db/resources/breweries_spec.rb +10 -54
- data/spec/brewery_db/resources/brewery_spec.rb +27 -0
- data/spec/brewery_db/resources/categories_spec.rb +10 -38
- data/spec/brewery_db/resources/glassware_spec.rb +10 -36
- data/spec/brewery_db/resources/search_spec.rb +19 -61
- data/spec/brewery_db/resources/styles_spec.rb +10 -72
- data/spec/brewery_db/web_hook_spec.rb +79 -0
- data/spec/fixtures/BreweryDB_Resource/_get/a_list_of_resources/can_be_enumerated.yml +515 -0
- data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/raises_an_exception.yml +38 -0
- data/spec/fixtures/BreweryDB_Resource/_get/a_not_found_request/sets_the_exception_message_to_the_error_message_in_the_response.yml +38 -0
- data/spec/fixtures/BreweryDB_Resource/_get/an_OK_request/name/.yml +54 -0
- data/spec/fixtures/BreweryDB_Resources_Beers/_all/fetches_all_of_the_beers_at_once.yml +889 -0
- data/spec/fixtures/BreweryDB_Resources_Beers/_find/fetches_only_the_beer_asked_for.yml +61 -0
- data/spec/fixtures/BreweryDB_Resources_Breweries/_all/fetches_all_of_the_breweries_at_once.yml +430 -0
- data/spec/fixtures/BreweryDB_Resources_Breweries/_find/fetches_only_the_brewery_asked_for.yml +57 -0
- data/spec/fixtures/BreweryDB_Resources_Categories/_all/fetches_all_of_the_cagtegories_at_once.yml +49 -0
- data/spec/fixtures/BreweryDB_Resources_Categories/_find/fetches_only_the_category_asked_for.yml +39 -0
- data/spec/fixtures/BreweryDB_Resources_Glassware/_all/fetches_all_of_the_glassware_at_once.yml +45 -0
- data/spec/fixtures/BreweryDB_Resources_Glassware/_find/fetches_only_the_glassware_asked_for.yml +39 -0
- data/spec/fixtures/BreweryDB_Resources_Search/_all/fetches_all_of_the_search_results_at_once.yml +1132 -0
- data/spec/fixtures/BreweryDB_Resources_Styles/_all/fetches_all_of_the_styles_at_once.yml +1866 -0
- data/spec/fixtures/BreweryDB_Resources_Styles/_find/fetches_only_the_style_asked_for.yml +50 -0
- data/spec/spec_helper.rb +4 -4
- data/spec/support/shared/a_resource.rb +3 -9
- data/spec/support/vcr.rb +6 -1
- metadata +82 -42
- data/spec/brewery_db_spec.rb +0 -18
- data/spec/fixtures/beers.yml +0 -445
- data/spec/fixtures/breweries.yml +0 -409
- data/spec/fixtures/categories.yml +0 -102
- data/spec/fixtures/glassware.yml +0 -65
- data/spec/fixtures/search.yml +0 -314
- data/spec/fixtures/styles.yml +0 -317
@@ -0,0 +1,38 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://api.brewerydb.com/v2/brewery/NOT_FOUND?key=API_KEY
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- BreweryDB Ruby Gem 0.0.1
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 404
|
15
|
+
message:
|
16
|
+
headers:
|
17
|
+
date:
|
18
|
+
- Sat, 11 Aug 2012 23:35:41 GMT
|
19
|
+
server:
|
20
|
+
- Apache/2.2.22 (Amazon)
|
21
|
+
x-powered-by:
|
22
|
+
- PHP/5.3.13
|
23
|
+
x-ratelimit-limit:
|
24
|
+
- Unlimited
|
25
|
+
x-ratelimit-remaining:
|
26
|
+
- Unlimited
|
27
|
+
content-length:
|
28
|
+
- '77'
|
29
|
+
connection:
|
30
|
+
- close
|
31
|
+
content-type:
|
32
|
+
- application/json
|
33
|
+
body:
|
34
|
+
encoding: US-ASCII
|
35
|
+
string: ! '{"errorMessage":"The object you requested was not found.","status":"failure"}'
|
36
|
+
http_version:
|
37
|
+
recorded_at: Sat, 11 Aug 2012 23:35:41 GMT
|
38
|
+
recorded_with: VCR 2.2.2
|
@@ -0,0 +1,38 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://api.brewerydb.com/v2/brewery/NOT_FOUND?key=API_KEY
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- BreweryDB Ruby Gem 0.0.1
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 404
|
15
|
+
message:
|
16
|
+
headers:
|
17
|
+
date:
|
18
|
+
- Sat, 11 Aug 2012 23:35:41 GMT
|
19
|
+
server:
|
20
|
+
- Apache/2.2.22 (Amazon)
|
21
|
+
x-powered-by:
|
22
|
+
- PHP/5.3.13
|
23
|
+
x-ratelimit-limit:
|
24
|
+
- Unlimited
|
25
|
+
x-ratelimit-remaining:
|
26
|
+
- Unlimited
|
27
|
+
content-length:
|
28
|
+
- '77'
|
29
|
+
connection:
|
30
|
+
- close
|
31
|
+
content-type:
|
32
|
+
- application/json
|
33
|
+
body:
|
34
|
+
encoding: US-ASCII
|
35
|
+
string: ! '{"errorMessage":"The object you requested was not found.","status":"failure"}'
|
36
|
+
http_version:
|
37
|
+
recorded_at: Sat, 11 Aug 2012 23:35:42 GMT
|
38
|
+
recorded_with: VCR 2.2.2
|
@@ -0,0 +1,54 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://api.brewerydb.com/v2/breweries?key=API_KEY&name=Rogue+Ales
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- BreweryDB Ruby Gem 0.0.1
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 200
|
15
|
+
message:
|
16
|
+
headers:
|
17
|
+
date:
|
18
|
+
- Sat, 11 Aug 2012 23:35:41 GMT
|
19
|
+
server:
|
20
|
+
- Apache/2.2.22 (Amazon)
|
21
|
+
x-powered-by:
|
22
|
+
- PHP/5.3.13
|
23
|
+
x-ratelimit-limit:
|
24
|
+
- Unlimited
|
25
|
+
x-ratelimit-remaining:
|
26
|
+
- Unlimited
|
27
|
+
content-length:
|
28
|
+
- '1726'
|
29
|
+
connection:
|
30
|
+
- close
|
31
|
+
content-type:
|
32
|
+
- application/json
|
33
|
+
body:
|
34
|
+
encoding: US-ASCII
|
35
|
+
string: ! '{"currentPage":1,"numberOfPages":1,"totalResults":1,"data":[{"id":"X0l98q","name":"Rogue
|
36
|
+
Ales","description":"Rogue Ales was founded in 1988 by Jack Joyce, Rob Strasser
|
37
|
+
and Bob Woodell, three corporate types who wanted to go into the food\/beverage
|
38
|
+
industry. Rogue''s first brewpub was located in Ashland, Oregon and was a
|
39
|
+
10bbl brewsystem. Rogue opened a second brewpub, 15bbl brewsystem, in May
|
40
|
+
1989 located in Newport, Oregon. Rogue closed its Ashland operation in 1997,
|
41
|
+
after the great flood destroyed the place. In 1991, the 15bbl system, named
|
42
|
+
Howard after John Maier''s former boss, from the Newport brewpub was transferred
|
43
|
+
across the bay to the current brewery and upgraded to a 30bbl system. In 1998
|
44
|
+
Rogue bought a 50bbl brewsystem, named Kobe. Kobe is the only brewsystem in
|
45
|
+
use. Tours: We offer brewery tours every day at 3 pm (followed by a distillery
|
46
|
+
tour at 4pm). Go up to the bar inside the brewery (Brewers on the Bay) and
|
47
|
+
check in with the bartender and the tour will commence. Please call ahead
|
48
|
+
if you have a large group and or to verify the tour time...Brewer''s on the
|
49
|
+
Bay phone is 541-867-3664. The view from Brewers on the Bay includes the marina
|
50
|
+
(outside), and the bottling line and brew kettles (inside).","website":"http:\/\/www.rogue.com\/","established":"1988","isOrganic":"N","images":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/X0l98q\/upload_LXdf6X-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/X0l98q\/upload_LXdf6X-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/brewery\/X0l98q\/upload_LXdf6X-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
51
|
+
02:42:07","updateDate":"2012-03-21 19:06:08"}],"status":"success"}'
|
52
|
+
http_version:
|
53
|
+
recorded_at: Sat, 11 Aug 2012 23:35:41 GMT
|
54
|
+
recorded_with: VCR 2.2.2
|
@@ -0,0 +1,889 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://api.brewerydb.com/v2/beers?key=API_KEY&abv=5.5
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- BreweryDB Ruby Gem 0.0.1
|
12
|
+
response:
|
13
|
+
status:
|
14
|
+
code: 200
|
15
|
+
message:
|
16
|
+
headers:
|
17
|
+
date:
|
18
|
+
- Sat, 11 Aug 2012 23:35:42 GMT
|
19
|
+
server:
|
20
|
+
- Apache/2.2.22 (Amazon)
|
21
|
+
x-powered-by:
|
22
|
+
- PHP/5.3.13
|
23
|
+
x-ratelimit-limit:
|
24
|
+
- Unlimited
|
25
|
+
x-ratelimit-remaining:
|
26
|
+
- Unlimited
|
27
|
+
connection:
|
28
|
+
- close
|
29
|
+
transfer-encoding:
|
30
|
+
- chunked
|
31
|
+
content-type:
|
32
|
+
- application/json
|
33
|
+
body:
|
34
|
+
encoding: US-ASCII
|
35
|
+
string: ! '{"currentPage":1,"numberOfPages":10,"totalResults":495,"data":[{"id":"M6vu9P","name":"10
|
36
|
+
Blocks South","description":"Tired of the standard American Pale Ale? Not
|
37
|
+
feeling the hop bite and higher ABV of an IPA? We have something in-between.
|
38
|
+
What you get is a hop-centric but easy drinking beer with tons of citrus and
|
39
|
+
floral hop character brought on by Centennial, Cascade, Columbus and Chinook
|
40
|
+
hops and backed with a solid malt bill.","abv":"5.5","ibu":"56","glasswareId":5,"srmId":9,"availableId":1,"styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-09
|
41
|
+
21:35:12","updateDate":"2012-03-22 13:05:46","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
42
|
+
02:41:33"},"srm":{"id":9,"name":"9","hex":"E58500"},"available":{"id":"1","name":"Year
|
43
|
+
Round","description":"Available year round as a staple beer."},"style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
44
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
45
|
+
Pale Ale","description":"American pale ales range from deep golden to copper
|
46
|
+
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
47
|
+
hop character producing medium to medium-high hop bitterness, flavor, and
|
48
|
+
aroma. Note that the \"traditional\" style of this beer has its origins with
|
49
|
+
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
50
|
+
hop varietals. One or more of these hop characters is the perceived end, but
|
51
|
+
the perceived hop characters may be a result of the skillful use of hops of
|
52
|
+
other national origins. American pale ales have medium body and low to medium
|
53
|
+
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
54
|
+
should be moderate to strong. Diacetyl should be absent or present at very
|
55
|
+
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
56
|
+
20:06:45"}},{"id":"Vk1ohg","name":"2011 Christmas Ale","description":"Every
|
57
|
+
year since 1975 the brewers at Anchor have brewed a distinctive and unique
|
58
|
+
Christmas Ale, which is available from early November to mid-January. The
|
59
|
+
Ale''s recipe is different every year\u2014as is the tree on the label\u2014but
|
60
|
+
the intent with which we offer it remains the same: joy and celebration of
|
61
|
+
the newness of life.","abv":"5.5","glasswareId":5,"availableId":4,"styleId":125,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/Vk1ohg\/upload_OZt3zl-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/Vk1ohg\/upload_OZt3zl-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/Vk1ohg\/upload_OZt3zl-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
62
|
+
02:42:37","updateDate":"2012-03-22 13:05:25","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
63
|
+
02:41:33"},"available":{"id":"4","name":"Seasonal","description":"Available
|
64
|
+
at the same time of year, every year."},"style":{"id":125,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
|
65
|
+
Beer","createDate":"2012-03-21 20:06:46"},"name":"Specialty Beer","description":"These
|
66
|
+
beers are brewed using unusual fermentable sugars, grains and starches that
|
67
|
+
contribute to alcohol content other than, or in addition to, malted barley.
|
68
|
+
Nuts generally have some degree of fermentables, thus beers brewed with nuts
|
69
|
+
would appropriately be entered in this category. The distinctive characters
|
70
|
+
of these special ingredients should be evident either in the aroma, flavor
|
71
|
+
or overall balance of the beer, but not necessarily in overpowering quantities.
|
72
|
+
For example, maple syrup or potatoes would be considered unusual. Rice, corn,
|
73
|
+
or wheat are not considered unusual. Special ingredients must be listed when
|
74
|
+
competing. A statement by the brewer explaining the special nature of the
|
75
|
+
beer, ingredient(s) and achieved character is essential in order for fair
|
76
|
+
assessment in competitions. If this beer is a classic style with some specialty
|
77
|
+
ingredient(s), the brewer should also specify the classic style. Guidelines
|
78
|
+
for competing: Spiced beers using unusual fermentables should be entered in
|
79
|
+
the experimental category. Fruit beers using unusual fermentables should be
|
80
|
+
entered in the fruit beer category.","ibuMax":"100","abvMin":"2.5","abvMax":"25","srmMin":"1","srmMax":"100","ogMin":"1.03","fgMin":"1.006","fgMax":"1.03","createDate":"2012-03-21
|
81
|
+
20:06:46"}},{"id":"oVuPzz","name":"292 Ale","description":"Our Hoptoberfest
|
82
|
+
style has a deep copper color, rich caramel and toasted flavors, and is chock
|
83
|
+
full of our favorite hops!","abv":"5.5","glasswareId":3,"availableId":4,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-21
|
84
|
+
22:40:14","updateDate":"2012-04-21 22:40:14","glass":{"id":3,"name":"Mug","createDate":"2012-01-03
|
85
|
+
02:41:33"},"available":{"id":"4","name":"Seasonal","description":"Available
|
86
|
+
at the same time of year, every year."}},{"id":"Ux7vK3","name":"40K Honey
|
87
|
+
Wheat Ale","description":"This dry, crisp wheat ale is delicately spiced with
|
88
|
+
coriander and orange peel and has complex floral aroma. The addition of orange
|
89
|
+
blossom honey contributes to its light body and clean finish. It is easy drinking
|
90
|
+
and pairs well with spicy foods.","abv":"5.5","ibu":"18","glasswareId":5,"availableId":1,"styleId":112,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
91
|
+
02:42:37","updateDate":"2012-03-22 13:05:19","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
92
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
93
|
+
year round as a staple beer."},"style":{"id":112,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
|
94
|
+
Beer","createDate":"2012-03-21 20:06:46"},"name":"Light American Wheat Ale
|
95
|
+
or Lager with Yeast","description":"This beer can be made using either ale
|
96
|
+
or lager yeast. It can be brewed with 30 to 75 percent wheat malt, and hop
|
97
|
+
rates may be low to medium. Hop characters may be light to moderate in bitterness,
|
98
|
+
flavor and aroma. Fruity-estery aroma and flavor are typical but at low levels
|
99
|
+
however, phenolic, clove-like characteristics should not be perceived. Color
|
100
|
+
is usually straw to light amber, and the body should be light to medium in
|
101
|
+
character. Diacetyl should not be perceived. Because this style is served
|
102
|
+
with yeast the character should portray a full yeasty mouthfeel and appear
|
103
|
+
hazy to very cloudy. Chill haze is also acceptable. Yeast flavor and aroma
|
104
|
+
should be low to medium but not overpowering the balance and character of
|
105
|
+
malt and hops. These beers are typically served with the yeast in the bottle,
|
106
|
+
and are cloudy when served.","ibuMin":"10","ibuMax":"35","abvMin":"3.5","abvMax":"5.5","srmMin":"4","srmMax":"10","ogMin":"1.036","fgMin":"1.006","fgMax":"1.018","createDate":"2012-03-21
|
107
|
+
20:06:46"}},{"id":"6NGOv9","name":"420 IPA","description":"This beer is a
|
108
|
+
very bitter West CoastIPA. It has very low malt character and lots of citrus
|
109
|
+
flavor. It creates an explosion of hops in your mouth!","abv":"5.5","ibu":"100","glasswareId":5,"availableId":1,"styleId":30,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
110
|
+
02:42:37","updateDate":"2012-03-22 13:05:38","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
111
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
112
|
+
year round as a staple beer."},"style":{"id":30,"categoryId":3,"category":{"id":3,"name":"North
|
113
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
114
|
+
India Pale Ale","description":"American-style India pale ales are perceived
|
115
|
+
to have medium-high to intense hop bitterness, flavor and aroma with medium-high
|
116
|
+
alcohol content. The style is further characterized by floral, fruity, citrus-like,
|
117
|
+
piney, resinous, or sulfur-like American-variety hop character. Note that
|
118
|
+
one or more of these American-variety hop characters is the perceived end,
|
119
|
+
but the hop characters may be a result of the skillful use of hops of other
|
120
|
+
national origins. The use of water with high mineral content results in a
|
121
|
+
crisp, dry beer. This pale gold to deep copper-colored ale has a full, flowery
|
122
|
+
hop aroma and may have a strong hop flavor (in addition to the perception
|
123
|
+
of hop bitterness). India pale ales possess medium maltiness which contributes
|
124
|
+
to a medium body. Fruity-ester flavors and aromas are moderate to very strong.
|
125
|
+
Diacetyl can be absent or may be perceived at very low levels. Chill and\/or
|
126
|
+
hop haze is allowable at cold temperatures. (English and citrus-like American
|
127
|
+
hops are considered enough of a distinction justifying separate American-style
|
128
|
+
IPA and English-style IPA categories or subcategories. Hops of other origins
|
129
|
+
may be used for bitterness or approximating traditional American or English
|
130
|
+
character. See English-style India Pale Ale","ibuMin":"50","ibuMax":"70","abvMin":"6.3","abvMax":"7.5","srmMin":"6","srmMax":"14","ogMin":"1.06","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
131
|
+
20:06:45"}},{"id":"vvazC4","name":"508 Munich Helles","description":"Pleasantly
|
132
|
+
grainy-sweet, malt aroma dominates, noble hop aroma. Malt flavor with a low-
|
133
|
+
to medium-low hop bitterness","abv":"5.5","styleId":78,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-04-21
|
134
|
+
12:10:05","updateDate":"2012-04-21 12:10:05","style":{"id":78,"categoryId":7,"category":{"id":7,"name":"European-germanic
|
135
|
+
Lager","createDate":"2012-03-21 20:06:46"},"name":"M\u00fcnchner (Munich)-Style
|
136
|
+
Helles","description":"This beer should be perceived as having low bitterness.
|
137
|
+
It is a medium-bodied, malt-emphasized beer with malt character often balanced
|
138
|
+
with low levels of yeast produced sulfur compounds (character). Certain renditions
|
139
|
+
of this beer style have a perceivable level of hop flavor (note: hop flavor
|
140
|
+
does not imply hop bitterness) and character but it is essentially balanced
|
141
|
+
with malt character to retain its style identity. Malt character is sometimes
|
142
|
+
bread-like yet always reminiscent of freshly and very lightly toasted malted
|
143
|
+
barley. There should not be any caramel character. Color is light straw to
|
144
|
+
golden. Fruity esters and diacetyl should not be perceived. There should be
|
145
|
+
no chill haze.","ibuMin":"18","ibuMax":"25","abvMin":"4.5","abvMax":"5.5","srmMin":"4","srmMax":"6","ogMin":"1.044","fgMin":"1.008","fgMax":"1.012","createDate":"2012-03-21
|
146
|
+
20:06:46"}},{"id":"TZ07QQ","name":"80-Acre Hoppy Wheat Beer","description":"With
|
147
|
+
roots in two of today''s most popular brewing styles, 80-Acre Hoppy Wheat
|
148
|
+
Beer is the result of careful cultivation by our brewers and cellarmen. Their
|
149
|
+
efforts to craft a hybrid yielded a bumper crop of flavor; a delightfully
|
150
|
+
distinctive ale with the aroma of an IPA and the refreshing taste of a wheat
|
151
|
+
beer.","abv":"5.5","ibu":"20","srmId":8,"availableId":1,"styleId":113,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/TZ07QQ\/upload_oZz7nI-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/TZ07QQ\/upload_oZz7nI-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/TZ07QQ\/upload_oZz7nI-large.png"},"status":"verified","statusDisplay":"Verified","foodPairings":"Bruschetta,
|
152
|
+
Garlic-rosemary pork chop, Grilled tilapia with mango salsa Light, Mixed green
|
153
|
+
salad with citrus-herb vinaigrette, tangy cheeses, Tequila-lime chicken","createDate":"2012-07-31
|
154
|
+
12:24:46","updateDate":"2012-07-31 12:36:51","srm":{"id":8,"name":"8","hex":"EA8F00"},"available":{"id":"1","name":"Year
|
155
|
+
Round","description":"Available year round as a staple beer."},"style":{"id":113,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
|
156
|
+
Beer","createDate":"2012-03-21 20:06:46"},"name":"Light American Wheat Ale
|
157
|
+
or Lager without Yeast","description":"This beer can be made using either
|
158
|
+
ale or lager yeast. It can be brewed with 30 to 75 percent wheat malt, and
|
159
|
+
hop rates may be low to medium. Hop characters may be light to moderate in
|
160
|
+
bitterness, flavor and aroma. A fruity-estery aroma and flavor are typical
|
161
|
+
but at low levels however, phenolic, clove-like characteristics should not
|
162
|
+
be perceived. Appearance can be clear or with chill haze, golden to light
|
163
|
+
amber, and the body should be light to medium in character. Diacetyl should
|
164
|
+
not be perceived. Because this style is packaged and served without yeast,
|
165
|
+
no yeast characters should be evident in mouthfeel, flavor, or aroma.","ibuMin":"10","ibuMax":"35","abvMin":"3.8","abvMax":"5","srmMin":"2","srmMax":"10","ogMin":"1.036","fgMin":"1.004","fgMax":"1.016","createDate":"2012-03-21
|
166
|
+
20:06:46"}},{"id":"Pur4Yc","name":"Aberrant Amber","description":"American
|
167
|
+
Style Amber with an twist. We started with a classic American Amber, 22%
|
168
|
+
Caramalt giving it an Amber hue. Then added a large addition of Amarillo
|
169
|
+
and Centennial hops for the bittering and dry hoped with Amarillo, giving
|
170
|
+
it notes of grapefruit and tangerine. The complexity of the malts and hops
|
171
|
+
in this beer make it a great ale for anyone who loves flavor.","abv":"5.5","ibu":"48","styleId":32,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-08-05
|
172
|
+
15:42:20","updateDate":"2012-08-05 15:42:20","style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
|
173
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
174
|
+
Amber\/Red Ale","description":"American amber\/red ales range from light copper
|
175
|
+
to light brown in color. They are characterized by American-variety hops used
|
176
|
+
to produce the perception of medium hop bitterness, flavor, and medium aroma.
|
177
|
+
Amber ales have medium-high to high maltiness with medium to low caramel character.
|
178
|
+
They should have medium to medium-high body. The style may have low levels
|
179
|
+
of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
|
180
|
+
at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
|
181
|
+
haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
182
|
+
20:06:45"}},{"id":"pPUkYK","name":"Airdale Homecoming","description":"Airdale
|
183
|
+
Homecoming, is a classic brown porter spiced with cinnamon, nutmeg, and vanilla.
|
184
|
+
It starts with hints of espresso on the nose and a light malt sweetness with
|
185
|
+
faint traces of chocolate and vanilla. Caramel notes come through as well.
|
186
|
+
The Holiday spices are faint, allowing the porter''s flavor to dominate while
|
187
|
+
the spices enhance the chocolate notes. A light-bodied beer, the finish is
|
188
|
+
smooth with a subtle hoppy bitterness. A wonderful warming effect makes this
|
189
|
+
beer a perfect holiday treat! Available from October thru December.","abv":"5.5","ibu":"25","glasswareId":5,"srmId":35,"availableId":4,"styleId":124,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
190
|
+
02:42:39","updateDate":"2012-03-22 13:05:38","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
191
|
+
02:41:33"},"srm":{"id":35,"name":"35","hex":"470606"},"available":{"id":"4","name":"Seasonal","description":"Available
|
192
|
+
at the same time of year, every year."},"style":{"id":124,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
|
193
|
+
Beer","createDate":"2012-03-21 20:06:46"},"name":"Herb and Spice Beer","description":"Herb
|
194
|
+
beers use herbs or spices (derived from roots, seeds, fruits, vegetable, flowers,
|
195
|
+
etc.) other than or in addition to hops to create a distinct (ranging from
|
196
|
+
subtle to intense) character, though individual characters of herbs and\/or
|
197
|
+
spices used may not always be identifiable. Under hopping often, but not always,
|
198
|
+
allows the spice or herb to contribute to the flavor profile. Positive evaluations
|
199
|
+
are significantly based on perceived balance of flavors. Note: Chili-flavored
|
200
|
+
beers that emphasize heat rather than chili flavor should be entered as a
|
201
|
+
\"spiced\" beer. A statement by the brewer explaining what herbs or spices
|
202
|
+
are used is essential in order for fair assessment in competitions. Specifying
|
203
|
+
a style upon which the beer is based may help evaluation. If this beer is
|
204
|
+
a classic style with an herb or spice, the brewer should specify the classic
|
205
|
+
style. If no Chocolate or Coffee category exists in a competition, then chocolate
|
206
|
+
and coffee beers should be entered in this category.","ibuMin":"5","ibuMax":"70","abvMin":"2.5","abvMax":"12","srmMin":"5","srmMax":"50","ogMin":"1.03","fgMin":"1.006","fgMax":"1.03","createDate":"2012-03-21
|
207
|
+
20:06:46"}},{"id":"9iKzSr","name":"Alembic Pale","abv":"5.5","styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
208
|
+
02:42:39","updateDate":"2012-03-22 13:04:35","style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
209
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
210
|
+
Pale Ale","description":"American pale ales range from deep golden to copper
|
211
|
+
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
212
|
+
hop character producing medium to medium-high hop bitterness, flavor, and
|
213
|
+
aroma. Note that the \"traditional\" style of this beer has its origins with
|
214
|
+
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
215
|
+
hop varietals. One or more of these hop characters is the perceived end, but
|
216
|
+
the perceived hop characters may be a result of the skillful use of hops of
|
217
|
+
other national origins. American pale ales have medium body and low to medium
|
218
|
+
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
219
|
+
should be moderate to strong. Diacetyl should be absent or present at very
|
220
|
+
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
221
|
+
20:06:45"}},{"id":"mIyrOV","name":"Alleycat Amber","description":"A full-flavored
|
222
|
+
amber ale made with roasted caremel malt. Richly colored and medium-bodied,
|
223
|
+
Alleycat is an assertive blend of malts with a sprightly cascade of hops.","abv":"5.5","availableId":1,"styleId":32,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-05-22
|
224
|
+
16:35:04","updateDate":"2012-05-22 16:50:16","available":{"id":"1","name":"Year
|
225
|
+
Round","description":"Available year round as a staple beer."},"style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
|
226
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
227
|
+
Amber\/Red Ale","description":"American amber\/red ales range from light copper
|
228
|
+
to light brown in color. They are characterized by American-variety hops used
|
229
|
+
to produce the perception of medium hop bitterness, flavor, and medium aroma.
|
230
|
+
Amber ales have medium-high to high maltiness with medium to low caramel character.
|
231
|
+
They should have medium to medium-high body. The style may have low levels
|
232
|
+
of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
|
233
|
+
at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
|
234
|
+
haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
235
|
+
20:06:45"}},{"id":"w1ndc4","name":"Alpine Spring","description":"Brewed especially
|
236
|
+
for the season, this bright citrusy unfiltered lager is both satisfying and
|
237
|
+
refreshing. It\u2019s the perfect transition from winter\u2019s heavier brews
|
238
|
+
to the lighter beers of summer. Borne of our brewers\u2019 many trips to Germany,
|
239
|
+
Alpine Spring features a unique blend of lager attributes: the balanced maltiness
|
240
|
+
and hoppiness of a Helles, the smoothness and slightly higher alcohol of a
|
241
|
+
traditional spring bock, and the unfiltered appearance of a Kellerbier. The
|
242
|
+
beer is brewed with Tettnang Noble hops to add a unique, bright orange-citrusy
|
243
|
+
aroma and flavor.","abv":"5.5","ibu":"19","glasswareId":5,"srmId":9,"availableId":5,"styleId":78,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/w1ndc4\/upload_Qfk4yy-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/w1ndc4\/upload_Qfk4yy-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/w1ndc4\/upload_Qfk4yy-large.png"},"status":"verified","statusDisplay":"Verified","foodPairings":"Created
|
244
|
+
especially for the season, this bright citrusy unfiltered lager is both satisfying
|
245
|
+
and refreshing and pairs nicely with a variety of entrees including grilled
|
246
|
+
chicken and Italian fare.","originalGravity":"1.058","createDate":"2012-02-12
|
247
|
+
23:54:05","updateDate":"2012-04-03 20:15:30","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
248
|
+
02:41:33"},"srm":{"id":9,"name":"9","hex":"E58500"},"available":{"id":"5","name":"Spring","description":"Available
|
249
|
+
during the spring months."},"style":{"id":78,"categoryId":7,"category":{"id":7,"name":"European-germanic
|
250
|
+
Lager","createDate":"2012-03-21 20:06:46"},"name":"M\u00fcnchner (Munich)-Style
|
251
|
+
Helles","description":"This beer should be perceived as having low bitterness.
|
252
|
+
It is a medium-bodied, malt-emphasized beer with malt character often balanced
|
253
|
+
with low levels of yeast produced sulfur compounds (character). Certain renditions
|
254
|
+
of this beer style have a perceivable level of hop flavor (note: hop flavor
|
255
|
+
does not imply hop bitterness) and character but it is essentially balanced
|
256
|
+
with malt character to retain its style identity. Malt character is sometimes
|
257
|
+
bread-like yet always reminiscent of freshly and very lightly toasted malted
|
258
|
+
barley. There should not be any caramel character. Color is light straw to
|
259
|
+
golden. Fruity esters and diacetyl should not be perceived. There should be
|
260
|
+
no chill haze.","ibuMin":"18","ibuMax":"25","abvMin":"4.5","abvMax":"5.5","srmMin":"4","srmMax":"6","ogMin":"1.044","fgMin":"1.008","fgMax":"1.012","createDate":"2012-03-21
|
261
|
+
20:06:46"}},{"id":"rmvkfa","name":"Altbairisch Dunkel","abv":"5.5","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
262
|
+
02:42:40","updateDate":"2012-03-22 13:04:41"},{"id":"EbWTI2","name":"ALTered
|
263
|
+
Spring","description":"Using a German Ale yeast strain, Tyler West and Brett
|
264
|
+
Thomas bring you this fun malty ALT style beer just in time for spring. ALTered
|
265
|
+
Spring is a deep rich mahogany ale fermented at lager (cold) temps. It has
|
266
|
+
a smooth hop bite and slightly sweet malt offering.","abv":"5.5","ibu":"50","glasswareId":5,"availableId":4,"styleId":55,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
267
|
+
02:42:40","updateDate":"2012-03-22 13:05:37","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
268
|
+
02:41:33"},"available":{"id":"4","name":"Seasonal","description":"Available
|
269
|
+
at the same time of year, every year."},"style":{"id":55,"categoryId":4,"category":{"id":4,"name":"German
|
270
|
+
Origin Ales","createDate":"2012-03-21 20:06:46"},"name":"German-Style Brown
|
271
|
+
Ale \/ D\u00fcsseldorf-Style Altbier","description":"Copper to brown in color,
|
272
|
+
this German ale may be highly hopped and intensely bitter (although the 25
|
273
|
+
to 35 IBU range is more normal for the majority of Altbiers from D\u00fcsseldorf)
|
274
|
+
and has a medium body and malty flavor. A variety of malts, including wheat,
|
275
|
+
may be used. Hop character may be low to medium in the flavor and aroma. The
|
276
|
+
overall impression is clean, crisp, and flavorful often with a dry finish.
|
277
|
+
Fruity esters can be low. No diacetyl or chill haze should be perceived.","ibuMin":"25","ibuMax":"52","abvMin":"4.3","abvMax":"5.5","srmMin":"11","srmMax":"19","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
278
|
+
20:06:46"}},{"id":"6q8GTG","name":"Altitude Amber Ale","description":"A medium
|
279
|
+
bodied ale, Altitude Amber is light amber in color with a medium caramel tone.
|
280
|
+
Hops contribute a mild pine and citrus flavor.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":32,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
281
|
+
02:42:40","updateDate":"2012-03-22 13:05:17","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
282
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
283
|
+
year round as a staple beer."},"style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
|
284
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
285
|
+
Amber\/Red Ale","description":"American amber\/red ales range from light copper
|
286
|
+
to light brown in color. They are characterized by American-variety hops used
|
287
|
+
to produce the perception of medium hop bitterness, flavor, and medium aroma.
|
288
|
+
Amber ales have medium-high to high maltiness with medium to low caramel character.
|
289
|
+
They should have medium to medium-high body. The style may have low levels
|
290
|
+
of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
|
291
|
+
at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
|
292
|
+
haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
293
|
+
20:06:45"}},{"id":"uwlZj9","name":"Amber Ale","description":"There is no better
|
294
|
+
way to celebrate the repeal of prohibition than with a cold glass of Tap Room
|
295
|
+
No. 21 Amber Ale. No longer bound by law to secretly sip away in speakeasies,
|
296
|
+
Moe\u2019s Backroom Amber Ale can now be enjoyed in any setting, so raise
|
297
|
+
a glass to celebrate our freedoms.\r\n\r\nDeep, golden Amber Ale with smooth,
|
298
|
+
full bodied flavor. The palate captures just a hint of honey. Flavors of
|
299
|
+
hop and malt are equally balanced.","abv":"5.5","ibu":"18","glasswareId":5,"availableId":1,"styleId":32,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-03-20
|
300
|
+
00:48:38","updateDate":"2012-04-23 01:03:30","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
301
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
302
|
+
year round as a staple beer."},"style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
|
303
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
304
|
+
Amber\/Red Ale","description":"American amber\/red ales range from light copper
|
305
|
+
to light brown in color. They are characterized by American-variety hops used
|
306
|
+
to produce the perception of medium hop bitterness, flavor, and medium aroma.
|
307
|
+
Amber ales have medium-high to high maltiness with medium to low caramel character.
|
308
|
+
They should have medium to medium-high body. The style may have low levels
|
309
|
+
of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
|
310
|
+
at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
|
311
|
+
haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
312
|
+
20:06:45"}},{"id":"7672Qf","name":"Amber Ale","description":"An American amber.
|
313
|
+
This beer is slightly malty on the palate with a very balancing hop bitterness.
|
314
|
+
A drinkable beer, one of the Empire''s top-selling brews.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":32,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
315
|
+
02:42:41","updateDate":"2012-03-22 13:05:31","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
316
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
317
|
+
year round as a staple beer."},"style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
|
318
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
319
|
+
Amber\/Red Ale","description":"American amber\/red ales range from light copper
|
320
|
+
to light brown in color. They are characterized by American-variety hops used
|
321
|
+
to produce the perception of medium hop bitterness, flavor, and medium aroma.
|
322
|
+
Amber ales have medium-high to high maltiness with medium to low caramel character.
|
323
|
+
They should have medium to medium-high body. The style may have low levels
|
324
|
+
of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
|
325
|
+
at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
|
326
|
+
haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
327
|
+
20:06:45"}},{"id":"0oJxx9","name":"Amber Lager","description":"Hardtail Lager
|
328
|
+
is an Amber American Lager with a moderate caramel sweetness coming from the
|
329
|
+
generous use of munich and caramel malts, and balanced with moderate use of
|
330
|
+
European noble hops for flavor and bitterness. Hardtail is fermented cold
|
331
|
+
and lagered for 30 day thus providing the active hardtail consumer a crisp
|
332
|
+
full body drinkable beer, not too heavy, not too light, just right. I\u2019ll
|
333
|
+
have another.","abv":"5.5","glasswareId":5,"styleId":93,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/0oJxx9\/upload_jXkKN1-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/0oJxx9\/upload_jXkKN1-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/0oJxx9\/upload_jXkKN1-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
334
|
+
02:42:41","updateDate":"2012-03-22 13:05:32","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
335
|
+
02:41:33"},"style":{"id":93,"categoryId":8,"category":{"id":8,"name":"North
|
336
|
+
American Lager","createDate":"2012-03-21 20:06:46"},"name":"American-Style
|
337
|
+
Lager","description":"Light in body and very light to straw in color, American
|
338
|
+
lagers are very clean and crisp and aggressively carbonated. Flavor components
|
339
|
+
should b e subtle and complex, with no one ingredient dominating the others.
|
340
|
+
Malt sweetness is light to mild. Corn, rice, or other grain or sugar adjuncts
|
341
|
+
are often used. Hop bitterness, flavor and aroma are negligible to very light.
|
342
|
+
Light fruity esters are acceptable. Chill haze and diacetyl should be absent.","ibuMin":"5","ibuMax":"13","abvMin":"3.8","abvMax":"5","srmMin":"2","srmMax":"4","ogMin":"1.04","fgMin":"1.006","fgMax":"1.01","createDate":"2012-03-21
|
343
|
+
20:06:46"}},{"id":"uIDjJP","name":"Amber Reign","description":"A malty amber
|
344
|
+
ale.","abv":"5.5","ibu":"30","glasswareId":5,"availableId":1,"styleId":32,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
345
|
+
02:42:41","updateDate":"2012-03-22 13:05:13","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
346
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
347
|
+
year round as a staple beer."},"style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
|
348
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
349
|
+
Amber\/Red Ale","description":"American amber\/red ales range from light copper
|
350
|
+
to light brown in color. They are characterized by American-variety hops used
|
351
|
+
to produce the perception of medium hop bitterness, flavor, and medium aroma.
|
352
|
+
Amber ales have medium-high to high maltiness with medium to low caramel character.
|
353
|
+
They should have medium to medium-high body. The style may have low levels
|
354
|
+
of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
|
355
|
+
at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
|
356
|
+
haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
357
|
+
20:06:45"}},{"id":"IPvQRx","name":"Amber Road","abv":"5.5","ibu":"35","glasswareId":5,"styleId":32,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/IPvQRx\/upload_XQOFj4-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/IPvQRx\/upload_XQOFj4-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/IPvQRx\/upload_XQOFj4-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
358
|
+
02:42:41","updateDate":"2012-03-22 13:05:42","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
359
|
+
02:41:33"},"style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
|
360
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
361
|
+
Amber\/Red Ale","description":"American amber\/red ales range from light copper
|
362
|
+
to light brown in color. They are characterized by American-variety hops used
|
363
|
+
to produce the perception of medium hop bitterness, flavor, and medium aroma.
|
364
|
+
Amber ales have medium-high to high maltiness with medium to low caramel character.
|
365
|
+
They should have medium to medium-high body. The style may have low levels
|
366
|
+
of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
|
367
|
+
at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
|
368
|
+
haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
369
|
+
20:06:45"}},{"id":"jtfHdd","name":"Amber Weizen","abv":"5.5","styleId":97,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
370
|
+
02:42:41","updateDate":"2012-03-22 13:04:35","style":{"id":97,"categoryId":8,"category":{"id":8,"name":"North
|
371
|
+
American Lager","createDate":"2012-03-21 20:06:46"},"name":"American-Style
|
372
|
+
Premium Lager","description":"This style has low malt (and adjunct) sweetness,
|
373
|
+
is medium bodied, and should contain no or a low percentage (less than 25%)
|
374
|
+
of adjuncts. Color may be light straw to golden. Alcohol content and bitterness
|
375
|
+
may also be greater. Hop aroma and flavor is low or negligible. Light fruity
|
376
|
+
esters are acceptable. Chill haze and diacetyl should be absent. Note: Some
|
377
|
+
beers marketed as \"premium\" (based on price) may not fit this definition.","ibuMin":"6","ibuMax":"15","abvMin":"4.3","abvMax":"5","srmMin":"2","srmMax":"6","ogMin":"1.044","fgMin":"1.01","fgMax":"1.014","createDate":"2012-03-21
|
378
|
+
20:06:46"}},{"id":"XGyAdI","name":"American Wheat","description":"The American
|
379
|
+
Wheat Ale is a clean, refreshing golden ale made with Northwest Two-Row and
|
380
|
+
White Wheat Malts. A low hop character allows the grain flavors to dominate.
|
381
|
+
Served unfiltered with or without a citrus balance (lemon wedge). 5.5% Volume","abv":"5.5","glasswareId":5,"availableId":4,"styleId":112,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
382
|
+
02:42:42","updateDate":"2012-03-22 13:05:35","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
383
|
+
02:41:33"},"available":{"id":"4","name":"Seasonal","description":"Available
|
384
|
+
at the same time of year, every year."},"style":{"id":112,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
|
385
|
+
Beer","createDate":"2012-03-21 20:06:46"},"name":"Light American Wheat Ale
|
386
|
+
or Lager with Yeast","description":"This beer can be made using either ale
|
387
|
+
or lager yeast. It can be brewed with 30 to 75 percent wheat malt, and hop
|
388
|
+
rates may be low to medium. Hop characters may be light to moderate in bitterness,
|
389
|
+
flavor and aroma. Fruity-estery aroma and flavor are typical but at low levels
|
390
|
+
however, phenolic, clove-like characteristics should not be perceived. Color
|
391
|
+
is usually straw to light amber, and the body should be light to medium in
|
392
|
+
character. Diacetyl should not be perceived. Because this style is served
|
393
|
+
with yeast the character should portray a full yeasty mouthfeel and appear
|
394
|
+
hazy to very cloudy. Chill haze is also acceptable. Yeast flavor and aroma
|
395
|
+
should be low to medium but not overpowering the balance and character of
|
396
|
+
malt and hops. These beers are typically served with the yeast in the bottle,
|
397
|
+
and are cloudy when served.","ibuMin":"10","ibuMax":"35","abvMin":"3.5","abvMax":"5.5","srmMin":"4","srmMax":"10","ogMin":"1.036","fgMin":"1.006","fgMax":"1.018","createDate":"2012-03-21
|
398
|
+
20:06:46"}},{"id":"rZoPXp","name":"Anchor Bock","description":"San Francisco''s
|
399
|
+
Anchor Bock Beer is virtually handmade by the brewers of Anchor Steam\u00ae
|
400
|
+
Beer, in one of the most traditional small breweries in the world. It is brewed
|
401
|
+
from a complex blend of the finest barley malts, wheat malts, and fresh, whole
|
402
|
+
hops.","abv":"5.5","availableId":5,"styleId":88,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
403
|
+
02:42:42","updateDate":"2012-03-22 13:04:31","available":{"id":"5","name":"Spring","description":"Available
|
404
|
+
during the spring months."},"style":{"id":88,"categoryId":7,"category":{"id":7,"name":"European-germanic
|
405
|
+
Lager","createDate":"2012-03-21 20:06:46"},"name":"Traditional German-Style
|
406
|
+
Bock","description":"Traditional bocks are made with all malt and are strong,
|
407
|
+
malty, medium- to full-bodied, bottom-fermented beers with moderate hop bitterness
|
408
|
+
that should increase proportionately with the starting gravity. Malt character
|
409
|
+
should be a balance of sweetness and toasted\/nut-like malt; not caramel.
|
410
|
+
Hop flavor should be low and hop aroma should be very low. Bocks can range
|
411
|
+
in color from deep copper to dark brown. Fruity esters should be minimal.
|
412
|
+
Diacetyl should be absent.","ibuMin":"20","ibuMax":"30","abvMin":"6.3","abvMax":"7.5","srmMin":"20","srmMax":"30","ogMin":"1.066","fgMin":"1.018","fgMax":"1.024","createDate":"2012-03-21
|
413
|
+
20:06:46"}},{"id":"kgZB1G","name":"Anvil ESB","description":"Anvil ESB Ale
|
414
|
+
was the first beer produced when the brewery opened, and remains our flagship
|
415
|
+
ale.\r\n\r\nBright copper color with light tan head. Malty slightly hoppy
|
416
|
+
aroma. Caramel and malty flavors with a perfect balance of imported English
|
417
|
+
hops.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":3,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
418
|
+
02:42:42","updateDate":"2012-03-22 13:04:43","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
419
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
420
|
+
year round as a staple beer."},"style":{"id":3,"categoryId":1,"category":{"id":1,"name":"British
|
421
|
+
Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"Ordinary Bitter","description":"Ordinary
|
422
|
+
bitter is gold to copper colored with medium bitterness, light to medium body,
|
423
|
+
and low to medium residual malt sweetness. Hop flavor and aroma character
|
424
|
+
may be evident at the brewer''s discretion. Mild carbonation traditionally
|
425
|
+
characterizes draft-cask versions, but in bottled versions, a slight increase
|
426
|
+
in carbon dioxide content is acceptable. Fruity-ester character and very low
|
427
|
+
diacetyl (butterscotch) character are acceptable in aroma and flavor, but
|
428
|
+
should be minimized in this form of bitter. Chill haze is allowable at cold
|
429
|
+
temperatures. (English and American hop character may be specified in subcategories.)","ibuMin":"20","ibuMax":"35","abvMin":"3","abvMax":"4.1","srmMin":"5","srmMax":"12","ogMin":"1.033","fgMin":"1.006","fgMax":"1.012","createDate":"2012-03-21
|
430
|
+
20:06:45"}},{"id":"IgNzA4","name":"Apline Ale","description":"Our namesake
|
431
|
+
ale represents everything a good, well balanced pale ale should be: malty
|
432
|
+
but not too sweet, refreshing but not too bitter, full-bodied but not too
|
433
|
+
heavy, lively but not over carbonated. A clean, everyday beer that leaves
|
434
|
+
your palate begging for more.","abv":"5.5","ibu":"32","glasswareId":5,"availableId":1,"styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
435
|
+
02:42:42","updateDate":"2012-03-22 13:05:38","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
436
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
437
|
+
year round as a staple beer."},"style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
438
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
439
|
+
Pale Ale","description":"American pale ales range from deep golden to copper
|
440
|
+
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
441
|
+
hop character producing medium to medium-high hop bitterness, flavor, and
|
442
|
+
aroma. Note that the \"traditional\" style of this beer has its origins with
|
443
|
+
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
444
|
+
hop varietals. One or more of these hop characters is the perceived end, but
|
445
|
+
the perceived hop characters may be a result of the skillful use of hops of
|
446
|
+
other national origins. American pale ales have medium body and low to medium
|
447
|
+
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
448
|
+
should be moderate to strong. Diacetyl should be absent or present at very
|
449
|
+
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
450
|
+
20:06:45"}},{"id":"ajBhPo","name":"Appalachian Amber Ale","description":"Thomas
|
451
|
+
Creek Amber is a full-bodied ale with malty flavor, rich caramel color, and
|
452
|
+
a smooth aromatic finish. \r\n\r\nMalts: 2 Row Pale, Carapils, Carmel 40,
|
453
|
+
Carmel 60, Black Patent\r\nHops: Hallertauer, Tettenger, East Kent Golding\r\n\r\nSilver
|
454
|
+
- 2008 Carolinas Championship of Beers\r\nGold - 2006 Carolinas Championship
|
455
|
+
of Beers\r\nSilver - 2003 Carolinas Championship of Beers","abv":"5.5","ibu":"32","glasswareId":5,"availableId":1,"styleId":32,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
456
|
+
02:42:42","updateDate":"2012-03-22 13:05:34","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
457
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
458
|
+
year round as a staple beer."},"style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
|
459
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
460
|
+
Amber\/Red Ale","description":"American amber\/red ales range from light copper
|
461
|
+
to light brown in color. They are characterized by American-variety hops used
|
462
|
+
to produce the perception of medium hop bitterness, flavor, and medium aroma.
|
463
|
+
Amber ales have medium-high to high maltiness with medium to low caramel character.
|
464
|
+
They should have medium to medium-high body. The style may have low levels
|
465
|
+
of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
|
466
|
+
at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
|
467
|
+
haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
468
|
+
20:06:45"}},{"id":"N8OUuv","name":"Apricot Honey Wheat","description":"Great
|
469
|
+
aroma and flavor","abv":"5.5","glasswareId":5,"availableId":1,"styleId":125,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
470
|
+
02:42:42","updateDate":"2012-03-22 13:05:11","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
471
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
472
|
+
year round as a staple beer."},"style":{"id":125,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
|
473
|
+
Beer","createDate":"2012-03-21 20:06:46"},"name":"Specialty Beer","description":"These
|
474
|
+
beers are brewed using unusual fermentable sugars, grains and starches that
|
475
|
+
contribute to alcohol content other than, or in addition to, malted barley.
|
476
|
+
Nuts generally have some degree of fermentables, thus beers brewed with nuts
|
477
|
+
would appropriately be entered in this category. The distinctive characters
|
478
|
+
of these special ingredients should be evident either in the aroma, flavor
|
479
|
+
or overall balance of the beer, but not necessarily in overpowering quantities.
|
480
|
+
For example, maple syrup or potatoes would be considered unusual. Rice, corn,
|
481
|
+
or wheat are not considered unusual. Special ingredients must be listed when
|
482
|
+
competing. A statement by the brewer explaining the special nature of the
|
483
|
+
beer, ingredient(s) and achieved character is essential in order for fair
|
484
|
+
assessment in competitions. If this beer is a classic style with some specialty
|
485
|
+
ingredient(s), the brewer should also specify the classic style. Guidelines
|
486
|
+
for competing: Spiced beers using unusual fermentables should be entered in
|
487
|
+
the experimental category. Fruit beers using unusual fermentables should be
|
488
|
+
entered in the fruit beer category.","ibuMax":"100","abvMin":"2.5","abvMax":"25","srmMin":"1","srmMax":"100","ogMin":"1.03","fgMin":"1.006","fgMax":"1.03","createDate":"2012-03-21
|
489
|
+
20:06:46"}},{"id":"nl9vAF","name":"Arber Spezial","abv":"5.5","glasswareId":5,"styleId":89,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/nl9vAF\/upload_6F1XZV-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/nl9vAF\/upload_6F1XZV-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/nl9vAF\/upload_6F1XZV-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
490
|
+
02:42:43","updateDate":"2012-03-22 13:05:28","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
491
|
+
02:41:33"},"style":{"id":89,"categoryId":7,"category":{"id":7,"name":"European-germanic
|
492
|
+
Lager","createDate":"2012-03-21 20:06:46"},"name":"German-Style Heller Bock\/Maibock","description":"The
|
493
|
+
German word helle means light colored, and as such, a heller Bock is light
|
494
|
+
straw to deep golden in color. Maibocks are also light-colored bocks. The
|
495
|
+
sweet malty character should come through in the aroma and flavor. A lightly
|
496
|
+
toasted and\/or bready malt character is often evident. Roast or heavy toast\/caramel
|
497
|
+
malt character should be absent. Body is medium to full. Hop bitterness should
|
498
|
+
be low, while noble-type hop aroma and flavor may be at low to medium levels.
|
499
|
+
Bitterness increases with gravity. Fruity esters may be perceived at low levels.
|
500
|
+
Diacetyl should be absent. Chill haze should not be perceived.","ibuMin":"20","ibuMax":"38","abvMin":"6","abvMax":"8","srmMin":"4","srmMax":"10","ogMin":"1.066","fgMin":"1.012","fgMax":"1.02","createDate":"2012-03-21
|
501
|
+
20:06:46"}},{"id":"Gl6oJA","name":"Archtop Amber","description":"The Archtop
|
502
|
+
Amber is named after the classic jazz and swing style guitars made famous
|
503
|
+
back in the 1930\u2019s. Archtop amber is a medium hopped amber with a nice
|
504
|
+
rich malty character. Not your average amber the Archtop utilizes Columbus, Liberty
|
505
|
+
and Perle hops. ABV is around 5.5%.","abv":"5.5","ibu":"35","glasswareId":5,"availableId":1,"styleId":32,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/Gl6oJA\/upload_FNTXwx-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/Gl6oJA\/upload_FNTXwx-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/Gl6oJA\/upload_FNTXwx-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-02-08
|
506
|
+
11:29:31","updateDate":"2012-03-22 13:05:49","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
507
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
508
|
+
year round as a staple beer."},"style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
|
509
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
510
|
+
Amber\/Red Ale","description":"American amber\/red ales range from light copper
|
511
|
+
to light brown in color. They are characterized by American-variety hops used
|
512
|
+
to produce the perception of medium hop bitterness, flavor, and medium aroma.
|
513
|
+
Amber ales have medium-high to high maltiness with medium to low caramel character.
|
514
|
+
They should have medium to medium-high body. The style may have low levels
|
515
|
+
of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
|
516
|
+
at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
|
517
|
+
haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
518
|
+
20:06:45"}},{"id":"BYbKwE","name":"Artist Colony Ale","abv":"5.5","styleId":32,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
519
|
+
02:42:43","updateDate":"2012-03-22 13:04:46","style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
|
520
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
521
|
+
Amber\/Red Ale","description":"American amber\/red ales range from light copper
|
522
|
+
to light brown in color. They are characterized by American-variety hops used
|
523
|
+
to produce the perception of medium hop bitterness, flavor, and medium aroma.
|
524
|
+
Amber ales have medium-high to high maltiness with medium to low caramel character.
|
525
|
+
They should have medium to medium-high body. The style may have low levels
|
526
|
+
of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
|
527
|
+
at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
|
528
|
+
haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
529
|
+
20:06:45"}},{"id":"z0D11f","name":"Ashland Amber","description":"A crisp,
|
530
|
+
well-balanced, refreshing amber. Simplicity is the key to this recipe.","abv":"5.5","styleId":32,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
531
|
+
02:42:43","updateDate":"2012-03-22 13:04:59","style":{"id":32,"categoryId":3,"category":{"id":3,"name":"North
|
532
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
533
|
+
Amber\/Red Ale","description":"American amber\/red ales range from light copper
|
534
|
+
to light brown in color. They are characterized by American-variety hops used
|
535
|
+
to produce the perception of medium hop bitterness, flavor, and medium aroma.
|
536
|
+
Amber ales have medium-high to high maltiness with medium to low caramel character.
|
537
|
+
They should have medium to medium-high body. The style may have low levels
|
538
|
+
of fruityester flavor and aroma. Diacetyl can be either absent or barely perceived
|
539
|
+
at very low levels. Chill haze is allowable at cold temperatures. Slight yeast
|
540
|
+
haze is acceptable for bottle-conditioned products.","ibuMin":"30","ibuMax":"40","abvMin":"4.5","abvMax":"6","srmMin":"11","srmMax":"18","ogMin":"1.048","fgMin":"1.012","fgMax":"1.018","createDate":"2012-03-21
|
541
|
+
20:06:45"}},{"id":"m6p5mA","name":"Atwater Ale","abv":"5.5","glasswareId":5,"availableId":1,"styleId":25,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
542
|
+
02:42:43","updateDate":"2012-03-22 13:05:17","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
543
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
544
|
+
year round as a staple beer."},"style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
545
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
546
|
+
Pale Ale","description":"American pale ales range from deep golden to copper
|
547
|
+
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
548
|
+
hop character producing medium to medium-high hop bitterness, flavor, and
|
549
|
+
aroma. Note that the \"traditional\" style of this beer has its origins with
|
550
|
+
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
551
|
+
hop varietals. One or more of these hop characters is the perceived end, but
|
552
|
+
the perceived hop characters may be a result of the skillful use of hops of
|
553
|
+
other national origins. American pale ales have medium body and low to medium
|
554
|
+
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
555
|
+
should be moderate to strong. Diacetyl should be absent or present at very
|
556
|
+
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
557
|
+
20:06:45"}},{"id":"qJ556f","name":"B.F. Ete","description":"This light & refreshing
|
558
|
+
saison was brewed to go down easy for the hot summer months. With a golden
|
559
|
+
straw color and an ABV at a session-worthy 5%, this ale is as enjoyable as
|
560
|
+
a cool dip in the pool on a sultry night.","abv":"5.5","ibu":"24","glasswareId":5,"availableId":1,"styleId":72,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
561
|
+
02:42:44","updateDate":"2012-03-22 13:05:20","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
562
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
563
|
+
year round as a staple beer."},"style":{"id":72,"categoryId":5,"category":{"id":5,"name":"Belgian
|
564
|
+
And French Origin Ales","createDate":"2012-03-21 20:06:46"},"name":"French
|
565
|
+
& Belgian-Style Saison","description":"Beers in this category are golden to
|
566
|
+
deep amber in color. There may be quite a variety of characters within this
|
567
|
+
style. Generally: They are light to medium in body. Malt aroma is low to medium-low.
|
568
|
+
Esters are medium to high in aroma, while, complex alcohols, herbs, spices,
|
569
|
+
low Brettanomyces character and even clove and smoke-like phenolics may or
|
570
|
+
may not be evident in the overall balanced beer. Hop aroma and flavor may
|
571
|
+
be at low to medium levels. Malt flavor is low but provides foundation for
|
572
|
+
the overall balance. Hop bitterness is moderate to moderately assertive. Herb
|
573
|
+
and\/or spice flavors, including black pepper-like notes, may or may not be
|
574
|
+
evident. Fruitiness from fermentation is generally in character. A balanced
|
575
|
+
small amount of sour or acidic flavors is acceptable when in balance with
|
576
|
+
other components. Earthy, cellar-like, musty aromas are okay. Diacetyl should
|
577
|
+
not be perceived. Chill or slight yeast haze is okay. Often bottle conditioned
|
578
|
+
with some yeast character and high carbonation. French & Belgian-Style Saison
|
579
|
+
may have Brettanomyces characters that are slightly acidity, fruity, horsey,
|
580
|
+
goaty and\/or leather-like.","ibuMin":"20","ibuMax":"40","abvMin":"4.5","abvMax":"8.5","srmMin":"4","srmMax":"14","ogMin":"1.055","fgMin":"1.004","fgMax":"1.016","createDate":"2012-03-21
|
581
|
+
20:06:46"}},{"id":"xd2mdS","name":"Back Forty","description":"Back FortyThe
|
582
|
+
\u201cBack Forty\u201d is property commonly found on the outskirts of the
|
583
|
+
Wisconsin family farm. Here uncultivated acres wait prime for adventure- forts,
|
584
|
+
tree houses, rope swings and first kisses! A place to run away, to camp, to
|
585
|
+
climb, to build, to play. Not actually home but not too far away. That\u2019s
|
586
|
+
the Back Forty. The beer you hold is similar both dark and adventurous still
|
587
|
+
smooth and familiar. Here\u2019s a beer you can enjoy without pretense or
|
588
|
+
explanation. Every mind requires some acres of possibility, space for dreams,
|
589
|
+
the great escape, everyone needs a Back Forty.","abv":"5.5","glasswareId":5,"availableId":4,"styleId":88,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/xd2mdS\/upload_vPi0Cx-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/xd2mdS\/upload_vPi0Cx-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/xd2mdS\/upload_vPi0Cx-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
590
|
+
02:42:44","updateDate":"2012-03-22 13:05:11","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
591
|
+
02:41:33"},"available":{"id":"4","name":"Seasonal","description":"Available
|
592
|
+
at the same time of year, every year."},"style":{"id":88,"categoryId":7,"category":{"id":7,"name":"European-germanic
|
593
|
+
Lager","createDate":"2012-03-21 20:06:46"},"name":"Traditional German-Style
|
594
|
+
Bock","description":"Traditional bocks are made with all malt and are strong,
|
595
|
+
malty, medium- to full-bodied, bottom-fermented beers with moderate hop bitterness
|
596
|
+
that should increase proportionately with the starting gravity. Malt character
|
597
|
+
should be a balance of sweetness and toasted\/nut-like malt; not caramel.
|
598
|
+
Hop flavor should be low and hop aroma should be very low. Bocks can range
|
599
|
+
in color from deep copper to dark brown. Fruity esters should be minimal.
|
600
|
+
Diacetyl should be absent.","ibuMin":"20","ibuMax":"30","abvMin":"6.3","abvMax":"7.5","srmMin":"20","srmMax":"30","ogMin":"1.066","fgMin":"1.018","fgMax":"1.024","createDate":"2012-03-21
|
601
|
+
20:06:46"}},{"id":"eOIJn2","name":"Bad Penny","description":"This dark brown
|
602
|
+
ale is slightly sweet with a caramel and dark fruit finish. A show case of
|
603
|
+
fine English malts, floor-malted the old way. We use pale, chocolate and crystal
|
604
|
+
malts to produce a complex but easy drinking dark ale. Very reminiscent of
|
605
|
+
northern English ales.","abv":"5.5","ibu":"25","glasswareId":5,"availableId":1,"styleId":37,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/eOIJn2\/upload_MmqlUE-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/eOIJn2\/upload_MmqlUE-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/eOIJn2\/upload_MmqlUE-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
606
|
+
02:42:44","updateDate":"2012-04-26 12:49:37","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
607
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
608
|
+
year round as a staple beer."},"style":{"id":37,"categoryId":3,"category":{"id":3,"name":"North
|
609
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
610
|
+
Brown Ale","description":"American brown ales range from deep copper to brown
|
611
|
+
in color. Roasted malt caramel-like and chocolate-like characters should be
|
612
|
+
of medium intensity in both flavor and aroma. American brown ales have evident
|
613
|
+
low to medium hop flavor and aroma, medium to high hop bitterness, and a medium
|
614
|
+
body. Estery and fruity-ester characters should be subdued. Diacetyl should
|
615
|
+
not be perceived. Chill haze is allowable at cold temperatures.","ibuMin":"25","ibuMax":"45","abvMin":"4","abvMax":"6.4","srmMin":"15","srmMax":"26","ogMin":"1.04","fgMin":"1.01","fgMax":"1.018","createDate":"2012-03-21
|
616
|
+
20:06:46"}},{"id":"j9r4ch","name":"Bearpaw Brown Ale","description":"Dark
|
617
|
+
and hoppy with a balance towards malt\r\n\r\nOur brown ale is similar to the
|
618
|
+
Amber Ale but with more malt flavor. This beer is slightly roasted with resinous
|
619
|
+
and citrus hop flavors, always on tap at Altitude.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":37,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
620
|
+
02:42:46","updateDate":"2012-03-22 13:05:17","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
621
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
622
|
+
year round as a staple beer."},"style":{"id":37,"categoryId":3,"category":{"id":3,"name":"North
|
623
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
624
|
+
Brown Ale","description":"American brown ales range from deep copper to brown
|
625
|
+
in color. Roasted malt caramel-like and chocolate-like characters should be
|
626
|
+
of medium intensity in both flavor and aroma. American brown ales have evident
|
627
|
+
low to medium hop flavor and aroma, medium to high hop bitterness, and a medium
|
628
|
+
body. Estery and fruity-ester characters should be subdued. Diacetyl should
|
629
|
+
not be perceived. Chill haze is allowable at cold temperatures.","ibuMin":"25","ibuMax":"45","abvMin":"4","abvMax":"6.4","srmMin":"15","srmMax":"26","ogMin":"1.04","fgMin":"1.01","fgMax":"1.018","createDate":"2012-03-21
|
630
|
+
20:06:46"}},{"id":"lbZa97","name":"Beastie Barrel Stout","description":"Our
|
631
|
+
Oatmeal Stout aged in bourbon barrels from Buffalo Trace Distillery in Frankfort
|
632
|
+
Kentucky. Aging the barrels in our brewery cold room results in a smooth bourbon
|
633
|
+
aroma and flavor that enhances the base oatmeal stout.","abv":"5.5","ibu":"27","glasswareId":6,"srmId":41,"availableId":1,"styleId":132,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
634
|
+
02:42:46","updateDate":"2012-04-16 23:41:21","glass":{"id":6,"name":"Snifter","createDate":"2012-01-03
|
635
|
+
02:41:33"},"srm":{"id":41,"name":"Over 40","hex":"000000"},"available":{"id":"1","name":"Year
|
636
|
+
Round","description":"Available year round as a staple beer."},"style":{"id":132,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
|
637
|
+
Beer","createDate":"2012-03-21 20:06:46"},"name":"Wood- and Barrel-Aged Beer","description":"A
|
638
|
+
wood- or barrel-aged beer is any lager, ale or hybrid beer, either a traditional
|
639
|
+
style or a unique experimental beer that has been aged for a period of time
|
640
|
+
in a wooden barrel or in contact with wood. This beer is aged with the intention
|
641
|
+
of imparting the particularly unique character of the wood and\/or what has
|
642
|
+
previously been in the barrel. New wood character can be characterized as
|
643
|
+
a complex blend of vanillin and\/or other unique wood character, but wood
|
644
|
+
aged is not necessarily synonymous with imparting wood-flavors. Used sherry,
|
645
|
+
rum, bourbon, scotch, port, wine and other barrels are often used, imparting
|
646
|
+
complexity and uniqueness to beer. Ultimately a balance of flavor, aroma and
|
647
|
+
mouthfeel are sought with the marriage of new beer with wood and\/or barrel
|
648
|
+
flavors. Beers in this style may or may not have Brettanomyces character.
|
649
|
+
Brewers when entering this category should specify type of barrel and\/or
|
650
|
+
wood used and any other special treatment or ingredients used. Competition
|
651
|
+
managers may create style subcategories to differentiate between high alcohol
|
652
|
+
and low alcohol beers and very dark and lighter colored beer as well as for
|
653
|
+
fruit beers and non-fruit beers. Competitions may develop guidelines requesting
|
654
|
+
brewers to specify what kind of wood (new or used oak, other wood varieties)
|
655
|
+
and\/or barrel (whiskey, port, sherry, wine, etc.) was used in the process.
|
656
|
+
The brewer may be asked to explain the special nature (wood used, base beer
|
657
|
+
style(s) and achieved character) of the beer.","createDate":"2012-03-21 20:06:46"}},{"id":"vjRDZj","name":"Beatification","description":"This
|
658
|
+
beer is very unique and inspired by breweries in the Lambic region of Belgium
|
659
|
+
and, especially, our friends at Cantillon. It is 100% spontaneously fermented,
|
660
|
+
meaning yeast is not added. Once the beer is brewed, it is transferred to
|
661
|
+
a cool-ship or \u201chorny\u201d tank located in our barrel room at the pub.
|
662
|
+
There it sits overnight and collects whatever funky wild yeast and bacteria
|
663
|
+
may be living in the room. The next day it is transferred to oak wine barrels
|
664
|
+
where it ferments wildly and ages for a few months. The end result is a wild,
|
665
|
+
spontaneously fermented, sour, and tasty hand-crafted beer!","abv":"5.5","glasswareId":5,"availableId":4,"styleId":132,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/vjRDZj\/upload_6zCns2-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/vjRDZj\/upload_6zCns2-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/vjRDZj\/upload_6zCns2-large.png"},"status":"verified","statusDisplay":"Verified","originalGravity":"1.05","createDate":"2012-01-03
|
666
|
+
02:42:46","updateDate":"2012-03-22 13:05:14","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
667
|
+
02:41:33"},"available":{"id":"4","name":"Seasonal","description":"Available
|
668
|
+
at the same time of year, every year."},"style":{"id":132,"categoryId":11,"category":{"id":11,"name":"Hybrid\/mixed
|
669
|
+
Beer","createDate":"2012-03-21 20:06:46"},"name":"Wood- and Barrel-Aged Beer","description":"A
|
670
|
+
wood- or barrel-aged beer is any lager, ale or hybrid beer, either a traditional
|
671
|
+
style or a unique experimental beer that has been aged for a period of time
|
672
|
+
in a wooden barrel or in contact with wood. This beer is aged with the intention
|
673
|
+
of imparting the particularly unique character of the wood and\/or what has
|
674
|
+
previously been in the barrel. New wood character can be characterized as
|
675
|
+
a complex blend of vanillin and\/or other unique wood character, but wood
|
676
|
+
aged is not necessarily synonymous with imparting wood-flavors. Used sherry,
|
677
|
+
rum, bourbon, scotch, port, wine and other barrels are often used, imparting
|
678
|
+
complexity and uniqueness to beer. Ultimately a balance of flavor, aroma and
|
679
|
+
mouthfeel are sought with the marriage of new beer with wood and\/or barrel
|
680
|
+
flavors. Beers in this style may or may not have Brettanomyces character.
|
681
|
+
Brewers when entering this category should specify type of barrel and\/or
|
682
|
+
wood used and any other special treatment or ingredients used. Competition
|
683
|
+
managers may create style subcategories to differentiate between high alcohol
|
684
|
+
and low alcohol beers and very dark and lighter colored beer as well as for
|
685
|
+
fruit beers and non-fruit beers. Competitions may develop guidelines requesting
|
686
|
+
brewers to specify what kind of wood (new or used oak, other wood varieties)
|
687
|
+
and\/or barrel (whiskey, port, sherry, wine, etc.) was used in the process.
|
688
|
+
The brewer may be asked to explain the special nature (wood used, base beer
|
689
|
+
style(s) and achieved character) of the beer.","createDate":"2012-03-21 20:06:46"}},{"id":"gum7TK","name":"Belgian
|
690
|
+
White","description":"A light refreshing Belgian style wheat beer brewed with
|
691
|
+
un-malted wheat, orange peel & coriander. A very old style of beer originally
|
692
|
+
brewed by Belgian farmers.\r\n\r\nMalt Varieties: Pale Malt, Wheat\r\nHop
|
693
|
+
Varieties: Perle, Hallertau","abv":"5.5","ibu":"21","glasswareId":5,"styleId":65,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
694
|
+
02:42:47","updateDate":"2012-03-22 13:05:43","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
695
|
+
02:41:33"},"style":{"id":65,"categoryId":5,"category":{"id":5,"name":"Belgian
|
696
|
+
And French Origin Ales","createDate":"2012-03-21 20:06:46"},"name":"Belgian-Style
|
697
|
+
White (or Wit) \/ Belgian-Style Wheat","description":"Belgian white ales are
|
698
|
+
very pale in color and are brewed using unmalted wheat and malted barley and
|
699
|
+
are spiced with coriander and orange peel. Coriander and light orange peel
|
700
|
+
aroma should be perceived as such or as an unidentified spiciness. Phenolic
|
701
|
+
spiciness and yeast flavors may be evident at mild levels. These beers are
|
702
|
+
traditionally bottle conditioned and served cloudy. An unfiltered starch and
|
703
|
+
yeast haze should be part of the appearance. The low to medium body should
|
704
|
+
have some degree of creaminess from wheat starch. The style is further characterized
|
705
|
+
by the use of noble-type hops to achieve low hop bitterness and little to
|
706
|
+
no apparent hop flavor. This beer has no diacetyl and a low to medium fruity-ester
|
707
|
+
level. Mild acidity is appropriate.","ibuMin":"10","ibuMax":"17","abvMin":"4.8","abvMax":"5.2","srmMin":"2","srmMax":"4","ogMin":"1.044","fgMin":"1.006","fgMax":"1.01","createDate":"2012-03-21
|
708
|
+
20:06:46"}},{"id":"s6xmV6","name":"Belgian-Style Wit","description":"Belgian-style
|
709
|
+
beers have become popular with craft beer drinkers because of their dynamic
|
710
|
+
offbeat flavors. They can range from fruity to tangy tart in one sip. Our
|
711
|
+
Belgian-style wit (white) has pilzen malt as well as malted and unmalted wheat
|
712
|
+
to produce that classic hazzy canary colors and soft palate. Corriander (seed
|
713
|
+
of cilantro) and orange peel are used in the brewing process to develop a
|
714
|
+
delicious taste best described as citrus\/celery like. This beer drinks easy
|
715
|
+
and finishes with a refreshing tartness.","abv":"5.5","glasswareId":5,"availableId":4,"styleId":65,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/s6xmV6\/upload_DChLAG-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/s6xmV6\/upload_DChLAG-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/s6xmV6\/upload_DChLAG-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
716
|
+
02:42:47","updateDate":"2012-03-22 13:05:09","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
717
|
+
02:41:33"},"available":{"id":"4","name":"Seasonal","description":"Available
|
718
|
+
at the same time of year, every year."},"style":{"id":65,"categoryId":5,"category":{"id":5,"name":"Belgian
|
719
|
+
And French Origin Ales","createDate":"2012-03-21 20:06:46"},"name":"Belgian-Style
|
720
|
+
White (or Wit) \/ Belgian-Style Wheat","description":"Belgian white ales are
|
721
|
+
very pale in color and are brewed using unmalted wheat and malted barley and
|
722
|
+
are spiced with coriander and orange peel. Coriander and light orange peel
|
723
|
+
aroma should be perceived as such or as an unidentified spiciness. Phenolic
|
724
|
+
spiciness and yeast flavors may be evident at mild levels. These beers are
|
725
|
+
traditionally bottle conditioned and served cloudy. An unfiltered starch and
|
726
|
+
yeast haze should be part of the appearance. The low to medium body should
|
727
|
+
have some degree of creaminess from wheat starch. The style is further characterized
|
728
|
+
by the use of noble-type hops to achieve low hop bitterness and little to
|
729
|
+
no apparent hop flavor. This beer has no diacetyl and a low to medium fruity-ester
|
730
|
+
level. Mild acidity is appropriate.","ibuMin":"10","ibuMax":"17","abvMin":"4.8","abvMax":"5.2","srmMin":"2","srmMax":"4","ogMin":"1.044","fgMin":"1.006","fgMax":"1.01","createDate":"2012-03-21
|
731
|
+
20:06:46"}},{"id":"YlIcwv","name":"Bellegems Bruin","abv":"5.5","isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
732
|
+
02:42:47","updateDate":"2012-03-22 13:04:40"},{"id":"LEJ96U","name":"Belly
|
733
|
+
River Oat Meal Stout","description":"A full bodied, dark stout with creamy
|
734
|
+
texture balanced by a slightly roasty taste. Pale, Chocolate, Crystal malts
|
735
|
+
and oatmeal contribute a delicious caramel flavor. Traditionally mild UK
|
736
|
+
Kent Golding Hops help to balance to the malty body of this brew.","abv":"5.5","ibu":"30","glasswareId":5,"srmId":28,"availableId":1,"styleId":42,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
737
|
+
02:42:47","updateDate":"2012-03-22 13:05:31","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
738
|
+
02:41:33"},"srm":{"id":28,"name":"28","hex":"6A0E00"},"available":{"id":"1","name":"Year
|
739
|
+
Round","description":"Available year round as a staple beer."},"style":{"id":42,"categoryId":3,"category":{"id":3,"name":"North
|
740
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
741
|
+
Stout","description":"Initial low to medium malt sweetness with a degree of
|
742
|
+
caramel, chocolate and\/or roasted coffee flavor with a distinctive dryroasted
|
743
|
+
bitterness in the finish. Coffee-like roasted barley and roasted malt aromas
|
744
|
+
are prominent. Some slight roasted malt acidity is permissible and a medium-
|
745
|
+
to full-bodied mouthfeel is appropriate. Hop bitterness may be moderate to
|
746
|
+
high. Hop aroma and flavor is moderate to high, often with American citrus-type
|
747
|
+
and\/or resiny hop character. The perception of fruity esters is low. Roasted
|
748
|
+
malt\/barley astringency may be low but not excessive. Diacetyl (butterscotch)
|
749
|
+
should be negligible or not perceived. Head retention is excellent.","ibuMin":"35","ibuMax":"60","abvMin":"5.7","abvMax":"8.8","srmMin":"40","srmMax":"40","ogMin":"1.05","fgMin":"1.01","fgMax":"1.022","createDate":"2012-03-21
|
750
|
+
20:06:46"}},{"id":"Sldiyh","name":"Bender","description":"Here''s what happens
|
751
|
+
when substance meets smooth. This oatmeal brown ale defies traditional categories.
|
752
|
+
Bender begins crisp and lightly hoppy, complemented by the velvety sleekness
|
753
|
+
oats deliver. Belgian and British malts usher in cascades of cocoa, coffee,
|
754
|
+
caramel and hints of vanilla and cream. An easy-drinking ale with many layers
|
755
|
+
of satisfaction.","abv":"5.5","ibu":"45","srmId":41,"availableId":1,"styleId":37,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/Sldiyh\/upload_oXFVYQ-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/Sldiyh\/upload_oXFVYQ-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/Sldiyh\/upload_oXFVYQ-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
756
|
+
02:42:47","updateDate":"2012-07-30 21:50:37","srm":{"id":41,"name":"Over 40","hex":"000000"},"available":{"id":"1","name":"Year
|
757
|
+
Round","description":"Available year round as a staple beer."},"style":{"id":37,"categoryId":3,"category":{"id":3,"name":"North
|
758
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
759
|
+
Brown Ale","description":"American brown ales range from deep copper to brown
|
760
|
+
in color. Roasted malt caramel-like and chocolate-like characters should be
|
761
|
+
of medium intensity in both flavor and aroma. American brown ales have evident
|
762
|
+
low to medium hop flavor and aroma, medium to high hop bitterness, and a medium
|
763
|
+
body. Estery and fruity-ester characters should be subdued. Diacetyl should
|
764
|
+
not be perceived. Chill haze is allowable at cold temperatures.","ibuMin":"25","ibuMax":"45","abvMin":"4","abvMax":"6.4","srmMin":"15","srmMax":"26","ogMin":"1.04","fgMin":"1.01","fgMax":"1.018","createDate":"2012-03-21
|
765
|
+
20:06:46"}},{"id":"lq8HX0","name":"Best Bitter","description":"Wonderfully
|
766
|
+
balanced \u201csession beer\u201d in the ESB style.","abv":"5.5","styleId":4,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/lq8HX0\/upload_89V1Eo-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/lq8HX0\/upload_89V1Eo-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/lq8HX0\/upload_89V1Eo-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
767
|
+
02:42:47","updateDate":"2012-03-22 13:04:36","style":{"id":4,"categoryId":1,"category":{"id":1,"name":"British
|
768
|
+
Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"Special Bitter or
|
769
|
+
Best Bitter","description":"Special bitter is more robust than ordinary bitter.
|
770
|
+
It has medium body and medium residual malt sweetness. It is deep gold to
|
771
|
+
copper colored. Hop bitterness should be medium and absent of harshness. Hop
|
772
|
+
flavor and aroma character may be evident at the brewer''s discretion. Mild
|
773
|
+
carbonation traditionally characterizes draft-cask versions, but in bottled
|
774
|
+
versions, a slight increase in carbon dioxide content is acceptable. Fruity-ester
|
775
|
+
character is acceptable in aroma and flavor. Diacetyl (butterscotch character)
|
776
|
+
is acceptable and characteristic when at very low levels. The absence of diacetyl
|
777
|
+
is also acceptable. Chill haze is allowable at cold temperatures. (English
|
778
|
+
and American hop character may be specified in subcategories.)","ibuMin":"28","ibuMax":"40","abvMin":"4.1","abvMax":"4.8","srmMin":"6","srmMax":"14","ogMin":"1.038","fgMin":"1.006","fgMax":"1.012","createDate":"2012-03-21
|
779
|
+
20:06:45"}},{"id":"PtfFW9","name":"Big Falcon Deal","description":"An American
|
780
|
+
style pale ale brewed with Falconer''s Flight hops. Falconer''s Flight is
|
781
|
+
a hop blend named after Northwest brewing legend Glen Hay Falconer who passed
|
782
|
+
away in 2002. The blend includes Citra, Simcoe and Sorachi Ace hops and exhibits
|
783
|
+
pleasant citrus, grapefruit, spicy and earthy characteristics. We brewed Big
|
784
|
+
Falcon Deal with a hearty and inspired grain bill of Vienna malt, special
|
785
|
+
aromatic, victory and oats to provide a complex and well rounded malt profile.
|
786
|
+
We then bittered this ale with Columbus hops, provided some flavor with Cascade
|
787
|
+
and then loaded the last 10 minutes of the boil with the Falconer''s Flight
|
788
|
+
hop blend. Falconer''s Flight was also added post fermentation with a little
|
789
|
+
bit of Centennial to showcase the hop''s aroma.","abv":"5.5","ibu":"47.1","glasswareId":5,"availableId":1,"styleId":25,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/PtfFW9\/upload_BEllsr-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/PtfFW9\/upload_BEllsr-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/PtfFW9\/upload_BEllsr-large.png"},"status":"verified","statusDisplay":"Verified","originalGravity":"1.054","createDate":"2012-04-15
|
790
|
+
19:26:28","updateDate":"2012-04-15 19:26:29","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
791
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
792
|
+
year round as a staple beer."},"style":{"id":25,"categoryId":3,"category":{"id":3,"name":"North
|
793
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
794
|
+
Pale Ale","description":"American pale ales range from deep golden to copper
|
795
|
+
in color. The style is characterized by fruity, floral and citrus-like American-variety
|
796
|
+
hop character producing medium to medium-high hop bitterness, flavor, and
|
797
|
+
aroma. Note that the \"traditional\" style of this beer has its origins with
|
798
|
+
certain floral, fruity, citrus-like, piney, resinous, or sulfur-like American
|
799
|
+
hop varietals. One or more of these hop characters is the perceived end, but
|
800
|
+
the perceived hop characters may be a result of the skillful use of hops of
|
801
|
+
other national origins. American pale ales have medium body and low to medium
|
802
|
+
maltiness. Low caramel character is allowable. Fruity-ester flavor and aroma
|
803
|
+
should be moderate to strong. Diacetyl should be absent or present at very
|
804
|
+
low levels. Chill haze is allowable at cold temperatures.","ibuMin":"30","ibuMax":"42","abvMin":"4.5","abvMax":"5.6","srmMin":"6","srmMax":"14","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
805
|
+
20:06:45"}},{"id":"WI8lAN","name":"Bink Blond","description":"The \u2018Bink
|
806
|
+
blond\u2019 was the first who came out of the barrels. It\u2019s a beer of
|
807
|
+
high fermentation, unfiltered and not pasteurized, with secondary fermentation
|
808
|
+
in the bottle. This beer with a hoppy character is the perfect thirst-quencher.
|
809
|
+
The ingredients are: two types of malt, two Belgian types of hop, brewing
|
810
|
+
liquor and yeast. Our \u2018Bink blond\u2019 is a fresh and lightly digestible
|
811
|
+
beer with a hoppy flavor and a bitter aftertaste.","abv":"5.5","glasswareId":8,"styleId":61,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/WI8lAN\/upload_qALrbn-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/WI8lAN\/upload_qALrbn-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/WI8lAN\/upload_qALrbn-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
812
|
+
02:42:49","updateDate":"2012-03-22 13:05:30","glass":{"id":8,"name":"Tulip","createDate":"2012-01-03
|
813
|
+
02:41:33"},"style":{"id":61,"categoryId":5,"category":{"id":5,"name":"Belgian
|
814
|
+
And French Origin Ales","createDate":"2012-03-21 20:06:46"},"name":"Belgian-Style
|
815
|
+
Blonde Ale","description":"Belgian-style blond ales are characterized by low
|
816
|
+
yet evident hop bitterness, flavor, and sometimes aroma. Light to medium body
|
817
|
+
and low malt aroma with a sweet, spiced and a low to medium fruity-ester character
|
818
|
+
orchestrated in flavor and aroma. Sugar may be used to lighten perceived body.
|
819
|
+
They are blonde to golden in color. Noble-type hops are commonly used. Low
|
820
|
+
levels of phenolic spiciness from yeast byproducts may be perceived. Diacetyl
|
821
|
+
should not be perceived. Acidic character should not be present. Chill haze
|
822
|
+
is allowable at cold temperatures.","ibuMin":"15","ibuMax":"30","abvMin":"6","abvMax":"7.8","srmMin":"4","srmMax":"7","ogMin":"1.054","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
823
|
+
20:06:46"}},{"id":"tyPx0w","name":"Bink Bruin","description":"The \u2018Bink
|
824
|
+
brown\u2019 is the most known \u2018Bink beer\u2019. It\u2019s a beer of high
|
825
|
+
fermentation, unfiltered and not pasteurized, with secondary fermentation
|
826
|
+
in the bottle. This tasty beer is appreciated by the lover of brown beers.
|
827
|
+
The ingredients are: four types of malt, one Belgian type of hop, brewing
|
828
|
+
liquor and yeast. Our \u2018Bink brown\u2019 is a full and softly bitter beer
|
829
|
+
with an aftertaste of sweets and malt.","abv":"5.5","glasswareId":8,"availableId":1,"styleId":62,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/tyPx0w\/upload_MGInT9-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/tyPx0w\/upload_MGInT9-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/tyPx0w\/upload_MGInT9-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
830
|
+
02:42:49","updateDate":"2012-03-22 13:05:30","glass":{"id":8,"name":"Tulip","createDate":"2012-01-03
|
831
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
832
|
+
year round as a staple beer."},"style":{"id":62,"categoryId":5,"category":{"id":5,"name":"Belgian
|
833
|
+
And French Origin Ales","createDate":"2012-03-21 20:06:46"},"name":"Belgian-Style
|
834
|
+
Pale Ale","description":"Belgian-style pale ales are characterized by low
|
835
|
+
but noticeable hop bitterness, flavor, and aroma. Light to medium body and
|
836
|
+
low malt aroma are typical. They are light amber to deep amber in color. Noble-type
|
837
|
+
hops are commonly used. Low to medium fruity esters are evident in aroma and
|
838
|
+
flavor. Low levels of phenolic spiciness from yeast byproducts may be perceived.
|
839
|
+
Low caramel or toasted malt flavor is okay. Diacetyl should not be perceived.
|
840
|
+
Chill haze is allowable at cold temperatures.","ibuMin":"20","ibuMax":"30","abvMin":"4","abvMax":"6","srmMin":"6","srmMax":"12","ogMin":"1.044","fgMin":"1.008","fgMax":"1.014","createDate":"2012-03-21
|
841
|
+
20:06:46"}},{"id":"EhFKxK","name":"Black Bear Stout","description":"Black
|
842
|
+
Bear Stout is a robust, full-bodied beer with a rich roasted malt flavor and
|
843
|
+
hints of dark chocolate and coffee.","abv":"5.5","glasswareId":5,"availableId":1,"styleId":42,"isOrganic":"N","labels":{"icon":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/EhFKxK\/upload_WdLw3s-icon.png","medium":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/EhFKxK\/upload_WdLw3s-medium.png","large":"http:\/\/s3.amazonaws.com\/brewerydbapi\/beer\/EhFKxK\/upload_WdLw3s-large.png"},"status":"verified","statusDisplay":"Verified","createDate":"2012-01-10
|
844
|
+
04:08:06","updateDate":"2012-03-22 13:05:46","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
845
|
+
02:41:33"},"available":{"id":"1","name":"Year Round","description":"Available
|
846
|
+
year round as a staple beer."},"style":{"id":42,"categoryId":3,"category":{"id":3,"name":"North
|
847
|
+
American Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"American-Style
|
848
|
+
Stout","description":"Initial low to medium malt sweetness with a degree of
|
849
|
+
caramel, chocolate and\/or roasted coffee flavor with a distinctive dryroasted
|
850
|
+
bitterness in the finish. Coffee-like roasted barley and roasted malt aromas
|
851
|
+
are prominent. Some slight roasted malt acidity is permissible and a medium-
|
852
|
+
to full-bodied mouthfeel is appropriate. Hop bitterness may be moderate to
|
853
|
+
high. Hop aroma and flavor is moderate to high, often with American citrus-type
|
854
|
+
and\/or resiny hop character. The perception of fruity esters is low. Roasted
|
855
|
+
malt\/barley astringency may be low but not excessive. Diacetyl (butterscotch)
|
856
|
+
should be negligible or not perceived. Head retention is excellent.","ibuMin":"35","ibuMax":"60","abvMin":"5.7","abvMax":"8.8","srmMin":"40","srmMax":"40","ogMin":"1.05","fgMin":"1.01","fgMax":"1.022","createDate":"2012-03-21
|
857
|
+
20:06:46"}},{"id":"SXn3sZ","name":"Black Beard\u2019s Delight","abv":"5.5","glasswareId":5,"styleId":83,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-01-03
|
858
|
+
02:42:50","updateDate":"2012-03-22 13:05:39","glass":{"id":5,"name":"Pint","createDate":"2012-01-03
|
859
|
+
02:41:33"},"style":{"id":83,"categoryId":7,"category":{"id":7,"name":"European-germanic
|
860
|
+
Lager","createDate":"2012-03-21 20:06:46"},"name":"European-Style Dark \/
|
861
|
+
M\u00fcnchner Dunkel","description":"These light brown to dark brown beers
|
862
|
+
have a pronounced malty aroma and flavor that dominates over the clean, crisp,
|
863
|
+
moderate hop bitterness. This beer does not offer an overly sweet impression,
|
864
|
+
but rather a mild balance between malt sweetness, hop bitterness and light
|
865
|
+
to moderate mouthfeel. A classic M\u00fcnchner Dunkel should have chocolate-like,
|
866
|
+
roast malt, bread-like or biscuit-like aroma that comes from the use of Munich
|
867
|
+
dark malt. Chocolate or roast malts can be used, but the percentage used should
|
868
|
+
be minimal. Noble-type hop flavor and aroma should be low but perceptible.
|
869
|
+
Diacetyl should not be perceived. Ale-like fruity esters and chill haze should
|
870
|
+
not be perceived.","ibuMin":"16","ibuMax":"25","abvMin":"4.5","abvMax":"5","srmMin":"15","srmMax":"20","ogMin":"1.048","fgMin":"1.014","fgMax":"1.018","createDate":"2012-03-21
|
871
|
+
20:06:46"}},{"id":"F4caNC","name":"Black Bottom Oatmeal Stout","description":"Oatmeal
|
872
|
+
isn\u2019t just for breakfast! Dark rich malts blend with smooth oats to produce
|
873
|
+
a jazzy brew with notes of coffee and chocolate. Having desert, why not add
|
874
|
+
some decadence and pair it with this beer.","abv":"5.5","styleId":21,"isOrganic":"N","status":"verified","statusDisplay":"Verified","createDate":"2012-06-04
|
875
|
+
00:02:32","updateDate":"2012-06-04 00:02:32","style":{"id":21,"categoryId":1,"category":{"id":1,"name":"British
|
876
|
+
Origin Ales","createDate":"2012-03-21 20:06:45"},"name":"Oatmeal Stout","description":"Oatmeal
|
877
|
+
stouts include oatmeal in their grist, resulting in a pleasant, full flavor
|
878
|
+
and a smooth profile that is rich without being grainy. A roasted malt character
|
879
|
+
which is caramel-like and chocolate-like should be evident - smooth and not
|
880
|
+
bitter. Coffee-like roasted barley and roasted malt aromas (chocolate and
|
881
|
+
nut-like) are prominent. Color is dark brown to black. Bitterness is moderate,
|
882
|
+
not high. Hop flavor and aroma are optional but should not overpower the overall
|
883
|
+
balance if present. This is a medium- to full- bodied beer, with minimal fruity
|
884
|
+
esters. Diacetyl should be absent or at extremely low levels. Original gravity
|
885
|
+
range and alcohol levels are indicative of English tradition of oatmeal stout.","ibuMin":"20","ibuMax":"40","abvMin":"3.8","abvMax":"6","srmMin":"20","srmMax":"20","ogMin":"1.038","fgMin":"1.008","fgMax":"1.02","createDate":"2012-03-21
|
886
|
+
20:06:45"}}],"status":"success"}'
|
887
|
+
http_version:
|
888
|
+
recorded_at: Sat, 11 Aug 2012 23:35:42 GMT
|
889
|
+
recorded_with: VCR 2.2.2
|