-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbjcp_styleguide-2021.json
6885 lines (6885 loc) · 525 KB
/
bjcp_styleguide-2021.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"beerjson": {
"version": 2.01,
"styles": [
{
"name": "American Light Lager",
"category": "Standard American Beer",
"category_id": "1",
"style_id": "1A",
"category_description": "This category describes everyday American beers that have a wide public appeal. Containing both ales and lagers, the beers of this category are not typically complex, and have smooth, accessible flavors. The ales tend to have lager-like qualities, or are designed to appeal to mass-market lager drinkers as crossover beers. Mass-market beers with a more international appeal or origin are described in the International Lager category.",
"overall_impression": "A highly carbonated, very light-bodied, nearly flavorless lager designed to be consumed very cold. Very refreshing and thirst-quenching.",
"aroma": "Low malt aroma optional, but may be perceived as grainy, sweet, or corn-like, if present. Light spicy, floral, or herbal hop aroma optional. While a clean fermentation profile is desirable, a light amount of yeast character is not a fault.",
"appearance": "Very pale straw to pale yellow color. White, frothy head seldom persists. Very clear.",
"flavor": "Relatively neutral palate with a crisp, dry finish and a low to very low grainy or corn-like flavor that might be perceived as sweetness due to the low bitterness. Low floral, spicy, or herbal hop flavor optional, but is rarely strong enough to detect. Low to very low bitterness. Balance may vary from slightly malty to slightly bitter, but is usually close to even. High carbonation may accentuate the crispness of the dry finish. Clean fermentation profile.",
"mouthfeel": "Very light, sometimes watery, body. Very highly carbonated with slight carbonic bite on the tongue.",
"comments": "Designed to appeal to as broad a range of the general public as possible. Strong flavors are a fault. With little malt or hop flavor, the yeast character often is what most differentiates brands.",
"history": "Coors briefly made a light lager in the early 1940s. Modern versions were first produced by Rheingold in 1967 to appeal to diet-conscious drinkers, but only became popular starting in 1973 after Miller Brewing acquired the recipe and marketed the beer heavily to sports fans with the “tastes great, less filling” campaign. Beers of this genre became the largest sellers in the United States in the 1990s.",
"style_comparison": "A lighter-bodied, lower-alcohol, lower calorie version of an American Lager. Less hop character and bitterness than a German Leichtbier.",
"tags": "session-strength, pale-color, bottom-fermented, lagered, north-america, traditional-style, pale-lager-family, balanced",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.028
},
"maximum": {
"unit": "sg",
"value": 1.04
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 8
},
"maximum": {
"unit": "IBUs",
"value": 12
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 0.998
},
"maximum": {
"unit": "sg",
"value": 1.008
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 2.8
},
"maximum": {
"unit": "%",
"value": 4.2
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 2
},
"maximum": {
"unit": "SRM",
"value": 3
}
},
"ingredients": "Two- or six-row barley with up to 40% rice or corn as adjuncts. Additional enzymes can further lighten the body and lower carbohydrates. Lager yeast. Negligible hops.",
"examples": "Bud Light, Coors Light, Grain Belt Premium Light American Lager, Michelob Light, Miller Lite, Old Milwaukee Light",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "American Lager",
"category": "Standard American Beer",
"category_id": "1",
"style_id": "1B",
"category_description": "This category describes everyday American beers that have a wide public appeal. Containing both ales and lagers, the beers of this category are not typically complex, and have smooth, accessible flavors. The ales tend to have lager-like qualities, or are designed to appeal to mass-market lager drinkers as crossover beers. Mass-market beers with a more international appeal or origin are described in the International Lager category.",
"overall_impression": "A very pale, highly-carbonated, light-bodied, well-attenuated lager with a very neutral flavor profile and low bitterness. Served very cold, it can be a very refreshing and thirst-quenching drink.",
"aroma": "Low malt aroma optional, but may be perceived as grainy, sweet, or corn-like, if present. Lightspicy or floral hop aroma optional. While a clean fermentation profile is desirable, a light amount of yeast character is not a fault.",
"appearance": "Very pale straw to medium yellow color. White, frothy head seldom persists. Very clear.",
"flavor": "Relatively neutral palate with a crisp, dry finish and a moderately-low to low grainy or corn-like flavor that might be perceived as sweetness due to the low bitterness. Moderatelylow hop flavor optional, with a floral, spicy, or herbal quality,if strong enough to distinguish. Low to medium-low bitterness. Balance may vary from slightly malty to slightly bitter, but is usually close to even. High carbonation may accentuate the crispness of the dry finish. Clean fermentation profile.",
"mouthfeel": "Low to medium-low body. Very highly carbonated with slight carbonic bite on the tongue.",
"comments": "Often what non-craft beer drinkers expect to be served if they order beer in the United States. May be marketed as Pilsner outside Europe, but should not be confused with traditional examples.Strong flavors are a fault. With little malt or hop flavor, the yeast character is what most frequently differentiates brands.",
"history": "Evolved from Pre-Prohibition Lager (see Category 27) in the US after Prohibition and World War II. Surviving breweries consolidated, expanded distribution, and heavily promoted a beer style that appealed to a broad range of the population. Became the dominant beer style for many decades, and spawned many international rivals who would develop similarly bland products for the mass market supported by heavy advertising.",
"style_comparison": "Stronger, more flavor and body than an American Light Lager. Less bitterness and flavor than an International Pale Lager. Significantly less flavor, hops, and bitterness than traditional European Pilsners.",
"tags": "standard-strength, pale-color, bottom-fermented, lagered, north-america, traditional-style, pale-lager-family, balanced",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.04
},
"maximum": {
"unit": "sg",
"value": 1.05
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 8
},
"maximum": {
"unit": "IBUs",
"value": 18
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.004
},
"maximum": {
"unit": "sg",
"value": 1.01
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 4.2
},
"maximum": {
"unit": "%",
"value": 5.3
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 2
},
"maximum": {
"unit": "SRM",
"value": 3.5
}
},
"ingredients": "Two- or six-row barley with up to 40% rice or corn as adjuncts. Lager yeast. Light use of hops.",
"examples": "Budweiser, Coors Original, Grain Belt Premium American Lager, Miller High Life, Old Style, Pabst Blue Ribbon, Special Export",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "Cream Ale",
"category": "Standard American Beer",
"category_id": "1",
"style_id": "1C",
"category_description": "This category describes everyday American beers that have a wide public appeal. Containing both ales and lagers, the beers of this category are not typically complex, and have smooth, accessible flavors. The ales tend to have lager-like qualities, or are designed to appeal to mass-market lager drinkers as crossover beers. Mass-market beers with a more international appeal or origin are described in the International Lager category.",
"overall_impression": "A clean, well-attenuated, highly carbonated, flavorful American “lawnmower” beer. Easily drinkable, smooth, and refreshing, with more character than typical American lagers, yet still subtle and restrained.",
"aroma": "Medium-low to low malt notes, with a sweet, corn-like aroma. Low DMS optional. Medium-low hop aroma optional, using any variety but floral, spicy, or herbal notes are most common. Overall, has a subtle, balanced aroma. Low fruity esters optional.",
"appearance": "Pale straw to light gold color, although usually on the pale side. Low to medium head with medium to high carbonation. Fair head retention. Brilliant, sparkling clarity. Effervescent.",
"flavor": "Low to medium-low hop bitterness. Low to moderate malty sweetness, varying with gravity and attenuation. The malt is generally neutral, possibly grainy or crackery. Usually well-attenuated. Balanced palate, with hops only enough to support the malt. A low to moderate corny flavor is commonly found, but light DMS is optional. Finish can vary from somewhat light, dry, and crisp to faintly sweet. Clean fermentation profile, but low fruity esters are optional. Low to medium-low hop flavor of any variety, but typically floral, spicy, or herbal. Subtle.",
"mouthfeel": "Generally light and crisp, although body can reach medium. Smooth mouthfeel with medium to high attenuation; higher attenuation levels can lend a “thirst quenching” quality. High carbonation.",
"comments": "Most commercial examples are in the 1.050–1.053 OG range, and bitterness rarely rises above 20 IBUs.",
"history": "A sparkling or present-use ale from the second half of the 1800s that survived prohibition. An ale brewed to compete with lagers brewed in Canada and the US Northeast, Mid-Atlantic, and Midwest states.",
"style_comparison": "Similar to a Standard American Lager, but with more character. Lighter body, smoother, and more carbonated than a Blonde Ale. May seem like a somewhat subtle Kölsch.",
"tags": "standard-strength, pale-color, any-fermentation, north-america, traditional-style, pale-ale-family, balanced",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.042
},
"maximum": {
"unit": "sg",
"value": 1.055
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 8
},
"maximum": {
"unit": "IBUs",
"value": 20
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.006
},
"maximum": {
"unit": "sg",
"value": 1.012
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 4.2
},
"maximum": {
"unit": "%",
"value": 5.6
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 2
},
"maximum": {
"unit": "SRM",
"value": 5
}
},
"ingredients": "American six-row malt, or a combination of six-row and North American two-row. Up to 20% maize in the mash, and up to 20% sugar in the boil. Any variety of hops, often rustic American or Continental. Clean ale yeast, or a mix of ale and lager beer.",
"examples": "Genesee Cream Ale, Liebotschaner Cream Ale, Kiwanda Pre-Prohibition Cream Ale, Little Kings Cream Ale, Sleeman Cream Ale, Sun King Sunlight Cream Ale",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "American Wheat Beer",
"category": "Standard American Beer",
"category_id": "1",
"style_id": "1D",
"category_description": "This category describes everyday American beers that have a wide public appeal. Containing both ales and lagers, the beers of this category are not typically complex, and have smooth, accessible flavors. The ales tend to have lager-like qualities, or are designed to appeal to mass-market lager drinkers as crossover beers. Mass-market beers with a more international appeal or origin are described in the International Lager category.",
"overall_impression": "A pale, refreshing grainy, doughy, or bready wheat beer with a clean fermentation profile and a variable hop character and bitterness. Its lighter body and higher carbonation contribute to its easy-drinking nature.",
"aroma": "Low to moderate grainy, bready, or doughy wheat character. A light to moderate malty sweetness is acceptable. Moderate esters optional, usually a neutral profile; banana is inappropriate. Low to moderate citrusy, spicy, floral, or fruity hop aroma. Not typically dry-hopped. No clove phenols.",
"appearance": "Usually pale yellow to gold. Clarity may range from brilliant to hazy with yeast approximating aWeissbier. Big, long-lasting white head.",
"flavor": "Light to moderately-strong bready, doughy, or grainy wheat flavor, which can linger into the finish. May have a moderate malty sweetness or can finish quite dry and crisp. Low to moderate hop bitterness, sometimes lasting into the finish. Balance is usually even, but may be slightly bitter. Low to moderate citrusy, spicy, floral, or fruity hop flavor. Moderate esters optional. No banana. No clove phenols.",
"mouthfeel": "Medium-light to medium body. Medium-high to high carbonation. Slight creaminess is optional; wheat beers sometimes have a soft, ‘fluffy’ impression.",
"comments": "Different variations exist, from an easy-drinking fairly sweet beer to a dry, aggressively-hopped beer with a strong wheat flavor. American Rye beers should be entered as31A Alternative GrainBeer.",
"history": "An American craft beer adaptation of the Weissbier style using a cleaner yeast and more hops, first produced by Anchor in 1984 and later widely popularized by Widmer.",
"style_comparison": "More hop character and less yeast character than Weissbier. Never with the banana and clove character of Weissbier. Generally has the same range and balance as Blonde Ales, but with a wheat character as the primary malt flavor.",
"tags": "standard-strength, pale-color, any-fermentation, north-america, craft-style, wheat-beer-family, balanced",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.04
},
"maximum": {
"unit": "sg",
"value": 1.055
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 15
},
"maximum": {
"unit": "IBUs",
"value": 30
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.008
},
"maximum": {
"unit": "sg",
"value": 1.013
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 4
},
"maximum": {
"unit": "%",
"value": 5.5
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 3
},
"maximum": {
"unit": "SRM",
"value": 6
}
},
"ingredients": "Clean American ale or lager yeast. German Weissbier yeast is inappropriate. Wheat malt (often 30–50%, lower than is typical in Weissbier). American, German, or New World hops.",
"examples": "Bell’s Oberon, Boulevard Unfiltered Wheat Beer, GoodLife Sweet As! Pacific Ale, Goose Island 312 Urban Wheat Ale, Widmer Hefeweizen",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "International Pale Lager",
"category": "International Lager",
"category_id": "2",
"style_id": "2A",
"category_description": "International lagers are the premium, industrial, mass-market lagers produced in most countries in the world. Whether developed from American or European styles, they all tend to have a fairly uniform character and are heavily marketed. Loosely derived from original Pilsner-type lagers, with colored variations having additional malt flavors while retaining a broad appeal. In many countries, the styles will be referred to by their local country names. The use of the term “international” doesn’t mean that any beers are actually labeled as such, but is more of a categorization of similar beers produced worldwide.",
"overall_impression": "A highly-attenuated pale lager without strong flavors, typically well-balanced and highly carbonated. Served cold, it is refreshing and thirst-quenching.",
"aroma": "Low to medium-low grainy-malty or slightly corny-sweetmalt aroma. Very low to medium spicy, floral, or herbal hop aroma. Clean fermentation profile.",
"appearance": "Pale straw to gold color. White, frothy head may not be long lasting. Very clear.",
"flavor": "Low to moderate levels of grainy-malt flavor, medium-low to medium bitterness, with a crisp, dry, well-attenuated finish. The grain character can be somewhat neutral, or show a light bready-crackery quality. Moderate corny or malty sweetness optional. Medium floral, spicy, or herbal hop flavor optional. Balance may vary from slightly malty to slightly bitter, but is usually relatively close to even. Neutral aftertaste with light malt and sometimes hop flavors.",
"mouthfeel": "Light to medium body. Moderately high to highly carbonated. Can have a slight carbonic bite on the tongue.",
"comments": "Tends to have fewer adjuncts than American Lagers. They may be all-malt, although strong flavors are still a fault. A broad category of international mass-market lagers ranging from up-scale American lagers to the typical “import” or “green bottle” international beers found in America and many export markets. Often confusingly labeled as a “Pilsner.” Any skunkiness in commercial beers is a handling fault, not a characteristic of the style.",
"history": "In the United States, developed as a premium version of the standard American lager, with a similar history. Outside the US, developed either as an imitation of American-style lagers, or as a more accessible (and often drier and less bitter) version of a Pilsner-type beer. Often heavily marketed and exported by large industrial or multi-national breweries.",
"style_comparison": "Generally more bitter and filling than American Lager. Less hoppy and bitter than a German Pils. Less body, malt flavor, and hop character than a Czech Premium Pale Lager. More robust versions can approach a Munich Helles in flavor, but with more of an adjunct quality.",
"entry_instructions": "Entrant may specify regional variations, if desired (Mexican lager, Dutch lager, etc.).",
"tags": "standard-strength, pale-color, bottom-fermented, lagered, traditional-style, pale-lager-family, balanced",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.042
},
"maximum": {
"unit": "sg",
"value": 1.05
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 18
},
"maximum": {
"unit": "IBUs",
"value": 25
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.008
},
"maximum": {
"unit": "sg",
"value": 1.012
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 4.5
},
"maximum": {
"unit": "%",
"value": 6
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 2
},
"maximum": {
"unit": "SRM",
"value": 6
}
},
"ingredients": "Two- or six-row barley. May use rice, corn, or sugar as adjuncts, but are generally all malt.",
"examples": "Asahi Super Dry, Birra Moretti, Corona Extra, Devils Backbone Gold Leaf Lager, Full Sail Session Premium Lager, Heineken, Red Stripe, Singha",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "International Amber Lager",
"category": "International Lager",
"category_id": "2",
"style_id": "2B",
"category_description": "International lagers are the premium, industrial, mass-market lagers produced in most countries in the world. Whether developed from American or European styles, they all tend to have a fairly uniform character and are heavily marketed. Loosely derived from original Pilsner-type lagers, with colored variations having additional malt flavors while retaining a broad appeal. In many countries, the styles will be referred to by their local country names. The use of the term “international” doesn’t mean that any beers are actually labeled as such, but is more of a categorization of similar beers produced worldwide.",
"overall_impression": "A smooth, easily-drinkable, malty amber lager with a flavorful caramel or toast character. Usually fairly well-attenuated, often with an adjunct quality and restrained bitterness.",
"aroma": "Low to moderate grainy malt aroma often with very low to moderate caramel or toasty malt accents. Occasionally, nutty or biscuity, but never roasty. Low, unobtrusive floral or spicy hop aroma. Clean fermentation profile.",
"appearance": "Golden-amber to reddish-copper color. Bright clarity. White to off-white foam stand which may not last.",
"flavor": "Low to moderate malt flavor, often with caramel or toasty-bready flavors. Low to medium-low corny sweetness optional. Low to moderate bitterness, giving the beer a malty to fairly even balance. Low to moderate spicy, herbal, or floral hop flavor. Clean fermentation profile. The finish is moderately dry with a moderately malty aftertaste.The beer may seem a touch sweet if the bitterness level is low.",
"mouthfeel": "Light to medium body. Medium to high carbonation. Smooth. Some examples can be slightly creamy.",
"comments": "A wide spectrum of mass-market amber lagers either developed independently in various countries, or describing rather generic amber beers with more historical relevance that eventually changed into indistinguishable products in modern times.",
"history": "Varies by country, but generally represents either an adaptation of the mass-market International Pale Lager, or an evolution of indigenous styles into more generic products.",
"style_comparison": "Less well-developed malt flavor than a Vienna Lager, often with an adjunct taste. Less robust flavor and bitterness than Altbier.",
"tags": "standard-strength, amber-color, bottom-fermented, lagered, traditional-style, amber-lager-family, malty",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.042
},
"maximum": {
"unit": "sg",
"value": 1.055
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 8
},
"maximum": {
"unit": "IBUs",
"value": 25
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.008
},
"maximum": {
"unit": "sg",
"value": 1.014
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 4.5
},
"maximum": {
"unit": "%",
"value": 6
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 6
},
"maximum": {
"unit": "SRM",
"value": 14
}
},
"ingredients": "Two-row or six-row base malt. Color malts such as Victory, amber, or roast. May be all malt or use adjuncts. Sugars or coloring agents possible. Caramel malt. European or American hops.",
"examples": "Abita Amber Lager, Brooklyn Lager, Capital Wisconsin Amber Lager, Dos Equis Amber, Grain Belt NordEast, Yuengling Lager",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "International Dark Lager",
"category": "International Lager",
"category_id": "2",
"style_id": "2C",
"category_description": "International lagers are the premium, industrial, mass-market lagers produced in most countries in the world. Whether developed from American or European styles, they all tend to have a fairly uniform character and are heavily marketed. Loosely derived from original Pilsner-type lagers, with colored variations having additional malt flavors while retaining a broad appeal. In many countries, the styles will be referred to by their local country names. The use of the term “international” doesn’t mean that any beers are actually labeled as such, but is more of a categorization of similar beers produced worldwide.",
"overall_impression": "A darker, richer, and somewhat sweeter version of international pale lager with a little more body and flavor, but equally restrained in bitterness. The low bitterness leaves the malt as the primary flavor element, and the low hop levels provide very little in the way of balance.",
"aroma": "Faint malt aroma. Medium-low roast and caramel malt aroma optional. Light spicy, herbal, or floral hop aroma optional. Clean fermentation profile.",
"appearance": "Deep amber to very dark brown with bright clarity and ruby highlights. Foam stand may not be long lasting, and is beige to light tan in color.",
"flavor": "Low to medium sweet maltiness. Medium-low caramel or roasted malt flavors optional, possibly with hints of coffee, molasses,brown sugar, or cocoa. Low floral, spicy, or herbalhop flavor optional. Low to medium bitterness. May have a very light fruitiness. Moderately crisp finish. The balance is typically somewhat malty. Burnt or moderately strong roasted malt flavors are inappropriate.",
"mouthfeel": "Light to medium-light body. Smooth with a light creaminess. Medium to high carbonation.",
"comments": "A broad range of international lagers that are darker than pale, and not assertively bitter or roasted.",
"history": "Darker versions of International Pale Lagers often created by the same large, industrial breweries and meant to appeal to a broad audience. Often either a colored or sweetened adaptation of the standard pale industrial lager, or a more broadly accessible (and inexpensive) version of more traditional dark lagers.",
"style_comparison": "Less flavor and richness than Munich Dunkel, Schwarzbier, or other dark lagers. Frequently uses adjuncts, as is typical of other International Lagers.",
"tags": "standard-strength, dark-color, bottom-fermented, lagered, traditional-style, dark-lager-family, malty",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.044
},
"maximum": {
"unit": "sg",
"value": 1.056
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 8
},
"maximum": {
"unit": "IBUs",
"value": 20
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.008
},
"maximum": {
"unit": "sg",
"value": 1.012
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 4.2
},
"maximum": {
"unit": "%",
"value": 6
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 14
},
"maximum": {
"unit": "SRM",
"value": 30
}
},
"ingredients": "Two- or six-row barley with corn, rice, or sugars adjuncts. Light use of caramel and darker roasted malts. Commercial versions may use coloring agents.",
"examples": "Baltika #4 Original, Dixie Blackened Voodoo, Heineken Dark Lager, Saint Pauli Girl Special Dark, San Miguel Dark, Shiner Bock",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "Czech Pale Lager",
"category": "Czech Lager",
"category_id": "3",
"style_id": "3A",
"category_description": "Czech lagers are generally divided by gravity class (draft, lager, special) and color (pale, amber, dark). The Czech names for these categories are světlé (pale), polotmavé (amber), and tmavé (dark). The gravity classes are výčepní (draft, 7–10 °P), ležák (lager, 11–12 °P), and speciální (special, 13 °P+). Pivo is of course the Czech word for beer. The division into gravity classes is similar to the German groupings of schankbier, vollbier, and starkbier, although at different gravity ranges. Czech beers within the classes are often simply referenced by their gravity. There are often variations within the gravity-color groupings, particularly within the speciální class. The style guidelines combine some of these classes, while other beers in the Czech market are not described (such as the strong Czech Porter). This is not to imply that the categories below are the full coverage of Czech beers, simply a way of grouping some of the more commonly found types for judging purposes.Czech lagers in general are differentiated from German and other Western lagers in that German lagers are almost always fully attenuated, while Czech lagers can have a slight amount of unfermented extract remaining in the finished beer. This helps provide a slightly higher finishing gravity (and thus slightly lower apparent attenuation), slightly fuller body and mouthfeel, and a richer, slightly more complex flavor profile in equivalent color and strength beers. German lagers tend to have a cleaner fermentation profile, while Czech lagers are often fermented cooler (7–10 °C) and for a longer time, and can have a light, barely noticeable (near threshold) amount of diacetyl that often is perceived more as a rounded body than overtly in aroma and flavor [significant buttery diacetyl is a flaw]. Czech lager yeast strains are not always as clean and attenuative as German strains, which helps achieve the higher finishing gravity (along with the mashing methods and cooler fermentation). Czech lagers are traditionally made with decoction mashes (often double decoction), even with modern malts, while most modern German lagers are made with infusion or step infusion mashes. These differences characterize the richness, mouthfeel, and flavor profile that distinguishes Czech lagers.",
"overall_impression": "A lighter-bodied, rich, refreshing, hoppy, bitter pale Czech lager having the familiar flavors of the stronger Czech Premium Pale Lager (Pilsner-type) beer but in a lower alcohol, lighter-bodied, and slightly less intense format.",
"aroma": "Light to moderate bready-rich malt combined with light to moderate spicy or herbal hop bouquet; the balance between the malt and hops may vary. Faint hint of caramel is acceptable. Light (but never intrusive) diacetyl and light, fruity esters are optional. No sulfur.",
"appearance": "Light yellow to deep gold color. Brilliant to very clear, with a long-lasting, creamy white head.",
"flavor": "Medium-low to medium bready-rich malt flavor with a rounded, hoppy finish. Low to medium-high spicy or herbal hop flavor. Bitterness is prominent but never harsh. Flavorful and refreshing. Low diacetyl or fruity esters are optional, but should never be overbearing.",
"mouthfeel": "Medium-light to medium body. Moderate carbonation.",
"comments": "The Czech name of the style is světlé výčepní pivo.",
"history": "Josef Groll initially brewed two types of pale beer in 1842–3, a výčepníand a ležák, with the smaller beer having twice the production; Evan Rail speculates that these were probably 10 °P and 12 °P beers, but that the výčepní could have been weaker.This is the most consumed type of beer in the Czech Republic at present.",
"style_comparison": "A lighter-bodied, lower-intensity, refreshing, everyday version of Czech Premium Pale Lager.",
"tags": "session-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, bitter, hoppy",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.028
},
"maximum": {
"unit": "sg",
"value": 1.044
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 20
},
"maximum": {
"unit": "IBUs",
"value": 35
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.008
},
"maximum": {
"unit": "sg",
"value": 1.014
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 3
},
"maximum": {
"unit": "%",
"value": 4.1
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 3
},
"maximum": {
"unit": "SRM",
"value": 6
}
},
"ingredients": "Soft water with low sulfate and carbonate content.Traditional Czech hops. Czech Pilsner malt. Czech lager yeast. Low ion water provides a distinctively soft, rounded hop profile despite high hopping rates.",
"examples": "Bernard světlé pivo 10, Březňák světlé výčepní pivo, Notch Session Pils, Primátor Antonín světlé výčepní, Radegast Rázna 10, Únětické pivo 10°",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "Czech Premium Pale Lager",
"category": "Czech Lager",
"category_id": "3",
"style_id": "3B",
"category_description": "Czech lagers are generally divided by gravity class (draft, lager, special) and color (pale, amber, dark). The Czech names for these categories are světlé (pale), polotmavé (amber), and tmavé (dark). The gravity classes are výčepní (draft, 7–10 °P), ležák (lager, 11–12 °P), and speciální (special, 13 °P+). Pivo is of course the Czech word for beer. The division into gravity classes is similar to the German groupings of schankbier, vollbier, and starkbier, although at different gravity ranges. Czech beers within the classes are often simply referenced by their gravity. There are often variations within the gravity-color groupings, particularly within the speciální class. The style guidelines combine some of these classes, while other beers in the Czech market are not described (such as the strong Czech Porter). This is not to imply that the categories below are the full coverage of Czech beers, simply a way of grouping some of the more commonly found types for judging purposes.Czech lagers in general are differentiated from German and other Western lagers in that German lagers are almost always fully attenuated, while Czech lagers can have a slight amount of unfermented extract remaining in the finished beer. This helps provide a slightly higher finishing gravity (and thus slightly lower apparent attenuation), slightly fuller body and mouthfeel, and a richer, slightly more complex flavor profile in equivalent color and strength beers. German lagers tend to have a cleaner fermentation profile, while Czech lagers are often fermented cooler (7–10 °C) and for a longer time, and can have a light, barely noticeable (near threshold) amount of diacetyl that often is perceived more as a rounded body than overtly in aroma and flavor [significant buttery diacetyl is a flaw]. Czech lager yeast strains are not always as clean and attenuative as German strains, which helps achieve the higher finishing gravity (along with the mashing methods and cooler fermentation). Czech lagers are traditionally made with decoction mashes (often double decoction), even with modern malts, while most modern German lagers are made with infusion or step infusion mashes. These differences characterize the richness, mouthfeel, and flavor profile that distinguishes Czech lagers.",
"overall_impression": "A refreshing pale Czech lager with considerable malt and hop character and a longfinish. The malt flavors are complex for a Pilsner-type beer.The bitterness is strong and clean butlacks harshness, which gives a well-balanced, roundedflavor impression that enhances drinkability.",
"aroma": "Medium to medium-high bready-rich malt and medium-low to medium-high spicy, floral, or herbal hop bouquet; though the balance between the malt and hops may vary, the interplay is rich and complex. Light diacetyl, or very low fruity esters are optional. Esters tend to increase with gravity.",
"appearance": "Medium yellow to deep gold color. Brilliant to very clear clarity. Dense, long-lasting, creamy white head.",
"flavor": "Rich, complex, bready maltiness combined with a pronounced yet soft and rounded bitterness and floral and spicy hop flavor. Malt and hop flavors are medium to medium-high, and the malt may contain a slight impression of caramel. Bitterness is prominent but never harsh. The long finish can be balanced towards hops or malt but is never aggressively tilted either way. Light to moderately-low diacetyl and low hop-derived esters are acceptable, but need not be present.",
"mouthfeel": "Medium body. Moderate to low carbonation.",
"comments": "Generally a group of pivo Plzeňského typu, or Pilsner-type beers. This style is a combination of the Czech styles světlý ležák (11–12.9 °P) and světlé speciální pivo (13–14.9 °P). In the Czech Republic, only Pilsner Urquell and Gambrinus are called Pilsner, despite how widely adopted this name is worldwide. Outside the Czech Republic, Czech Pilsner or Bohemian Pilsner are sometimes used to differentiate the beer from other Pilsner-type beers.Kvasnicové (“yeast beer”) versions are popular in the Czech Republic, and may be either kräusened with yeasted wort or given a fresh dose of pure yeast after fermentation. These beers are sometimes cloudy, with subtle yeastiness and enhanced hop character. Modern examples vary in their malt to hop balance and many are not as hop-forward as Pilsner Urquell.",
"history": "Commonly associated with Pilsner Urquell, which was first brewed in 1842 after construction of a new brewhouse by burghers dissatisfied with the standard of beer brewed in Plzeň. Bavarian brewer Josef Groll is credited with first brewing the beer, although there may have been earlier pale lagers in Bohemia. Just as important as the lager yeast was the use of English malting techniques.",
"style_comparison": "More color, malt richness, and body than a German Pils, with a fuller finish and a cleaner, softer impression. Stronger than a Czech Pale Lager.",
"tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pilsner-family, balanced, hoppy",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.044
},
"maximum": {
"unit": "sg",
"value": 1.06
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 30
},
"maximum": {
"unit": "IBUs",
"value": 45
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.013
},
"maximum": {
"unit": "sg",
"value": 1.017
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 4.2
},
"maximum": {
"unit": "%",
"value": 5.8
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 3.5
},
"maximum": {
"unit": "SRM",
"value": 6
}
},
"ingredients": "Traditional Czech hops. Czech malt. Czech lager yeast. Water low in sulfate and carbonate provides a distinctively soft, rounded hop profile despite high hopping rates. The bitterness level of some larger commercial examples has dropped in recent years, although not as much as in many contemporary German examples.",
"examples": "Bernard světlé ležák 12°, Budvar 33 světlý ležák, Pilsner Urquell, Pivovar Jihlava Ježek 11%, Primátor Premium lager, Radegast Ryze hořká 12, Únětická pivo 12°",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "Czech Amber Lager",
"category": "Czech Lager",
"category_id": "3",
"style_id": "3C",
"category_description": "Czech lagers are generally divided by gravity class (draft, lager, special) and color (pale, amber, dark). The Czech names for these categories are světlé (pale), polotmavé (amber), and tmavé (dark). The gravity classes are výčepní (draft, 7–10 °P), ležák (lager, 11–12 °P), and speciální (special, 13 °P+). Pivo is of course the Czech word for beer. The division into gravity classes is similar to the German groupings of schankbier, vollbier, and starkbier, although at different gravity ranges. Czech beers within the classes are often simply referenced by their gravity. There are often variations within the gravity-color groupings, particularly within the speciální class. The style guidelines combine some of these classes, while other beers in the Czech market are not described (such as the strong Czech Porter). This is not to imply that the categories below are the full coverage of Czech beers, simply a way of grouping some of the more commonly found types for judging purposes.Czech lagers in general are differentiated from German and other Western lagers in that German lagers are almost always fully attenuated, while Czech lagers can have a slight amount of unfermented extract remaining in the finished beer. This helps provide a slightly higher finishing gravity (and thus slightly lower apparent attenuation), slightly fuller body and mouthfeel, and a richer, slightly more complex flavor profile in equivalent color and strength beers. German lagers tend to have a cleaner fermentation profile, while Czech lagers are often fermented cooler (7–10 °C) and for a longer time, and can have a light, barely noticeable (near threshold) amount of diacetyl that often is perceived more as a rounded body than overtly in aroma and flavor [significant buttery diacetyl is a flaw]. Czech lager yeast strains are not always as clean and attenuative as German strains, which helps achieve the higher finishing gravity (along with the mashing methods and cooler fermentation). Czech lagers are traditionally made with decoction mashes (often double decoction), even with modern malts, while most modern German lagers are made with infusion or step infusion mashes. These differences characterize the richness, mouthfeel, and flavor profile that distinguishes Czech lagers.",
"overall_impression": "A malty amber Czech lager with a hop character that can vary from low to quite significant. The malt flavors also can vary, leading to different interpretations and balances ranging from drier, bready, and slightly biscuity to sweeter and somewhat caramel-like.",
"aroma": "Moderate intensity, rich malt aroma that can be either bready and Maillard product-dominant or slightly caramelly sweet. Spicy, floral, or herbal hop character may be moderate to none. Clean lager character, though low fruity esters (stone fruit or berries) may be present. Low diacetyl optional.",
"appearance": "Deep amber to copper color. Clear to bright clarity. Large, off-white, persistent head.",
"flavor": "Complex malt flavor is dominant (medium to medium-high), though its nature may vary from dry and Maillard product-dominant to caramelly and almost sweet. Some examples have a candy-like to graham-cracker malt character. Low to moderate spicy hop flavor. Prominent but clean hop bitterness provides a balanced finish. Subtle plum or berry esters optional. Low diacetyl optional. No roasted malt flavor. Finish may vary from dry and hoppy to relatively sweet.",
"mouthfeel": "Medium-full to medium body. Soft and round, often with a gentle creaminess. Moderate to low carbonation.",
"comments": "The Czech name of the style is polotmavé pivo, which translates as half-dark beer. This style is a combination of the Czech styles polotmavý ležák (11–12.9 °P) and polotmavé speciální pivo (13–14.9 °P). Some versions may be a blend of pale and dark lagers.",
"history": "A Vienna-style lager which has continued to be brewed in the Czech Republic. A resurgence of small breweries opening in the Czech Republic has increased the number of examples of this style.",
"style_comparison": "The style can be similar to a Vienna Lager but with stronger Czechlate hop character, or that approaching a British Bitter but significantly richer with more of a deep caramel character. Large brewery versions are generally similar to Czech Premium Pale Lager with slightly darker malt flavors and less hop, while smaller breweries often make versions with considerable hop character, malt complexity, or residual sweetness.",
"tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, balanced",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.044
},
"maximum": {
"unit": "sg",
"value": 1.06
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 20
},
"maximum": {
"unit": "IBUs",
"value": 35
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.013
},
"maximum": {
"unit": "sg",
"value": 1.017
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 4.4
},
"maximum": {
"unit": "%",
"value": 5.8
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 10
},
"maximum": {
"unit": "SRM",
"value": 16
}
},
"ingredients": "Pilsner and caramel malts, but Vienna and Munich malts may also be used. Low mineral content water.Traditional Czech hops. Czech lager yeast.",
"examples": "Bernard Jantarový ležák 12°, Gambrinus Polotmavá 12°, Kozel Semi-Dark, Lobkowicz Démon 13, Primátor 13 polotmavé, Strakonický Dudák Klostermann polotmavý ležák",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "Czech Dark Lager",
"category": "Czech Lager",
"category_id": "3",
"style_id": "3D",
"category_description": "Czech lagers are generally divided by gravity class (draft, lager, special) and color (pale, amber, dark). The Czech names for these categories are světlé (pale), polotmavé (amber), and tmavé (dark). The gravity classes are výčepní (draft, 7–10 °P), ležák (lager, 11–12 °P), and speciální (special, 13 °P+). Pivo is of course the Czech word for beer. The division into gravity classes is similar to the German groupings of schankbier, vollbier, and starkbier, although at different gravity ranges. Czech beers within the classes are often simply referenced by their gravity. There are often variations within the gravity-color groupings, particularly within the speciální class. The style guidelines combine some of these classes, while other beers in the Czech market are not described (such as the strong Czech Porter). This is not to imply that the categories below are the full coverage of Czech beers, simply a way of grouping some of the more commonly found types for judging purposes.Czech lagers in general are differentiated from German and other Western lagers in that German lagers are almost always fully attenuated, while Czech lagers can have a slight amount of unfermented extract remaining in the finished beer. This helps provide a slightly higher finishing gravity (and thus slightly lower apparent attenuation), slightly fuller body and mouthfeel, and a richer, slightly more complex flavor profile in equivalent color and strength beers. German lagers tend to have a cleaner fermentation profile, while Czech lagers are often fermented cooler (7–10 °C) and for a longer time, and can have a light, barely noticeable (near threshold) amount of diacetyl that often is perceived more as a rounded body than overtly in aroma and flavor [significant buttery diacetyl is a flaw]. Czech lager yeast strains are not always as clean and attenuative as German strains, which helps achieve the higher finishing gravity (along with the mashing methods and cooler fermentation). Czech lagers are traditionally made with decoction mashes (often double decoction), even with modern malts, while most modern German lagers are made with infusion or step infusion mashes. These differences characterize the richness, mouthfeel, and flavor profile that distinguishes Czech lagers.",
"overall_impression": "A rich, dark, malty Czech lager with a roast character that can vary from almost absent to quite prominent. Malty balance and an interesting and complex flavor profile, with variable levels of hopping that provides a range of possible interpretations.",
"aroma": "Medium to medium-high rich, deep, sometimes sweet maltiness, with optional qualities such as bread crusts, toast, nuts, cola, dark fruit, or caramel. Roasted malt characters such as chocolate or sweetened coffee can vary from moderate to none but should not overwhelm the base malt character. Low to moderate spicy hop aroma optional. Low diacetyl and low to moderate fruity esters (plums or berries) may be present.",
"appearance": "Dark copper to almost black color, often with a red or garnet tint. Clear to bright clarity. Large, off-white to tan, persistent head.",
"flavor": "Medium to medium-high deep, complex maltiness dominates, typically with malty-rich Maillard products and a light to moderate residual malt sweetness. Malt flavors such as caramel, toast, nuts, licorice, dried dark fruit, chocolate,or coffee may also be present, with very low to moderate roast character. Low to moderate spicy hop flavor. Moderate to medium-low bitterness, but should be perceptible. Balance can vary from malty to relatively well-balanced to gently hop-forward. Low to moderate diacetyl and light plum or berry esters may be present.",
"mouthfeel": "Medium to medium-full body, considerable mouthfeel without being heavy or cloying. Moderately creamy in texture. Smooth. Moderate to low carbonation. Can have a slight alcohol warmth in stronger versions.",
"comments": "This style is a combination of the Czech styles tmavý ležák (11–12.9 °P) and tmavé speciální pivo (13–14.9 °P). More modern examples are drier and have higher bitterness while traditional versions often have IBUs in the 18–20 range with a sweeter balance.",
"history": "The U Fleků brewery has been operating in Prague since 1499, and produces the best-known version. Many small, new breweries are brewing this style.",
"style_comparison": "The beer is the Czech equivalent of a dark lager ranging in character from Munich Dunkel to Schwarzbier, but typically with greater malt richness and hop aroma, flavor, and bitterness.",
"tags": "standard-strength, dark-color, bottom-fermented, lagered, central-europe, traditional-style, dark-lager-family, balanced",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.044
},
"maximum": {
"unit": "sg",
"value": 1.06
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 18
},
"maximum": {
"unit": "IBUs",
"value": 34
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.013
},
"maximum": {
"unit": "sg",
"value": 1.017
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 4.4
},
"maximum": {
"unit": "%",
"value": 5.8
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 17
},
"maximum": {
"unit": "SRM",
"value": 35
}
},
"ingredients": "Pilsner and dark caramel malts with the addition of debittered roasted malts are most common, but additions of Vienna or Munich malt are also appropriate. Low mineral content water.Traditional Czech hops. Czech lager yeast.",
"examples": "Bernard černý ležák 12°, Budvar tmavý ležák, Herold lmavé silné pivo 13°, Kozel Dark , Krušovice černé, Primátor dark lager, U Fleků Flekovský tmavý ležák 13°",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "Munich Helles",
"category": "Pale Malty European Lager",
"category_id": "4",
"style_id": "4A",
"category_description": "This style category contains paleGerman lagers of vollbier to starkbier strength that emphasize the flavor of Pilsner malt in the balance while remaining well-attenuated.",
"overall_impression": "A gold-colored German lager with a smooth, malty flavor and a soft, dry finish. Subtle spicy, floral, or herbal hops and restrained bitterness help keep the balance malty but not sweet, which helps make this beer a refreshing, everyday drink.",
"aroma": "Moderate grainy-sweet malt aroma. Low to moderately-low spicy, floral, or herbal hop aroma. Pleasant, clean fermentation profile, with malt dominating the balance. The freshest examples will have more of a malty-sweet aroma.",
"appearance": "Pale yellow to pale gold. Clear. Persistent creamy white head.",
"flavor": "Moderately malty start with the suggestion of sweetness, moderate grainy-sweet malt flavor with a soft, rounded palate impression, supported by a low to medium-low bitterness. Soft and dry finish, not crisp and biting. Low to moderately-low spicy, floral, or herbal hop flavor. Malt dominates hops in the palate, finish, and aftertaste, but hops should be noticeable. No residual sweetness, simply the impression of maltiness with restrained bitterness. Clean fermentation profile.",
"mouthfeel": "Medium body. Medium carbonation. Smooth, well-lagered character.",
"comments": "Very fresh examples can have amore prominent malt and hop character that fadesover time,as is often noticed in exported beers. Helles in Munich tends to be a lighter version than those outside the city. May be called Helles Lagerbier.",
"history": "Created in Munich in 1894 to compete with pale Pilsner-type beers, often first credited to Spaten. More popular in Southern Germany.",
"style_comparison": "Similar in malt balance and bitterness to Munich Dunkel, but less malty-sweet in nature and pale rather than dark and rich. More body and malt presence than a German Pils, but less crisp and with less hop character throughout. Similar malt profile as a German Helles Exportbier, but with fewer hops in the balance and slightly less alcohol. Less body and alcohol than a Festbier.",
"tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, malty",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.044
},
"maximum": {
"unit": "sg",
"value": 1.048
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 16
},
"maximum": {
"unit": "IBUs",
"value": 22
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.006
},
"maximum": {
"unit": "sg",
"value": 1.012
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 4.7
},
"maximum": {
"unit": "%",
"value": 5.4
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 3
},
"maximum": {
"unit": "SRM",
"value": 5
}
},
"ingredients": "Continental Pilsner malt.Traditional German hops.Clean German lager yeast.",
"examples": "Augustiner Lagerbier Hell, Hacker-Pschorr Münchner Gold, Löwenbraü Original, Paulaner Münchner Lager, Schönramer Hell, Spaten MünchnerHell, Weihenstephaner Original Heles",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "Festbier",
"category": "Pale Malty European Lager",
"category_id": "4",
"style_id": "4B",
"category_description": "This style category contains paleGerman lagers of vollbier to starkbier strength that emphasize the flavor of Pilsner malt in the balance while remaining well-attenuated.",
"overall_impression": "A smooth, clean, pale German lager with a moderately strong malty flavor and a light hop character. Deftly balances strength and drinkability, with a palate impression and finish that encourages drinking. Showcases elegant German malt flavors without becoming too heavy or filling.",
"aroma": "Moderate malty richness, with an emphasis on toasty-doughy aromatics and an impression of sweetness. Low to medium-low floral, herbal, or spicy hops. The malt should not have a deeply toasted, caramel, or biscuity quality. Clean lager fermentation profile.",
"appearance": "Deep yellow to deep gold color; should not have amber hues. Bright clarity. Persistent white to off-white foam stand. Most commercial examples are pale gold in color.",
"flavor": "Medium to medium-high malty flavor initially, with a lightly toasty, bread dough quality and an impression of soft malty richness. Medium to medium-low bitterness, definitely malty in the balance. Well-attenuated and crisp, but not dry. Medium-low to medium floral, herbal, or spicy hop flavor. Clean fermentation profile. The taste is mostly of Pils malt, but with slightly toasty hints. The bitterness is supportive, but still should yield a malty, flavorful finish.",
"mouthfeel": "Medium body, with a smooth, somewhat creamy texture. Medium carbonation. Alcohol strength barely noticeable as warming, if at all.",
"comments": "This style represents the modern German beer served at Oktoberfest (although it is not solely reserved for Oktoberfest; it can be found at many other ‘fests’), and is sometimes called Wiesn (“the meadow” or local name for the Oktoberfest festival). We chose to call this style Festbier since by German and EU regulations, Oktoberfestbier is a protected appellation for beer produced at large breweries within the Munich city limits for consumption at Oktoberfest. Other countries are not bound by these rules, so many craft breweries in the US produce beer called Oktoberfest, but based on the traditional style described in these guidelines as Märzen. May be called Helles Märzen.",
"history": "Since 1990, the majority of beer served at Oktoberfest in Munich has been this style. Export beer specifically made for the United States is still mainly of the traditional amber style, as are US-produced interpretations. Paulaner first created the golden version in the mid-1970s because they thought the traditional Oktoberfest was too filling. So they developed a lighter, more drinkable but still malty version that they wanted to be “more poundable” (according to the head brewer at Paulaner). But the actual type of beer served at Oktoberfest is set by a Munich city committee.",
"style_comparison": "Less intense and less richly toasted than a Märzen. Stronger than a Munich Helles, with a bit more body, and hop and malt flavor. Less rich in malt intensity than a Helles Bock. The malt complexity is similar to a higher-gravity Czech Premium Pale Lager, although without the associated hops.",
"tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, malty",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.054
},
"maximum": {
"unit": "sg",
"value": 1.057
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 18
},
"maximum": {
"unit": "IBUs",
"value": 25
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.01
},
"maximum": {
"unit": "sg",
"value": 1.012
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 5.8
},
"maximum": {
"unit": "%",
"value": 6.3
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 4
},
"maximum": {
"unit": "SRM",
"value": 6
}
},
"ingredients": "Majority Pils malt, but with some Vienna or Munich malt to increase maltiness. Differences in commercial examples are mostly due to different maltsters and yeast, not major grist differences.",
"examples": "Augustiner Oktoberfest, Hacker-Pschorr Superior Festbier, Hofbräu Oktoberfestbier, Löwenbräu Oktoberfestbier, Paulaner Oktoberfest Bier, Weihenstephaner Festbier",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "Helles Bock",
"category": "Pale Malty European Lager",
"category_id": "4",
"style_id": "4C",
"category_description": "This style category contains paleGerman lagers of vollbier to starkbier strength that emphasize the flavor of Pilsner malt in the balance while remaining well-attenuated.",
"overall_impression": "A relatively pale, strong, malty German lager with a nicely attenuated finish that enhances drinkability. The hop character is generally more apparent and the malt character less deeply rich than in other Bocks.",
"aroma": "Moderate to strong grainy-sweet malt aroma, often with a lightly toasted quality and low Maillard products. Moderately-low spicy, herbal, or floral hop aroma optional. Clean fermentation profile. Low fruity esters optional. Very light alcohol optional.",
"appearance": "Deep gold to light amber in color. Bright to clear clarity. Large, creamy, persistent, white head.",
"flavor": "Moderately to moderately strong grainy-sweet, doughy, bready, or lightly toasty malt flavor dominates with some rich Maillard products providing added interest. Few caramel flavors optional. Low to moderate spicy, herbal, floral, pepperyhop flavor optional, but present in the best examples. Moderate hop bitterness, more so in the balance than in other Bocks. Clean fermentation profile. Well-attenuated, not cloying, with a moderately-dry finish that may taste of both malt and hops.",
"mouthfeel": "Medium-bodied. Moderate to moderately-high carbonation. Smooth and clean with no harshness or astringency, despite the increased hop bitterness. Light alcohol warming optional.",
"comments": "Also known as Maibock. Compared to darker Bock beers, the hops compensate for the lower level of Maillard products in the balance.",
"history": "A fairly recent development in comparison to the other members of the bock family. The serving of Maibock is a seasonal offering associated with springtime and the month of May, and may include a wider color and hopping range than is seen in exported products.",
"style_comparison": "Can be thought of as either a pale version of a Dunkles Bock, or a Munich Helles or Festbier brewed to bock strength. While quite malty, this beer typically has less dark and rich malt flavors, and can be drier, hoppier, and more bitter than a Dunkles Bock. Less strong than a pale Doppelbock, but with similar flavors.",
"tags": "high-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, bock-family, malty",
"original_gravity": {
"minimum": {
"unit": "sg",
"value": 1.064
},
"maximum": {
"unit": "sg",
"value": 1.072
}
},
"international_bitterness_units": {
"minimum": {
"unit": "IBUs",
"value": 23
},
"maximum": {
"unit": "IBUs",
"value": 35
}
},
"final_gravity": {
"minimum": {
"unit": "sg",
"value": 1.011
},
"maximum": {
"unit": "sg",
"value": 1.018
}
},
"alcohol_by_volume": {
"minimum": {
"unit": "%",
"value": 6.3
},
"maximum": {
"unit": "%",
"value": 7.4
}
},
"color": {
"minimum": {
"unit": "SRM",
"value": 6
},
"maximum": {
"unit": "SRM",
"value": 9
}
},
"ingredients": "A mix of Pils, Vienna, and Munich malts. No adjuncts. Light use of pale crystal type malts possible. Traditional German hops. Clean lager yeast. Decoction mash is traditional, but boiling is less than in Dunkles Bock to restrain color development. Soft water.",
"examples": "Altenmünster Maibock, Ayinger Maibock, Chuckanut Maibock, Einbecker Mai-Ur-Bock, Hofbräu Maibock, Mahr’s Heller Bock",
"style_guide": "BJCP2021",
"type": "beer"
},
{
"name": "German Leichtbier",
"category": "Pale Bitter European Beer",
"category_id": "5",
"style_id": "5A",
"category_description": "This category describes German-origin beers that are pale and have an even to bitter balance with a mild to moderately strong hoppy character featuring traditional German hops. They are generally bottom-fermented or are lagered to provide a smooth profile, and are well-attenuated as are most German beers.",
"overall_impression": "A pale, highly-attenuated, light-bodied German lager with lower alcohol and calories than standard-strength beers. Moderately bitter with noticeable malt and hop flavors, the beer is still interesting to drink.",
"aroma": "Low to medium hop aroma, with a spicy, herbal, or floral character. Low to medium-low grainy-sweet or slightly crackery malt aroma. Clean fermentation profile.",
"appearance": "Pale straw to deep yellow in color. Brilliant clarity. Moderate white head with average to below average persistence.",
"flavor": "Low to medium grainy-sweet malt flavor initially. Medium hop bitterness. Low to medium hop flavor, with a spicy, herbal, or floral quality. Clean fermentation character, well-lagered. Dry finish with a light malty and hoppy aftertaste.",
"mouthfeel": "Light to very light body. Medium to high carbonation. Smooth, well-attenuated.",
"comments": "Marketed primarily as a diet-oriented beer with lower carbohydrates, alcohol, and calories. Pronounced “LYESHT-beer.” May also be known as a Diat Pils or Helles, this style is in the schankbier gravity class. Other variations of Leicht class beers can be made from Weissbier, Kölsch, and Altbier; those beers are best entered as34B Mixed-Style Beer.",
"history": "Traditional versions existed as drinks for physical laborers in factories or fields, but modern versions are more based on popular American products in the same class and targeted towards health or fitness conscious consumers. Increasingly supplanted in the current market by non-alcoholic beers and radlers.",
"style_comparison": "Like a lower-alcohol, lighter-bodied, slightly less aggressive German Pils or Munich Helles. More bitter and flavorful than an American Light Lager.",
"tags": "session-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, bitter, hoppy",