From b39bfdd2670f32ef1d967c23ebd84be24bcdc33c Mon Sep 17 00:00:00 2001 From: Chris Giacofei Date: Thu, 27 Jun 2024 09:56:09 -0400 Subject: [PATCH] Add BJCP guidelines to the database. --- ...e_bjcp_category_id_recipe_bjcp_style_id.py | 23 + .../0019_alter_recipe_bjcp_style_id.py | 18 + .../0020_alter_recipe_bjcp_style_id.py | 18 + .../0021_remove_recipe_bjcp_category_id.py | 17 + ...22_bjcpstyle_alter_recipe_bjcp_style_id.py | 72 + ...alcohol_by_volume_maximum_unit_and_more.py | 88 + ...alcohol_by_volume_maximum_unit_and_more.py | 88 + beer/models.py | 90 +- beer/static/bjcp/2015.json | 7964 ---------- beer/static/bjcp/2021.json | 6885 --------- beer/urls.py | 2 +- fixtures/bjcp.json | 12344 ++++++++++++++++ 12 files changed, 12757 insertions(+), 14852 deletions(-) create mode 100644 beer/migrations/0018_recipe_bjcp_category_id_recipe_bjcp_style_id.py create mode 100644 beer/migrations/0019_alter_recipe_bjcp_style_id.py create mode 100644 beer/migrations/0020_alter_recipe_bjcp_style_id.py create mode 100644 beer/migrations/0021_remove_recipe_bjcp_category_id.py create mode 100644 beer/migrations/0022_bjcpstyle_alter_recipe_bjcp_style_id.py create mode 100644 beer/migrations/0023_alter_bjcpstyle_alcohol_by_volume_maximum_unit_and_more.py create mode 100644 beer/migrations/0024_alter_bjcpstyle_alcohol_by_volume_maximum_unit_and_more.py delete mode 100644 beer/static/bjcp/2015.json delete mode 100644 beer/static/bjcp/2021.json create mode 100644 fixtures/bjcp.json diff --git a/beer/migrations/0018_recipe_bjcp_category_id_recipe_bjcp_style_id.py b/beer/migrations/0018_recipe_bjcp_category_id_recipe_bjcp_style_id.py new file mode 100644 index 0000000..af65dd6 --- /dev/null +++ b/beer/migrations/0018_recipe_bjcp_category_id_recipe_bjcp_style_id.py @@ -0,0 +1,23 @@ +# Generated by Django 5.0.6 on 2024-06-26 19:23 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('beer', '0017_alter_equipmentprofile_batch_volume_and_more'), + ] + + operations = [ + migrations.AddField( + model_name='recipe', + name='bjcp_category_id', + field=models.CharField(default='1', max_length=3), + ), + migrations.AddField( + model_name='recipe', + name='bjcp_style_id', + field=models.CharField(default='1A', max_length=3), + ), + ] diff --git a/beer/migrations/0019_alter_recipe_bjcp_style_id.py b/beer/migrations/0019_alter_recipe_bjcp_style_id.py new file mode 100644 index 0000000..c661e0d --- /dev/null +++ b/beer/migrations/0019_alter_recipe_bjcp_style_id.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.6 on 2024-06-26 19:43 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('beer', '0018_recipe_bjcp_category_id_recipe_bjcp_style_id'), + ] + + operations = [ + migrations.AlterField( + model_name='recipe', + name='bjcp_style_id', + field=models.CharField(choices=[('1A', 'American Light Lager'), ('1B', 'American Lager'), ('1C', 'Cream Ale'), ('1D', 'American Wheat Beer'), ('2A', 'International Pale Lager'), ('2B', 'International Amber Lager'), ('2C', 'International Dark Lager'), ('3A', 'Czech Pale Lager'), ('3B', 'Czech Premium Pale Lager'), ('3C', 'Czech Amber Lager'), ('3D', 'Czech Dark Lager'), ('4A', 'Munich Helles'), ('4B', 'Festbier'), ('4C', 'Helles Bock'), ('5A', 'German Leichtbier'), ('5B', 'Kölsch'), ('5C', 'German Helles Exportbier'), ('5D', 'German Pils'), ('6A', 'Märzen'), ('6B', 'Rauchbier'), ('6C', 'Dunkles Bock'), ('7A', 'Vienna Lager'), ('7B', 'Altbier'), ('8A', 'Munich Dunkel'), ('8B', 'Schwarzbier'), ('9A', 'Doppelbock'), ('9B', 'Eisbock'), ('9C', 'Baltic Porter'), ('10A', 'Weissbier'), ('10B', 'Dunkles Weissbier'), ('10C', 'Weizenbock'), ('11A', 'Ordinary Bitter'), ('11B', 'Best Bitter'), ('11C', 'Strong Bitter'), ('12A', 'British Golden Ale'), ('12B', 'Australian Sparkling Ale'), ('12C', 'English IPA'), ('13A', 'Dark Mild'), ('13B', 'British Brown Ale'), ('13C', 'English Porter'), ('14A', 'Scottish Light'), ('14B', 'Scottish Heavy'), ('14C', 'Scottish Export'), ('15A', 'Irish Red Ale'), ('15B', 'Irish Stout'), ('15C', 'Irish Extra Stout'), ('16A', 'Sweet Stout'), ('16B', 'Oatmeal Stout'), ('16C', 'Tropical Stout'), ('16D', 'Foreign Extra Stout'), ('17A', 'British Strong Ale'), ('17B', 'Old Ale'), ('17C', 'Wee Heavy'), ('17D', 'English Barley Wine'), ('18A', 'Blonde Ale'), ('18B', 'American Pale Ale'), ('19A', 'American Amber Ale'), ('19B', 'California Common'), ('19C', 'American Brown Ale'), ('20A', 'American Porter'), ('20B', 'American Stout'), ('20C', 'Imperial Stout'), ('21A', 'American IPA'), ('21B', 'Specialty IPA'), ('21C', 'Hazy IPA'), ('22A', 'Double IPA'), ('22B', 'American Strong Ale'), ('22C', 'American Barleywine'), ('22D', 'Wheatwine'), ('23A', 'Berliner Weisse'), ('23B', 'Flanders Red Ale'), ('23C', 'Oud Bruin'), ('23D', 'Lambic'), ('23E', 'Gueuze'), ('23F', 'Fruit Lambic'), ('23G', 'Gose'), ('24A', 'Witbier'), ('24B', 'Belgian Pale Ale'), ('24C', 'Bière de Garde'), ('25A', 'Belgian Blond Ale'), ('25B', 'Saison'), ('25C', 'Belgian Golden Strong Ale'), ('26A', 'Belgian Single'), ('26B', 'Belgian Dubbel'), ('26C', 'Belgian Tripel'), ('26D', 'Belgian Dark Strong Ale'), ('28A', 'Brett Beer'), ('28B', 'Mixed-Fermentation Sour Beer'), ('28C', 'Wild Specialty Beer'), ('28D', 'Straight Sour Beer'), ('29A', 'Fruit Beer'), ('29B', 'Fruit and Spice Beer'), ('29C', 'Specialty Fruit Beer'), ('29D', 'Grape Ale'), ('30A', 'Spice, Herb, or Vegetable Beer'), ('30B', 'Autumn Seasonal Beer'), ('30C', 'Winter Seasonal Beer'), ('30D', 'Specialty Spice Beer'), ('31A', 'Alternative Grain Beer'), ('31B', 'Alternative Sugar Beer'), ('32A', 'Classic Style Smoked Beer'), ('32B', 'Specialty Smoked Beer'), ('34A', 'Commercial Specialty Beer'), ('34B', 'Mixed-Style Beer'), ('34C', 'Experimental Beer'), ('X1', 'Dorada Pampeana'), ('X2', 'IPA Argenta'), ('X3', 'Italian Grape Ale'), ('X4', 'Catharina Sour'), ('X5', 'New Zealand Pilsner')], default='1A', max_length=3), + ), + ] diff --git a/beer/migrations/0020_alter_recipe_bjcp_style_id.py b/beer/migrations/0020_alter_recipe_bjcp_style_id.py new file mode 100644 index 0000000..8651e2b --- /dev/null +++ b/beer/migrations/0020_alter_recipe_bjcp_style_id.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.6 on 2024-06-26 19:46 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('beer', '0019_alter_recipe_bjcp_style_id'), + ] + + operations = [ + migrations.AlterField( + model_name='recipe', + name='bjcp_style_id', + field=models.CharField(choices=[('1A', '1A: American Light Lager'), ('1B', '1B: American Lager'), ('1C', '1C: Cream Ale'), ('1D', '1D: American Wheat Beer'), ('2A', '2A: International Pale Lager'), ('2B', '2B: International Amber Lager'), ('2C', '2C: International Dark Lager'), ('3A', '3A: Czech Pale Lager'), ('3B', '3B: Czech Premium Pale Lager'), ('3C', '3C: Czech Amber Lager'), ('3D', '3D: Czech Dark Lager'), ('4A', '4A: Munich Helles'), ('4B', '4B: Festbier'), ('4C', '4C: Helles Bock'), ('5A', '5A: German Leichtbier'), ('5B', '5B: Kölsch'), ('5C', '5C: German Helles Exportbier'), ('5D', '5D: German Pils'), ('6A', '6A: Märzen'), ('6B', '6B: Rauchbier'), ('6C', '6C: Dunkles Bock'), ('7A', '7A: Vienna Lager'), ('7B', '7B: Altbier'), ('8A', '8A: Munich Dunkel'), ('8B', '8B: Schwarzbier'), ('9A', '9A: Doppelbock'), ('9B', '9B: Eisbock'), ('9C', '9C: Baltic Porter'), ('10A', '10A: Weissbier'), ('10B', '10B: Dunkles Weissbier'), ('10C', '10C: Weizenbock'), ('11A', '11A: Ordinary Bitter'), ('11B', '11B: Best Bitter'), ('11C', '11C: Strong Bitter'), ('12A', '12A: British Golden Ale'), ('12B', '12B: Australian Sparkling Ale'), ('12C', '12C: English IPA'), ('13A', '13A: Dark Mild'), ('13B', '13B: British Brown Ale'), ('13C', '13C: English Porter'), ('14A', '14A: Scottish Light'), ('14B', '14B: Scottish Heavy'), ('14C', '14C: Scottish Export'), ('15A', '15A: Irish Red Ale'), ('15B', '15B: Irish Stout'), ('15C', '15C: Irish Extra Stout'), ('16A', '16A: Sweet Stout'), ('16B', '16B: Oatmeal Stout'), ('16C', '16C: Tropical Stout'), ('16D', '16D: Foreign Extra Stout'), ('17A', '17A: British Strong Ale'), ('17B', '17B: Old Ale'), ('17C', '17C: Wee Heavy'), ('17D', '17D: English Barley Wine'), ('18A', '18A: Blonde Ale'), ('18B', '18B: American Pale Ale'), ('19A', '19A: American Amber Ale'), ('19B', '19B: California Common'), ('19C', '19C: American Brown Ale'), ('20A', '20A: American Porter'), ('20B', '20B: American Stout'), ('20C', '20C: Imperial Stout'), ('21A', '21A: American IPA'), ('21B', '21B: Specialty IPA'), ('21C', '21C: Hazy IPA'), ('22A', '22A: Double IPA'), ('22B', '22B: American Strong Ale'), ('22C', '22C: American Barleywine'), ('22D', '22D: Wheatwine'), ('23A', '23A: Berliner Weisse'), ('23B', '23B: Flanders Red Ale'), ('23C', '23C: Oud Bruin'), ('23D', '23D: Lambic'), ('23E', '23E: Gueuze'), ('23F', '23F: Fruit Lambic'), ('23G', '23G: Gose'), ('24A', '24A: Witbier'), ('24B', '24B: Belgian Pale Ale'), ('24C', '24C: Bière de Garde'), ('25A', '25A: Belgian Blond Ale'), ('25B', '25B: Saison'), ('25C', '25C: Belgian Golden Strong Ale'), ('26A', '26A: Belgian Single'), ('26B', '26B: Belgian Dubbel'), ('26C', '26C: Belgian Tripel'), ('26D', '26D: Belgian Dark Strong Ale'), ('28A', '28A: Brett Beer'), ('28B', '28B: Mixed-Fermentation Sour Beer'), ('28C', '28C: Wild Specialty Beer'), ('28D', '28D: Straight Sour Beer'), ('29A', '29A: Fruit Beer'), ('29B', '29B: Fruit and Spice Beer'), ('29C', '29C: Specialty Fruit Beer'), ('29D', '29D: Grape Ale'), ('30A', '30A: Spice, Herb, or Vegetable Beer'), ('30B', '30B: Autumn Seasonal Beer'), ('30C', '30C: Winter Seasonal Beer'), ('30D', '30D: Specialty Spice Beer'), ('31A', '31A: Alternative Grain Beer'), ('31B', '31B: Alternative Sugar Beer'), ('32A', '32A: Classic Style Smoked Beer'), ('32B', '32B: Specialty Smoked Beer'), ('34A', '34A: Commercial Specialty Beer'), ('34B', '34B: Mixed-Style Beer'), ('34C', '34C: Experimental Beer'), ('X1', 'X1: Dorada Pampeana'), ('X2', 'X2: IPA Argenta'), ('X3', 'X3: Italian Grape Ale'), ('X4', 'X4: Catharina Sour'), ('X5', 'X5: New Zealand Pilsner')], default='1A', max_length=3), + ), + ] diff --git a/beer/migrations/0021_remove_recipe_bjcp_category_id.py b/beer/migrations/0021_remove_recipe_bjcp_category_id.py new file mode 100644 index 0000000..db63120 --- /dev/null +++ b/beer/migrations/0021_remove_recipe_bjcp_category_id.py @@ -0,0 +1,17 @@ +# Generated by Django 5.0.6 on 2024-06-26 19:47 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('beer', '0020_alter_recipe_bjcp_style_id'), + ] + + operations = [ + migrations.RemoveField( + model_name='recipe', + name='bjcp_category_id', + ), + ] diff --git a/beer/migrations/0022_bjcpstyle_alter_recipe_bjcp_style_id.py b/beer/migrations/0022_bjcpstyle_alter_recipe_bjcp_style_id.py new file mode 100644 index 0000000..b51e73f --- /dev/null +++ b/beer/migrations/0022_bjcpstyle_alter_recipe_bjcp_style_id.py @@ -0,0 +1,72 @@ +# Generated by Django 5.0.6 on 2024-06-27 13:34 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('beer', '0021_remove_recipe_bjcp_category_id'), + ] + + operations = [ + migrations.CreateModel( + name='BjcpStyle', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.TextField(blank=True, null=True)), + ('category', models.TextField(blank=True, null=True)), + ('category_id', models.TextField(blank=True, null=True)), + ('style_id', models.TextField(blank=True, null=True)), + ('category_description', models.TextField(blank=True, null=True)), + ('overall_impression', models.TextField(blank=True, null=True)), + ('aroma', models.TextField(blank=True, null=True)), + ('appearance', models.TextField(blank=True, null=True)), + ('flavor', models.TextField(blank=True, null=True)), + ('mouthfeel', models.TextField(blank=True, null=True)), + ('comments', models.TextField(blank=True, null=True)), + ('history', models.TextField(blank=True, null=True)), + ('style_comparison', models.TextField(blank=True, null=True)), + ('tags', models.TextField(blank=True, null=True)), + ('original_gravity_minimum_unit', models.TextField(blank=True, null=True)), + ('original_gravity_minimum_value', models.DecimalField(blank=True, decimal_places=5, max_digits=10, null=True)), + ('original_gravity_maximum_unit', models.TextField(blank=True, null=True)), + ('original_gravity_maximum_value', models.DecimalField(blank=True, decimal_places=5, max_digits=10, null=True)), + ('international_bitterness_units_minimum_unit', models.TextField(blank=True, null=True)), + ('international_bitterness_units_minimum_value', models.DecimalField(blank=True, decimal_places=5, max_digits=10, null=True)), + ('international_bitterness_units_maximum_unit', models.TextField(blank=True, null=True)), + ('international_bitterness_units_maximum_value', models.DecimalField(blank=True, decimal_places=5, max_digits=10, null=True)), + ('final_gravity_minimum_unit', models.TextField(blank=True, null=True)), + ('final_gravity_minimum_value', models.DecimalField(blank=True, decimal_places=5, max_digits=10, null=True)), + ('final_gravity_maximum_unit', models.TextField(blank=True, null=True)), + ('final_gravity_maximum_value', models.DecimalField(blank=True, decimal_places=5, max_digits=10, null=True)), + ('alcohol_by_volume_minimum_unit', models.TextField(blank=True, null=True)), + ('alcohol_by_volume_minimum_value', models.DecimalField(blank=True, decimal_places=5, max_digits=10, null=True)), + ('alcohol_by_volume_maximum_unit', models.TextField(blank=True, null=True)), + ('alcohol_by_volume_maximum_value', models.DecimalField(blank=True, decimal_places=5, max_digits=10, null=True)), + ('color_minimum_unit', models.TextField(blank=True, null=True)), + ('color_minimum_value', models.DecimalField(blank=True, decimal_places=5, max_digits=10, null=True)), + ('color_maximum_unit', models.TextField(blank=True, null=True)), + ('color_maximum_value', models.DecimalField(blank=True, decimal_places=5, max_digits=10, null=True)), + ('ingredients', models.TextField(blank=True, null=True)), + ('examples', models.TextField(blank=True, null=True)), + ('style_guide', models.TextField(blank=True, null=True)), + ('type', models.TextField(blank=True, null=True)), + ('entry_instructions', models.TextField(blank=True, null=True)), + ('notes', models.TextField(blank=True, null=True)), + ('currently_defined_types', models.TextField(blank=True, null=True)), + ('strength_classifications', models.TextField(blank=True, null=True)), + ('vital_statistics', models.TextField(blank=True, null=True)), + ('profile', models.TextField(blank=True, null=True)), + ('comparison', models.TextField(blank=True, null=True)), + ], + options={ + 'db_table': 'beer_bjcp', + }, + ), + migrations.AlterField( + model_name='recipe', + name='bjcp_style_id', + field=models.CharField(choices=[('1A', '1A: American Light Lager'), ('1B', '1B: American Lager'), ('1C', '1C: Cream Ale'), ('1D', '1D: American Wheat Beer'), ('2A', '2A: International Pale Lager'), ('2B', '2B: International Amber Lager'), ('2C', '2C: International Dark Lager'), ('3A', '3A: Czech Pale Lager'), ('3B', '3B: Czech Premium Pale Lager'), ('3C', '3C: Czech Amber Lager'), ('3D', '3D: Czech Dark Lager'), ('4A', '4A: Munich Helles'), ('4B', '4B: Festbier'), ('4C', '4C: Helles Bock'), ('5A', '5A: German Leichtbier'), ('5B', '5B: Kölsch'), ('5C', '5C: German Helles Exportbier'), ('5D', '5D: German Pils'), ('6A', '6A: Märzen'), ('6B', '6B: Rauchbier'), ('6C', '6C: Dunkles Bock'), ('7A', '7A: Vienna Lager'), ('7B', '7B: Altbier'), ('8A', '8A: Munich Dunkel'), ('8B', '8B: Schwarzbier'), ('9A', '9A: Doppelbock'), ('9B', '9B: Eisbock'), ('9C', '9C: Baltic Porter'), ('10A', '10A: Weissbier'), ('10B', '10B: Dunkles Weissbier'), ('10C', '10C: Weizenbock'), ('11A', '11A: Ordinary Bitter'), ('11B', '11B: Best Bitter'), ('11C', '11C: Strong Bitter'), ('12A', '12A: British Golden Ale'), ('12B', '12B: Australian Sparkling Ale'), ('12C', '12C: English IPA'), ('13A', '13A: Dark Mild'), ('13B', '13B: British Brown Ale'), ('13C', '13C: English Porter'), ('14A', '14A: Scottish Light'), ('14B', '14B: Scottish Heavy'), ('14C', '14C: Scottish Export'), ('15A', '15A: Irish Red Ale'), ('15B', '15B: Irish Stout'), ('15C', '15C: Irish Extra Stout'), ('16A', '16A: Sweet Stout'), ('16B', '16B: Oatmeal Stout'), ('16C', '16C: Tropical Stout'), ('16D', '16D: Foreign Extra Stout'), ('17A', '17A: British Strong Ale'), ('17B', '17B: Old Ale'), ('17C', '17C: Wee Heavy'), ('17D', '17D: English Barley Wine'), ('18A', '18A: Blonde Ale'), ('18B', '18B: American Pale Ale'), ('19A', '19A: American Amber Ale'), ('19B', '19B: California Common'), ('19C', '19C: American Brown Ale'), ('20A', '20A: American Porter'), ('20B', '20B: American Stout'), ('20C', '20C: Imperial Stout'), ('21A', '21A: American IPA'), ('21B', '21B: Specialty IPA'), ('21C', '21C: Hazy IPA'), ('22A', '22A: Double IPA'), ('22B', '22B: American Strong Ale'), ('22C', '22C: American Barleywine'), ('22D', '22D: Wheatwine'), ('23A', '23A: Berliner Weisse'), ('23B', '23B: Flanders Red Ale'), ('23C', '23C: Oud Bruin'), ('23D', '23D: Lambic'), ('23E', '23E: Gueuze'), ('23F', '23F: Fruit Lambic'), ('23G', '23G: Gose'), ('24A', '24A: Witbier'), ('24B', '24B: Belgian Pale Ale'), ('24C', '24C: Bière de Garde'), ('25A', '25A: Belgian Blond Ale'), ('25B', '25B: Saison'), ('25C', '25C: Belgian Golden Strong Ale'), ('26A', '26A: Belgian Single'), ('26B', '26B: Belgian Dubbel'), ('26C', '26C: Belgian Tripel'), ('26D', '26D: Belgian Dark Strong Ale'), ('28A', '28A: Brett Beer'), ('28B', '28B: Mixed-Fermentation Sour Beer'), ('28C', '28C: Wild Specialty Beer'), ('28D', '28D: Straight Sour Beer'), ('29A', '29A: Fruit Beer'), ('29B', '29B: Fruit and Spice Beer'), ('29C', '29C: Specialty Fruit Beer'), ('29D', '29D: Grape Ale'), ('30A', '30A: Spice, Herb, or Vegetable Beer'), ('30B', '30B: Autumn Seasonal Beer'), ('30C', '30C: Winter Seasonal Beer'), ('30D', '30D: Specialty Spice Beer'), ('31A', '31A: Alternative Grain Beer'), ('31B', '31B: Alternative Sugar Beer'), ('32A', '32A: Classic Style Smoked Beer'), ('32B', '32B: Specialty Smoked Beer'), ('34A', '34A: Commercial Specialty Beer'), ('34B', '34B: Mixed-Style Beer'), ('34C', '34C: Experimental Beer'), ('X5', 'X5: New Zealand Pilsner')], default='1A', max_length=3), + ), + ] diff --git a/beer/migrations/0023_alter_bjcpstyle_alcohol_by_volume_maximum_unit_and_more.py b/beer/migrations/0023_alter_bjcpstyle_alcohol_by_volume_maximum_unit_and_more.py new file mode 100644 index 0000000..796964b --- /dev/null +++ b/beer/migrations/0023_alter_bjcpstyle_alcohol_by_volume_maximum_unit_and_more.py @@ -0,0 +1,88 @@ +# Generated by Django 5.0.6 on 2024-06-27 13:39 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('beer', '0022_bjcpstyle_alter_recipe_bjcp_style_id'), + ] + + operations = [ + migrations.AlterField( + model_name='bjcpstyle', + name='alcohol_by_volume_maximum_unit', + field=models.TextField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='alcohol_by_volume_minimum_unit', + field=models.TextField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='category', + field=models.TextField(blank=True, max_length=50, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='category_id', + field=models.TextField(blank=True, max_length=5, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='color_maximum_unit', + field=models.TextField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='color_minimum_unit', + field=models.TextField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='final_gravity_maximum_unit', + field=models.TextField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='final_gravity_minimum_unit', + field=models.TextField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='international_bitterness_units_maximum_unit', + field=models.TextField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='international_bitterness_units_minimum_unit', + field=models.TextField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='name', + field=models.TextField(blank=True, max_length=50, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='original_gravity_maximum_unit', + field=models.TextField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='original_gravity_minimum_unit', + field=models.TextField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='style_guide', + field=models.TextField(blank=True, max_length=20, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='style_id', + field=models.TextField(blank=True, max_length=5, null=True), + ), + ] diff --git a/beer/migrations/0024_alter_bjcpstyle_alcohol_by_volume_maximum_unit_and_more.py b/beer/migrations/0024_alter_bjcpstyle_alcohol_by_volume_maximum_unit_and_more.py new file mode 100644 index 0000000..3465d90 --- /dev/null +++ b/beer/migrations/0024_alter_bjcpstyle_alcohol_by_volume_maximum_unit_and_more.py @@ -0,0 +1,88 @@ +# Generated by Django 5.0.6 on 2024-06-27 13:40 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('beer', '0023_alter_bjcpstyle_alcohol_by_volume_maximum_unit_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='bjcpstyle', + name='alcohol_by_volume_maximum_unit', + field=models.CharField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='alcohol_by_volume_minimum_unit', + field=models.CharField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='category', + field=models.CharField(blank=True, max_length=50, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='category_id', + field=models.CharField(blank=True, max_length=5, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='color_maximum_unit', + field=models.CharField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='color_minimum_unit', + field=models.CharField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='final_gravity_maximum_unit', + field=models.CharField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='final_gravity_minimum_unit', + field=models.CharField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='international_bitterness_units_maximum_unit', + field=models.CharField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='international_bitterness_units_minimum_unit', + field=models.CharField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='name', + field=models.CharField(blank=True, max_length=50, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='original_gravity_maximum_unit', + field=models.CharField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='original_gravity_minimum_unit', + field=models.CharField(blank=True, max_length=10, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='style_guide', + field=models.CharField(blank=True, max_length=20, null=True), + ), + migrations.AlterField( + model_name='bjcpstyle', + name='style_id', + field=models.CharField(blank=True, max_length=5, null=True), + ), + ] diff --git a/beer/models.py b/beer/models.py index defcab3..b7bbb1e 100644 --- a/beer/models.py +++ b/beer/models.py @@ -1,5 +1,6 @@ from django.db import models from django.db.models import Sum, Q +from django.contrib.staticfiles import finders from django.utils import timezone from django_cryptography.fields import encrypt from django.core.validators import MinValueValidator @@ -8,6 +9,7 @@ from config.extras import BREWFATHER_APP_ROOT from beer.extras import sg_plato, plato_sg, kg_extract, convert from django.conf import settings +import json import logging logger = logging.getLogger('django') @@ -188,10 +190,25 @@ class Recipe(CustomModel): fermentables = models.ManyToManyField( 'Fermentable', through='RecipeFermentable') + with open(finders.find('bjcp/2021.json'), encoding='utf-8', errors="ignore") as bjcp_file: + bjcp = json.load(bjcp_file) + styles = bjcp['styles'] + style_ids = dict([ + (x['style_id'], '{}: {}'.format(x['style_id'], x['name'])) + for x in styles + ]) + + bjcp_style_id = models.CharField( + max_length=3, choices=style_ids, default='1A') + class Meta: verbose_name = 'Recipe' verbose_name_plural = 'Recipes' + @property + def batch_size_display(self): + return convert(self.batch_size, 'l', 'gal') + @property def fw_max(self): potential = 0 @@ -205,6 +222,10 @@ class Recipe(CustomModel): ratio = float(self.equipment.mash_ratio) return 100*e_grain / (ratio+e_grain) + @property + def total_fermentable_display(self): + return convert(self.fermentable_weight_kg, 'kg', 'lb') + @property def fermentable_weight_kg(self): """Weight of all fermentables attached to recipe.""" @@ -224,10 +245,18 @@ class Recipe(CustomModel): return extract @property - def hop_weight(self): + def total_hop_display(self): + return convert(self.hop_weight_g, 'g', 'oz') + + @property + def hop_weight_g(self): """Weight of all fermentables attached to recipe.""" aggregate = self.recipehop_set.all().aggregate(Sum('quantity')) - return float(aggregate['quantity__sum']) * 0.0352739619 + + if aggregate['quantity__sum']: + return aggregate['quantity__sum'] + else: + return 0 @property def final_volume(self): @@ -625,3 +654,60 @@ class EquipmentProfile(CustomModel): class Meta: db_table_comment = 'Volumes in liters and weights in kg.' + +class BjcpStyle(models.Model): + name = models.CharField(max_length=50, blank=True, null=True) + category = models.CharField(max_length=50, blank=True, null=True) + category_id = models.CharField(max_length=5, blank=True, null=True) + style_id = models.CharField(max_length=5, blank=True, null=True) + category_description = models.TextField(blank=True, null=True) + overall_impression = models.TextField(blank=True, null=True) + aroma = models.TextField(blank=True, null=True) + appearance = models.TextField(blank=True, null=True) + flavor = models.TextField(blank=True, null=True) + mouthfeel = models.TextField(blank=True, null=True) + comments = models.TextField(blank=True, null=True) + history = models.TextField(blank=True, null=True) + style_comparison = models.TextField(blank=True, null=True) + tags = models.TextField(blank=True, null=True) + original_gravity_minimum_unit = models.CharField(max_length=10, blank=True, null=True) + original_gravity_minimum_value = models.DecimalField(max_digits=10, decimal_places=5, blank=True, null=True) # max_digits and decimal_places have been guessed, as this database handles decimal fields as float + original_gravity_maximum_unit = models.CharField(max_length=10, blank=True, null=True) + original_gravity_maximum_value = models.DecimalField(max_digits=10, decimal_places=5, blank=True, null=True) # max_digits and decimal_places have been guessed, as this database handles decimal fields as float + international_bitterness_units_minimum_unit = models.CharField(max_length=10, blank=True, null=True) + international_bitterness_units_minimum_value = models.DecimalField(max_digits=10, decimal_places=5, blank=True, null=True) # max_digits and decimal_places have been guessed, as this database handles decimal fields as float + international_bitterness_units_maximum_unit = models.CharField(max_length=10, blank=True, null=True) + international_bitterness_units_maximum_value = models.DecimalField(max_digits=10, decimal_places=5, blank=True, null=True) # max_digits and decimal_places have been guessed, as this database handles decimal fields as float + final_gravity_minimum_unit = models.CharField(max_length=10, blank=True, null=True) + final_gravity_minimum_value = models.DecimalField(max_digits=10, decimal_places=5, blank=True, null=True) # max_digits and decimal_places have been guessed, as this database handles decimal fields as float + final_gravity_maximum_unit = models.CharField(max_length=10, blank=True, null=True) + final_gravity_maximum_value = models.DecimalField(max_digits=10, decimal_places=5, blank=True, null=True) # max_digits and decimal_places have been guessed, as this database handles decimal fields as float + alcohol_by_volume_minimum_unit = models.CharField(max_length=10, blank=True, null=True) + alcohol_by_volume_minimum_value = models.DecimalField(max_digits=10, decimal_places=5, blank=True, null=True) # max_digits and decimal_places have been guessed, as this database handles decimal fields as float + alcohol_by_volume_maximum_unit = models.CharField(max_length=10, blank=True, null=True) + alcohol_by_volume_maximum_value = models.DecimalField(max_digits=10, decimal_places=5, blank=True, null=True) # max_digits and decimal_places have been guessed, as this database handles decimal fields as float + color_minimum_unit = models.CharField(max_length=10, blank=True, null=True) + color_minimum_value = models.DecimalField(max_digits=10, decimal_places=5, blank=True, null=True) # max_digits and decimal_places have been guessed, as this database handles decimal fields as float + color_maximum_unit = models.CharField(max_length=10, blank=True, null=True) + color_maximum_value = models.DecimalField(max_digits=10, decimal_places=5, blank=True, null=True) # max_digits and decimal_places have been guessed, as this database handles decimal fields as float + ingredients = models.TextField(blank=True, null=True) + examples = models.TextField(blank=True, null=True) + style_guide = models.CharField(max_length=20, blank=True, null=True) + type = models.TextField(blank=True, null=True) + entry_instructions = models.TextField(blank=True, null=True) + notes = models.TextField(blank=True, null=True) + currently_defined_types = models.TextField(blank=True, null=True) + strength_classifications = models.TextField(blank=True, null=True) + vital_statistics = models.TextField(blank=True, null=True) + profile = models.TextField(blank=True, null=True) + comparison = models.TextField(blank=True, null=True) + + def __str__(self): + return '{} {}: {}'.format( + self.category, + self.style_id, + self.name + ) + + class Meta: + db_table = 'beer_bjcp' diff --git a/beer/static/bjcp/2015.json b/beer/static/bjcp/2015.json deleted file mode 100644 index e77cfe2..0000000 --- a/beer/static/bjcp/2015.json +++ /dev/null @@ -1,7964 +0,0 @@ -{ - "beerjson": { - "version": 2.01, - "styles": [ - { - "name": "American Light Lager", - "category": "Standard American Beer", - "category_number": 1, - "category_id": "1", - "style_id": "1A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to no malt aroma, although it can be perceived as grainy, sweet, or corn-like if present. Hop aroma is light to none, with a spicy or floral hop character if present. While a clean fermentation character is desirable, a light amount of yeast character (particularly a light apple fruitiness) is not a fault. Light DMS 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 and dry finish and a low to very low grainy or corn-like flavor that might be perceived as sweetness due to the low bitterness. Hop flavor ranges from none to low levels, and can have a floral, spicy, or herbal quality (although rarely strong enough to detect). Low to very low hop bitterness. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. High levels of carbonation may accentuate the crispness of the dry finish. Clean lager fermentation character.", - "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.", - "profile": "Low to no malt aroma, although it can be perceived as grainy, sweet, or corn-like if present. Hop aroma is light to none, with a spicy or floral hop character if present. While a clean fermentation character is desirable, a light amount of yeast character (particularly a light apple fruitiness) is not a fault. Light DMS is not a fault. Very pale straw to pale yellow color. White, frothy head seldom persists. Very clear.Relatively neutral palate with a crisp and dry finish and a low to very low grainy or corn-like flavor that might be perceived as sweetness due to the low bitterness. Hop flavor ranges from none to low levels, and can have a floral, spicy, or herbal quality (although rarely strong enough to detect). Low to very low hop bitterness. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. High levels of carbonation may accentuate the crispness of the dry finish. Clean lager fermentation character. Very light (sometimes watery) body. Very highly carbonated with slight carbonic bite on the tongue. Designed to appeal to as broad a range of the general public as possible. Strong flavors are a fault.", - "overall_impression": "Highly carbonated, very light-bodied, nearly flavorless lager designed to be consumed very cold. Very refreshing and thirst quenching.", - "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.", - "notes": "Highly carbonated, very light-bodied, nearly flavorless lager designed to be consumed very cold. Very refreshing and thirst quenching. 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.", - "ingredients": "Two- or six-row barley with high percentage (up to 40%) of rice or corn as adjuncts. Additional enzymes can further lighten the body and lower carbohydrates.", - "comparison": "A lighter-bodied, lower-alcohol, lower calorie version of an American Lager. Less hop character and bitterness than a Leichtbier.", - "examples": "Bud Light, Coors Light, Keystone Light, Michelob Light, Miller Lite, Old Milwaukee Light", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 0.998 - }, - "maximum": { - "unit": "sg", - "value": 1.008 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 8 - }, - "maximum": { - "unit": "IBUs", - "value": 12 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 3 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 2.8 - }, - "maximum": { - "unit": "%", - "value": 4.2 - } - } - }, - { - "name": "American Lager", - "category": "Standard American Beer", - "category_number": 1, - "category_id": "1", - "style_id": "1B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to no malt aroma, although it can be perceived as grainy, sweet or corn-like if present. Hop aroma may range from none to a light, spicy or floral hop presence. While a clean fermentation character is desirable, a light amount of yeast character (particularly a light apple character) is not a fault. Light DMS is also 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 and dry finish and a moderately-low to low grainy or corn-like flavor that might be perceived as sweetness due to the low bitterness. Hop flavor ranges from none to moderately-low levels, and can have a floral, spicy, or herbal quality (although often not strong enough to distinguish). Hop bitterness at low to medium-low level. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. High levels of carbonation may accentuate the crispness of the dry finish. Clean lager fermentation character.", - "mouthfeel": "Low to medium-low body. Very highly carbonated with slight carbonic bite on the tongue.", - "comments": "Strong flavors are a fault. Often what non-craft beer drinkers expect to be served if they order beer in the United States. May be marketed as Pilsner beers outside of Europe, but should not be confused with traditional examples.", - "profile": "Low to no malt aroma, although it can be perceived as grainy, sweet or corn-like if present. Hop aroma may range from none to a light, spicy or floral hop presence. While a clean fermentation character is desirable, a light amount of yeast character (particularly a light apple character) is not a fault. Light DMS is also not a fault. Very pale straw to medium yellow color. White, frothy head seldom persists. Very clear.Relatively neutral palate with a crisp and dry finish and a moderately-low to low grainy or corn-like flavor that might be perceived as sweetness due to the low bitterness. Hop flavor ranges from none to moderately-low levels, and can have a floral, spicy, or herbal quality (although often not strong enough to distinguish). Hop bitterness at low to medium-low level. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. High levels of carbonation may accentuate the crispness of the dry finish. Clean lager fermentation character. Low to medium-low body. Very highly carbonated with slight carbonic bite on the tongue. Strong flavors are a fault. Often what non-craft beer drinkers expect to be served if they order beer in the United States. May be marketed as Pilsner beers outside of Europe, but should not be confused with traditional examples.", - "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.", - "history": "Although German immigrants had brewed traditional Pilsner-inspired lager beer in the United States since the mid-late 1800s, the modern American lager style was heavily influenced by Prohibition and World War II. Surviving breweries consolidated, expanded distribution, and heavily promoted a beer style that was appealing to a broad range of the population. Became the dominant beer style for many decades, and spawning many international rivals who would develop similarly bland products for the mass market supported by heavy advertising.", - "notes": "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. Although German immigrants had brewed traditional Pilsner-inspired lager beer in the United States since the mid-late 1800s, the modern American lager style was heavily influenced by Prohibition and World War II. Surviving breweries consolidated, expanded distribution, and heavily promoted a beer style that was appealing to a broad range of the population. Became the dominant beer style for many decades, and spawning many international rivals who would develop similarly bland products for the mass market supported by heavy advertising.", - "ingredients": "Two- or six-row barley with high percentage (up to 40%) of rice or corn as adjuncts.", - "comparison": "Stronger, more flavor and body than a Light American Lager. Less bitterness and flavor than an International Lager. Significantly less flavor, hops, and bitterness than traditional European Pilsners.", - "examples": "Budweiser, Coors Original, Grain Belt Premium Lager, Miller High Life, Pabst Blue Ribbon, Special Export", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.004 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 8 - }, - "maximum": { - "unit": "IBUs", - "value": 18 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 4 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.2 - }, - "maximum": { - "unit": "%", - "value": 5.3 - } - } - }, - { - "name": "Cream Ale", - "category": "Standard American Beer", - "category_number": 1, - "category_id": "1", - "style_id": "1C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Medium-low to low malt notes, with a sweet, corn-like aroma. Low levels of DMS are allowable, but are not required. Hop aroma medium low to none, and can be of any variety although floral, spicy, or herbal notes are most common. Overall, a subtle aroma with neither hops nor malt dominating. Low fruity esters are optional.", - "appearance": "Pale straw to moderate gold color, although usually on the pale side. Low to medium head with medium to high carbonation. Fair head retention. Brilliant, sparkling clarity.", - "flavor": "Low to medium-low hop bitterness. Low to moderate maltiness and sweetness, varying with gravity and attenuation. Usually well-attenuated. Neither malt nor hops dominate the palate. A low to moderate corny flavor is commonly found, as is light DMS (optional). Finish can vary from somewhat dry to faintly sweet. Low fruity esters are optional. Low to medium-low hop flavor (any variety, but typically floral, spicy, or herbal).", - "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": "Pre-prohibition Cream Ales were slightly stronger, hoppier (including some dry hopping) and more bitter (25-30+ IBUs). These versions should be entered in the historical category. Most commercial examples are in the 1.050–1.053 OG range, and bitterness rarely rises above 20 IBUs.", - "profile": "Medium-low to low malt notes, with a sweet, corn-like aroma. Low levels of DMS are allowable, but are not required. Hop aroma medium low to none, and can be of any variety although floral, spicy, or herbal notes are most common. Overall, a subtle aroma with neither hops nor malt dominating. Low fruity esters are optional. Pale straw to moderate gold color, although usually on the pale side. Low to medium head with medium to high carbonation. Fair head retention. Brilliant, sparkling clarity.Low to medium-low hop bitterness. Low to moderate maltiness and sweetness, varying with gravity and attenuation. Usually well-attenuated. Neither malt nor hops dominate the palate. A low to moderate corny flavor is commonly found, as is light DMS (optional). Finish can vary from somewhat dry to faintly sweet. Low fruity esters are optional. Low to medium-low hop flavor (any variety, but typically floral, spicy, or herbal). 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. Pre-prohibition Cream Ales were slightly stronger, hoppier (including some dry hopping) and more bitter (25-30+ IBUs). These versions should be entered in the historical category. Most commercial examples are in the 1.050–1.053 OG range, and bitterness rarely rises above 20 IBUs.", - "overall_impression": "A clean, well-attenuated, flavorful American \"lawnmower\" beer. Easily drinkable and refreshing, with more character than typical American lagers.", - "history": "A sparkling or present-use ale that existed in the 1800s and survived prohibition. An ale version of the American lager style. Produced by ale brewers to compete with lager brewers in Canada and the Northeast, Mid-Atlantic, and Midwest states. Originally known as sparkling or present use ales, lager strains were (and sometimes still are) used by some brewers, but were not historically mixed with ale strains. Many examples are kräusened to achieve carbonation. Cold conditioning isn't traditional, although modern brewers sometimes use it.", - "notes": "A clean, well-attenuated, flavorful American \"lawnmower\" beer. Easily drinkable and refreshing, with more character than typical American lagers. A sparkling or present-use ale that existed in the 1800s and survived prohibition. An ale version of the American lager style. Produced by ale brewers to compete with lager brewers in Canada and the Northeast, Mid-Atlantic, and Midwest states. Originally known as sparkling or present use ales, lager strains were (and sometimes still are) used by some brewers, but were not historically mixed with ale strains. Many examples are kräusened to achieve carbonation. Cold conditioning isn't traditional, although modern brewers sometimes use it.", - "ingredients": "American ingredients most commonly used. A grain bill of six-row malt, or a combination of six-row and North American two-row, is common. Adjuncts can include up to 20% maize in the mash, and up to 20% glucose or other sugars in the boil. Any variety of hops can be used for bittering and finishing.", - "comparison": "Similar to a Standard American Lager, but with more character.", - "examples": "Genesee Cream Ale, Liebotschaner Cream Ale, Little Kings Cream Ale, New Glarus Spotted Cow, Old Style, Sleeman Cream Ale", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.006 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 8 - }, - "maximum": { - "unit": "IBUs", - "value": 20 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2.5 - }, - "maximum": { - "unit": "SRM", - "value": 5 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.2 - }, - "maximum": { - "unit": "%", - "value": 5.6 - } - } - }, - { - "name": "American Wheat Beer", - "category": "Standard American Beer", - "category_number": 1, - "category_id": "1", - "style_id": "1D", - "style_letter": "D", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to moderate grainy, bready, or doughy wheat character. A light to moderate malty sweetness is acceptable. Esters can be moderate to none, although should reflect relatively neutral yeast strains; banana is inappropriate. Hop aroma may be low to moderate, and can have a citrusy, spicy, floral, or fruity character. No clove phenols.", - "appearance": "Usually pale yellow to gold. Clarity may range from brilliant to hazy with yeast approximating the German weissbier style of beer. 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 finish quite dry. Low to moderate hop bitterness, which sometimes lasts into the finish. Balance is usually even, but may be slightly bitter. Low to moderate hop flavor (citrusy, spicy, floral, or fruity). Esters can be moderate to none, but should not include banana. No clove phenols. May have a slightly crisp finish.", - "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 in the Alternative Fermentables specialty category.", - "profile": "Low to moderate grainy, bready, or doughy wheat character. A light to moderate malty sweetness is acceptable. Esters can be moderate to none, although should reflect relatively neutral yeast strains; banana is inappropriate. Hop aroma may be low to moderate, and can have a citrusy, spicy, floral, or fruity character. No clove phenols. Usually pale yellow to gold. Clarity may range from brilliant to hazy with yeast approximating the German weissbier style of beer. Big, long-lasting white head.Light to moderately-strong bready, doughy, or grainy wheat flavor, which can linger into the finish. May have a moderate malty sweetness or finish quite dry. Low to moderate hop bitterness, which sometimes lasts into the finish. Balance is usually even, but may be slightly bitter. Low to moderate hop flavor (citrusy, spicy, floral, or fruity). Esters can be moderate to none, but should not include banana. No clove phenols. May have a slightly crisp finish. Medium-light to medium body. Medium-high to high carbonation. Slight creaminess is optional; wheat beers sometimes have a soft, ‘fluffy' impression. 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 in the Alternative Fermentables specialty category.", - "overall_impression": "Refreshing wheat beers that can display more hop character and less yeast character than their German cousins. A clean fermentation character allows bready, doughy, or grainy wheat flavors to be complemented by hop flavor and bitterness rather than yeast qualities.", - "history": "An American craft beer adaptation of the German weissbier style using a cleaner yeast and more hops, first widely popularized by Widmer in the mid-1980s.", - "notes": "Refreshing wheat beers that can display more hop character and less yeast character than their German cousins. A clean fermentation character allows bready, doughy, or grainy wheat flavors to be complemented by hop flavor and bitterness rather than yeast qualities. An American craft beer adaptation of the German weissbier style using a cleaner yeast and more hops, first widely popularized by Widmer in the mid-1980s.", - "ingredients": "Clean American ale or lager yeast (German weissbier yeast is inappropriate). Large proportion of wheat malt (often 30–50%, which is lower than is typical in German weissbiers). American, German, or New World hops are typical.", - "comparison": "More hop character and less yeast character than German weissbier. Never with the banana and clove character of German weissbier. Generally can have the same range and balance as Blonde Ales, but with a wheat character as the primary malt flavor.", - "examples": "Bell's Oberon, Boulevard Unfiltered Wheat Beer, Goose Island 312 Urban Wheat Ale, Widmer Hefeweizen", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - } - }, - { - "name": "International Pale Lager", - "category": "International Lager", - "category_number": 2, - "category_id": "2", - "style_id": "2A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to medium-low malt aroma, which can be grainy-malty or slightly corny-sweet. Hop aroma may range from very low to a medium, spicy or floral hop presence. While a clean fermentation profile is generally most desirable, low levels of yeast character (such as a light apple fruitiness) are not a fault. A light amount of DMS or corn aroma is not a fault.", - "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, with a crisp, dry, well-attenuated finish. The grain character can be somewhat neutral, or show a light bready-crackery quality or up to moderate corny or malty sweetness. Hop flavor ranges from none to medium levels, and often showing a floral, spicy, or herbal character if detected. Hop bitterness at medium-low to medium level. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. Neutral aftertaste with light malt and sometimes hop flavors. A light amount of DMS is not a fault.", - "mouthfeel": "Light to medium body. Moderately high to highly carbonated. Can have a slight carbonic bite on the tongue.", - "comments": "International lagers tend to have fewer adjuncts than standard 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 from being lightstruck in a green bottle is a mishandling fault, not a characteristic of the style.", - "profile": "Low to medium-low malt aroma, which can be grainy-malty or slightly corny-sweet. Hop aroma may range from very low to a medium, spicy or floral hop presence. While a clean fermentation profile is generally most desirable, low levels of yeast character (such as a light apple fruitiness) are not a fault. A light amount of DMS or corn aroma is not a fault. Pale straw to gold color. White, frothy head may not be long lasting. Very clear.Low to moderate levels of grainy-malt flavor, with a crisp, dry, well-attenuated finish. The grain character can be somewhat neutral, or show a light bready-crackery quality or up to moderate corny or malty sweetness. Hop flavor ranges from none to medium levels, and often showing a floral, spicy, or herbal character if detected. Hop bitterness at medium-low to medium level. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. Neutral aftertaste with light malt and sometimes hop flavors. A light amount of DMS is not a fault. Light to medium body. Moderately high to highly carbonated. Can have a slight carbonic bite on the tongue. International lagers tend to have fewer adjuncts than standard 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 from being lightstruck in a green bottle is a mishandling fault, not a characteristic of the style.", - "overall_impression": "A highly-attenuated pale lager without strong flavors, typically well-balanced and highly carbonated. Served cold, it is refreshing and thirst-quenching.", - "history": "In the United States, developed as a premium version of the standard American lager, with a similar history. Outside the United States, 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.", - "notes": "A highly-attenuated pale lager without strong flavors, typically well-balanced and highly carbonated. Served cold, it is refreshing and thirst-quenching. In the United States, developed as a premium version of the standard American lager, with a similar history. Outside the United States, 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.", - "ingredients": "Two- or six-row barley. May use rice, corn, or sugar as adjuncts, or may be all malt.", - "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, although with more of an adjunct quality.", - "examples": "Asahi Super Dry, Birra Moretti, Corona Extra, Devils Backbone Gold Leaf Lager, Full Sail Session Premium Lager, Heineken, Red Stripe, Singha", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 25 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.6 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "International Amber Lager", - "category": "International Lager", - "category_number": 2, - "category_id": "2", - "style_id": "2B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to moderate malt aroma which can be grainy, with a very low to moderate caramel-sweet to toasty-malty aroma. Hop aroma can range from low to none with a mildly floral or spicy character. Clean lager profile. A slight DMS or corny aroma is acceptable.", - "appearance": "Golden-amber to reddish-copper color. Bright clarity. White to off-white foam stand which may not last.", - "flavor": "Low to moderate malt profile which can vary from dry to grainy-sweet. Low to moderate levels of caramel and toasty-bready notes can be evident. Low to medium-low corny sweetness is optional, but not a fault. Hop bitterness is low to moderate, and hop flavor is low to moderate with a spicy, herbal, or floral character. The balance can be fairly malty to nearly even, with the bitterness becoming more noticeable but not objectionable. The bitterness level can increase if the malt character increases to match. Clean fermentation profile. Finish is moderately dry with a moderately malty aftertaste.", - "mouthfeel": "Light to medium body. Medium to high carbonation. Smooth; some examples can be creamy.", - "comments": "A wide spectrum of mass-market Amber lagers developed either independently in various countries, or describing rather generic amber beers that may have had more historical relevance but who eventually changed into an indistinguishable product in modern times.", - "profile": "Low to moderate malt aroma which can be grainy, with a very low to moderate caramel-sweet to toasty-malty aroma. Hop aroma can range from low to none with a mildly floral or spicy character. Clean lager profile. A slight DMS or corny aroma is acceptable. Golden-amber to reddish-copper color. Bright clarity. White to off-white foam stand which may not last.Low to moderate malt profile which can vary from dry to grainy-sweet. Low to moderate levels of caramel and toasty-bready notes can be evident. Low to medium-low corny sweetness is optional, but not a fault. Hop bitterness is low to moderate, and hop flavor is low to moderate with a spicy, herbal, or floral character. The balance can be fairly malty to nearly even, with the bitterness becoming more noticeable but not objectionable. The bitterness level can increase if the malt character increases to match. Clean fermentation profile. Finish is moderately dry with a moderately malty aftertaste. Light to medium body. Medium to high carbonation. Smooth; some examples can be creamy. A wide spectrum of mass-market Amber lagers developed either independently in various countries, or describing rather generic amber beers that may have had more historical relevance but who eventually changed into an indistinguishable product in modern times.", - "overall_impression": "A well-attenuated malty amber lager with an interesting caramel or toast quality and restrained bitterness. Usually fairly well-attenuated, often with an adjunct quality. Smooth, easily-drinkable lager character.", - "history": "Varies by country, but generally represents an adaptation of the mass-market International Lager or an evolution of indigenous styles into a more generic product.", - "notes": "A well-attenuated malty amber lager with an interesting caramel or toast quality and restrained bitterness. Usually fairly well-attenuated, often with an adjunct quality. Smooth, easily-drinkable lager character. Varies by country, but generally represents an adaptation of the mass-market International Lager or an evolution of indigenous styles into a more generic product.", - "ingredients": "Two-row or six-row base malt. Color malts such as victory, amber, etc. Caramel malt adjuncts. European or American hops or a combination of both.", - "comparison": "Less well-developed malt flavor than a Vienna lager, often with an adjunct taste.", - "examples": "Brooklyn Lager, Capital Winter Skål, Dos Equis Amber, Schell's Oktoberfest, Yuengling Lager", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 8 - }, - "maximum": { - "unit": "IBUs", - "value": 25 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 7 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.6 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "International Dark Lager", - "category": "International Lager", - "category_number": 2, - "category_id": "2", - "style_id": "2C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Little to no malt aroma; may have a light corn character. Medium-low to no roast and caramel malt aroma. Hop aroma may range from none to light spicy or floral hop presence. While a clean fermentation profile is generally most desirable, low levels of yeast character (such as a light apple fruitiness) are not a fault. A light amount of DMS or corn aroma is not a fault.", - "appearance": "Deep amber to 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 malty sweetness with medium-low to no caramel and/or roasted malt flavors (and may include hints of coffee, molasses or cocoa). Hop flavor ranges from none to low levels, and is typically floral, spicy, or herbal. Low to medium hop bitterness. May have a very light fruitiness. Moderately crisp finish. The balance is typically somewhat malty. Burnt or moderately strong roasted malt flavors are a defect.", - "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 and/or roasted.", - "profile": "Little to no malt aroma; may have a light corn character. Medium-low to no roast and caramel malt aroma. Hop aroma may range from none to light spicy or floral hop presence. While a clean fermentation profile is generally most desirable, low levels of yeast character (such as a light apple fruitiness) are not a fault. A light amount of DMS or corn aroma is not a fault. Deep amber to dark brown with bright clarity and ruby highlights. Foam stand may not be long lasting, and is beige to light tan in color.Low to medium malty sweetness with medium-low to no caramel and/or roasted malt flavors (and may include hints of coffee, molasses or cocoa). Hop flavor ranges from none to low levels, and is typically floral, spicy, or herbal. Low to medium hop bitterness. May have a very light fruitiness. Moderately crisp finish. The balance is typically somewhat malty. Burnt or moderately strong roasted malt flavors are a defect. Light to medium-light body. Smooth with a light creaminess. Medium to high carbonation. A broad range of international lagers that are darker than pale, and not assertively bitter and/or roasted.", - "overall_impression": "A darker 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.", - "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.", - "notes": "A darker 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. 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.", - "ingredients": "Two- or six-row barley, corn, rice, or sugars as adjuncts. Light use of caramel and darker malts. Commercial versions may use coloring agents.", - "comparison": "Less flavor and richness than Munich Dunkel, Schwarzbier, or other dark lagers. Frequently uses adjuncts, as is typical of other International Lagers.", - "examples": "Baltika #4 Original, Devils Backbone Old Virginia Dark, Dixie Blackened Voodoo, Saint Pauli Girl Dark, San Miguel Dark, Session Black Dark Lager, Shiner Bock", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 8 - }, - "maximum": { - "unit": "IBUs", - "value": 20 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 14 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.2 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "Czech Pale Lager", - "category": "Czech Lager", - "category_number": 3, - "category_id": "3", - "style_id": "3A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "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 hop-derived esters are acceptable, but need not be present. No sulfur.", - "appearance": "Light gold 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. Diacetyl or fruity esters are acceptable at low levels, but need not be present and 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.", - "profile": "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 hop-derived esters are acceptable, but need not be present. No sulfur. Light gold to deep gold color. Brilliant to very clear, with a long-lasting, creamy white head.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. Diacetyl or fruity esters are acceptable at low levels, but need not be present and should never be overbearing. Medium-light to medium body. Moderate carbonation. The Czech name of the style is světlé výčepní pivo.", - "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.", - "history": "Josef Groll initially brewed two types of 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.", - "notes": "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. Josef Groll initially brewed two types of 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.", - "ingredients": "Soft water with low sulfate and carbonate content, Saazer-type hops, Czech Pilsner malt, Czech lager yeast. Low ion water provides a distinctively soft, rounded hop profile despite high hopping rates.", - "comparison": "A lighter-bodied, lower-intensity, refreshing, everyday version of Czech Premium Pale Lager.", - "examples": "Březňák Světlé výčepní pivo, Notch Session Pils, Pivovar Kout na Šumavě Koutská 10°, Únětické pivo 10°", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3 - }, - "maximum": { - "unit": "%", - "value": 4.1 - } - } - }, - { - "name": "Czech Premium Pale Lager", - "category": "Czech Lager", - "category_number": 3, - "category_id": "3", - "style_id": "3B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "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 hop-derived esters are acceptable, but need not be present.", - "appearance": "Gold 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 moderate 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 is called a Pilsner, despite how widely adopted this name is worldwide. 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.", - "profile": "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 hop-derived esters are acceptable, but need not be present. Gold to deep gold color. Brilliant to very clear clarity. Dense, long-lasting, creamy white head.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 moderate diacetyl and low hop-derived esters are acceptable, but need not be present. Medium body. Moderate to low carbonation. 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 is called a Pilsner, despite how widely adopted this name is worldwide. 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.", - "overall_impression": "Rich, characterful, pale Czech lager, with considerable malt and hop character and a long, rounded finish. Complex yet well-balanced and refreshing. The malt flavors are complex for a Pilsner-type beer, and the bitterness is strong but clean and without harshness, which gives a rounded impression that enhances drinkability.", - "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.", - "notes": "Rich, characterful, pale Czech lager, with considerable malt and hop character and a long, rounded finish. Complex yet well-balanced and refreshing. The malt flavors are complex for a Pilsner-type beer, and the bitterness is strong but clean and without harshness, which gives a rounded impression that enhances drinkability. 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.", - "ingredients": "Soft water with low sulfate and carbonate content, Saazer-type hops, Czech malt, Czech lager yeast. Low ion water 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.", - "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.", - "examples": "Bernard Sváteční ležák, Gambrinus Premium, Kout na Šumavě Koutská 12°, Pilsner Urquell, Pivovar Jihlava Ježek 11°, Primátor Premium, Únětická 12°", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.013 - }, - "maximum": { - "unit": "sg", - "value": 1.017 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 45 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3.5 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.2 - }, - "maximum": { - "unit": "%", - "value": 5.8 - } - } - }, - { - "name": "Czech Amber Lager", - "category": "Czech Lager", - "category_number": 3, - "category_id": "3", - "style_id": "3C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate intensity, rich malt aroma that can be either bready and Maillard product-dominant or slightly caramelly and candy-like. 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. Diacetyl is optional and can range from low to none.", - "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. 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).", - "profile": "Moderate intensity, rich malt aroma that can be either bready and Maillard product-dominant or slightly caramelly and candy-like. 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. Diacetyl is optional and can range from low to none. Deep amber to copper color. Clear to bright clarity. Large, off-white, persistent head.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. Medium-full to medium body. Soft and round, often with a gentle creaminess. Moderate to low carbonation. The Czech name of the style is polotmavé pivo, which translates as half dark. 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).", - "overall_impression": "Malt-driven amber Czech lager with hop character that can vary from low to quite significant. The malt flavors can vary quite a bit, leading to different interpretations ranging from drier, bready, and slightly biscuity to sweeter and somewhat caramelly.", - "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.", - "notes": "Malt-driven amber Czech lager with hop character that can vary from low to quite significant. The malt flavors can vary quite a bit, leading to different interpretations ranging from drier, bready, and slightly biscuity to sweeter and somewhat caramelly. 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.", - "ingredients": "Pilsner and caramel malts, but Vienna and Munich malts may also be used. Low mineral content water, Saazer-type hops, Czech lager yeast.", - "comparison": "The style can be similar to a Vienna lager but with Saazer-type hop character, or that approaching an English 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.", - "examples": "Bernard Jantarový ležák, Pivovar Vysoký Chlumec Démon, Primátor polotmavý 13°, Strakonický Dudák Klostermann polotmavý ležák 13°", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.013 - }, - "maximum": { - "unit": "sg", - "value": 1.017 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 10 - }, - "maximum": { - "unit": "SRM", - "value": 16 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.4 - }, - "maximum": { - "unit": "%", - "value": 5.8 - } - } - }, - { - "name": "Czech Dark Lager", - "category": "Czech Lager", - "category_number": 3, - "category_id": "3", - "style_id": "3D", - "style_letter": "D", - "style_guide": "BJCP2015", - "type": "beer", - "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, spicy hop aroma is optional. Low diacetyl and low 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 and coffee may also be present, with very low to moderate roast character. Spicy hop flavor can be moderately-low to none. Hop bitterness may be moderate to medium-low 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.", - "profile": "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, spicy hop aroma is optional. Low diacetyl and low fruity esters (plums or berries) may be present. Dark copper to almost black color, often with a red or garnet tint. Clear to bright clarity. Large, off-white to tan, persistent head.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 and coffee may also be present, with very low to moderate roast character. Spicy hop flavor can be moderately-low to none. Hop bitterness may be moderate to medium-low 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. 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. 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.", - "overall_impression": "A rich, dark, malty Czech lager with a roast character that can vary from almost absent to quite prominent. Malty with an interesting and complex flavor profile, with variable levels of hopping providing a range of possible interpretations.", - "history": "The U Fleků brewery has been operating in Prague since 1499. Many small, new breweries are brewing this style.", - "notes": "A rich, dark, malty Czech lager with a roast character that can vary from almost absent to quite prominent. Malty with an interesting and complex flavor profile, with variable levels of hopping providing a range of possible interpretations. The U Fleků brewery has been operating in Prague since 1499. Many small, new breweries are brewing this style.", - "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, Saazer-type hops, Czech lager yeast. Any fruity esters are typically from malt, not yeast.", - "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 character (aroma, flavor, and/or bitterness).", - "examples": "Bohemian Brewery Cherny Bock 4%, Budweiser Budvar B:Dark tmavý ležák, Devils Backbone Morana, Kout na Šumavě Koutský tmavý speciál 14°, Notch Černé Pivo, Pivovar Březnice Herold, U Fleků Flekovský tmavý 13° ležák", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.013 - }, - "maximum": { - "unit": "sg", - "value": 1.017 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 34 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 14 - }, - "maximum": { - "unit": "SRM", - "value": 35 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.4 - }, - "maximum": { - "unit": "%", - "value": 5.8 - } - } - }, - { - "name": "Munich Helles", - "category": "Pale Malty European Lager", - "category_number": 4, - "category_id": "4", - "style_id": "4A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate grainy-sweet malt aroma. Low to moderately-low spicy, floral, or herbal hop aroma. While a clean aroma is most desirable, a very low background note of DMS is not a fault. Pleasant, clean fermentation profile, with malt dominating the balance. The freshest examples will have more of a malty-sweet aroma.", - "appearance": "Medium 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 hop bitterness. The finish is soft and dry, not crisp and biting. Low to moderately-low spicy, floral or herbal hop flavor. The malt dominates the hops in the palate, finish, and aftertaste, but the hops should be noticeable. There should not be any residual sweetness, simply the impression of maltiness with restrained bitterness. Very fresh examples will seem sweeter due to the fresh, rich malt character that can fade with time. Clean fermentation profile.", - "mouthfeel": "Medium body. Medium carbonation. Smooth, well-lagered character.", - "comments": "A fully-attenuated Pils malt showcase, Helles is a malt-accentuated beer that is not overly sweet, but rather focuses on malt flavor with underlying hop bitterness in a supporting role. Export examples can quickly lose some of the rich malt character that often suggests sweetness. Helles in Munich tends to be lighter in all aspects than those outside the city, which can be more assertive with more body, flavor, and hop character.", - "profile": "Moderate grainy-sweet malt aroma. Low to moderately-low spicy, floral, or herbal hop aroma. While a clean aroma is most desirable, a very low background note of DMS is not a fault. Pleasant, clean fermentation profile, with malt dominating the balance. The freshest examples will have more of a malty-sweet aroma. Medium yellow to pale gold. Clear. Persistent creamy white head.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 hop bitterness. The finish is soft and dry, not crisp and biting. Low to moderately-low spicy, floral or herbal hop flavor. The malt dominates the hops in the palate, finish, and aftertaste, but the hops should be noticeable. There should not be any residual sweetness, simply the impression of maltiness with restrained bitterness. Very fresh examples will seem sweeter due to the fresh, rich malt character that can fade with time. Clean fermentation profile. Medium body. Medium carbonation. Smooth, well-lagered character. A fully-attenuated Pils malt showcase, Helles is a malt-accentuated beer that is not overly sweet, but rather focuses on malt flavor with underlying hop bitterness in a supporting role. Export examples can quickly lose some of the rich malt character that often suggests sweetness. Helles in Munich tends to be lighter in all aspects than those outside the city, which can be more assertive with more body, flavor, and hop character.", - "overall_impression": "A clean, malty, gold-colored German lager with a smooth grainy-sweet 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.", - "history": "Created in Munich in 1894 at the Spaten brewery to compete with pale Pilsner-type beers. Currently the most popular style in Southern Germany.", - "notes": "A clean, malty, gold-colored German lager with a smooth grainy-sweet 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. Created in Munich in 1894 at the Spaten brewery to compete with pale Pilsner-type beers. Currently the most popular style in Southern Germany.", - "ingredients": "Continental Pilsner malt, traditional German Saazer-type hop varieties, clean German lager yeast.", - "comparison": "Similar in malt balance and bitterness to Munich Dunkel, but less malty-sweet in nature and pale rather than dark. More body and malt presence than a German Pils, with less hop character throughout. Similar malt profile as a German Exportbier, but with less hops in the balance.", - "examples": "Augustiner Lagerbier Hell, Bürgerbräu Wolznacher Hell Naturtrüb, Hacker-Pschorr Münchner Gold, Löwenbraü Original, Paulaner Premium Lager, Spaten Premium Lager, Weihenstephaner Original", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.006 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 16 - }, - "maximum": { - "unit": "IBUs", - "value": 22 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 5 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.7 - }, - "maximum": { - "unit": "%", - "value": 5.4 - } - } - }, - { - "name": "Festbier", - "category": "Pale Malty European Lager", - "category_number": 4, - "category_id": "4", - "style_id": "4B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "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 character.", - "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 medium gold in color.", - "flavor": "Medium to medium-high malty flavor initially, with a lightly toasty, bread dough quality and an impression of soft sweetness. 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 lager fermentation character. 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.", - "profile": "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 character. Deep yellow to deep gold color; should not have amber hues. Bright clarity. Persistent white to off-white foam stand. Most commercial examples are medium gold in color.Medium to medium-high malty flavor initially, with a lightly toasty, bread dough quality and an impression of soft sweetness. 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 lager fermentation character. The taste is mostly of Pils malt, but with slightly toasty hints. The bitterness is supportive, but still should yield a malty, flavorful finish. Medium body, with a smooth, somewhat creamy texture. Medium carbonation. Alcohol strength barely noticeable as warming, if at all. 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.", - "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.", - "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.", - "notes": "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. 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.", - "ingredients": "Majority Pils malt, but with some Vienna and/or Munich malt to increase maltiness. Differences in commercial examples are mostly due to different maltsters and yeast, not major grist differences.", - "comparison": "Less intense and less richly toasted than a Märzen. More rich-heavy in body than a Helles, with more hop flavor and higher alcohol. Less rich in malt intensity than a Maibock. The malt complexity is similar to a higher-gravity Czech Premium Pale Lager, although without the associated hops.", - "examples": "Augustiner Oktoberfest, Hacker-Pschorr Superior Festbier, Hofbräu Festbier, Löwenbräu Oktoberfestbier, Paulaner Wiesn, Schönramer Gold, Weihenstephaner Festbier", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 25 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 4 - }, - "maximum": { - "unit": "SRM", - "value": 7 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.8 - }, - "maximum": { - "unit": "%", - "value": 6.3 - } - } - }, - { - "name": "Helles Bock", - "category": "Pale Malty European Lager", - "category_number": 4, - "category_id": "4", - "style_id": "4C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate to strong grainy-sweet malt aroma, often with a lightly toasted quality and low Maillard products. Moderately-low to no hop aroma, often with a spicy, herbal, or floral quality. Clean fermentation profile. Fruity esters should be low to none. Very light alcohol may be noticeable. May have a light DMS aroma.", - "appearance": "Deep gold to light amber in color. Bright to clear clarity. Large, creamy, persistent, white head.", - "flavor": "Moderately to moderately strong grainy-sweet malt flavor dominates with some toasty notes and/or Maillard products providing added interest. Little to no caramel flavors. May have a light DMS flavor. Moderate to no hop flavor (spicy, herbal, floral, peppery). 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. A light alcohol warming may be present.", - "comments": "Also known as Mai Bock, but there is some dispute whether Helles (\"pale\") Bock and Mai (\"May\") Bock are synonymous. Most agree that they are identical, but some believe that Maibock is a \"fest\" type beer hitting the upper limits of hopping and color for the range. Any fruitiness is due to Munich and other specialty malts, not yeast-derived esters developed during fermentation. The hops compensate for the lower level of Maillard products.", - "profile": "Moderate to strong grainy-sweet malt aroma, often with a lightly toasted quality and low Maillard products. Moderately-low to no hop aroma, often with a spicy, herbal, or floral quality. Clean fermentation profile. Fruity esters should be low to none. Very light alcohol may be noticeable. May have a light DMS aroma. Deep gold to light amber in color. Bright to clear clarity. Large, creamy, persistent, white head.Moderately to moderately strong grainy-sweet malt flavor dominates with some toasty notes and/or Maillard products providing added interest. Little to no caramel flavors. May have a light DMS flavor. Moderate to no hop flavor (spicy, herbal, floral, peppery). 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. Medium-bodied. Moderate to moderately-high carbonation. Smooth and clean with no harshness or astringency, despite the increased hop bitterness. A light alcohol warming may be present. Also known as Mai Bock, but there is some dispute whether Helles (\"pale\") Bock and Mai (\"May\") Bock are synonymous. Most agree that they are identical, but some believe that Maibock is a \"fest\" type beer hitting the upper limits of hopping and color for the range. Any fruitiness is due to Munich and other specialty malts, not yeast-derived esters developed during fermentation. The hops compensate for the lower level of Maillard products.", - "overall_impression": "A relatively pale, strong, malty German lager beer with a nicely attenuated finish that enhances drinkability. The hop character is generally more apparent than in other bocks.", - "history": "A fairly recent development in comparison to the other members of the bock family. The serving of Maibock is specifically associated with springtime and the month of May.", - "notes": "A relatively pale, strong, malty German lager beer with a nicely attenuated finish that enhances drinkability. The hop character is generally more apparent than in other bocks. A fairly recent development in comparison to the other members of the bock family. The serving of Maibock is specifically associated with springtime and the month of May.", - "ingredients": "Base of Pils and/or Vienna malt with some Munich malt to add character (although much less than in a traditional bock). No non-malt adjuncts. Saazer-type hops. Clean lager yeast. Decoction mash is typical, but boiling is less than in Dunkles Bock to restrain color development.", - "comparison": "Can be thought of as either a pale version of a Dunkles Bock, or a Munich Helles 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. Has more of a rich malt character and more alcohol than a Festbier.", - "examples": "Altenmünster Maibock, Ayinger Maibock, Capital Maibock, Blind Tiger Maibock, Einbecker Mai-Urbock, Hacker-Pschorr Hubertus Bock, Mahr's Bock", - "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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.011 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 23 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 11 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.3 - }, - "maximum": { - "unit": "%", - "value": 7.4 - } - } - }, - { - "name": "German Leichtbier", - "category": "Pale Bitter European Beer", - "category_number": 5, - "category_id": "5", - "style_id": "5A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "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": "Straw to pale gold 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 in the Mixed-Style Beer category.", - "profile": "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. Straw to pale gold in color. Brilliant clarity. Moderate white head with average to below average persistence.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. Light to very light body. Medium to high carbonation. Smooth, well-attenuated. 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 in the Mixed-Style Beer category.", - "overall_impression": "A pale, highly-attenuated, light-bodied German lager with lower alcohol and calories than normal-strength beers. Moderately bitter with noticeable malt and hop flavors, the beer is still interesting to drink.", - "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.", - "notes": "A pale, highly-attenuated, light-bodied German lager with lower alcohol and calories than normal-strength beers. Moderately bitter with noticeable malt and hop flavors, the beer is still interesting to drink. 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.", - "ingredients": "Similar to a German Pils or Helles, continental Pils malt, German lager yeast, Saazer-type hops.", - "comparison": "Like a lower-alcohol, lighter-bodied, slightly less aggressive German Pils or Helles.", - "examples": "Beck's Light, Bitburger Light, Mahr's Leicht, Paulaner Münchner Hell Leicht, Paulaner Premium Leicht", - "tags": "session-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.026 - }, - "maximum": { - "unit": "sg", - "value": 1.034 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.006 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 28 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 5 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 2.4 - }, - "maximum": { - "unit": "%", - "value": 3.6 - } - } - }, - { - "name": "Kölsch", - "category": "Pale Bitter European Beer", - "category_number": 5, - "category_id": "5", - "style_id": "5B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to very low malt aroma, with a grainy-sweet character. A pleasant, subtle fruit aroma from fermentation (apple, cherry or pear) is acceptable, but not always present. A low floral, spicy or herbal hop aroma is optional but not out of style. Some yeast strains may give a slight winy or sulfury character (this characteristic is also optional, but not a fault). Overall, the intensity of aromatics is fairly subtle but generally balanced, clean, and fresh.", - "appearance": "Very pale gold to light gold. Very clear (authentic commercial versions are filtered to a brilliant clarity). Has a delicate white head that may not persist.", - "flavor": "Soft, rounded palate comprised of a delicate flavor balance between soft yet attenuated malt, an almost imperceptible fruity sweetness from fermentation, and a medium-low to medium bitterness with a delicate dryness and slight crispness in the finish (but no harsh aftertaste). The malt tends to be grainy-sweet, possibly with a very light bready or honey quality. The hop flavor is variable, and can range from low to moderately-high; most are medium-low to medium intensity and have a floral, spicy, or herbal character. May have a malty-sweet impression at the start, but this is not required. No noticeable residual sweetness. May have a slightly winy, minerally, or sulfury accent that accentuates the dryness and flavor balance. A slight wheat taste is rare but not a fault. Otherwise, very clean.", - "mouthfeel": "Medium-light to medium body (most are medium-light). Medium to medium-high carbonation. Smooth and generally crisp and well-attenuated.", - "comments": "Characterized in Germany as a top-fermented, lagered beer. Each Köln brewery produces a beer of different character, and each interprets the Kölsch Konvention slightly differently. Allow for a range of variation within the style when judging. Note that drier versions may seem hoppier or more bitter than the IBU specifications might suggest. Due to its delicate flavor profile, Kölsch tends to have a relatively short shelf-life; older examples and imports can easily show some oxidation defects. Served in Köln in a tall, narrow 200ml glass called a Stange.", - "profile": "Low to very low malt aroma, with a grainy-sweet character. A pleasant, subtle fruit aroma from fermentation (apple, cherry or pear) is acceptable, but not always present. A low floral, spicy or herbal hop aroma is optional but not out of style. Some yeast strains may give a slight winy or sulfury character (this characteristic is also optional, but not a fault). Overall, the intensity of aromatics is fairly subtle but generally balanced, clean, and fresh. Very pale gold to light gold. Very clear (authentic commercial versions are filtered to a brilliant clarity). Has a delicate white head that may not persist.Soft, rounded palate comprised of a delicate flavor balance between soft yet attenuated malt, an almost imperceptible fruity sweetness from fermentation, and a medium-low to medium bitterness with a delicate dryness and slight crispness in the finish (but no harsh aftertaste). The malt tends to be grainy-sweet, possibly with a very light bready or honey quality. The hop flavor is variable, and can range from low to moderately-high; most are medium-low to medium intensity and have a floral, spicy, or herbal character. May have a malty-sweet impression at the start, but this is not required. No noticeable residual sweetness. May have a slightly winy, minerally, or sulfury accent that accentuates the dryness and flavor balance. A slight wheat taste is rare but not a fault. Otherwise, very clean. Medium-light to medium body (most are medium-light). Medium to medium-high carbonation. Smooth and generally crisp and well-attenuated. Characterized in Germany as a top-fermented, lagered beer. Each Köln brewery produces a beer of different character, and each interprets the Kölsch Konvention slightly differently. Allow for a range of variation within the style when judging. Note that drier versions may seem hoppier or more bitter than the IBU specifications might suggest. Due to its delicate flavor profile, Kölsch tends to have a relatively short shelf-life; older examples and imports can easily show some oxidation defects. Served in Köln in a tall, narrow 200ml glass called a Stange.", - "overall_impression": "A clean, crisp, delicately-balanced beer usually with a very subtle fruit and hop character. Subdued maltiness throughout leads into a pleasantly well-attenuated and refreshing finish. Freshness makes a huge difference with this beer, as the delicate character can fade quickly with age. Brilliant clarity is characteristic.", - "history": "Cologne, Germany (Köln) has a top-fermenting brewing tradition since the Middle Ages, but developed the beer now known as Kölsch in the late 1800s to combat encroaching bottom-fermented pale lagers. Kölsch is an appellation protected by the Kölsch Konvention (1986), and is restricted to the 20 or so breweries in and around Köln. The Konvention simply defines the beer as a \"light, highly attenuated, hop-accentuated, clear, top-fermenting Vollbier.\"", - "notes": "A clean, crisp, delicately-balanced beer usually with a very subtle fruit and hop character. Subdued maltiness throughout leads into a pleasantly well-attenuated and refreshing finish. Freshness makes a huge difference with this beer, as the delicate character can fade quickly with age. Brilliant clarity is characteristic. Cologne, Germany (Köln) has a top-fermenting brewing tradition since the Middle Ages, but developed the beer now known as Kölsch in the late 1800s to combat encroaching bottom-fermented pale lagers. Kölsch is an appellation protected by the Kölsch Konvention (1986), and is restricted to the 20 or so breweries in and around Köln. The Konvention simply defines the beer as a \"light, highly attenuated, hop-accentuated, clear, top-fermenting Vollbier.\"", - "ingredients": "Traditional German hops (Hallertau, Tettnang, Spalt or Hersbrucker). German Pils or pale malt. Attenuative, clean ale yeast. Up to 20% wheat malt may be used, but this is quite rare in authentic versions. Current commercial practice is to ferment warm, cold condition for a short period of time, and serve young.", - "comparison": "To the untrained taster, easily mistaken for a cream ale or somewhat subtle Pils.", - "examples": "Früh Kölsch, Gaffel Kölsch, Mühlen Kölsch, Reissdorf Kölsch, Sion Kölsch, Sünner Kölsch", - "tags": "standard-strength, pale-color, top-fermented, lagered, central-europe, traditional-style, pale-ale-family, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.05 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.007 - }, - "maximum": { - "unit": "sg", - "value": 1.011 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3.5 - }, - "maximum": { - "unit": "SRM", - "value": 5 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.4 - }, - "maximum": { - "unit": "%", - "value": 5.2 - } - } - }, - { - "name": "German Helles Exportbier", - "category": "Pale Bitter European Beer", - "category_number": 5, - "category_id": "5", - "style_id": "5C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to medium hop aroma, typically floral, spicy, or herbal in character. Moderate grainy-sweet malt aroma. Clean fermentation profile. A slight sulfury note at the start that dissipates is not a fault, neither is a low background note of DMS.", - "appearance": "Light gold to deep gold. Clear. Persistent white head.", - "flavor": "Neither grainy-sweet malt nor floral, spicy, or herbal hops dominate, but both are in good balance with a touch of malty sweetness, providing a smooth yet crisply refreshing beer. Balance continues through the finish and the hop bitterness lingers in aftertaste (although some examples may finish slightly sweet). Clean fermentation character. Some mineral character might be noted from the water, although it usually does not come across as an overt minerally flavor.", - "mouthfeel": "Medium body, medium carbonation. Smooth but crisp.", - "comments": "Sometimes known as Dortmunder or Dortmunder Export. Brewed to a slightly higher starting gravity than other light lagers, providing a firm malty body and underlying maltiness to complement the sulfate-accentuated hop bitterness. The term \"Export\" is a beer strength descriptor under German brewing tradition, and is not strictly synonymous with the \"Dortmunder\" style; beer from other cities or regions can be brewed to Export strength, and labeled as such (even if not necessarily exported).", - "profile": "Low to medium hop aroma, typically floral, spicy, or herbal in character. Moderate grainy-sweet malt aroma. Clean fermentation profile. A slight sulfury note at the start that dissipates is not a fault, neither is a low background note of DMS. Light gold to deep gold. Clear. Persistent white head.Neither grainy-sweet malt nor floral, spicy, or herbal hops dominate, but both are in good balance with a touch of malty sweetness, providing a smooth yet crisply refreshing beer. Balance continues through the finish and the hop bitterness lingers in aftertaste (although some examples may finish slightly sweet). Clean fermentation character. Some mineral character might be noted from the water, although it usually does not come across as an overt minerally flavor. Medium body, medium carbonation. Smooth but crisp. Sometimes known as Dortmunder or Dortmunder Export. Brewed to a slightly higher starting gravity than other light lagers, providing a firm malty body and underlying maltiness to complement the sulfate-accentuated hop bitterness. The term \"Export\" is a beer strength descriptor under German brewing tradition, and is not strictly synonymous with the \"Dortmunder\" style; beer from other cities or regions can be brewed to Export strength, and labeled as such (even if not necessarily exported).", - "overall_impression": "A pale, well-balanced, smooth German lager that is slightly stronger than the average beer with a moderate body and a mild, aromatic hop and malt character.", - "history": "The Dortmunder style developed in the Dortmund industrial region in the 1870s in response to pale Pilsner-type beers, it became very popular after World War II but declined in the 1970s. Other Export-class beers developed independently, and reflected a slightly stronger version of existing beers. The modern German style is typically 12-13 °P.", - "notes": "A pale, well-balanced, smooth German lager that is slightly stronger than the average beer with a moderate body and a mild, aromatic hop and malt character. The Dortmunder style developed in the Dortmund industrial region in the 1870s in response to pale Pilsner-type beers, it became very popular after World War II but declined in the 1970s. Other Export-class beers developed independently, and reflected a slightly stronger version of existing beers. The modern German style is typically 12-13 °P.", - "ingredients": "Minerally water with high levels of sulfates, carbonates and chlorides, German or Czech noble hops, Pilsner malt, German lager yeast. Newer commercial versions can contain adjuncts and hop extract.", - "comparison": "Less finishing hops and more body than a Pils but more bitter than a Helles.", - "examples": "DAB Original, Dortmunder Kronen, Dortmunder Union Export, Flensburger Gold, Gordon Biersch Golden Export, Great Lakes Dortmunder Gold", - "tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, balanced,", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.056 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 4 - }, - "maximum": { - "unit": "SRM", - "value": 7 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.8 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "German Pils", - "category": "Pale Bitter European Beer", - "category_number": 5, - "category_id": "5", - "style_id": "5D", - "style_letter": "D", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Medium-low to low grainy-sweet-rich malt character (often with a light honey and slightly toasted cracker quality) and distinctive flowery, spicy, or herbal hops. Clean fermentation profile. May optionally have a very light sulfury note that comes from water as much as yeast. The hops are moderately-low to moderately-high, but should not totally dominate the malt presence. One-dimensional examples are inferior to the more complex qualities when all ingredients are sensed. May have a very low background note of DMS.", - "appearance": "Straw to light gold, brilliant to very clear, with a creamy, long-lasting white head.", - "flavor": "Medium to high hop bitterness dominates the palate and lingers into the aftertaste. Moderate to moderately-low grainy-sweet malt character supports the hop bitterness. Low to high floral, spicy, or herbal hop flavor. Clean fermentation profile. Dry to medium-dry, crisp, well-attenuated finish with a bitter aftertaste and light malt flavor. Examples made with water with higher sulfate levels often will have a low sulfury flavor that accentuates the dryness and lengthens the finish; this is acceptable but not mandatory. Some versions have a soft finish with more of a malt flavor, but still with noticeable hop bitterness and flavor, with the balance still towards bitterness.", - "mouthfeel": "Medium-light body. Medium to high carbonation.", - "comments": "Modern examples of Pils tend to become paler in color, drier in finish, and more bitter as you move from South to North in Germany, often mirroring the increase in sulfate in the water. The Pils found in Bavaria tend to be a bit softer in bitterness with more malt flavor and late hop character, yet still with sufficient hops and crispness of finish to differentiate itself from a Helles. The use of the term ‘Pils' is more common in Germany than ‘Pilsner' to differentiate it from the Czech style, and (some say) to show respect.", - "profile": "Medium-low to low grainy-sweet-rich malt character (often with a light honey and slightly toasted cracker quality) and distinctive flowery, spicy, or herbal hops. Clean fermentation profile. May optionally have a very light sulfury note that comes from water as much as yeast. The hops are moderately-low to moderately-high, but should not totally dominate the malt presence. One-dimensional examples are inferior to the more complex qualities when all ingredients are sensed. May have a very low background note of DMS. Straw to light gold, brilliant to very clear, with a creamy, long-lasting white head.Medium to high hop bitterness dominates the palate and lingers into the aftertaste. Moderate to moderately-low grainy-sweet malt character supports the hop bitterness. Low to high floral, spicy, or herbal hop flavor. Clean fermentation profile. Dry to medium-dry, crisp, well-attenuated finish with a bitter aftertaste and light malt flavor. Examples made with water with higher sulfate levels often will have a low sulfury flavor that accentuates the dryness and lengthens the finish; this is acceptable but not mandatory. Some versions have a soft finish with more of a malt flavor, but still with noticeable hop bitterness and flavor, with the balance still towards bitterness. Medium-light body. Medium to high carbonation. Modern examples of Pils tend to become paler in color, drier in finish, and more bitter as you move from South to North in Germany, often mirroring the increase in sulfate in the water. The Pils found in Bavaria tend to be a bit softer in bitterness with more malt flavor and late hop character, yet still with sufficient hops and crispness of finish to differentiate itself from a Helles. The use of the term ‘Pils' is more common in Germany than ‘Pilsner' to differentiate it from the Czech style, and (some say) to show respect.", - "overall_impression": "A light-bodied, highly-attenuated, gold-colored, bottom-fermented bitter German beer showing excellent head retention and an elegant, floral hop aroma. Crisp, clean, and refreshing, a German Pils showcases the finest quality German malt and hops.", - "history": "Adapted from Czech Pilsner to suit brewing conditions in Germany, particularly water with higher mineral content and domestic hop varieties. First brewed in Germany in the early 1870s. Became more popular after WWII as German brewing schools emphasized modern techniques. Along with its sister beer, Czech Pilsner, is the ancestor of the most widely produced beer styles today. Average IBUs of many well-regarded commercial examples have dropped over time.", - "notes": "A light-bodied, highly-attenuated, gold-colored, bottom-fermented bitter German beer showing excellent head retention and an elegant, floral hop aroma. Crisp, clean, and refreshing, a German Pils showcases the finest quality German malt and hops. Adapted from Czech Pilsner to suit brewing conditions in Germany, particularly water with higher mineral content and domestic hop varieties. First brewed in Germany in the early 1870s. Became more popular after WWII as German brewing schools emphasized modern techniques. Along with its sister beer, Czech Pilsner, is the ancestor of the most widely produced beer styles today. Average IBUs of many well-regarded commercial examples have dropped over time.", - "ingredients": "Continental Pilsner malt, German hop varieties (especially Saazer-type varieties such as Tettnanger, Hallertauer, and Spalt for taste and aroma; Saaz is less common), German lager yeast.", - "comparison": "Lighter in body and color, drier, crisper, and more fully attenuated, with more of a lingering bitterness, and with higher carbonation than a Czech Premium Pale Lager. More hop character, malt flavor, and bitterness than International Pale Lagers. More hop character and bitterness with a drier, crisper finish than a Munich Helles; the Helles has more malt flavor, but of the same character as the Pils.", - "examples": "König Pilsener, Left Hand Polestar Pils, Paulaner Premium Pils, Schönramer Pils, Stoudt Pils, Tröegs Sunshine Pils, Trumer Pils", - "tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pilsner-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.05 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 22 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 5 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.4 - }, - "maximum": { - "unit": "%", - "value": 5.2 - } - } - }, - { - "name": "Märzen", - "category": "Amber Malty European Lager", - "category_number": 6, - "category_id": "6", - "style_id": "6A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate intensity aroma of German malt, typically rich, bready, somewhat toasty, with light bread crust notes. Clean lager fermentation character. No hop aroma. Caramel, dry-biscuity, or roasted malt aromas inappropriate. Very light alcohol might be detected, but should never be sharp. Clean, elegant malt richness should be the primary aroma.", - "appearance": "Amber-orange to deep reddish-copper color; should not be golden. Bright clarity, with persistent, off-white foam stand.", - "flavor": "Initial malt flavor often suggests sweetness, but finish is moderately-dry to dry. Distinctive and complex maltiness often includes a bready, toasty aspect. Hop bitterness is moderate, and the hop flavor is low to none (German types: complex, floral, herbal, or spicy). Hops provide sufficient balance that the malty palate and finish do not seem sweet. The aftertaste is malty, with the same elegant, rich malt flavors lingering. Noticeable caramel, biscuit, or roasted flavors are inappropriate. Clean lager fermentation profile.", - "mouthfeel": "Medium body, with a smooth, creamy texture that often suggests a fuller mouthfeel. Medium carbonation. Fully attenuated, without a sweet or cloying impression. May be slightly warming, but the strength should be relatively hidden.", - "comments": "Modern domestic German Oktoberfest versions are golden – see the Festbier style for this version. Export German versions (to the United States, at least) are typically orange-amber in color, have a distinctive toasty malt character, and are most often labeled Oktoberfest. American craft versions of Oktoberfest are generally based on this style, and most Americans will recognize this beer as Oktoberfest. Historic versions of the beer tended to be darker, towards the brown color range, but there have been many ‘shades' of Märzen (when the name is used as a strength); this style description specifically refers to the stronger amber lager version. The modern Festbier can be thought of as a pale Märzen by these terms.", - "profile": "Moderate intensity aroma of German malt, typically rich, bready, somewhat toasty, with light bread crust notes. Clean lager fermentation character. No hop aroma. Caramel, dry-biscuity, or roasted malt aromas inappropriate. Very light alcohol might be detected, but should never be sharp. Clean, elegant malt richness should be the primary aroma. Amber-orange to deep reddish-copper color; should not be golden. Bright clarity, with persistent, off-white foam stand.Initial malt flavor often suggests sweetness, but finish is moderately-dry to dry. Distinctive and complex maltiness often includes a bready, toasty aspect. Hop bitterness is moderate, and the hop flavor is low to none (German types: complex, floral, herbal, or spicy). Hops provide sufficient balance that the malty palate and finish do not seem sweet. The aftertaste is malty, with the same elegant, rich malt flavors lingering. Noticeable caramel, biscuit, or roasted flavors are inappropriate. Clean lager fermentation profile. Medium body, with a smooth, creamy texture that often suggests a fuller mouthfeel. Medium carbonation. Fully attenuated, without a sweet or cloying impression. May be slightly warming, but the strength should be relatively hidden. Modern domestic German Oktoberfest versions are golden – see the Festbier style for this version. Export German versions (to the United States, at least) are typically orange-amber in color, have a distinctive toasty malt character, and are most often labeled Oktoberfest. American craft versions of Oktoberfest are generally based on this style, and most Americans will recognize this beer as Oktoberfest. Historic versions of the beer tended to be darker, towards the brown color range, but there have been many ‘shades' of Märzen (when the name is used as a strength); this style description specifically refers to the stronger amber lager version. The modern Festbier can be thought of as a pale Märzen by these terms.", - "overall_impression": "An elegant, malty German amber lager with a clean, rich, toasty and bready malt flavor, restrained bitterness, and a dry finish that encourages another drink. The overall malt impression is soft, elegant, and complex, with a rich aftertaste that is never cloying or heavy.", - "history": "As the name suggests, brewed as a stronger \"March beer\" in March and lagered in cold caves over the summer. Modern versions trace back to the lager developed by Spaten in 1841, contemporaneous to the development of Vienna lager. However, the Märzen name is much older than 1841; the early ones were dark brown, and in Austria the name implied a strength band (14 °P) rather than a style. The German amber lager version (in the Viennese style of the time) was first served at Oktoberfest in 1872, a tradition that lasted until 1990 when the golden Festbier was adopted as the standard festival beer.", - "notes": "An elegant, malty German amber lager with a clean, rich, toasty and bready malt flavor, restrained bitterness, and a dry finish that encourages another drink. The overall malt impression is soft, elegant, and complex, with a rich aftertaste that is never cloying or heavy. As the name suggests, brewed as a stronger \"March beer\" in March and lagered in cold caves over the summer. Modern versions trace back to the lager developed by Spaten in 1841, contemporaneous to the development of Vienna lager. However, the Märzen name is much older than 1841; the early ones were dark brown, and in Austria the name implied a strength band (14 °P) rather than a style. The German amber lager version (in the Viennese style of the time) was first served at Oktoberfest in 1872, a tradition that lasted until 1990 when the golden Festbier was adopted as the standard festival beer.", - "ingredients": "Grist varies, although traditional German versions emphasized Munich malt. The notion of elegance is derived from the finest quality ingredients, particularly the base malts. A decoction mash was traditionally used to develop the rich malt profile.", - "comparison": "Not as strong and rich as a Dunkles Bock. More malt depth and richness than a Festbier, with a heavier body and slightly less hops. Less hoppy and equally malty as a Czech Amber Lager.", - "examples": "Buergerliches Ur-Saalfelder, Hacker-Pschorr Original Oktoberfest, Paulaner Oktoberfest, Weltenburg Kloster Anno 1050", - "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.054 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 24 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 17 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.8 - }, - "maximum": { - "unit": "%", - "value": 6.3 - } - } - }, - { - "name": "Rauchbier", - "category": "Amber Malty European Lager", - "category_number": 6, - "category_id": "6", - "style_id": "6B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Blend of smoke and malt, with a varying balance and intensity. The beechwood smoke character can range from subtle to fairly strong, and can seem smoky, woody, or bacon-like. The malt character can be low to moderate, and be somewhat rich, toasty, or malty-sweet. The malt and smoke components are often inversely proportional (i.e., when smoke increases, malt decreases, and vice versa). Hop aroma may be very low to none. Clean lager fermentation character.", - "appearance": "This should be a very clear beer, with a large, creamy, rich, tan- to cream-colored head. Medium amber/light copper to dark brown color.", - "flavor": "Generally follows the aroma profile, with a blend of smoke and malt in varying balance and intensity, yet always complementary. Märzen-like qualities should be noticeable, particularly a malty, toasty richness, but the beechwood smoke flavor can be low to high. At higher levels, the smoke can take on a ham- or bacon-like character, which is acceptable as long as it doesn't veer into the greasy range. The palate can be somewhat malty, rich, and sweet, yet the finish tends to be medium-dry to dry with the smoke character sometimes enhancing the dryness of the finish. The aftertaste can reflect both malt richness and smoke flavors, with a balanced presentation desirable. Moderate, balanced, hop bitterness. Moderate to none hop flavor with spicy, floral, or herbal notes. Clean lager fermentation character. Harsh, bitter, burnt, charred, rubbery, sulfury or phenolic smoky characteristics are inappropriate.", - "mouthfeel": "Medium body. Medium to medium-high carbonation. Smooth lager character. Significant astringent, phenolic harshness is inappropriate.", - "comments": "Literally \"smoke beer\" in German. The intensity of smoke character can vary widely; not all examples are highly smoked. Allow for variation in the style when judging. Other examples of smoked beers are available in Germany based on styles such as Dunkles Bock, Weissbier, Dunkel, Schwarzbier, and Helles, including examples such as Spezial Lager; these should be entered in the Classic Style Smoked Beer category. This description specifically refers to the smoked Märzen version.", - "profile": "Blend of smoke and malt, with a varying balance and intensity. The beechwood smoke character can range from subtle to fairly strong, and can seem smoky, woody, or bacon-like. The malt character can be low to moderate, and be somewhat rich, toasty, or malty-sweet. The malt and smoke components are often inversely proportional (i.e., when smoke increases, malt decreases, and vice versa). Hop aroma may be very low to none. Clean lager fermentation character. This should be a very clear beer, with a large, creamy, rich, tan- to cream-colored head. Medium amber/light copper to dark brown color.Generally follows the aroma profile, with a blend of smoke and malt in varying balance and intensity, yet always complementary. Märzen-like qualities should be noticeable, particularly a malty, toasty richness, but the beechwood smoke flavor can be low to high. At higher levels, the smoke can take on a ham- or bacon-like character, which is acceptable as long as it doesn't veer into the greasy range. The palate can be somewhat malty, rich, and sweet, yet the finish tends to be medium-dry to dry with the smoke character sometimes enhancing the dryness of the finish. The aftertaste can reflect both malt richness and smoke flavors, with a balanced presentation desirable. Moderate, balanced, hop bitterness. Moderate to none hop flavor with spicy, floral, or herbal notes. Clean lager fermentation character. Harsh, bitter, burnt, charred, rubbery, sulfury or phenolic smoky characteristics are inappropriate. Medium body. Medium to medium-high carbonation. Smooth lager character. Significant astringent, phenolic harshness is inappropriate. Literally \"smoke beer\" in German. The intensity of smoke character can vary widely; not all examples are highly smoked. Allow for variation in the style when judging. Other examples of smoked beers are available in Germany based on styles such as Dunkles Bock, Weissbier, Dunkel, Schwarzbier, and Helles, including examples such as Spezial Lager; these should be entered in the Classic Style Smoked Beer category. This description specifically refers to the smoked Märzen version.", - "overall_impression": "An elegant, malty German amber lager with a balanced, complementary beechwood smoke character. Toasty-rich malt in aroma and flavor, restrained bitterness, low to high smoke flavor, clean fermentation profile, and an attenuated finish are characteristic.", - "history": "A historical specialty of the city of Bamberg, in the Franconian region of Bavaria in Germany. Beechwood-smoked malt is used to make a Märzen-style amber lager. The smoke character of the malt varies by maltster; some breweries produce their own smoked malt (rauchmalz).", - "notes": "An elegant, malty German amber lager with a balanced, complementary beechwood smoke character. Toasty-rich malt in aroma and flavor, restrained bitterness, low to high smoke flavor, clean fermentation profile, and an attenuated finish are characteristic. A historical specialty of the city of Bamberg, in the Franconian region of Bavaria in Germany. Beechwood-smoked malt is used to make a Märzen-style amber lager. The smoke character of the malt varies by maltster; some breweries produce their own smoked malt (rauchmalz).", - "ingredients": "German Rauchmalz (beechwood-smoked Vienna-type malt) typically makes up 20-100% of the grain bill, with the remainder being German malts typically used in a Märzen. Some breweries adjust the color slightly with a bit of roasted malt. German lager yeast. German or Czech hops.", - "comparison": "Like a Märzen with but with a balanced, sweet, smoky aroma and flavor and a somewhat darker color.", - "examples": "Eisenbahn Rauchbier, Kaiserdom Rauchbier, Schlenkerla Rauchbier Märzen, Spezial Rauchbier Märzen Victory Scarlet Fire Rauchbier", - "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, malty, smoke", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.057 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.012 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 12 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.8 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "Dunkles Bock", - "category": "Amber Malty European Lager", - "category_number": 6, - "category_id": "6", - "style_id": "6C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Medium to medium-high bready-malty-rich aroma, often with moderate amounts of rich Maillard products and/or toasty overtones. Virtually no hop aroma. Some alcohol may be noticeable. Clean lager character, although the malts can provide a slight (low to none) dark fruit character, particularly in aged examples.", - "appearance": "Light copper to brown color, often with attractive garnet highlights. Lagering should provide good clarity despite the dark color. Large, creamy, persistent, off-white head.", - "flavor": "Complex, rich maltiness is dominated by the toasty-rich Maillard products. Some caramel notes may be present. Hop bitterness is generally only high enough to support the malt flavors, allowing a bit of sweetness to linger into the finish. Well-attenuated, not cloying. Clean fermentation profile, although the malt can provide a slight dark fruit character. No hop flavor. No roasted or burnt character.", - "mouthfeel": "Medium to medium-full bodied. Moderate to moderately low carbonation. Some alcohol warmth may be found, but should never be hot. Smooth, without harshness or astringency.", - "comments": "Decoction mashing and long boiling plays an important part of flavor development, as it enhances the caramel and Maillard flavor aspects of the malt. Any fruitiness is due to Munich and other specialty malts, not yeast-derived esters developed during fermentation.", - "profile": "Medium to medium-high bready-malty-rich aroma, often with moderate amounts of rich Maillard products and/or toasty overtones. Virtually no hop aroma. Some alcohol may be noticeable. Clean lager character, although the malts can provide a slight (low to none) dark fruit character, particularly in aged examples. Light copper to brown color, often with attractive garnet highlights. Lagering should provide good clarity despite the dark color. Large, creamy, persistent, off-white head.Complex, rich maltiness is dominated by the toasty-rich Maillard products. Some caramel notes may be present. Hop bitterness is generally only high enough to support the malt flavors, allowing a bit of sweetness to linger into the finish. Well-attenuated, not cloying. Clean fermentation profile, although the malt can provide a slight dark fruit character. No hop flavor. No roasted or burnt character. Medium to medium-full bodied. Moderate to moderately low carbonation. Some alcohol warmth may be found, but should never be hot. Smooth, without harshness or astringency. Decoction mashing and long boiling plays an important part of flavor development, as it enhances the caramel and Maillard flavor aspects of the malt. Any fruitiness is due to Munich and other specialty malts, not yeast-derived esters developed during fermentation.", - "overall_impression": "A dark, strong, malty German lager beer that emphasizes the malty-rich and somewhat toasty qualities of continental malts without being sweet in the finish.", - "history": "Originated in the Northern German city of Einbeck, which was a brewing center and popular exporter in the days of the Hanseatic League (14th to 17th century). Recreated in Munich starting in the 17th century. The name \"bock\" is based on a corruption of the name \"Einbeck\" in the Bavarian dialect, and was thus only used after the beer came to Munich. \"Bock\" also means \"Ram\" in German, and is often used in logos and advertisements.", - "notes": "A dark, strong, malty German lager beer that emphasizes the malty-rich and somewhat toasty qualities of continental malts without being sweet in the finish. Originated in the Northern German city of Einbeck, which was a brewing center and popular exporter in the days of the Hanseatic League (14th to 17th century). Recreated in Munich starting in the 17th century. The name \"bock\" is based on a corruption of the name \"Einbeck\" in the Bavarian dialect, and was thus only used after the beer came to Munich. \"Bock\" also means \"Ram\" in German, and is often used in logos and advertisements.", - "ingredients": "Munich and Vienna malts, rarely a tiny bit of dark roasted malts for color adjustment, never any non-malt adjuncts. Continental European hop varieties are used. Clean German lager yeast.", - "comparison": "Darker, with a richer malty flavor and less apparent bitterness than a Helles Bock. Less alcohol and malty richness than a Doppelbock. Stronger malt flavors and higher alcohol than a Märzen. Richer, less attenuated, and less hoppy than a Czech Amber Lager.", - "examples": "Aass Bock, Einbecker Ur-Bock Dunkel, Great Lakes Rockefeller Bock, Kneitinger Bock, New Glarus Uff-da Bock, Penn Brewery St. Nikolaus Bock", - "tags": "high-strength, amber-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 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.013 - }, - "maximum": { - "unit": "sg", - "value": 1.019 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 27 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 14 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.3 - }, - "maximum": { - "unit": "%", - "value": 7.2 - } - } - }, - { - "name": "Vienna Lager", - "category": "Amber Bitter European Beer", - "category_number": 7, - "category_id": "7", - "style_id": "7A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderately-intense malt aroma, with toasty and malty-rich aromatics. Clean lager character. Floral, spicy hop aroma may be low to none. A significant caramel or roasted aroma is inappropriate.", - "appearance": "Light reddish amber to copper color. Bright clarity. Large, off-white, persistent head.", - "flavor": "Soft, elegant malt complexity is in the forefront, with a firm enough hop bitterness to provide a balanced finish. The malt flavor tends towards a rich, toasty character, without significant caramel or roast flavors. Fairly dry, crisp finish, with both rich malt and hop bitterness present in the aftertaste. Floral, spicy hop flavor may be low to none. Clean lager fermentation character.", - "mouthfeel": "Medium-light to medium body, with a gentle creaminess. Moderate carbonation. Smooth.", - "comments": "A standard-strength everyday beer, not a beer brewed for festivals. American versions can be a bit stronger, drier and more bitter, while modern European versions tend to be sweeter. Many Mexican amber and dark lagers used to be more authentic, but unfortunately are now more like sweet, adjunct-laden Amber/Dark International Lagers. Regrettably, many modern examples use adjuncts which lessen the rich malt complexity characteristic of the best examples of this style. This style is on the watch list to move to the Historical category in future guidelines; that would allow the classic style to be described while moving the sweeter modern versions to the International Amber or Dark Lager styles.", - "profile": "Moderately-intense malt aroma, with toasty and malty-rich aromatics. Clean lager character. Floral, spicy hop aroma may be low to none. A significant caramel or roasted aroma is inappropriate. Light reddish amber to copper color. Bright clarity. Large, off-white, persistent head.Soft, elegant malt complexity is in the forefront, with a firm enough hop bitterness to provide a balanced finish. The malt flavor tends towards a rich, toasty character, without significant caramel or roast flavors. Fairly dry, crisp finish, with both rich malt and hop bitterness present in the aftertaste. Floral, spicy hop flavor may be low to none. Clean lager fermentation character. Medium-light to medium body, with a gentle creaminess. Moderate carbonation. Smooth. A standard-strength everyday beer, not a beer brewed for festivals. American versions can be a bit stronger, drier and more bitter, while modern European versions tend to be sweeter. Many Mexican amber and dark lagers used to be more authentic, but unfortunately are now more like sweet, adjunct-laden Amber/Dark International Lagers. Regrettably, many modern examples use adjuncts which lessen the rich malt complexity characteristic of the best examples of this style. This style is on the watch list to move to the Historical category in future guidelines; that would allow the classic style to be described while moving the sweeter modern versions to the International Amber or Dark Lager styles.", - "overall_impression": "A moderate-strength amber lager with a soft, smooth maltiness and moderate bitterness, yet finishing relatively dry. The malt flavor is clean, bready-rich, and somewhat toasty, with an elegant impression derived from quality base malts and process, not specialty malts and adjuncts.", - "history": "Developed by Anton Dreher in Vienna in 1841, became popular in the mid-late 1800s. Now nearly extinct in its area of origin, the style continues in Mexico where it was brought by Santiago Graf and other Austrian immigrant brewers in the late 1800s. Authentic examples are increasingly hard to find (except perhaps in the craft beer industry) as formerly good examples become sweeter and use more adjuncts.", - "notes": "A moderate-strength amber lager with a soft, smooth maltiness and moderate bitterness, yet finishing relatively dry. The malt flavor is clean, bready-rich, and somewhat toasty, with an elegant impression derived from quality base malts and process, not specialty malts and adjuncts. Developed by Anton Dreher in Vienna in 1841, became popular in the mid-late 1800s. Now nearly extinct in its area of origin, the style continues in Mexico where it was brought by Santiago Graf and other Austrian immigrant brewers in the late 1800s. Authentic examples are increasingly hard to find (except perhaps in the craft beer industry) as formerly good examples become sweeter and use more adjuncts.", - "ingredients": "Vienna malt provides a lightly toasty and complex, Maillard-rich malt profile. As with Märzens, only the finest quality malt should be used, along with Continental hops (preferably Saazer types or Styrians). Can use some caramel malts and/or darker malts to add color and sweetness, but caramel malts shouldn't add significant aroma and flavor and dark malts shouldn't provide any roasted character.", - "comparison": "Lighter malt character, slightly less body, and slightly more bitter in the balance than a Märzen, yet with many of the same malt-derived flavors. The malt character is similar to a Märzen, but less intense and more balanced. Lower in alcohol than Märzen or Festbier. Less rich, less malty and less hop-centered compared to Czech Amber Lager.", - "examples": "Cuauhtémoc Noche Buena, Chuckanut Vienna Lager, Devils Backbone Vienna Lager, Figueroa Mountain Danish-style Red Lager, Heavy Seas Cutlass Amber Lager, Schell's Firebrick", - "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.055 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 9 - }, - "maximum": { - "unit": "SRM", - "value": 15 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.7 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - } - }, - { - "name": "Altbier", - "category": "Amber Bitter European Beer", - "category_number": 7, - "category_id": "7", - "style_id": "7B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Clean yet robust and complex aroma of grainy-rich malt and spicy hops with restrained (low to medium-low) fruity esters. The malt character reflects German base malt varieties, with rich baked bread and nutty-toasty bread crust notes. The hop aroma may vary from moderate to low, and can have a peppery, spicy, floral, herbal or perfumy character associated with Saazer-type hops.", - "appearance": "The color ranges from light amber to deep copper color, stopping short of brown; bronze-orange is most common. Brilliant clarity. Thick, creamy, long-lasting off-white head.", - "flavor": "Assertive hop bitterness well balanced by a sturdy yet clean and crisp malt character. The malt presence is moderated by medium-high to high attenuation, but considerable rich, complex, and somewhat grainy malt flavors can remain. Some fruity esters (especially cherry-like) may survive the lagering period. A long-lasting, medium-dry to dry, bittersweet or nutty finish reflects both the hop bitterness and malt complexity. Spicy, peppery or floral hop flavor can be moderate to low. No roasted malt flavors or harshness. The apparent bitterness level is sometimes masked by the malt character; the bitterness can seem as low as moderate if the finish is not very dry. Light sulfury or minerally character optional.", - "mouthfeel": "Medium-bodied. Smooth. Medium to medium-high carbonation, although can be lower when served from the cask. Astringency low to none. Despite being very full of flavor, is light-bodied enough to be consumed as a gravity-fed session beer in its home brewpubs in Düsseldorf.", - "comments": "A top-fermented lagered beer, fermented at cool ale temperature (59–68 °F), often conditioned at bottom-fermentation temperatures (about 50 °F) and then lagered at cold temperatures to produce a cleaner, smoother palate than is typical for most ales. Zum Uerige is a wonderful beer, but much more aggressively bitter and complex than most other German examples. It may be like the Fuller's ESB of the strong bitter category – well-known but somewhat of a stylistic outlier. Do not judge all Altbiers as if they were Zum Uerige clones; allow for a more balanced bitterness in the beer (25–35 IBUs is more typical for most other German examples). Stronger sticke and doppelsticke beers should not be entered here.", - "profile": "Clean yet robust and complex aroma of grainy-rich malt and spicy hops with restrained (low to medium-low) fruity esters. The malt character reflects German base malt varieties, with rich baked bread and nutty-toasty bread crust notes. The hop aroma may vary from moderate to low, and can have a peppery, spicy, floral, herbal or perfumy character associated with Saazer-type hops. The color ranges from light amber to deep copper color, stopping short of brown; bronze-orange is most common. Brilliant clarity. Thick, creamy, long-lasting off-white head.Assertive hop bitterness well balanced by a sturdy yet clean and crisp malt character. The malt presence is moderated by medium-high to high attenuation, but considerable rich, complex, and somewhat grainy malt flavors can remain. Some fruity esters (especially cherry-like) may survive the lagering period. A long-lasting, medium-dry to dry, bittersweet or nutty finish reflects both the hop bitterness and malt complexity. Spicy, peppery or floral hop flavor can be moderate to low. No roasted malt flavors or harshness. The apparent bitterness level is sometimes masked by the malt character; the bitterness can seem as low as moderate if the finish is not very dry. Light sulfury or minerally character optional. Medium-bodied. Smooth. Medium to medium-high carbonation, although can be lower when served from the cask. Astringency low to none. Despite being very full of flavor, is light-bodied enough to be consumed as a gravity-fed session beer in its home brewpubs in Düsseldorf. A top-fermented lagered beer, fermented at cool ale temperature (59–68 °F), often conditioned at bottom-fermentation temperatures (about 50 °F) and then lagered at cold temperatures to produce a cleaner, smoother palate than is typical for most ales. Zum Uerige is a wonderful beer, but much more aggressively bitter and complex than most other German examples. It may be like the Fuller's ESB of the strong bitter category – well-known but somewhat of a stylistic outlier. Do not judge all Altbiers as if they were Zum Uerige clones; allow for a more balanced bitterness in the beer (25–35 IBUs is more typical for most other German examples). Stronger sticke and doppelsticke beers should not be entered here.", - "overall_impression": "A well-balanced, well-attenuated, bitter yet malty, clean, and smooth, amber- to copper-colored German beer. The bitterness is balanced by the malt richness, but the malt intensity and character can range from moderate to high (the bitterness increases with the malt richness).", - "history": "The traditional style of beer from Düsseldorf. \"Alt\" refers to the \"old\" style of brewing (i.e., using top-fermenting yeast) that was common before bottom-fermenting lager brewing became popular. Predates the isolation of bottom-fermenting yeast strains, though it approximates many characteristics of bottom-fermenting lager beers. Many of the classic examples can be found in brewpubs in the Altstadt (\"old town\") section of Düsseldorf.", - "notes": "A well-balanced, well-attenuated, bitter yet malty, clean, and smooth, amber- to copper-colored German beer. The bitterness is balanced by the malt richness, but the malt intensity and character can range from moderate to high (the bitterness increases with the malt richness). The traditional style of beer from Düsseldorf. \"Alt\" refers to the \"old\" style of brewing (i.e., using top-fermenting yeast) that was common before bottom-fermenting lager brewing became popular. Predates the isolation of bottom-fermenting yeast strains, though it approximates many characteristics of bottom-fermenting lager beers. Many of the classic examples can be found in brewpubs in the Altstadt (\"old town\") section of Düsseldorf.", - "ingredients": "Grists vary, but usually consist of German base malts (usually Pils, sometimes Munich) with small amounts of crystal, chocolate, and/or black malts used to adjust color. Occasionally will include some wheat, including roasted wheat. Spalt hops are traditional, but other Saazer-type hops can also be used. Clean, highly attenuative ale yeast. A step mash or decoction mash program is traditional.", - "comparison": "More bitter and malty than international amber lagers. Somewhat similar to California Common, both in production technique and finished flavor and color, though not in ingredients.", - "examples": "Bolten Alt, Diebels Alt, Füchschen Alt, Original Schlüssel Alt, Schlösser Alt, Schumacher Alt, Uerige Altbier", - "tags": "standard-strength, amber-color, top-fermented, lagered, central-europe, traditional-style, amber-ale-family, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.052 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 50 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 11 - }, - "maximum": { - "unit": "SRM", - "value": 17 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.3 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - } - }, - { - "name": "Kellerbier", - "category": "Amber Bitter European Beer", - "category_number": 7, - "category_id": "7", - "style_id": "7C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate intensity of German malt, typically rich, bready, somewhat toasty, with light bread crust notes. Moderately-low to moderate spicy peppery hop aroma. Very low to low diacetyl, occasionally low to moderately-low sulfur and very low green apple or other yeast-derived notes. Caramel, biscuity, or roasted malt aroma is inappropriate.", - "appearance": "Moderately cloudy to clear depending on age, but never extremely cloudy or murky. Gold to deep reddish-amber color. Off-white, creamy head. When served on cask, can have low carbonation and very low head.", - "flavor": "Initial malt flavor may suggest sweetness, but finish is moderately dry to dry, and slightly bitter. Distinctive and complex maltiness often includes a bready-toasty aspect. Hop bitterness is moderate to moderately high, and spicy or herbal hop flavor is low to moderately high. Balance can be either on the malt or hop side, but the finish is not sweet. Noticeable caramel or roasted malt flavors are inappropriate. Very low to low diacetyl. Possible very low green apple or other yeast-derived notes. Smooth, malty aftertaste.", - "mouthfeel": "Medium body, with a creamy texture and medium carbonation. Fully fermented, without a sweet or cloying impression.", - "comments": "The best examples of Amber Kellerbier are served only on tap at many of the small Franconia area breweries (as this is a beer best served fresh and the serving style being an important part of the style). Bottled versions are not likely to have the freshness, hop character and young beer notes exhibited by the draft versions.", - "profile": "Moderate intensity of German malt, typically rich, bready, somewhat toasty, with light bread crust notes. Moderately-low to moderate spicy peppery hop aroma. Very low to low diacetyl, occasionally low to moderately-low sulfur and very low green apple or other yeast-derived notes. Caramel, biscuity, or roasted malt aroma is inappropriate. Moderately cloudy to clear depending on age, but never extremely cloudy or murky. Gold to deep reddish-amber color. Off-white, creamy head. When served on cask, can have low carbonation and very low head.Initial malt flavor may suggest sweetness, but finish is moderately dry to dry, and slightly bitter. Distinctive and complex maltiness often includes a bready-toasty aspect. Hop bitterness is moderate to moderately high, and spicy or herbal hop flavor is low to moderately high. Balance can be either on the malt or hop side, but the finish is not sweet. Noticeable caramel or roasted malt flavors are inappropriate. Very low to low diacetyl. Possible very low green apple or other yeast-derived notes. Smooth, malty aftertaste. Medium body, with a creamy texture and medium carbonation. Fully fermented, without a sweet or cloying impression. The best examples of Amber Kellerbier are served only on tap at many of the small Franconia area breweries (as this is a beer best served fresh and the serving style being an important part of the style). Bottled versions are not likely to have the freshness, hop character and young beer notes exhibited by the draft versions.", - "overall_impression": "A young, unfiltered, and unpasteurized beer that is between a Helles and Märzen in color, spicier in the hops with greater attenuation. Interpretations range in color and balance, but remain in the drinkable 4.8% ABV neighborhood. Balance ranges from the dry, spicy and pale-colored interpretations by St. Georgen and Löwenbräu of Buttenheim, to darker and maltier interpretations in the Fränkische Schweiz. This style is above all a method of producing simple drinkable beers for neighbors out of local ingredients to be served fresh. Balance with a focus on drinkability and digestibility is important.", - "history": "This was the classic, historical style before it was adapted in other areas. This original, older style of Kellerbier would have simply been beer served from local taverns that did not lager long enough to drop bright. Many breweries in Franconia would use some of this young beer during the summer months, for festivals such as the Annafest (est. 1840) in July in Forchheim, where it was traditional to drink directly from the lagering vessels.", - "notes": "A young, unfiltered, and unpasteurized beer that is between a Helles and Märzen in color, spicier in the hops with greater attenuation. Interpretations range in color and balance, but remain in the drinkable 4.8% ABV neighborhood. Balance ranges from the dry, spicy and pale-colored interpretations by St. Georgen and Löwenbräu of Buttenheim, to darker and maltier interpretations in the Fränkische Schweiz. This style is above all a method of producing simple drinkable beers for neighbors out of local ingredients to be served fresh. Balance with a focus on drinkability and digestibility is important. This was the classic, historical style before it was adapted in other areas. This original, older style of Kellerbier would have simply been beer served from local taverns that did not lager long enough to drop bright. Many breweries in Franconia would use some of this young beer during the summer months, for festivals such as the Annafest (est. 1840) in July in Forchheim, where it was traditional to drink directly from the lagering vessels.", - "ingredients": "Grist varies, although traditional German versions emphasized Franconian pale and color malt. The notion of elegance is derived from the high-quality local ingredients, particularly the malts. Spalt or other typically spicy local hops are most common. Frugal Franconian brewers rarely used decoction brewing due to the cost of energy.", - "comparison": "Most commonly, this style is a young, unfiltered, unpasteurized, hoppier version of Munich Helles or Märzen. Fränkische Schweiz versions can edge up to dark amber or brown.", - "examples": "(local) Greif, Eichhorn, Nederkeller, Hebendanz (bottled) Buttenheimer Kaiserdom Kellerbier, Kulmbacher Monchshof Kellerbier, Leikeim Kellerbier, Löwenbräu Kellerbier, Mahr's Kellerbier, St. Georgen Kellerbier, Tucher Kellerbier Naturtrub", - "tags": "standard-strength, amber-color, bottom-fermenting, central-europe, traditional-style, balanced, amber-lager-family", - "entry_instructions": "The entrant must specify whether the entry is a Pale Kellerbier (based on Helles) or an Amber Kellerbier (based on Märzen). The entrant may specify another type of Kellerbier based on other base styles such as Pils, Bock, Schwarzbier, but should supply a style description for judges. Kellerbier: Pale Kellerbier\n A very common seasonal summer beer brewed by many of the Munich area breweries and served in the beer gardens, where they are very popular.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.012 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 7 - }, - "maximum": { - "unit": "SRM", - "value": 17 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.8 - }, - "maximum": { - "unit": "%", - "value": 5.4 - } - } - }, - { - "name": "Munich Dunkel", - "category": "Dark European Lager", - "category_number": 8, - "category_id": "8", - "style_id": "8A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Rich, elegant, deep malt sweetness, typically like bread crusts (often toasted bread crusts). Hints of chocolate, nuts, caramel, and/or toffee are also acceptable, with fresh traditional versions often showing higher levels of chocolate. Clean fermentation profile. A slight spicy, floral, or herbal hop aroma is acceptable.", - "appearance": "Deep copper to dark brown, often with a red or garnet tint. Creamy, light to medium tan head. Usually clear, although murky unfiltered versions exist.", - "flavor": "Dominated by the soft, rich, and complex flavor of darker Munich malts, usually with overtones reminiscent of toasted bread crusts, but without a burnt-harsh-grainy toastiness. The palate can be moderately malty, although it should not be overwhelming or cloyingly sweet. Mild caramel, toast or nuttiness may be present. Very fresh examples often have a pleasant malty-chocolate character that isn't roasty or sweet. Burnt or bitter flavors from roasted malts are inappropriate, as are pronounced caramel flavors from crystal malt. Hop bitterness is moderately low but perceptible, with the balance tipped firmly towards maltiness. Hop flavor is low to none; if noted, should reflect floral, spicy, or herbal German-type varieties. Aftertaste remains malty, although the hop bitterness may become more apparent in the medium-dry finish. Clean fermentation profile and lager character.", - "mouthfeel": "Medium to medium-full body, providing a soft and dextrinous mouthfeel without being heavy or cloying. Moderate carbonation. The use of continental Munich-type malts should provide a richness, not a harsh or biting astringency.", - "comments": "Unfiltered versions from Germany can taste like liquid bread, with a yeasty, earthy richness not found in exported filtered examples.", - "profile": "Rich, elegant, deep malt sweetness, typically like bread crusts (often toasted bread crusts). Hints of chocolate, nuts, caramel, and/or toffee are also acceptable, with fresh traditional versions often showing higher levels of chocolate. Clean fermentation profile. A slight spicy, floral, or herbal hop aroma is acceptable. Deep copper to dark brown, often with a red or garnet tint. Creamy, light to medium tan head. Usually clear, although murky unfiltered versions exist.Dominated by the soft, rich, and complex flavor of darker Munich malts, usually with overtones reminiscent of toasted bread crusts, but without a burnt-harsh-grainy toastiness. The palate can be moderately malty, although it should not be overwhelming or cloyingly sweet. Mild caramel, toast or nuttiness may be present. Very fresh examples often have a pleasant malty-chocolate character that isn't roasty or sweet. Burnt or bitter flavors from roasted malts are inappropriate, as are pronounced caramel flavors from crystal malt. Hop bitterness is moderately low but perceptible, with the balance tipped firmly towards maltiness. Hop flavor is low to none; if noted, should reflect floral, spicy, or herbal German-type varieties. Aftertaste remains malty, although the hop bitterness may become more apparent in the medium-dry finish. Clean fermentation profile and lager character. Medium to medium-full body, providing a soft and dextrinous mouthfeel without being heavy or cloying. Moderate carbonation. The use of continental Munich-type malts should provide a richness, not a harsh or biting astringency. Unfiltered versions from Germany can taste like liquid bread, with a yeasty, earthy richness not found in exported filtered examples.", - "overall_impression": "Characterized by depth, richness and complexity typical of darker Munich malts with the accompanying Maillard products. Deeply bready-toasty, often with chocolate-like flavors in the freshest examples, but never harsh, roasty, or astringent; a decidedly malt-balanced beer, yet still easily drinkable.", - "history": "The classic brown lager style of Munich which developed as a darker, more malt-accented beer than other regional lagers. While originating in Munich, the style became popular throughout Bavaria (especially Franconia). Franconian versions are often darker and more bitter.", - "notes": "Characterized by depth, richness and complexity typical of darker Munich malts with the accompanying Maillard products. Deeply bready-toasty, often with chocolate-like flavors in the freshest examples, but never harsh, roasty, or astringent; a decidedly malt-balanced beer, yet still easily drinkable. The classic brown lager style of Munich which developed as a darker, more malt-accented beer than other regional lagers. While originating in Munich, the style became popular throughout Bavaria (especially Franconia). Franconian versions are often darker and more bitter.", - "ingredients": "Grist is traditionally made up of German Munich malt (up to 100% in some cases) with the remainder German Pilsner malt. Small amounts of crystal malt can add dextrins and color but should not introduce excessive residual sweetness. Slight additions of roasted malts (such as Carafa or chocolate) may be used to improve color but should not add strong flavors. Traditional German hop varieties and German lager yeast strains should be used. Often decoction mashed (up to a triple decoction) to enhance the malt flavors and create the depth of color.", - "comparison": "Not as intense in maltiness as a bock (and thus more drinkable in quantity). Lacking the more roasted flavors (and often hop bitterness) of a schwarzbier. Richer, more malt-centric, and less hoppy than a Czech Dark Lager.", - "examples": "Ayinger Altbairisch Dunkel, Chuckanut Dunkel Lager, Ettaler Kloster Dunkel, Hacker-Pschorr Alt Munich Dark, Weltenburger Kloster Barock-Dunkel", - "tags": "standard-strength, dark-color, bottom-fermented, lagered, central-europe, traditional-style, malty, dark-lager-family", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.056 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 28 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 14 - }, - "maximum": { - "unit": "SRM", - "value": 28 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 5.6 - } - } - }, - { - "name": "Schwarzbier", - "category": "Dark European Lager", - "category_number": 8, - "category_id": "8", - "style_id": "8B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to moderate malt, with low aromatic malty sweetness and/or hints of roast malt often apparent. The malt can be clean and neutral or moderately rich and bready, and may have a hint of dark caramel. The roast character can be somewhat dark chocolate- or coffee-like but should never be burnt. A low spicy, floral, or herbal hop aroma is optional. Clean lager yeast character, although a light sulfur is possible.", - "appearance": "Medium to very dark brown in color, often with deep ruby to garnet highlights, yet almost never truly black. Very clear. Large, persistent, tan-colored head.", - "flavor": "Light to moderate malt flavor, which can have a clean, neutral character to a moderately rich, bread-malty quality. Light to moderate roasted malt flavors can give a bitter-chocolate palate that lasts into the finish, but which are never burnt. Medium-low to medium bitterness, which can last into the finish. Light to moderate spicy, floral, or herbal hop flavor. Clean lager character. Aftertaste tends to dry out slowly and linger, featuring hop bitterness with a complementary but subtle roastiness in the background. Some residual sweetness is acceptable but not required.", - "mouthfeel": "Medium-light to medium body. Moderate to moderately-high carbonation. Smooth. No harshness or astringency, despite the use of dark, roasted malts.", - "comments": "Literally means \"black beer\" in German. While sometimes called a \"black Pils,\" the beer is rarely as dark as black or as bitter as a Pils; don't expect strongly roasted, porter-like flavors.", - "profile": "Low to moderate malt, with low aromatic malty sweetness and/or hints of roast malt often apparent. The malt can be clean and neutral or moderately rich and bready, and may have a hint of dark caramel. The roast character can be somewhat dark chocolate- or coffee-like but should never be burnt. A low spicy, floral, or herbal hop aroma is optional. Clean lager yeast character, although a light sulfur is possible. Medium to very dark brown in color, often with deep ruby to garnet highlights, yet almost never truly black. Very clear. Large, persistent, tan-colored head.Light to moderate malt flavor, which can have a clean, neutral character to a moderately rich, bread-malty quality. Light to moderate roasted malt flavors can give a bitter-chocolate palate that lasts into the finish, but which are never burnt. Medium-low to medium bitterness, which can last into the finish. Light to moderate spicy, floral, or herbal hop flavor. Clean lager character. Aftertaste tends to dry out slowly and linger, featuring hop bitterness with a complementary but subtle roastiness in the background. Some residual sweetness is acceptable but not required. Medium-light to medium body. Moderate to moderately-high carbonation. Smooth. No harshness or astringency, despite the use of dark, roasted malts. Literally means \"black beer\" in German. While sometimes called a \"black Pils,\" the beer is rarely as dark as black or as bitter as a Pils; don't expect strongly roasted, porter-like flavors.", - "overall_impression": "A dark German lager that balances roasted yet smooth malt flavors with moderate hop bitterness. The lighter body, dryness, and lack of a harsh, burnt, or heavy aftertaste helps make this beer quite drinkable.", - "history": "A regional specialty from Thuringia, Saxony and Franconia in Germany. History is a bit sketchy, but is suspected of being originally a top-fermented beer. Popularity grew after German reunification. Served as the inspiration for black lagers brewed in Japan.", - "notes": "A dark German lager that balances roasted yet smooth malt flavors with moderate hop bitterness. The lighter body, dryness, and lack of a harsh, burnt, or heavy aftertaste helps make this beer quite drinkable. A regional specialty from Thuringia, Saxony and Franconia in Germany. History is a bit sketchy, but is suspected of being originally a top-fermented beer. Popularity grew after German reunification. Served as the inspiration for black lagers brewed in Japan.", - "ingredients": "German Munich malt and/or Pilsner malts for the base, supplemented by a judicious use of roasted malts (such as Carafa types) for the dark color and subtle roast flavors. Huskless dark roasted malts can add roast flavors without burnt flavors. German hop varieties and clean German lager yeasts are traditional.", - "comparison": "In comparison with a Munich Dunkel, usually darker in color, drier on the palate, lighter in body, and with a noticeable (but not high) roasted malt edge to balance the malt base. Should not taste like an American Porter made with lager yeast. Drier, less malty, with less hop character than a Czech Dark Lager.", - "examples": "Devils Backbone Schwartz Bier, Einbecker Schwarzbier, Eisenbahn Dunkel, Köstritzer Schwarzbier, Mönchshof Schwarzbier, Nuezeller Original Badebier", - "tags": "standard-strength, dark-color, bottom-fermented, lagered, central-europe, traditional-style, balanced, dark-lager-family", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.046 - }, - "maximum": { - "unit": "sg", - "value": 1.052 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 17 - }, - "maximum": { - "unit": "SRM", - "value": 30 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.4 - }, - "maximum": { - "unit": "%", - "value": 5.4 - } - } - }, - { - "name": "Doppelbock", - "category": "Strong European Beer", - "category_number": 9, - "category_id": "9", - "style_id": "9A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Very strong maltiness. Darker versions will have significant Maillard products and often some toasty aromas. A light caramel aroma is acceptable. Lighter versions will have a strong malt presence with some Maillard products and toasty notes. Virtually no hop aroma, although a light noble hop aroma is acceptable in pale versions. A moderately low malt-derived dark fruit character may be present (but is optional) in dark versions. A very slight chocolate-like aroma may be present in darker versions, but no roasted or burned aromatics should ever be present. Moderate alcohol aroma may be present.", - "appearance": "Deep gold to dark brown in color. Darker versions often have ruby highlights. Lagering should provide good clarity. Large, creamy, persistent head (color varies with base style: white for pale versions, off-white for dark varieties). Stronger versions might have impaired head retention, and can display noticeable legs.", - "flavor": "Very rich and malty. Darker versions will have significant Maillard products and often some toasty flavors. Lighter versions will have a strong malt flavor with some Maillard products and toasty notes. A very slight chocolate flavor is optional in darker versions, but should never be perceived as roasty or burnt. Clean lager character. A moderately low malt-derived dark fruit character is optional in darker versions. Invariably there will be an impression of alcoholic strength, but this should be smooth and warming rather than harsh or burning. Little to no hop flavor (more is acceptable in pale versions). Hop bitterness varies from moderate to moderately low but always allows malt to dominate the flavor. Most versions are fairly malty-sweet, but should have an impression of attenuation. The sweetness comes from low hopping, not from incomplete fermentation. Paler versions generally have a drier finish.", - "mouthfeel": "Medium-full to full body. Moderate to moderately-low carbonation. Very smooth without harshness, astringency. A light alcohol warmth may be noted, but it should never burn.", - "comments": "Most versions are dark colored and may display the caramelizing and Maillard products of decoction mashing, but excellent pale versions also exist. The pale versions will not have the same richness and darker malt flavors of the dark versions, and may be a bit drier, hoppier and more bitter. While most traditional examples are in the lower end of the ranges cited, the style can be considered to have no upper limit for gravity, alcohol and bitterness (thus providing a home for very strong lagers).", - "profile": "Very strong maltiness. Darker versions will have significant Maillard products and often some toasty aromas. A light caramel aroma is acceptable. Lighter versions will have a strong malt presence with some Maillard products and toasty notes. Virtually no hop aroma, although a light noble hop aroma is acceptable in pale versions. A moderately low malt-derived dark fruit character may be present (but is optional) in dark versions. A very slight chocolate-like aroma may be present in darker versions, but no roasted or burned aromatics should ever be present. Moderate alcohol aroma may be present. Deep gold to dark brown in color. Darker versions often have ruby highlights. Lagering should provide good clarity. Large, creamy, persistent head (color varies with base style: white for pale versions, off-white for dark varieties). Stronger versions might have impaired head retention, and can display noticeable legs.Very rich and malty. Darker versions will have significant Maillard products and often some toasty flavors. Lighter versions will have a strong malt flavor with some Maillard products and toasty notes. A very slight chocolate flavor is optional in darker versions, but should never be perceived as roasty or burnt. Clean lager character. A moderately low malt-derived dark fruit character is optional in darker versions. Invariably there will be an impression of alcoholic strength, but this should be smooth and warming rather than harsh or burning. Little to no hop flavor (more is acceptable in pale versions). Hop bitterness varies from moderate to moderately low but always allows malt to dominate the flavor. Most versions are fairly malty-sweet, but should have an impression of attenuation. The sweetness comes from low hopping, not from incomplete fermentation. Paler versions generally have a drier finish. Medium-full to full body. Moderate to moderately-low carbonation. Very smooth without harshness, astringency. A light alcohol warmth may be noted, but it should never burn. Most versions are dark colored and may display the caramelizing and Maillard products of decoction mashing, but excellent pale versions also exist. The pale versions will not have the same richness and darker malt flavors of the dark versions, and may be a bit drier, hoppier and more bitter. While most traditional examples are in the lower end of the ranges cited, the style can be considered to have no upper limit for gravity, alcohol and bitterness (thus providing a home for very strong lagers).", - "overall_impression": "A strong, rich, and very malty German lager that can have both pale and dark variants. The darker versions have more richly-developed, deeper malt flavors, while the paler versions have slightly more hops and dryness.", - "history": "A Bavarian specialty first brewed in Munich by the monks of St. Francis of Paula. Historical versions were less well-attenuated than modern interpretations, with consequently higher sweetness and lower alcohol levels (and hence was considered \"liquid bread\" by the monks). The term \"doppel (double) bock\" was coined by Munich consumers. Many commercial doppelbocks have names ending in \"-ator,\" either as a tribute to the prototypical Salvator or to take advantage of the beer's popularity. Traditionally dark brown in color; paler examples are a more recent development.", - "notes": "A strong, rich, and very malty German lager that can have both pale and dark variants. The darker versions have more richly-developed, deeper malt flavors, while the paler versions have slightly more hops and dryness. A Bavarian specialty first brewed in Munich by the monks of St. Francis of Paula. Historical versions were less well-attenuated than modern interpretations, with consequently higher sweetness and lower alcohol levels (and hence was considered \"liquid bread\" by the monks). The term \"doppel (double) bock\" was coined by Munich consumers. Many commercial doppelbocks have names ending in \"-ator,\" either as a tribute to the prototypical Salvator or to take advantage of the beer's popularity. Traditionally dark brown in color; paler examples are a more recent development.", - "ingredients": "Pils and/or Vienna malt for pale versions (with some Munich), Munich and Vienna malts for darker ones and occasionally a tiny bit of darker color malts (such as Carafa). Saazer-type hops. Clean lager yeast. Decoction mashing is traditional.", - "comparison": "A stronger, richer, more full-bodied version of either a Dunkles Bock or a Helles Bock. Pale versions will show higher attenuation and less dark fruity character than the darker versions.", - "examples": "Dark Versions –Andechser Doppelbock Dunkel, Ayinger Celebrator, Paulaner Salvator, Spaten Optimator, Tröegs Troegenator, Weihenstephaner Korbinian,; Pale Versions – Eggenberg Urbock 23º, EKU 28, Plank Bavarian Heller Doppelbock", - "tags": "high-strength, amber-color, pale-color, bottom-fermented, lagered, central-europe, traditional-style, bock-family, malty", - "entry_instructions": "The entrant will specify whether the entry is a pale or a dark variant.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.072 - }, - "maximum": { - "unit": "sg", - "value": 1.112 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.016 - }, - "maximum": { - "unit": "sg", - "value": 1.024 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 16 - }, - "maximum": { - "unit": "IBUs", - "value": 26 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 25 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 7 - }, - "maximum": { - "unit": "%", - "value": 10 - } - } - }, - { - "name": "Eisbock", - "category": "Strong European Beer", - "category_number": 9, - "category_id": "9", - "style_id": "9B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Dominated by a balance of rich, intense malt and a definite alcohol presence. No hop aroma. May have significant malt-derived dark fruit esters. Alcohol aromas should not be harsh or solventy.", - "appearance": "Deep copper to dark brown in color, often with attractive ruby highlights. Lagering should provide good clarity. Head retention may be moderate to poor. Off-white to deep ivory colored head. Pronounced legs are often evident.", - "flavor": "Rich, sweet malt balanced by a significant alcohol presence. The malt can have Maillard products, toasty qualities, some caramel, and occasionally a slight chocolate flavor. No hop flavor. Hop bitterness just offsets the malt sweetness enough to avoid a cloying character. May have significant malt-derived dark fruit esters. The alcohol should be smooth, not harsh or hot, and should help the hop bitterness balance the strong malt presence. The finish should be of malt and alcohol, and can have a certain dryness from the alcohol. It should not be sticky, syrupy or cloyingly sweet. Clean lager character.", - "mouthfeel": "Full to very full-bodied. Low carbonation. Significant alcohol warmth without sharp hotness. Very smooth without harsh edges from alcohol, bitterness, fusels, or other concentrated flavors.", - "comments": "Extended lagering is often needed post-freezing to smooth the alcohol and enhance the malt and alcohol balance. Pronounced \"ICE-bock.\"", - "profile": "Dominated by a balance of rich, intense malt and a definite alcohol presence. No hop aroma. May have significant malt-derived dark fruit esters. Alcohol aromas should not be harsh or solventy. Deep copper to dark brown in color, often with attractive ruby highlights. Lagering should provide good clarity. Head retention may be moderate to poor. Off-white to deep ivory colored head. Pronounced legs are often evident.Rich, sweet malt balanced by a significant alcohol presence. The malt can have Maillard products, toasty qualities, some caramel, and occasionally a slight chocolate flavor. No hop flavor. Hop bitterness just offsets the malt sweetness enough to avoid a cloying character. May have significant malt-derived dark fruit esters. The alcohol should be smooth, not harsh or hot, and should help the hop bitterness balance the strong malt presence. The finish should be of malt and alcohol, and can have a certain dryness from the alcohol. It should not be sticky, syrupy or cloyingly sweet. Clean lager character. Full to very full-bodied. Low carbonation. Significant alcohol warmth without sharp hotness. Very smooth without harsh edges from alcohol, bitterness, fusels, or other concentrated flavors. Extended lagering is often needed post-freezing to smooth the alcohol and enhance the malt and alcohol balance. Pronounced \"ICE-bock.\"", - "overall_impression": "A strong, full-bodied, rich, and malty dark German lager often with a viscous quality and strong flavors. Even though flavors are concentrated, the alcohol should be smooth and warming, not burning.", - "history": "A traditional Kulmbach specialty brewed by freezing a doppelbock and removing the ice to concentrate the flavor and alcohol content (as well as any defects).", - "notes": "A strong, full-bodied, rich, and malty dark German lager often with a viscous quality and strong flavors. Even though flavors are concentrated, the alcohol should be smooth and warming, not burning. A traditional Kulmbach specialty brewed by freezing a doppelbock and removing the ice to concentrate the flavor and alcohol content (as well as any defects).", - "ingredients": "Same as doppelbock. Commercial eisbocks are generally concentrated anywhere from 7% to 33% (by volume).", - "comparison": "Eisbocks are not simply stronger doppelbocks; the name refers to the process of freezing and concentrating the beer and is not a statement on alcohol; some doppelbocks are stronger than Eisbocks. Not as thick, rich, or sweet as a Wheatwine.", - "examples": "Kulmbacher Eisbock", - "tags": "very-high-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, bock-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.078 - }, - "maximum": { - "unit": "sg", - "value": 1.12 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.02 - }, - "maximum": { - "unit": "sg", - "value": 1.035 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 18 - }, - "maximum": { - "unit": "SRM", - "value": 30 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 9 - }, - "maximum": { - "unit": "%", - "value": 14 - } - } - }, - { - "name": "Baltic Porter", - "category": "Strong European Beer", - "category_number": 9, - "category_id": "9", - "style_id": "9C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Rich malty sweetness often containing caramel, toffee, nutty to deep toast, and/or licorice notes. Complex alcohol and ester profile of moderate strength, and reminiscent of plums, prunes, raisins, cherries or currants, occasionally with a vinous Port-like quality. Some darker malt character that is deep chocolate, coffee or molasses but never burnt. No hops. No sourness. Very smooth.", - "appearance": "Dark reddish-copper to opaque dark brown (not black). Thick, persistent tan-colored head. Clear, although darker versions can be opaque.", - "flavor": "As with aroma, has a rich malty sweetness with a complex blend of deep malt, dried fruit esters, and alcohol. Has a prominent yet smooth schwarzbier-like roasted flavor that stops short of burnt. Mouth-filling and very smooth. Clean lager character. Starts sweet but darker malt flavors quickly dominates and persists through finish. Just a touch dry with a hint of roast coffee or licorice in the finish. Malt can have a caramel, toffee, nutty, molasses and/or licorice complexity. Light hints of black currant and dark fruits. Medium-low to medium bitterness from malt and hops, just to provide balance. Hop flavor from slightly spicy hops ranges from none to medium-low.", - "mouthfeel": "Generally quite full-bodied and smooth, with a well-aged alcohol warmth. Medium to medium-high carbonation, making it seem even more mouth-filling. Not heavy on the tongue due to carbonation level.", - "comments": "May also be described today as an Imperial Porter, although heavily roasted or hopped versions are not appropriate for this style. Most versions are in the 7–8.5% ABV range. Danish breweries often refer to them as Stouts, which indicates their historic lineage from the days when Porter was used as a generic name for Porter and Stout.", - "profile": "Rich malty sweetness often containing caramel, toffee, nutty to deep toast, and/or licorice notes. Complex alcohol and ester profile of moderate strength, and reminiscent of plums, prunes, raisins, cherries or currants, occasionally with a vinous Port-like quality. Some darker malt character that is deep chocolate, coffee or molasses but never burnt. No hops. No sourness. Very smooth. Dark reddish-copper to opaque dark brown (not black). Thick, persistent tan-colored head. Clear, although darker versions can be opaque.As with aroma, has a rich malty sweetness with a complex blend of deep malt, dried fruit esters, and alcohol. Has a prominent yet smooth schwarzbier-like roasted flavor that stops short of burnt. Mouth-filling and very smooth. Clean lager character. Starts sweet but darker malt flavors quickly dominates and persists through finish. Just a touch dry with a hint of roast coffee or licorice in the finish. Malt can have a caramel, toffee, nutty, molasses and/or licorice complexity. Light hints of black currant and dark fruits. Medium-low to medium bitterness from malt and hops, just to provide balance. Hop flavor from slightly spicy hops ranges from none to medium-low. Generally quite full-bodied and smooth, with a well-aged alcohol warmth. Medium to medium-high carbonation, making it seem even more mouth-filling. Not heavy on the tongue due to carbonation level. May also be described today as an Imperial Porter, although heavily roasted or hopped versions are not appropriate for this style. Most versions are in the 7–8.5% ABV range. Danish breweries often refer to them as Stouts, which indicates their historic lineage from the days when Porter was used as a generic name for Porter and Stout.", - "overall_impression": "A Baltic Porter often has the malt flavors reminiscent of an English porter and the restrained roast of a schwarzbier, but with a higher OG and alcohol content than either. Very complex, with multi-layered malt and dark fruit flavors.", - "history": "Traditional beer from countries bordering the Baltic Sea, developed indigenously after higher-gravity export brown or imperial stouts from England were established. Historically top-fermented, many breweries adapted the recipes for bottom-fermenting yeast along with the rest of their production.", - "notes": "A Baltic Porter often has the malt flavors reminiscent of an English porter and the restrained roast of a schwarzbier, but with a higher OG and alcohol content than either. Very complex, with multi-layered malt and dark fruit flavors. Traditional beer from countries bordering the Baltic Sea, developed indigenously after higher-gravity export brown or imperial stouts from England were established. Historically top-fermented, many breweries adapted the recipes for bottom-fermenting yeast along with the rest of their production.", - "ingredients": "Generally lager yeast (cold fermented if using ale yeast, as is required when brewed in Russia). Debittered chocolate or black malt. Munich or Vienna base malt. Continental hops (Saazer-type, typically). May contain crystal malts and/or adjuncts. Brown or amber malt common in historical recipes.", - "comparison": "Much less roasted and smoother than an Imperial Stout, typically with less alcohol. Lacks the roasty qualities of stouts in general, more taking on the roasted-but-not-burnt characteristics of a schwarzbier. Quite fruity compared to other porters. Higher alcohol than other porters.", - "examples": "Aldaris Porteris, Baltika #6 Porter, Devils Backbone Danzig, Okocim Porter, Sinebrychoff Porter, Zywiec Porter", - "tags": "high-strength, dark-color, any-fermentation, lagered, eastern-europe, traditional-style, porter-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.06 - }, - "maximum": { - "unit": "sg", - "value": 1.09 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.016 - }, - "maximum": { - "unit": "sg", - "value": 1.024 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 17 - }, - "maximum": { - "unit": "SRM", - "value": 30 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.5 - }, - "maximum": { - "unit": "%", - "value": 9.5 - } - } - }, - { - "name": "Weissbier", - "category": "German Wheat Beer", - "category_number": 10, - "category_id": "10", - "style_id": "10A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate to strong phenols (usually clove) and fruity esters (typically banana). The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. The hop character ranges from low to none. A light to moderate wheat aroma (which might be perceived as bready or grainy) may be present but other malt characteristics should not. Optional, but acceptable, aromatics can include a light to moderate vanilla character, and/or a faint bubblegum aroma. None of these optional characteristics should be high or dominant, but often can add to the complexity and balance.", - "appearance": "Pale straw to gold in color. A very thick, moussy, long-lasting white head is characteristic. The high protein content of wheat impairs clarity in an unfiltered beer, although the level of haze is somewhat variable.", - "flavor": "Low to moderately strong banana and clove flavor. The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Optionally, a very light to moderate vanilla character and/or faint bubblegum notes can accentuate the banana flavor, sweetness and roundness; neither should be dominant if present. The soft, somewhat bready or grainy flavor of wheat is complementary, as is a slightly grainy-sweet malt character. Hop flavor is very low to none, and hop bitterness is very low to moderately low. Well-rounded, flavorful palate with a relatively dry finish. The perception of sweetness is more due to the absence of hop bitterness than actual residual sweetness; a sweet or heavy finish would significantly impair drinkability.", - "mouthfeel": "Medium-light to medium body; never heavy. Suspended yeast may increase the perception of body. The texture of wheat imparts the sensation of a fluffy, creamy fullness that may progress to a light, spritzy finish aided by high to very high carbonation. Always effervescent.", - "comments": "These are refreshing, fast-maturing beers that are lightly hopped and show a unique banana-and-clove yeast character. These beers often don't age well and are best enjoyed while young and fresh. The version mit hefe is served with suspended yeast; the krystal version is filtered for excellent clarity. The character of a krystal weizen is generally fruitier and less phenolic than that of the weissbier mit hefe. May be known as hefeweizen, particularly in the United States.", - "profile": "Moderate to strong phenols (usually clove) and fruity esters (typically banana). The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. The hop character ranges from low to none. A light to moderate wheat aroma (which might be perceived as bready or grainy) may be present but other malt characteristics should not. Optional, but acceptable, aromatics can include a light to moderate vanilla character, and/or a faint bubblegum aroma. None of these optional characteristics should be high or dominant, but often can add to the complexity and balance. Pale straw to gold in color. A very thick, moussy, long-lasting white head is characteristic. The high protein content of wheat impairs clarity in an unfiltered beer, although the level of haze is somewhat variable.Low to moderately strong banana and clove flavor. The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Optionally, a very light to moderate vanilla character and/or faint bubblegum notes can accentuate the banana flavor, sweetness and roundness; neither should be dominant if present. The soft, somewhat bready or grainy flavor of wheat is complementary, as is a slightly grainy-sweet malt character. Hop flavor is very low to none, and hop bitterness is very low to moderately low. Well-rounded, flavorful palate with a relatively dry finish. The perception of sweetness is more due to the absence of hop bitterness than actual residual sweetness; a sweet or heavy finish would significantly impair drinkability. Medium-light to medium body; never heavy. Suspended yeast may increase the perception of body. The texture of wheat imparts the sensation of a fluffy, creamy fullness that may progress to a light, spritzy finish aided by high to very high carbonation. Always effervescent. These are refreshing, fast-maturing beers that are lightly hopped and show a unique banana-and-clove yeast character. These beers often don't age well and are best enjoyed while young and fresh. The version mit hefe is served with suspended yeast; the krystal version is filtered for excellent clarity. The character of a krystal weizen is generally fruitier and less phenolic than that of the weissbier mit hefe. May be known as hefeweizen, particularly in the United States.", - "overall_impression": "A pale, refreshing German wheat beer with high carbonation, dry finish, a fluffy mouthfeel, and a distinctive banana-and-clove yeast character.", - "history": "While Bavaria has a wheat beer tradition dating back hundreds of years, brewing wheat beer used to be a monopoly reserved for Bavarian royalty. Modern weissbier dates from 1872 when Schneider began production. However, pale weissbier only became popular since the 1960s. It is quite popular today, particularly in southern Germany.", - "notes": "A pale, refreshing German wheat beer with high carbonation, dry finish, a fluffy mouthfeel, and a distinctive banana-and-clove yeast character. While Bavaria has a wheat beer tradition dating back hundreds of years, brewing wheat beer used to be a monopoly reserved for Bavarian royalty. Modern weissbier dates from 1872 when Schneider began production. However, pale weissbier only became popular since the 1960s. It is quite popular today, particularly in southern Germany.", - "ingredients": "By German brewing tradition, at least 50% of the grist must be malted wheat, although some versions use up to 70%; the remainder is typically Pilsner malt. A decoction mash is traditional, although modern brewers typically don't follow this practice. Weizen ale yeast produces the typical spicy and fruity character, although high fermentation temperatures can affect the balance and produce off-flavors.", - "examples": "Ayinger Bräu Weisse, Hacker-Pschorr Weisse, Paulaner Hefe-Weizen Naturtrüb, Schneider Weisse Unser Original, Weihenstephaner Hefeweissbier", - "tags": "standard-strength, pale-color, top-fermented, central-europe, traditional-style, wheat-beer-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.052 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 8 - }, - "maximum": { - "unit": "IBUs", - "value": 15 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.3 - }, - "maximum": { - "unit": "%", - "value": 5.6 - } - } - }, - { - "name": "Dunkles Weissbier", - "category": "German Wheat Beer", - "category_number": 10, - "category_id": "10", - "style_id": "10B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate phenols (usually clove) and fruity esters (usually banana). The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced. Optionally, a low to moderate vanilla character and/or faint bubblegum notes may be present, but should not dominate. Hop aroma ranges from low to none, and may be lightly floral, spicy, or herbal. A light to moderate wheat aroma (which might be perceived as bready, doughy or grainy) may be present and is often accompanied by a caramel, bread crust, or richer malt aroma. The malt aroma may moderate the phenols and esters somewhat.", - "appearance": "Light copper to mahogany brown in color. A very thick, moussy, long-lasting off-white head is characteristic. The high protein content of wheat impairs clarity in this traditionally unfiltered style, although the level of haze is somewhat variable. Suspended yeast sediment can contribute to cloudiness.", - "flavor": "Low to moderately strong banana and clove flavor. The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Optionally, a very light to moderate vanilla character and/or faint bubblegum notes can accentuate the banana flavor, sweetness and roundness; neither should be dominant if present. The soft, somewhat bready, doughy, or grainy flavor of wheat is complementary, as is a richer caramel, toast, or bread crust flavor. The malty richness can be low to medium-high, and supports the yeast character. A roasted malt character is inappropriate. A spicy, herbal, or floral hop flavor is very low to none, and hop bitterness is very low to low. Well-rounded, flavorful, often somewhat malty palate with a relatively dry finish.", - "mouthfeel": "Medium-light to medium-full body. The texture of wheat as well as yeast in suspension imparts the sensation of a fluffy, creamy fullness that may progress to a lighter finish, aided by moderate to high carbonation. Effervescent.", - "comments": "The presence of Munich and/or Vienna-type barley malts gives this style a deep, rich barley malt character not found in a weissbier. Often known as dunkelweizen, particularly in the United States.", - "profile": "Moderate phenols (usually clove) and fruity esters (usually banana). The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced. Optionally, a low to moderate vanilla character and/or faint bubblegum notes may be present, but should not dominate. Hop aroma ranges from low to none, and may be lightly floral, spicy, or herbal. A light to moderate wheat aroma (which might be perceived as bready, doughy or grainy) may be present and is often accompanied by a caramel, bread crust, or richer malt aroma. The malt aroma may moderate the phenols and esters somewhat. Light copper to mahogany brown in color. A very thick, moussy, long-lasting off-white head is characteristic. The high protein content of wheat impairs clarity in this traditionally unfiltered style, although the level of haze is somewhat variable. Suspended yeast sediment can contribute to cloudiness.Low to moderately strong banana and clove flavor. The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Optionally, a very light to moderate vanilla character and/or faint bubblegum notes can accentuate the banana flavor, sweetness and roundness; neither should be dominant if present. The soft, somewhat bready, doughy, or grainy flavor of wheat is complementary, as is a richer caramel, toast, or bread crust flavor. The malty richness can be low to medium-high, and supports the yeast character. A roasted malt character is inappropriate. A spicy, herbal, or floral hop flavor is very low to none, and hop bitterness is very low to low. Well-rounded, flavorful, often somewhat malty palate with a relatively dry finish. Medium-light to medium-full body. The texture of wheat as well as yeast in suspension imparts the sensation of a fluffy, creamy fullness that may progress to a lighter finish, aided by moderate to high carbonation. Effervescent. The presence of Munich and/or Vienna-type barley malts gives this style a deep, rich barley malt character not found in a weissbier. Often known as dunkelweizen, particularly in the United States.", - "overall_impression": "A moderately dark German wheat beer with a distinctive banana-and-clove yeast character, supported by a toasted bread or caramel malt flavor. Highly carbonated and refreshing, with a creamy, fluffy texture and light finish that encourages drinking.", - "history": "Bavaria has a wheat beer brewing traditional hundreds of years old, but the brewing right was reserved for Bavarian royalty until the late 1700s. Old-fashioned Bavarian wheat beer was often dark, as were most beer of the day. Pale weissbier started to become popular in the 1960s, but traditional dark wheat beer remained somewhat of an old person's drink.", - "notes": "A moderately dark German wheat beer with a distinctive banana-and-clove yeast character, supported by a toasted bread or caramel malt flavor. Highly carbonated and refreshing, with a creamy, fluffy texture and light finish that encourages drinking. Bavaria has a wheat beer brewing traditional hundreds of years old, but the brewing right was reserved for Bavarian royalty until the late 1700s. Old-fashioned Bavarian wheat beer was often dark, as were most beer of the day. Pale weissbier started to become popular in the 1960s, but traditional dark wheat beer remained somewhat of an old person's drink.", - "ingredients": "By German brewing tradition, at least 50% of the grist must be malted wheat, although some versions use up to 70%; the remainder is usually Munich, Vienna, or dark or caramel wheat malts, or Pilsner malt with color malt. A decoction mash is traditional, but infrequently used today. Weizen ale yeasts produce the typical spicy and fruity character, although extreme fermentation temperatures can affect the balance and produce off-flavors.", - "comparison": "Reflecting the best yeast and wheat character of a weissbier blended with the malty richness of a Munich dunkel. The banana and clove character is often less apparent than in a weissbier due to the increased maltiness.", - "examples": "Ayinger Ur-Weisse, Ettaler Weissbier Dunkel, Franziskaner Hefe-Weisse Dunkel, Hacker-Pschorr Weisse Dark, Tucher Dunkles Hefe Weizen, Weihenstephaner Hefeweissbier Dunkel", - "tags": "standard-strength, amber-color, top-fermented, central-europe, traditional-style, wheat-beer-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.056 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 10 - }, - "maximum": { - "unit": "IBUs", - "value": 18 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 14 - }, - "maximum": { - "unit": "SRM", - "value": 23 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.3 - }, - "maximum": { - "unit": "%", - "value": 5.6 - } - } - }, - { - "name": "Weizenbock", - "category": "German Wheat Beer", - "category_number": 10, - "category_id": "10", - "style_id": "10C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Medium-high to high malty-rich character with a significant bready-grainy wheat component. Paler versions will have a bready-toasty malty richness, while darker versions will have a deeper, richer malt presence with significant Maillard products. The malt component is similar to a helles bock for pale versions (grainy-sweet-rich, lightly toasted) or a dunkles bock for dark versions (bready-malty-rich, highly toasted, optional caramel). The yeast contributes a typical weizen character of banana and spice (clove, vanilla), which can be medium-low to medium-high. Darker versions can have some dark fruit aroma (plums, prunes, grapes, raisins), particularly as they age. A low to moderate alcohol aroma is acceptable, but shouldn't be hot or solventy. No hop aroma. The malt, yeast, and alcohol intertwine to produce a complex, inviting, prominent bouquet.", - "appearance": "Pale and dark versions exist, with pale versions being light gold to light amber, and dark versions being dark amber to dark ruby-brown in color. A very thick, moussy, long-lasting white to off-white (pale versions) or light tan (dark versions) head is characteristic. The high protein content of wheat impairs clarity in this traditionally unfiltered style, although the level of haze is somewhat variable. Suspended yeast sediment can contribute to the cloudiness.", - "flavor": "Similar to the aroma, a medium-high to high malty-rich flavor together with a significant bready-grainy wheat flavor. Paler versions will have a bready, toasty, grainy-sweet malt richness, while darker versions will have deeper, bready-rich or toasted malt flavors with significant Maillard products, optional caramel. Low to moderate banana and spice (clove, vanilla) yeast character. Darker versions can have some dark fruit flavor (plums, prunes, grapes, raisins), particularly as they age. A light chocolate character (but not roast) is optional in darker versions. No hop flavor. A low hop bitterness can give a slightly sweet palate impression, but the beer typically finishes dry (sometimes enhanced by a light alcohol character). The interplay between the malt, yeast, and alcohol adds complexity and interest, which is often enhanced with age.", - "mouthfeel": "Medium-full to full body. A fluffy or creamy texture is typical, as is the mild warming sensation of substantial alcohol content. Moderate to high carbonation.", - "comments": "A Weissbier brewed to bock or doppelbock strength. Schneider also produces an Eisbock version. Pale and dark versions exist, although dark are more common. Pale versions have less rich malt complexity and often more hops, as with doppelbocks. Lightly oxidized Maillard products can produce some rich, intense flavors and aromas that are often seen in aged imported commercial products; fresher versions will not have this character. Well-aged examples might also take on a slight sherry-like complexity.", - "profile": "Medium-high to high malty-rich character with a significant bready-grainy wheat component. Paler versions will have a bready-toasty malty richness, while darker versions will have a deeper, richer malt presence with significant Maillard products. The malt component is similar to a helles bock for pale versions (grainy-sweet-rich, lightly toasted) or a dunkles bock for dark versions (bready-malty-rich, highly toasted, optional caramel). The yeast contributes a typical weizen character of banana and spice (clove, vanilla), which can be medium-low to medium-high. Darker versions can have some dark fruit aroma (plums, prunes, grapes, raisins), particularly as they age. A low to moderate alcohol aroma is acceptable, but shouldn't be hot or solventy. No hop aroma. The malt, yeast, and alcohol intertwine to produce a complex, inviting, prominent bouquet. Pale and dark versions exist, with pale versions being light gold to light amber, and dark versions being dark amber to dark ruby-brown in color. A very thick, moussy, long-lasting white to off-white (pale versions) or light tan (dark versions) head is characteristic. The high protein content of wheat impairs clarity in this traditionally unfiltered style, although the level of haze is somewhat variable. Suspended yeast sediment can contribute to the cloudiness.Similar to the aroma, a medium-high to high malty-rich flavor together with a significant bready-grainy wheat flavor. Paler versions will have a bready, toasty, grainy-sweet malt richness, while darker versions will have deeper, bready-rich or toasted malt flavors with significant Maillard products, optional caramel. Low to moderate banana and spice (clove, vanilla) yeast character. Darker versions can have some dark fruit flavor (plums, prunes, grapes, raisins), particularly as they age. A light chocolate character (but not roast) is optional in darker versions. No hop flavor. A low hop bitterness can give a slightly sweet palate impression, but the beer typically finishes dry (sometimes enhanced by a light alcohol character). The interplay between the malt, yeast, and alcohol adds complexity and interest, which is often enhanced with age. Medium-full to full body. A fluffy or creamy texture is typical, as is the mild warming sensation of substantial alcohol content. Moderate to high carbonation. A Weissbier brewed to bock or doppelbock strength. Schneider also produces an Eisbock version. Pale and dark versions exist, although dark are more common. Pale versions have less rich malt complexity and often more hops, as with doppelbocks. Lightly oxidized Maillard products can produce some rich, intense flavors and aromas that are often seen in aged imported commercial products; fresher versions will not have this character. Well-aged examples might also take on a slight sherry-like complexity.", - "overall_impression": "A strong, malty, fruity, wheat-based ale combining the best malt and yeast flavors of a weissbier (pale or dark) with the malty-rich flavor, strength, and body of a Dunkles Bock or Doppelbock.", - "history": "Aventinus, the world's oldest top-fermented wheat doppelbock, was created in 1907 at the Schneider Weisse Brauhaus in Munich.", - "notes": "A strong, malty, fruity, wheat-based ale combining the best malt and yeast flavors of a weissbier (pale or dark) with the malty-rich flavor, strength, and body of a Dunkles Bock or Doppelbock. Aventinus, the world's oldest top-fermented wheat doppelbock, was created in 1907 at the Schneider Weisse Brauhaus in Munich.", - "ingredients": "A high percentage of malted wheat is used (by German brewing tradition must be at least 50%, although it may contain up to 70%), with the remainder being Munich- and/or Vienna-type barley malts in darker versions, and more Pils malt in paler versions. Some color malts may be used sparingly. A traditional decoction mash can give the appropriate body without cloying sweetness. Weizen ale yeasts produce the typical spicy and fruity character. Too warm or too cold fermentation will cause the phenols and esters to be out of balance and may create off-flavors. Hop choice is essentially irrelevant, but German varieties are most traditional.", - "comparison": "Stronger and richer than a Weissbier or Dunkles Weissbier, but with similar yeast character. More directly comparable to the Doppelbock style, with the pale and dark variations. Can vary widely in strength, but most are in the bock to doppelbock range.", - "examples": "Dark –Eisenbahn Weizenbock, Plank Bavarian Dunkler Weizenbock, Penn Weizenbock, Schneider Unser Aventinus; Pale –Plank Bavarian Heller Weizenbock, Weihenstephaner Vitus", - "tags": "high-strength, amber-color, pale-color, top-fermented, central-europe, traditional-style, wheat-beer-family, malty", - "entry_instructions": "The entrant will specify whether the entry is a pale or a dark version.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.064 - }, - "maximum": { - "unit": "sg", - "value": 1.09 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.015 - }, - "maximum": { - "unit": "sg", - "value": 1.022 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 25 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.5 - }, - "maximum": { - "unit": "%", - "value": 9 - } - } - }, - { - "name": "Ordinary Bitter", - "category": "British Bitter", - "category_number": 11, - "category_id": "11", - "style_id": "11A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to moderate malt aroma, often (but not always) with a light caramel quality. Bready, biscuity, or lightly toasty malt complexity is common. Mild to moderate fruitiness. Hop aroma can range from moderate to none, typically with a floral, earthy, resiny, and/or fruity character. Generally no diacetyl, although very low levels are allowed.", - "appearance": "Pale amber to light copper color. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.", - "flavor": "Medium to moderately high bitterness. Moderately low to moderately high fruity esters. Moderate to low hop flavor, typically with an earthy, resiny, fruity, and/or floral character. Low to medium maltiness with a dry finish. The malt profile is typically bready, biscuity, or lightly toasty. Low to moderate caramel or toffee flavors are optional. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters and hop flavor. Generally no diacetyl, although very low levels are allowed.", - "mouthfeel": "Light to medium-light body. Low carbonation, although bottled examples can have moderate carbonation.", - "comments": "The lowest gravity member of the British Bitter family, typically known to consumers simply as \"bitter\" (although brewers tend to refer to it as Ordinary Bitter to distinguish it from other members of the family).", - "profile": "Low to moderate malt aroma, often (but not always) with a light caramel quality. Bready, biscuity, or lightly toasty malt complexity is common. Mild to moderate fruitiness. Hop aroma can range from moderate to none, typically with a floral, earthy, resiny, and/or fruity character. Generally no diacetyl, although very low levels are allowed. Pale amber to light copper color. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.Medium to moderately high bitterness. Moderately low to moderately high fruity esters. Moderate to low hop flavor, typically with an earthy, resiny, fruity, and/or floral character. Low to medium maltiness with a dry finish. The malt profile is typically bready, biscuity, or lightly toasty. Low to moderate caramel or toffee flavors are optional. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters and hop flavor. Generally no diacetyl, although very low levels are allowed. Light to medium-light body. Low carbonation, although bottled examples can have moderate carbonation. The lowest gravity member of the British Bitter family, typically known to consumers simply as \"bitter\" (although brewers tend to refer to it as Ordinary Bitter to distinguish it from other members of the family).", - "overall_impression": "Low gravity, low alcohol levels, and low carbonation make this an easy-drinking session beer. The malt profile can vary in flavor and intensity, but should never override the overall bitter impression. Drinkability is a critical component of the style", - "history": "See comments in category introduction.", - "notes": "Low gravity, low alcohol levels, and low carbonation make this an easy-drinking session beer. The malt profile can vary in flavor and intensity, but should never override the overall bitter impression. Drinkability is a critical component of the style See comments in category introduction.", - "ingredients": "Pale ale, amber, and/or crystal malts. May use a touch of dark malt for color adjustment. May use sugar adjuncts, corn, or wheat. English finishing hops are most traditional, but any hops are fair game; if American hops are used, a light touch is required. Characterful British yeast.", - "comparison": "Some modern variants are brewed exclusively with pale malt and are known as golden ales, summer ales, or golden bitters. Emphasis is on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales.", - "examples": "Adnams Southwold Bitter, Brains Bitter, Fuller's Chiswick Bitter, Greene King IPA, Tetley's Original Bitter, Young's Bitter", - "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.03 - }, - "maximum": { - "unit": "sg", - "value": 1.039 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.007 - }, - "maximum": { - "unit": "sg", - "value": 1.011 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.2 - }, - "maximum": { - "unit": "%", - "value": 3.8 - } - } - }, - { - "name": "Best Bitter", - "category": "British Bitter", - "category_number": 11, - "category_id": "11", - "style_id": "11B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to moderate malt aroma, often (but not always) with a low to medium-low caramel quality. Bready, biscuit, or lightly toasty malt complexity is common. Mild to moderate fruitiness. Hop aroma can range from moderate to none, typically with a floral, earthy, resiny, and/or fruity character. Generally no diacetyl, although very low levels are allowed.", - "appearance": "Pale amber to medium copper color. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.", - "flavor": "Medium to moderately high bitterness. Moderately low to moderately high fruity esters. Moderate to low hop flavor, typically with an earthy, resiny, fruity, and/or floral character. Low to medium maltiness with a dry finish. The malt profile is typically bready, biscuity, or lightly toasty. Low to moderate caramel or toffee flavors are optional. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters and hop flavor. Generally no diacetyl, although very low levels are allowed.", - "mouthfeel": "Medium-light to medium body. Low carbonation, although bottled examples can have moderate carbonation.", - "comments": "More evident malt flavor than in an ordinary bitter, this is a stronger, session-strength ale.", - "profile": "Low to moderate malt aroma, often (but not always) with a low to medium-low caramel quality. Bready, biscuit, or lightly toasty malt complexity is common. Mild to moderate fruitiness. Hop aroma can range from moderate to none, typically with a floral, earthy, resiny, and/or fruity character. Generally no diacetyl, although very low levels are allowed. Pale amber to medium copper color. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.Medium to moderately high bitterness. Moderately low to moderately high fruity esters. Moderate to low hop flavor, typically with an earthy, resiny, fruity, and/or floral character. Low to medium maltiness with a dry finish. The malt profile is typically bready, biscuity, or lightly toasty. Low to moderate caramel or toffee flavors are optional. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters and hop flavor. Generally no diacetyl, although very low levels are allowed. Medium-light to medium body. Low carbonation, although bottled examples can have moderate carbonation. More evident malt flavor than in an ordinary bitter, this is a stronger, session-strength ale.", - "overall_impression": "A flavorful, yet refreshing, session beer. Some examples can be more malt balanced, but this should not override the overall bitter impression. Drinkability is a critical component of the style.", - "history": "See comments in category introduction.", - "notes": "A flavorful, yet refreshing, session beer. Some examples can be more malt balanced, but this should not override the overall bitter impression. Drinkability is a critical component of the style. See comments in category introduction.", - "ingredients": "Pale ale, amber, and/or crystal malts. May use a touch of dark malt for color adjustment. May use sugar adjuncts, corn or wheat. English finishing hops are most traditional, but any hops are fair game; if American hops are used, a light touch is required. Characterful British yeast.", - "comparison": "More alcohol than an ordinary bitter, and often using higher-quality ingredients. Less alcohol than a strong bitter. More caramel or base malt character and color than a British Golden Ale. Emphasis is on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales.", - "examples": "Adnams SSB, Coniston Bluebird Bitter, Fuller's London Pride, Harvey's Sussex Best Bitter, Shepherd Neame Master Brew Kentish Ale, Timothy Taylor Landlord, Young's Special", - "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.048 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 16 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.8 - }, - "maximum": { - "unit": "%", - "value": 4.6 - } - } - }, - { - "name": "Strong Bitter", - "category": "British Bitter", - "category_number": 11, - "category_id": "11", - "style_id": "11C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Hop aroma moderately-high to moderately-low, typically with a floral, earthy, resiny, and/or fruity character. Medium to medium-high malt aroma, optionally with a low to moderate caramel component. Medium-low to medium-high fruity esters. Generally no diacetyl, although very low levels are allowed.", - "appearance": "Light amber to deep copper color. Good to brilliant clarity. Low to moderate white to off-white head. A low head is acceptable when carbonation is also low.", - "flavor": "Medium to medium-high bitterness with supporting malt flavors evident. The malt profile is typically bready, biscuity, nutty, or lightly toasty, and optionally has a moderately low to moderate caramel or toffee flavor. Hop flavor moderate to moderately high, typically with a floral, earthy, resiny, and/or fruity character. Hop bitterness and flavor should be noticeable, but should not totally dominate malt flavors. Moderately-low to high fruity esters. Optionally may have low amounts of alcohol. Medium-dry to dry finish. Generally no diacetyl, although very low levels are allowed.", - "mouthfeel": "Medium-light to medium-full body. Low to moderate carbonation, although bottled versions will be higher. Stronger versions may have a slight alcohol warmth but this character should not be too high.", - "comments": "In England today, \"ESB\" is a Fullers trademark, and no one thinks of it as a generic class of beer. It is a unique (but very well-known) beer that has a very strong, complex malt profile not found in other examples, often leading judges to overly penalize traditional English strong bitters. In America, ESB has been co-opted to describe a malty, bitter, reddish, standard-strength (for the US) British-type ale, and is a popular craft beer style. This may cause some judges to think of US brewpub ESBs as representative of this style.", - "profile": "Hop aroma moderately-high to moderately-low, typically with a floral, earthy, resiny, and/or fruity character. Medium to medium-high malt aroma, optionally with a low to moderate caramel component. Medium-low to medium-high fruity esters. Generally no diacetyl, although very low levels are allowed. Light amber to deep copper color. Good to brilliant clarity. Low to moderate white to off-white head. A low head is acceptable when carbonation is also low.Medium to medium-high bitterness with supporting malt flavors evident. The malt profile is typically bready, biscuity, nutty, or lightly toasty, and optionally has a moderately low to moderate caramel or toffee flavor. Hop flavor moderate to moderately high, typically with a floral, earthy, resiny, and/or fruity character. Hop bitterness and flavor should be noticeable, but should not totally dominate malt flavors. Moderately-low to high fruity esters. Optionally may have low amounts of alcohol. Medium-dry to dry finish. Generally no diacetyl, although very low levels are allowed. Medium-light to medium-full body. Low to moderate carbonation, although bottled versions will be higher. Stronger versions may have a slight alcohol warmth but this character should not be too high. In England today, \"ESB\" is a Fullers trademark, and no one thinks of it as a generic class of beer. It is a unique (but very well-known) beer that has a very strong, complex malt profile not found in other examples, often leading judges to overly penalize traditional English strong bitters. In America, ESB has been co-opted to describe a malty, bitter, reddish, standard-strength (for the US) British-type ale, and is a popular craft beer style. This may cause some judges to think of US brewpub ESBs as representative of this style.", - "overall_impression": "An average-strength to moderately-strong British bitter ale. The balance may be fairly even between malt and hops to somewhat bitter. Drinkability is a critical component of the style. A rather broad style that allows for considerable interpretation by the brewer.", - "history": "See comments in category introduction. Strong bitters can be seen as a higher-gravity version of best bitters (although not necessarily \"more premium\" since best bitters are traditionally the brewer's finest product). British pale ales are generally considered a premium, export-strength pale, bitter beer that roughly approximates a strong bitter, although reformulated for bottling (including increasing carbonation levels). While modern British pale ale is considered a bottled bitter, historically the styles were different.", - "notes": "An average-strength to moderately-strong British bitter ale. The balance may be fairly even between malt and hops to somewhat bitter. Drinkability is a critical component of the style. A rather broad style that allows for considerable interpretation by the brewer. See comments in category introduction. Strong bitters can be seen as a higher-gravity version of best bitters (although not necessarily \"more premium\" since best bitters are traditionally the brewer's finest product). British pale ales are generally considered a premium, export-strength pale, bitter beer that roughly approximates a strong bitter, although reformulated for bottling (including increasing carbonation levels). While modern British pale ale is considered a bottled bitter, historically the styles were different.", - "ingredients": "Pale ale, amber, and/or crystal malts, may use a touch of black malt for color adjustment. May use sugar adjuncts, corn or wheat. English finishing hops are most traditional, but any hops are fair game; if American hops are used, a light touch is required. Characterful British yeast. Burton versions use medium to high sulfate water, which can increase the perception of dryness and add a minerally or sulfury aroma and flavor.", - "comparison": "More evident malt and hop flavors than in a special or best bitter, as well as more alcohol. Stronger versions may overlap somewhat with British strong ales, although strong bitters will tend to be paler and more bitter. More malt flavor (particularly caramel) and esters than an American Pale Ale, with different finishing hop character.", - "examples": "Bass Ale, Highland Orkney Blast, Samuel Smith's Old Brewery Pale Ale, Shepherd Neame Bishop's Finger, Shepherd Neame Spitfire, West Berkshire Dr. Hexter's Healer, Whitbread Pale Ale, Young's Ram Rod", - "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 50 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 18 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.6 - }, - "maximum": { - "unit": "%", - "value": 6.2 - } - } - }, - { - "name": "British Golden Ale", - "category": "Pale Commonwealth Beer", - "category_number": 12, - "category_id": "12", - "style_id": "12A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Hop aroma is moderately low to moderately high, and can use any variety of hops – floral, herbal, or earthy English hops and citrusy American hops are most common. Frequently a single hop varietal will be showcased. Little to no malt aroma; no caramel. Medium-low to low fruity aroma from the hops rather than esters. Little to no diacetyl.", - "appearance": "Straw to golden in color. Good to brilliant clarity. Low to moderate white head. A low head is acceptable when carbonation is also low.", - "flavor": "Medium to medium-high bitterness. Hop flavor is moderate to moderately high of any hop variety, although citrus flavors are increasingly common. Medium-low to low malt character, generally bready with perhaps a little biscuity flavor. Caramel flavors are typically absent. Little to no diacetyl. Hop bitterness and flavor should be pronounced. Moderately-low to low esters. Medium-dry to dry finish. Bitterness increases with alcohol level, but is always balanced.", - "mouthfeel": "Light to medium body. Low to moderate carbonation on draught, although bottled commercial versions will be higher. Stronger versions may have a slight alcohol warmth, but this character should not be too high.", - "comments": "Well-hopped, quenching beer with an emphasis on showcasing hops. Served colder than traditional bitters, this style was originally positioned as a refreshing summer beer, but is now often brewed year-round. Although early on the beers were brewed with English hops, increasingly American citrus-flavored hops are used. Golden Ales are also called Golden Bitters, Summer Ales, or British Blonde Ales. Can be found in cask, keg, and bottle.", - "profile": "Hop aroma is moderately low to moderately high, and can use any variety of hops – floral, herbal, or earthy English hops and citrusy American hops are most common. Frequently a single hop varietal will be showcased. Little to no malt aroma; no caramel. Medium-low to low fruity aroma from the hops rather than esters. Little to no diacetyl. Straw to golden in color. Good to brilliant clarity. Low to moderate white head. A low head is acceptable when carbonation is also low.Medium to medium-high bitterness. Hop flavor is moderate to moderately high of any hop variety, although citrus flavors are increasingly common. Medium-low to low malt character, generally bready with perhaps a little biscuity flavor. Caramel flavors are typically absent. Little to no diacetyl. Hop bitterness and flavor should be pronounced. Moderately-low to low esters. Medium-dry to dry finish. Bitterness increases with alcohol level, but is always balanced. Light to medium body. Low to moderate carbonation on draught, although bottled commercial versions will be higher. Stronger versions may have a slight alcohol warmth, but this character should not be too high. Well-hopped, quenching beer with an emphasis on showcasing hops. Served colder than traditional bitters, this style was originally positioned as a refreshing summer beer, but is now often brewed year-round. Although early on the beers were brewed with English hops, increasingly American citrus-flavored hops are used. Golden Ales are also called Golden Bitters, Summer Ales, or British Blonde Ales. Can be found in cask, keg, and bottle.", - "overall_impression": "A hop-forward, average-strength to moderately-strong pale bitter. Drinkability and a refreshing quality are critical components of the style.", - "history": "Modern golden ales were developed in England to take on strongly-marketed lagers. While it is difficult to identify the first, Hop Back's Summer Lightning, first brewed in 1986, is thought by many to have got the style off the ground.", - "notes": "A hop-forward, average-strength to moderately-strong pale bitter. Drinkability and a refreshing quality are critical components of the style. Modern golden ales were developed in England to take on strongly-marketed lagers. While it is difficult to identify the first, Hop Back's Summer Lightning, first brewed in 1986, is thought by many to have got the style off the ground.", - "ingredients": "Low-color pale or lager malt acting as a blank canvas for the hop character. May use sugar adjuncts, corn or wheat. English hops frequently used, although citrusy American varietals are becoming more common. Somewhat clean-fermenting British yeast.", - "comparison": "More similar to an American Pale Ale than anything else, although it is often lower in alcohol and usually features British ingredients. Has no caramel and fewer esters compared to British bitters and pale ales. Dry as bitters but with less malt character to support the hops, giving a different balance. Often uses (and features) American hops, more so than most other modern British styles.", - "examples": "Crouch Vale Brewers Gold, Fuller's Discovery, Golden Hill Exmoor Gold, Hop Back Summer Lightning, Kelham Island Pale Rider, Morland Old Golden Hen, Oakham JHB", - "tags": "standard-strength, pale-color, top-fermented, british-isles, craft-style, pale-ale-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.038 - }, - "maximum": { - "unit": "sg", - "value": 1.053 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.006 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 45 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.8 - }, - "maximum": { - "unit": "%", - "value": 5 - } - } - }, - { - "name": "Australian Sparkling Ale", - "category": "Pale Commonwealth Beer", - "category_number": 12, - "category_id": "12", - "style_id": "12B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Fairly soft, clean aroma with a balanced mix of esters, hops, malt, and yeast – all moderate to low in intensity. The esters are frequently pears and apples, possibly with a very light touch of banana (optional). The hops are earthy, herbaceous, or might show the characteristic iron-like Pride of Ringwood nose. The malt can range from neutral grainy to moderately sweet to lightly bready; no caramel should be evident. Very fresh examples can have a lightly yeasty, sulfury nose.", - "appearance": "Deep yellow to light amber in color, often medium gold. Tall, frothy, persistent white head with tiny bubbles. Noticeable effervescence due to high carbonation. Brilliant clarity if decanted, but typically poured with yeast to have a cloudy appearance. Not typically cloudy unless yeast roused during the pour.", - "flavor": "Medium to low rounded, grainy to bready malt flavor, initially mild to malty-sweet but a medium to medium-high bitterness rises mid-palate to balance the malt. Caramel flavors typically absent. Highly attenuated, giving a dry finish with lingering bitterness, although the body gives an impression of fullness. Medium to medium-high hop flavor, somewhat earthy and possibly herbal, resinous, peppery, or iron-like but not floral, lasting into aftertaste. Medium-high to medium-low esters, often pears and apples. Banana is optional, but should never dominate. May be lightly minerally or sulfury, especially if yeast is present. Should not be bland.", - "mouthfeel": "High to very high carbonation, giving mouth-filling bubbles and a crisp, spritzy carbonic bite. Medium to medium-full body, tending to the higher side if poured with yeast. Smooth but gassy. Stronger versions may have a light alcohol warmth, but lower alcohol versions will not. Very well-attenuated; should not have any residual sweetness.", - "comments": "Coopers has been making their flagship Sparkling Ale since 1862, although the formulation has changed over the years. Presently the beer will have brilliant clarity if decanted, but publicans often pour most of the beer into a glass then swirl the bottle and dump in all the yeast. In some bars, the bottle is rolled along the bar! When served on draught, the brewery instructs publicans to invert the keg to rouse the yeast. A cloudy appearance for the style seems to be a modern consumer preference. Always naturally carbonated, even in the keg. A present-use ale, best enjoyed fresh.", - "profile": "Fairly soft, clean aroma with a balanced mix of esters, hops, malt, and yeast – all moderate to low in intensity. The esters are frequently pears and apples, possibly with a very light touch of banana (optional). The hops are earthy, herbaceous, or might show the characteristic iron-like Pride of Ringwood nose. The malt can range from neutral grainy to moderately sweet to lightly bready; no caramel should be evident. Very fresh examples can have a lightly yeasty, sulfury nose. Deep yellow to light amber in color, often medium gold. Tall, frothy, persistent white head with tiny bubbles. Noticeable effervescence due to high carbonation. Brilliant clarity if decanted, but typically poured with yeast to have a cloudy appearance. Not typically cloudy unless yeast roused during the pour.Medium to low rounded, grainy to bready malt flavor, initially mild to malty-sweet but a medium to medium-high bitterness rises mid-palate to balance the malt. Caramel flavors typically absent. Highly attenuated, giving a dry finish with lingering bitterness, although the body gives an impression of fullness. Medium to medium-high hop flavor, somewhat earthy and possibly herbal, resinous, peppery, or iron-like but not floral, lasting into aftertaste. Medium-high to medium-low esters, often pears and apples. Banana is optional, but should never dominate. May be lightly minerally or sulfury, especially if yeast is present. Should not be bland. High to very high carbonation, giving mouth-filling bubbles and a crisp, spritzy carbonic bite. Medium to medium-full body, tending to the higher side if poured with yeast. Smooth but gassy. Stronger versions may have a light alcohol warmth, but lower alcohol versions will not. Very well-attenuated; should not have any residual sweetness. Coopers has been making their flagship Sparkling Ale since 1862, although the formulation has changed over the years. Presently the beer will have brilliant clarity if decanted, but publicans often pour most of the beer into a glass then swirl the bottle and dump in all the yeast. In some bars, the bottle is rolled along the bar! When served on draught, the brewery instructs publicans to invert the keg to rouse the yeast. A cloudy appearance for the style seems to be a modern consumer preference. Always naturally carbonated, even in the keg. A present-use ale, best enjoyed fresh.", - "overall_impression": "Smooth and balanced, all components merge together with similar intensities. Moderate flavors showcasing Australian ingredients. Large flavor dimension. Very drinkable, suited to a hot climate. Relies on yeast character.", - "history": "Brewing records show that the majority of Australian beer brewed in the 19th century was draught XXX (Mild) and porter. Ale in bottle was originally developed to compete with imported bottled pale ales from British breweries, such as Bass and Wm Younger' Monk. By the early 20th century, bottled pale ale went out of fashion and \"lighter\" lager beers were in vogue. Many Australian Sparkling and Pale Ales were labeled as ales, but were actually bottom-fermented lagers with very similar grists to the ales that they replaced. Coopers of Adelaide, South Australia is the only surviving brewer producing the Sparkling Ale style.", - "notes": "Smooth and balanced, all components merge together with similar intensities. Moderate flavors showcasing Australian ingredients. Large flavor dimension. Very drinkable, suited to a hot climate. Relies on yeast character. Brewing records show that the majority of Australian beer brewed in the 19th century was draught XXX (Mild) and porter. Ale in bottle was originally developed to compete with imported bottled pale ales from British breweries, such as Bass and Wm Younger' Monk. By the early 20th century, bottled pale ale went out of fashion and \"lighter\" lager beers were in vogue. Many Australian Sparkling and Pale Ales were labeled as ales, but were actually bottom-fermented lagers with very similar grists to the ales that they replaced. Coopers of Adelaide, South Australia is the only surviving brewer producing the Sparkling Ale style.", - "ingredients": "Lightly kilned Australian 2-row pale malt, lager varieties may be used. Small amounts of crystal malt for color adjustment only. Modern examples use no adjuncts, cane sugar for priming only. Historical examples using 45% 2 row, 30% higher protein malt (6 row) would use around 25% sugar to dilute the nitrogen content. Traditionally used Australian hops, Cluster, and Goldings until replaced from mid-1960s by Pride of Ringwood. Highly attenuative Burton-type yeast (Australian-type strain typical). Variable water profile, typically with low carbonate and moderate sulfate.", - "comparison": "Superficially similar to English Pale Ales, although much more highly carbonated, with less caramel, less late hops, and showcasing the signature yeast strain and hop variety. More bitter than IBUs might suggest due to high attenuation, low final gravity, and somewhat coarse hops.", - "examples": "Coopers Original Pale Ale, Coopers Sparkling Ale", - "tags": "standard-strength, pale-color, top-fermented, pacific, traditional-style, pale-ale-family, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.038 - }, - "maximum": { - "unit": "sg", - "value": 1.05 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.004 - }, - "maximum": { - "unit": "sg", - "value": 1.006 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 4 - }, - "maximum": { - "unit": "SRM", - "value": 7 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "English IPA", - "category": "Pale Commonwealth Beer", - "category_number": 12, - "category_id": "12", - "style_id": "12C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "A moderate to moderately-high hop aroma of floral, spicy-peppery or citrus-orange in nature is typical. A slightly grassy dry-hop aroma is acceptable, but not required. A moderately-low caramel-like or toasty malt presence is optional. Low to moderate fruitiness is acceptable. Some versions may have a sulfury note, although this character is not mandatory.", - "appearance": "Color ranges from golden to deep amber, but most are fairly pale. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Moderate-sized, persistent head stand with off-white color.", - "flavor": "Hop flavor is medium to high, with a moderate to assertive hop bitterness. The hop flavor should be similar to the aroma (floral, spicy-peppery, citrus-orange, and/or slightly grassy). Malt flavor should be medium-low to medium, and be somewhat bready, optionally with light to medium-light biscuit-like, toasty, toffee-like and/or caramelly aspects. Medium-low to medium fruitiness. Finish is medium-dry to very dry, and the bitterness may linger into the aftertaste but should not be harsh. The balance is toward the hops, but the malt should still be noticeable in support. If high sulfate water is used, a distinctively minerally, dry finish, some sulfur flavor, and a lingering bitterness are usually present. Some clean alcohol flavor can be noted in stronger versions. Oak is inappropriate in this style.", - "mouthfeel": "Smooth, medium-light to medium-bodied mouthfeel without hop-derived astringency, although moderate to medium-high carbonation can combine to render an overall dry sensation despite a supportive malt presence. A low, smooth alcohol warming can and should be sensed in stronger (but not all) versions.", - "comments": "The attributes of IPA that were important to its arrival in good condition in India were that it was very well-attenuated, and heavily hopped. Simply because this is how IPA was shipped, doesn't mean that other beers such as Porter weren't also sent to India, that IPA was invented to be sent to India, that IPA was more heavily hopped than other keeping beers, or that the alcohol level was unusual for the time. Many modern examples labeled IPA are quite weak in strength. According to CAMRA, \"so-called IPAs with strengths of around 3.5% are not true to style.\" English beer historian Martyn Cornell has commented that beers like this are \"not really distinguishable from an ordinary bitter.\" So we choose to agree with these sources for our guidelines rather than what some modern British breweries are calling an IPA; just be aware of these two main types of IPAs in the British market today.", - "profile": "A moderate to moderately-high hop aroma of floral, spicy-peppery or citrus-orange in nature is typical. A slightly grassy dry-hop aroma is acceptable, but not required. A moderately-low caramel-like or toasty malt presence is optional. Low to moderate fruitiness is acceptable. Some versions may have a sulfury note, although this character is not mandatory. Color ranges from golden to deep amber, but most are fairly pale. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Moderate-sized, persistent head stand with off-white color.Hop flavor is medium to high, with a moderate to assertive hop bitterness. The hop flavor should be similar to the aroma (floral, spicy-peppery, citrus-orange, and/or slightly grassy). Malt flavor should be medium-low to medium, and be somewhat bready, optionally with light to medium-light biscuit-like, toasty, toffee-like and/or caramelly aspects. Medium-low to medium fruitiness. Finish is medium-dry to very dry, and the bitterness may linger into the aftertaste but should not be harsh. The balance is toward the hops, but the malt should still be noticeable in support. If high sulfate water is used, a distinctively minerally, dry finish, some sulfur flavor, and a lingering bitterness are usually present. Some clean alcohol flavor can be noted in stronger versions. Oak is inappropriate in this style. Smooth, medium-light to medium-bodied mouthfeel without hop-derived astringency, although moderate to medium-high carbonation can combine to render an overall dry sensation despite a supportive malt presence. A low, smooth alcohol warming can and should be sensed in stronger (but not all) versions. The attributes of IPA that were important to its arrival in good condition in India were that it was very well-attenuated, and heavily hopped. Simply because this is how IPA was shipped, doesn't mean that other beers such as Porter weren't also sent to India, that IPA was invented to be sent to India, that IPA was more heavily hopped than other keeping beers, or that the alcohol level was unusual for the time. Many modern examples labeled IPA are quite weak in strength. According to CAMRA, \"so-called IPAs with strengths of around 3.5% are not true to style.\" English beer historian Martyn Cornell has commented that beers like this are \"not really distinguishable from an ordinary bitter.\" So we choose to agree with these sources for our guidelines rather than what some modern British breweries are calling an IPA; just be aware of these two main types of IPAs in the British market today.", - "overall_impression": "A hoppy, moderately-strong, very well-attenuated pale British ale with a dry finish and a hoppy aroma and flavor. Classic British ingredients provide the best flavor profile.", - "history": "Accounts of its origins vary, but most agree that what became later known as IPA was pale ale prepared for shipment to India in the late 1700s and early 1800s. George Hodgson of the Bow Brewery became well-known as an exporter of IPA during the early 1800s, and is the first name frequently mentioned with its popularity. As with all English beers with a long history, the popularity and formulation of the product changed over time. Burton breweries with their high-sulfate water were able to successfully brew IPA and began their domination of this market by the 1830s, around the time the name India Pale Ale was first used. Strength and popularity declined over time, and the style virtually disappeared in the second half of the 20th century. The name was often used to describe pale ales and bitters, not anything special (a trend that continues in some modern British examples). The style underwent a craft beer rediscovery in the 1980s, and is what is described in these guidelines. Modern examples are inspired by classic versions, but shouldn't be assumed to have an unbroken lineage with the exact same profile. White Shield is probably the example with the longest lineage, tracing to the strong Burton IPAs of old and first brewed in 1829.", - "notes": "A hoppy, moderately-strong, very well-attenuated pale British ale with a dry finish and a hoppy aroma and flavor. Classic British ingredients provide the best flavor profile. Accounts of its origins vary, but most agree that what became later known as IPA was pale ale prepared for shipment to India in the late 1700s and early 1800s. George Hodgson of the Bow Brewery became well-known as an exporter of IPA during the early 1800s, and is the first name frequently mentioned with its popularity. As with all English beers with a long history, the popularity and formulation of the product changed over time. Burton breweries with their high-sulfate water were able to successfully brew IPA and began their domination of this market by the 1830s, around the time the name India Pale Ale was first used. Strength and popularity declined over time, and the style virtually disappeared in the second half of the 20th century. The name was often used to describe pale ales and bitters, not anything special (a trend that continues in some modern British examples). The style underwent a craft beer rediscovery in the 1980s, and is what is described in these guidelines. Modern examples are inspired by classic versions, but shouldn't be assumed to have an unbroken lineage with the exact same profile. White Shield is probably the example with the longest lineage, tracing to the strong Burton IPAs of old and first brewed in 1829.", - "ingredients": "Pale ale malt. English hops are traditional, particularly as finishing hops. Attenuative British ale yeast. Refined sugar may be used in some versions. Some versions may show a sulfate character from Burton-type water, but this is not essential to the style.", - "comparison": "Generally will have more finish hops and less fruitiness and/or caramel than British pale ales and bitters. Has less hop intensity and a more pronounced malt flavor than typical American versions.", - "examples": "Freeminer Trafalgar IPA, Fuller's Bengal Lancer IPA, Meantime India Pale Ale, Ridgeway IPA, Summit True Brit IPA, Thornbridge Jaipur, Worthington White Shield", - "tags": "high-strength, pale-color, top-fermented, british-isles, traditional-style, ipa-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 40 - }, - "maximum": { - "unit": "IBUs", - "value": 60 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 7.5 - } - } - }, - { - "name": "Dark Mild", - "category": "Brown British Beer", - "category_number": 13, - "category_id": "13", - "style_id": "13A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to moderate malt aroma, and may have some fruitiness. The malt expression can take on a wide range of character, which can include caramel, toffee, grainy, toasted, nutty, chocolate, or lightly roasted. Little to no hop aroma, earthy or floral if present. Very low to no diacetyl.", - "appearance": "Copper to dark brown or mahogany color. A few paler examples (medium amber to light brown) exist. Generally clear, although is traditionally unfiltered. Low to moderate off-white to tan head; retention may be poor.", - "flavor": "Generally a malty beer, although may have a very wide range of malt- and yeast-based flavors (e.g., malty, sweet, caramel, toffee, toast, nutty, chocolate, coffee, roast, fruit, licorice, plum, raisin). Can finish sweet to dry. Versions with darker malts may have a dry, roasted finish. Low to moderate bitterness, enough to provide some balance but not enough to overpower the malt. Fruity esters moderate to none. Diacetyl and hop flavor low to none.", - "mouthfeel": "Light to medium body. Generally low to medium-low carbonation. Roast-based versions may have a light astringency. Sweeter versions may seem to have a rather full mouthfeel for the gravity.", - "comments": "Most are low-gravity session beers around 3.2%, although some versions may be made in the stronger (4%+) range for export, festivals, seasonal and/or special occasions. Generally served on cask; session-strength bottled versions don't often travel well. A wide range of interpretations are possible. Pale versions exist, but these are even more rare than dark milds; these guidelines only describe the modern dark version.", - "profile": "Low to moderate malt aroma, and may have some fruitiness. The malt expression can take on a wide range of character, which can include caramel, toffee, grainy, toasted, nutty, chocolate, or lightly roasted. Little to no hop aroma, earthy or floral if present. Very low to no diacetyl. Copper to dark brown or mahogany color. A few paler examples (medium amber to light brown) exist. Generally clear, although is traditionally unfiltered. Low to moderate off-white to tan head; retention may be poor.Generally a malty beer, although may have a very wide range of malt- and yeast-based flavors (e.g., malty, sweet, caramel, toffee, toast, nutty, chocolate, coffee, roast, fruit, licorice, plum, raisin). Can finish sweet to dry. Versions with darker malts may have a dry, roasted finish. Low to moderate bitterness, enough to provide some balance but not enough to overpower the malt. Fruity esters moderate to none. Diacetyl and hop flavor low to none. Light to medium body. Generally low to medium-low carbonation. Roast-based versions may have a light astringency. Sweeter versions may seem to have a rather full mouthfeel for the gravity. Most are low-gravity session beers around 3.2%, although some versions may be made in the stronger (4%+) range for export, festivals, seasonal and/or special occasions. Generally served on cask; session-strength bottled versions don't often travel well. A wide range of interpretations are possible. Pale versions exist, but these are even more rare than dark milds; these guidelines only describe the modern dark version.", - "overall_impression": "A dark, low-gravity, malt-focused British session ale readily suited to drinking in quantity. Refreshing, yet flavorful, with a wide range of dark malt or dark sugar expression.", - "history": "Historically, ‘mild' was simply an unaged beer, and could be used as an adjective to distinguish between aged or more highly hopped keeping beers. Modern milds trace their roots to the weaker X-type ales of the 1800s, although dark milds did not appear until the 20th century. In current usage, the term implies a lower-strength beer with less hop bitterness than bitters. The guidelines describe the modern British version. The term ‘mild' is currently somewhat out of favor with consumers, and many breweries no longer use it. Increasingly rare. There is no historic connection or relationship between Mild and Porter.", - "notes": "A dark, low-gravity, malt-focused British session ale readily suited to drinking in quantity. Refreshing, yet flavorful, with a wide range of dark malt or dark sugar expression. Historically, ‘mild' was simply an unaged beer, and could be used as an adjective to distinguish between aged or more highly hopped keeping beers. Modern milds trace their roots to the weaker X-type ales of the 1800s, although dark milds did not appear until the 20th century. In current usage, the term implies a lower-strength beer with less hop bitterness than bitters. The guidelines describe the modern British version. The term ‘mild' is currently somewhat out of favor with consumers, and many breweries no longer use it. Increasingly rare. There is no historic connection or relationship between Mild and Porter.", - "ingredients": "Pale British base malts (often fairly dextrinous), crystal malt, dark malts or dark sugar adjuncts, may also include adjuncts such as flaked maize, and may be colored with brewer's caramel. Characterful British ale yeast. Any type of hops, since their character is muted and rarely is noticeable.", - "comparison": "Some versions may seem like lower-gravity modern English porters. Much less sweet than London Brown Ale.", - "examples": "Banks's Mild, Cain's Dark Mild, Highgate Dark Mild, Brain's Dark, Moorhouse Black Cat, Rudgate Ruby Mild, Theakston Traditional Mild", - "tags": "session-strength, dark-color, top-fermented, british-isles, traditional-style, brown-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.03 - }, - "maximum": { - "unit": "sg", - "value": 1.038 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 10 - }, - "maximum": { - "unit": "IBUs", - "value": 25 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 12 - }, - "maximum": { - "unit": "SRM", - "value": 25 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3 - }, - "maximum": { - "unit": "%", - "value": 3.8 - } - } - }, - { - "name": "British Brown Ale", - "category": "Brown British Beer", - "category_number": 13, - "category_id": "13", - "style_id": "13B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Light, sweet malt aroma with toffee, nutty, or light chocolate notes, and a light to heavy caramel quality. A light but appealing floral or earthy hop aroma may also be noticed. A light fruity aroma may be evident, but should not dominate.", - "appearance": "Dark amber to dark reddish-brown color. Clear. Low to moderate off-white to light tan head.", - "flavor": "Gentle to moderate malt sweetness, with a light to heavy caramel character and a medium to dry finish. Malt may also have a nutty, toasted, biscuity, toffee, or light chocolate character. Medium to medium-low bitterness. Malt-hop balance ranges from even to malt-focused; hop flavor low to none (floral or earthy qualities). Low to moderate fruity esters can be present.", - "mouthfeel": "Medium-light to medium body. Medium to medium-high carbonation.", - "comments": "A wide-ranging category with different interpretations possible, ranging from lighter-colored to hoppy to deeper, darker, and caramel-focused; however, none of the versions have strongly roasted flavors. A stronger Double Brown Ale was more popular in the past, but is very hard to find now. While London Brown Ales are marketed using the name Brown Ale, we list those as a different judging style due to the significant difference in balance (especially sweetness) and alcohol strength; that doesn't mean that they aren't in the same family, though.", - "profile": "Light, sweet malt aroma with toffee, nutty, or light chocolate notes, and a light to heavy caramel quality. A light but appealing floral or earthy hop aroma may also be noticed. A light fruity aroma may be evident, but should not dominate. Dark amber to dark reddish-brown color. Clear. Low to moderate off-white to light tan head.Gentle to moderate malt sweetness, with a light to heavy caramel character and a medium to dry finish. Malt may also have a nutty, toasted, biscuity, toffee, or light chocolate character. Medium to medium-low bitterness. Malt-hop balance ranges from even to malt-focused; hop flavor low to none (floral or earthy qualities). Low to moderate fruity esters can be present. Medium-light to medium body. Medium to medium-high carbonation. A wide-ranging category with different interpretations possible, ranging from lighter-colored to hoppy to deeper, darker, and caramel-focused; however, none of the versions have strongly roasted flavors. A stronger Double Brown Ale was more popular in the past, but is very hard to find now. While London Brown Ales are marketed using the name Brown Ale, we list those as a different judging style due to the significant difference in balance (especially sweetness) and alcohol strength; that doesn't mean that they aren't in the same family, though.", - "overall_impression": "A malty, brown caramel-centric British ale without the roasted flavors of a Porter.", - "history": "Brown ale has a long history in Great Britain, although several different types of products used that name at various times. Modern brown ale is a 20th century creation as a bottled product; it is not the same as historical products of the same name. A wide range of gravities were brewed, but modern brown ales are generally of the stronger (by current UK standards) interpretation. This style is based on the modern stronger British brown ales, not historical versions or the sweeter London Brown Ale. Predominantly but not exclusively a bottled product currently.", - "notes": "A malty, brown caramel-centric British ale without the roasted flavors of a Porter. Brown ale has a long history in Great Britain, although several different types of products used that name at various times. Modern brown ale is a 20th century creation as a bottled product; it is not the same as historical products of the same name. A wide range of gravities were brewed, but modern brown ales are generally of the stronger (by current UK standards) interpretation. This style is based on the modern stronger British brown ales, not historical versions or the sweeter London Brown Ale. Predominantly but not exclusively a bottled product currently.", - "ingredients": "British mild ale or pale ale malt base with caramel malts. May also have small amounts darker malts (e.g., chocolate) to provide color and the nutty character. English hop varieties are most authentic.", - "comparison": "More malty balance than British Bitters, with more malt flavors from darker grains. Stronger than a Dark Mild. Less roast than an English Porter. Stronger and much less sweet than London Brown Ale.", - "examples": "Maxim Double Maxim, Newcastle Brown Ale, Riggwelter Yorkshire Ale, Samuel Smith's Nut Brown Ale, Wychwood Hobgoblin", - "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, brown-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.052 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 12 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.2 - }, - "maximum": { - "unit": "%", - "value": 5.4 - } - } - }, - { - "name": "English Porter", - "category": "Brown British Beer", - "category_number": 13, - "category_id": "13", - "style_id": "13C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate to moderately low bready, biscuity, and toasty malt aroma with mild roastiness, and may have a chocolate quality. May also show some non-roasted malt character in support (caramelly, nutty, toffee-like and/or sweet). May have up to a moderate level of floral or earthy hops. Fruity esters moderate to none. Diacetyl low to none.", - "appearance": "Light brown to dark brown in color, often with ruby highlights when held up to light. Good clarity, although may approach being opaque. Moderate off-white to light tan head with good to fair retention.", - "flavor": "Moderate bready, biscuity, and toasty malt flavor includes a mild to moderate roastiness (frequently with a chocolate character) and often a significant caramel, nutty, and/or toffee character. May have other secondary flavors such as coffee, licorice, biscuits or toast in support. Should not have a significant burnt or harsh roasted flavor, although small amounts may contribute a bitter chocolate complexity. Earthy or floral hop flavor moderate to none. Medium-low to medium hop bitterness will vary the balance from slightly malty to slightly bitter. Usually fairly well-attenuated, although can be somewhat sweet. Diacetyl moderately-low to none. Moderate to low fruity esters.", - "mouthfeel": "Medium-light to medium body. Moderately-low to moderately-high carbonation. Light to moderate creamy texture.", - "comments": "This style description describes the modern version of English porter, not every possible variation over time in every region where it existed. Historical re-creations should be entered in the Historical style category, with an appropriate description describing the profile of the beer. Modern craft examples in the UK are bigger and hoppier.", - "profile": "Moderate to moderately low bready, biscuity, and toasty malt aroma with mild roastiness, and may have a chocolate quality. May also show some non-roasted malt character in support (caramelly, nutty, toffee-like and/or sweet). May have up to a moderate level of floral or earthy hops. Fruity esters moderate to none. Diacetyl low to none. Light brown to dark brown in color, often with ruby highlights when held up to light. Good clarity, although may approach being opaque. Moderate off-white to light tan head with good to fair retention.Moderate bready, biscuity, and toasty malt flavor includes a mild to moderate roastiness (frequently with a chocolate character) and often a significant caramel, nutty, and/or toffee character. May have other secondary flavors such as coffee, licorice, biscuits or toast in support. Should not have a significant burnt or harsh roasted flavor, although small amounts may contribute a bitter chocolate complexity. Earthy or floral hop flavor moderate to none. Medium-low to medium hop bitterness will vary the balance from slightly malty to slightly bitter. Usually fairly well-attenuated, although can be somewhat sweet. Diacetyl moderately-low to none. Moderate to low fruity esters. Medium-light to medium body. Moderately-low to moderately-high carbonation. Light to moderate creamy texture. This style description describes the modern version of English porter, not every possible variation over time in every region where it existed. Historical re-creations should be entered in the Historical style category, with an appropriate description describing the profile of the beer. Modern craft examples in the UK are bigger and hoppier.", - "overall_impression": "A moderate-strength brown beer with a restrained roasty character and bitterness. May have a range of roasted flavors, generally without burnt qualities, and often has a chocolate-caramel-malty profile.", - "history": "Originating in London around 300 years ago, porter evolved from earlier sweet, Brown Beer popular at the time. Evolved many times with various technological and ingredient developments and consumer preferences driving these changes. Became a highly-popular, widely-exported style in the 1800s before declining around WWI and disappearing in the 1950s. It was re-introduced in the mid-1970s with the start of the craft beer era. The name is said to have been derived from its popularity with the London working class performing various load-carrying tasks of the day. Parent of various regional interpretations over time, and a predecessor to all stouts (which were originally called \"stout porters\"). There is no historic connection or relationship between Mild and Porter.", - "notes": "A moderate-strength brown beer with a restrained roasty character and bitterness. May have a range of roasted flavors, generally without burnt qualities, and often has a chocolate-caramel-malty profile. Originating in London around 300 years ago, porter evolved from earlier sweet, Brown Beer popular at the time. Evolved many times with various technological and ingredient developments and consumer preferences driving these changes. Became a highly-popular, widely-exported style in the 1800s before declining around WWI and disappearing in the 1950s. It was re-introduced in the mid-1970s with the start of the craft beer era. The name is said to have been derived from its popularity with the London working class performing various load-carrying tasks of the day. Parent of various regional interpretations over time, and a predecessor to all stouts (which were originally called \"stout porters\"). There is no historic connection or relationship between Mild and Porter.", - "ingredients": "Grists vary, but something producing a dark color is always involved. Chocolate or other dark-roasted malts, caramel malt, brewing sugars, and the like are common. London-type porters often use brown malt as a characteristic flavor.", - "comparison": "Differs from an American Porter in that it usually has softer, sweeter and more caramelly flavors, lower gravities, and usually less alcohol; the American Porter will also typically have more of a hop character. More substance and roast than a British Brown Ale. Higher in gravity than a dark mild.", - "examples": "Burton Bridge Burton Porter, Fuller's London Porter, Nethergate Old Growler Porter, RCH Old Slug Porter, Samuel Smith Taddy Porter", - "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, porter-family, malty, roasty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.052 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 20 - }, - "maximum": { - "unit": "SRM", - "value": 30 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4 - }, - "maximum": { - "unit": "%", - "value": 5.4 - } - } - }, - { - "name": "Scottish Light", - "category": "Scottish Ale", - "category_number": 14, - "category_id": "14", - "style_id": "14A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to medium maltiness, often with flavors of toasted breadcrumbs, lady fingers, and English biscuits. Low to medium caramel and low butterscotch is allowable. Light pome fruitiness in best examples. May have low traditional English hop aroma (earthy, floral, orange-citrus, spicy, etc.). Peat smoke is inappropriate.", - "appearance": "Pale copper to very dark brown. Clear. Low to moderate, creamy off-white.", - "flavor": "Entirely malt-focused, with flavors ranging from pale, bready malt with caramel overtones to rich-toasty malt with roasted accents (but never roasty) or a combination thereof. Fruity esters are not required but add depth yet are never high. Hop bitterness to balance the malt. No to low hop flavor is also allowed and should of traditional English character (earthy, floral, orange-citrus, spicy, etc.). Finish ranges from rich and malty to dry and grainy. A subtle butterscotch character is acceptable; however, burnt sugars are not. The malt-hop balance tilts toward malt. Peat smoke is inappropriate.", - "mouthfeel": "Medium-low to medium body. Low to moderate carbonation. Can be relatively rich and creamy to dry and grainy.", - "comments": "Malt-focused ales that gain the vast majority of their character from specialty malts, never the process. Burning malt or wort sugars via ‘kettle caramelization' is not traditional nor is any blatantly ‘butterscotch' character. Most frequently a draught product. Smoke character is inappropriate as any found traditionally would have come from the peat in the source water. Scottish ales with smoke character should be entered as a Classic Style Smoked Beer.", - "profile": "Low to medium maltiness, often with flavors of toasted breadcrumbs, lady fingers, and English biscuits. Low to medium caramel and low butterscotch is allowable. Light pome fruitiness in best examples. May have low traditional English hop aroma (earthy, floral, orange-citrus, spicy, etc.). Peat smoke is inappropriate. Pale copper to very dark brown. Clear. Low to moderate, creamy off-white.Entirely malt-focused, with flavors ranging from pale, bready malt with caramel overtones to rich-toasty malt with roasted accents (but never roasty) or a combination thereof. Fruity esters are not required but add depth yet are never high. Hop bitterness to balance the malt. No to low hop flavor is also allowed and should of traditional English character (earthy, floral, orange-citrus, spicy, etc.). Finish ranges from rich and malty to dry and grainy. A subtle butterscotch character is acceptable; however, burnt sugars are not. The malt-hop balance tilts toward malt. Peat smoke is inappropriate. Medium-low to medium body. Low to moderate carbonation. Can be relatively rich and creamy to dry and grainy. Malt-focused ales that gain the vast majority of their character from specialty malts, never the process. Burning malt or wort sugars via ‘kettle caramelization' is not traditional nor is any blatantly ‘butterscotch' character. Most frequently a draught product. Smoke character is inappropriate as any found traditionally would have come from the peat in the source water. Scottish ales with smoke character should be entered as a Classic Style Smoked Beer.", - "overall_impression": "A malt-focused, generally caramelly beer with perhaps a few esters and occasionally a butterscotch aftertaste. Hops only to balance and support the malt. The malt character can range from dry and grainy to rich, toasty, and caramelly, but is never roasty and especially never has a peat smoke character. Traditionally the darkest of the Scottish ales, sometimes nearly black but lacking any burnt, overtly roasted character.", - "notes": "A malt-focused, generally caramelly beer with perhaps a few esters and occasionally a butterscotch aftertaste. Hops only to balance and support the malt. The malt character can range from dry and grainy to rich, toasty, and caramelly, but is never roasty and especially never has a peat smoke character. Traditionally the darkest of the Scottish ales, sometimes nearly black but lacking any burnt, overtly roasted character.", - "ingredients": "Originally used Scottish pale malt, grits or flaked maize, and brewers caramel for color. Later adapted to use additional ingredients, such as amber and brown malts, crystal and wheat malts, and roasted grains or dark sugars for color but not for the ‘roasty' flavor. Sugar adjuncts are traditional. Clean or slightly fruity yeast. Peat-smoked malt is inauthentic and inappropriate.", - "comparison": "Similar character to a Wee Heavy, but much smaller. Similar in color to a Dark Mild, but a little weaker in strength.", - "examples": "McEwan's 60", - "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.03 - }, - "maximum": { - "unit": "sg", - "value": 1.035 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 10 - }, - "maximum": { - "unit": "IBUs", - "value": 20 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 17 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 2.5 - }, - "maximum": { - "unit": "%", - "value": 3.2 - } - } - }, - { - "name": "Scottish Heavy", - "category": "Scottish Ale", - "category_number": 14, - "category_id": "14", - "style_id": "14B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to medium maltiness, often with flavors of toasted breadcrumbs, lady fingers, and English biscuits. Low to medium caramel and low butterscotch is allowable. Light pome fruitiness in best examples. May have low traditional English hop aroma (earthy, floral, orange-citrus, spicy, etc.). Peat smoke is inappropriate.", - "appearance": "Pale copper to very dark brown. Clear. Low to moderate, creamy off-white.", - "flavor": "Entirely malt-focused, with flavors ranging from pale, bready malt with caramel overtones to rich-toasty malt with roasted accents (but never roasty) or a combination thereof. Fruity esters are not required but add depth yet are never high. Hop bitterness to balance the malt. No to low hop flavor is also allowed and should of traditional English character (earthy, floral, orange-citrus, spicy, etc.). Finish ranges from rich and malty to dry and grainy. A subtle butterscotch character is acceptable; however, burnt sugars are not. The malt-hop balance tilts toward malt. Peat smoke is inappropriate.", - "mouthfeel": "Medium-low to medium body. Low to moderate carbonation. Can be relatively rich and creamy to dry and grainy.", - "comments": "Malt-focused ales that gain the vast majority of their character from specialty malts, never the process. Burning malt or wort sugars via ‘kettle caramelization' is not traditional nor is any blatantly ‘butterscotch' character. Most frequently a draught product. Smoke character is inappropriate as any found traditionally would have come from the peat in the source water. Scottish ales with smoke character should be entered as a Classic Style Smoked Beer.", - "profile": "Low to medium maltiness, often with flavors of toasted breadcrumbs, lady fingers, and English biscuits. Low to medium caramel and low butterscotch is allowable. Light pome fruitiness in best examples. May have low traditional English hop aroma (earthy, floral, orange-citrus, spicy, etc.). Peat smoke is inappropriate. Pale copper to very dark brown. Clear. Low to moderate, creamy off-white.Entirely malt-focused, with flavors ranging from pale, bready malt with caramel overtones to rich-toasty malt with roasted accents (but never roasty) or a combination thereof. Fruity esters are not required but add depth yet are never high. Hop bitterness to balance the malt. No to low hop flavor is also allowed and should of traditional English character (earthy, floral, orange-citrus, spicy, etc.). Finish ranges from rich and malty to dry and grainy. A subtle butterscotch character is acceptable; however, burnt sugars are not. The malt-hop balance tilts toward malt. Peat smoke is inappropriate. Medium-low to medium body. Low to moderate carbonation. Can be relatively rich and creamy to dry and grainy. Malt-focused ales that gain the vast majority of their character from specialty malts, never the process. Burning malt or wort sugars via ‘kettle caramelization' is not traditional nor is any blatantly ‘butterscotch' character. Most frequently a draught product. Smoke character is inappropriate as any found traditionally would have come from the peat in the source water. Scottish ales with smoke character should be entered as a Classic Style Smoked Beer.", - "overall_impression": "A malt-focused, generally caramelly beer with perhaps a few esters and occasionally a butterscotch aftertaste. Hops only to balance and support the malt. The malt character can range from dry and grainy to rich, toasty, and caramelly, but is never roasty and especially never has a peat smoke character.", - "notes": "A malt-focused, generally caramelly beer with perhaps a few esters and occasionally a butterscotch aftertaste. Hops only to balance and support the malt. The malt character can range from dry and grainy to rich, toasty, and caramelly, but is never roasty and especially never has a peat smoke character.", - "ingredients": "Originally used Scottish pale malt, grits or flaked maize, and brewers caramel for color. Later adapted to use additional ingredients, such as amber and brown malts, crystal and wheat malts, and roasted grains or dark sugars for color but not for the ‘roasty' flavor. Sugar adjuncts are traditional. Clean or slightly fruity yeast. Peat-smoked malt is inauthentic and inappropriate.", - "comparison": "Similar character to a Wee Heavy, but much smaller.", - "examples": "Broughton Greenmantle Ale, Caledonia Smooth, McEwan's 70, Orkney Raven Ale, Tennent's Special Ale", - "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.035 - }, - "maximum": { - "unit": "sg", - "value": 1.04 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 10 - }, - "maximum": { - "unit": "IBUs", - "value": 20 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 13 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.2 - }, - "maximum": { - "unit": "%", - "value": 3.9 - } - } - }, - { - "name": "Scottish Export", - "category": "Scottish Ale", - "category_number": 14, - "category_id": "14", - "style_id": "14C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to medium maltiness, often with flavors of toasted breadcrumbs, lady fingers, and English biscuits. Low to medium caramel and low butterscotch is allowable. Light pome fruitiness in best examples. May have low traditional English hop aroma (earthy, floral, orange-citrus, spicy, etc.). Peat smoke is inappropriate.", - "appearance": "Pale copper to very dark brown. Clear. Low to moderate, creamy off-white.", - "flavor": "Entirely malt-focused, with flavors ranging from pale, bready malt with caramel overtones to rich-toasty malt with roasted accents (but never roasty) or a combination thereof. Fruity esters are not required but add depth yet are never high. Hop bitterness to balance the malt. No to low hop flavor is also allowed and should of traditional English character (earthy, floral, orange-citrus, spicy, etc.). Finish ranges from rich and malty to dry and grainy. A subtle butterscotch character is acceptable; however, burnt sugars are not. The malt-hop balance tilts toward malt. Peat smoke is inappropriate.", - "mouthfeel": "Medium-low to medium body. Low to moderate carbonation. Can be relatively rich and creamy to dry and grainy.", - "comments": "Malt-focused ales that gain the vast majority of their character from specialty malts, never the process. Burning malt or wort sugars via ‘kettle caramelization' is not traditional nor is any blatantly ‘butterscotch' character. Most frequently a draught product. Smoke character is inappropriate as any found traditionally would have come from the peat in the source water. Scottish ales with smoke character should be entered as a Classic Style Smoked Beer.", - "profile": "Low to medium maltiness, often with flavors of toasted breadcrumbs, lady fingers, and English biscuits. Low to medium caramel and low butterscotch is allowable. Light pome fruitiness in best examples. May have low traditional English hop aroma (earthy, floral, orange-citrus, spicy, etc.). Peat smoke is inappropriate. Pale copper to very dark brown. Clear. Low to moderate, creamy off-white.Entirely malt-focused, with flavors ranging from pale, bready malt with caramel overtones to rich-toasty malt with roasted accents (but never roasty) or a combination thereof. Fruity esters are not required but add depth yet are never high. Hop bitterness to balance the malt. No to low hop flavor is also allowed and should of traditional English character (earthy, floral, orange-citrus, spicy, etc.). Finish ranges from rich and malty to dry and grainy. A subtle butterscotch character is acceptable; however, burnt sugars are not. The malt-hop balance tilts toward malt. Peat smoke is inappropriate. Medium-low to medium body. Low to moderate carbonation. Can be relatively rich and creamy to dry and grainy. Malt-focused ales that gain the vast majority of their character from specialty malts, never the process. Burning malt or wort sugars via ‘kettle caramelization' is not traditional nor is any blatantly ‘butterscotch' character. Most frequently a draught product. Smoke character is inappropriate as any found traditionally would have come from the peat in the source water. Scottish ales with smoke character should be entered as a Classic Style Smoked Beer.", - "overall_impression": "A malt-focused, generally caramelly beer with perhaps a few esters and occasionally a butterscotch aftertaste. Hops only to balance and support the malt. The malt character can range from dry and grainy to rich, toasty, and caramelly, but is never roasty and especially never has a peat smoke character.", - "notes": "A malt-focused, generally caramelly beer with perhaps a few esters and occasionally a butterscotch aftertaste. Hops only to balance and support the malt. The malt character can range from dry and grainy to rich, toasty, and caramelly, but is never roasty and especially never has a peat smoke character.", - "ingredients": "Originally used Scottish pale malt, grits or flaked maize, and brewers caramel for color. Later adapted to use additional ingredients, such as amber and brown malts, crystal and wheat malts, and roasted grains or dark sugars for color but not for the ‘roasty' flavor. Sugar adjuncts are traditional. Clean or slightly fruity yeast. Peat-smoked malt is inauthentic and inappropriate.", - "comparison": "Similar character to a Wee Heavy, but much smaller.", - "examples": "Belhaven Scottish Ale, Broughton Exciseman's Ale, Orkney Dark Island, Pelican MacPelican's Scottish Style Ale, Weasel Boy Plaid Ferret Scottish Ale", - "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 13 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.9 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "Irish Red Ale", - "category": "Irish Beer", - "category_number": 15, - "category_id": "15", - "style_id": "15A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to moderate malt aroma, either neutral-grainy or with a lightly caramelly-toasty-toffee character. May have a very light buttery character (although this is not required). Hop aroma is low earthy or floral to none (usually not present). Quite clean.", - "appearance": "Medium amber to medium reddish-copper color. Clear. Low off-white to tan colored head, average persistence.", - "flavor": "Moderate to very little caramel malt flavor and sweetness, rarely with a light buttered toast or toffee-like quality. The palate often is fairly neutral and grainy, or can take on a lightly toasty or biscuity note as it finishes with a light taste of roasted grain, which lends a characteristic dryness to the finish. A light earthy or floral hop flavor is optional. Medium to medium-low hop bitterness. Medium-dry to dry finish. Clean and smooth. Little to no esters. The balance tends to be slightly towards the malt, although light use of roasted grains may increase the perception of bitterness slightly.", - "mouthfeel": "Medium-light to medium body, although examples containing low levels of diacetyl may have a slightly slick mouthfeel (not required). Moderate carbonation. Smooth. Moderately attenuated.", - "comments": "Several variations exist within the style, which causes the guidelines to be somewhat broad to accommodate them. Traditional Irish examples are relatively low in hops, are grainy with a slight roast dryness in the finish, fairly neutral in general. Modern export Irish examples are more caramelly and sweet, and might have more esters. American craft versions are often more alcoholic versions of the Irish export examples. An emerging Irish craft beer scene is exploring more bitter versions of traditional examples. Finally, there are some commercial examples that sound Irish but are essentially International Amber Lagers, with sweetish palates and little bitterness. These guidelines are written around the traditional Irish examples, with slight extensions for export Irish versions and modern craft Irish versions.", - "profile": "Low to moderate malt aroma, either neutral-grainy or with a lightly caramelly-toasty-toffee character. May have a very light buttery character (although this is not required). Hop aroma is low earthy or floral to none (usually not present). Quite clean. Medium amber to medium reddish-copper color. Clear. Low off-white to tan colored head, average persistence.Moderate to very little caramel malt flavor and sweetness, rarely with a light buttered toast or toffee-like quality. The palate often is fairly neutral and grainy, or can take on a lightly toasty or biscuity note as it finishes with a light taste of roasted grain, which lends a characteristic dryness to the finish. A light earthy or floral hop flavor is optional. Medium to medium-low hop bitterness. Medium-dry to dry finish. Clean and smooth. Little to no esters. The balance tends to be slightly towards the malt, although light use of roasted grains may increase the perception of bitterness slightly. Medium-light to medium body, although examples containing low levels of diacetyl may have a slightly slick mouthfeel (not required). Moderate carbonation. Smooth. Moderately attenuated. Several variations exist within the style, which causes the guidelines to be somewhat broad to accommodate them. Traditional Irish examples are relatively low in hops, are grainy with a slight roast dryness in the finish, fairly neutral in general. Modern export Irish examples are more caramelly and sweet, and might have more esters. American craft versions are often more alcoholic versions of the Irish export examples. An emerging Irish craft beer scene is exploring more bitter versions of traditional examples. Finally, there are some commercial examples that sound Irish but are essentially International Amber Lagers, with sweetish palates and little bitterness. These guidelines are written around the traditional Irish examples, with slight extensions for export Irish versions and modern craft Irish versions.", - "overall_impression": "An easy-drinking pint, often with subtle flavors. Slightly malty in the balance sometimes with an initial soft toffee/caramel sweetness, a slightly grainy-biscuity palate, and a touch of roasted dryness in the finish. Some versions can emphasize the caramel and sweetness more, while others will favor the grainy palate and roasted dryness.", - "history": "While Ireland has a long ale brewing heritage, the modern Irish Red Ale style is essentially an adaptation or interpretation of the popular English Bitter style with less hopping and a bit of roast to add color and dryness. Rediscovered as a craft beer style in Ireland, today it is an essential part of most brewery lineups, along with a pale ale and a stout.", - "notes": "An easy-drinking pint, often with subtle flavors. Slightly malty in the balance sometimes with an initial soft toffee/caramel sweetness, a slightly grainy-biscuity palate, and a touch of roasted dryness in the finish. Some versions can emphasize the caramel and sweetness more, while others will favor the grainy palate and roasted dryness. While Ireland has a long ale brewing heritage, the modern Irish Red Ale style is essentially an adaptation or interpretation of the popular English Bitter style with less hopping and a bit of roast to add color and dryness. Rediscovered as a craft beer style in Ireland, today it is an essential part of most brewery lineups, along with a pale ale and a stout.", - "ingredients": "Generally has a bit of roasted barley or black malt to provide reddish color and dry roasted finish. Pale base malt. Caramel malts were historically imported and more expensive, so not all brewers would use them.", - "comparison": "A less-bitter and hoppy Irish equivalent to an English Bitter, with a dryish finish due to roasted barley. More attenuated with less caramel flavor and body than equivalent-strength Scottish ales.", - "examples": "Caffrey's Irish Ale, Franciscan Well Rebel Red, Kilkenny Irish Beer, O'Hara's Irish Red Ale, Porterhouse Red Ale, Samuel Adams Irish Red, Smithwick's Irish Ale", - "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.036 - }, - "maximum": { - "unit": "sg", - "value": 1.046 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 28 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 9 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.8 - }, - "maximum": { - "unit": "%", - "value": 5 - } - } - }, - { - "name": "Irish Stout", - "category": "Irish Beer", - "category_number": 15, - "category_id": "15", - "style_id": "15B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate coffee-like aroma typically dominates; may have slight dark chocolate, cocoa and/or roasted grain secondary notes. Esters medium-low to none. Hop aroma low to none, may be lightly earthy or floral, but is typically absent.", - "appearance": "Jet black to very deep brown with garnet highlights in color. According to Guinness, \"Guinness beer may appear black, but it is actually a very dark shade of ruby.\" Opaque. A thick, creamy, long-lasting, tan- to brown-colored head is characteristic when served on nitro, but don't expect the tight, creamy head on a bottled beer.", - "flavor": "Moderate roasted grain or malt flavor with a medium to high hop bitterness. The finish can be dry and coffee-like to moderately balanced with a touch of caramel or malty sweetness. Typically has coffee-like flavors, but also may have a bittersweet or unsweetened chocolate character in the palate, lasting into the finish. Balancing factors may include some creaminess, medium-low to no fruitiness, and medium to no hop flavor (often earthy). The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers.", - "mouthfeel": "Medium-light to medium-full body, with a somewhat creamy character (particularly when served with a nitro pour). Low to moderate carbonation. For the high hop bitterness and significant proportion of dark grains present, this beer is remarkably smooth. May have a light astringency from the roasted grains, although harshness is undesirable.", - "comments": "When a brewery offered a stout and a porter, the stout was always the stronger beer (it was originally called a \"Stout Porter\"). Modern versions are brewed from a lower OG and no longer necessarily reflect a higher strength than porters. This is typically a draught product today; bottled versions are typically brewed from a higher OG and are usually called Extra Stouts. Regional differences exist in Ireland, similar to variability in English Bitters. Dublin-type stouts use roasted barley, are more bitter, and are drier. Cork-type stouts are sweeter, less bitter, and have flavors from chocolate and specialty malts. Commercial examples of this style are almost always associated with a nitro pour. Do not expect traditional bottle-conditioned beers to have the full, creamy texture or very long-lasting head traditionally associated with nitrogen dispense.", - "profile": "Moderate coffee-like aroma typically dominates; may have slight dark chocolate, cocoa and/or roasted grain secondary notes. Esters medium-low to none. Hop aroma low to none, may be lightly earthy or floral, but is typically absent. Jet black to very deep brown with garnet highlights in color. According to Guinness, \"Guinness beer may appear black, but it is actually a very dark shade of ruby.\" Opaque. A thick, creamy, long-lasting, tan- to brown-colored head is characteristic when served on nitro, but don't expect the tight, creamy head on a bottled beer.Moderate roasted grain or malt flavor with a medium to high hop bitterness. The finish can be dry and coffee-like to moderately balanced with a touch of caramel or malty sweetness. Typically has coffee-like flavors, but also may have a bittersweet or unsweetened chocolate character in the palate, lasting into the finish. Balancing factors may include some creaminess, medium-low to no fruitiness, and medium to no hop flavor (often earthy). The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers. Medium-light to medium-full body, with a somewhat creamy character (particularly when served with a nitro pour). Low to moderate carbonation. For the high hop bitterness and significant proportion of dark grains present, this beer is remarkably smooth. May have a light astringency from the roasted grains, although harshness is undesirable. When a brewery offered a stout and a porter, the stout was always the stronger beer (it was originally called a \"Stout Porter\"). Modern versions are brewed from a lower OG and no longer necessarily reflect a higher strength than porters. This is typically a draught product today; bottled versions are typically brewed from a higher OG and are usually called Extra Stouts. Regional differences exist in Ireland, similar to variability in English Bitters. Dublin-type stouts use roasted barley, are more bitter, and are drier. Cork-type stouts are sweeter, less bitter, and have flavors from chocolate and specialty malts. Commercial examples of this style are almost always associated with a nitro pour. Do not expect traditional bottle-conditioned beers to have the full, creamy texture or very long-lasting head traditionally associated with nitrogen dispense.", - "overall_impression": "A black beer with a pronounced roasted flavor, often similar to coffee. The balance can range from fairly even to quite bitter, with the more balanced versions having a little malty sweetness and the bitter versions being quite dry. Draught versions typically are creamy from a nitro pour, but bottled versions will not have this dispense-derived character. The roasted flavor can be dry and coffee-like to somewhat chocolaty.", - "history": "The style evolved from attempts to capitalize on the success of London porters, but originally reflected a fuller, creamier, more \"stout\" body and strength. Guinness began brewing only porter in 1799, and a \"stouter kind of porter\" around 1810. Irish stout diverged from London single stout (or simply porter) in the late 1800s, with an emphasis on darker malts. Guinness was among the first breweries to use black patent malt for porters and stouts in the 1820s. Guinness began using roasted barley after WWII, while London brewers continued to use brown malt. Guinness started using flaked barley in the 1950s, also increasing attenuation greatly. Guinness Draught was launched as a brand in 1959. Draught cans and bottles were developed in the late 1980s and 1990s.", - "notes": "A black beer with a pronounced roasted flavor, often similar to coffee. The balance can range from fairly even to quite bitter, with the more balanced versions having a little malty sweetness and the bitter versions being quite dry. Draught versions typically are creamy from a nitro pour, but bottled versions will not have this dispense-derived character. The roasted flavor can be dry and coffee-like to somewhat chocolaty. The style evolved from attempts to capitalize on the success of London porters, but originally reflected a fuller, creamier, more \"stout\" body and strength. Guinness began brewing only porter in 1799, and a \"stouter kind of porter\" around 1810. Irish stout diverged from London single stout (or simply porter) in the late 1800s, with an emphasis on darker malts. Guinness was among the first breweries to use black patent malt for porters and stouts in the 1820s. Guinness began using roasted barley after WWII, while London brewers continued to use brown malt. Guinness started using flaked barley in the 1950s, also increasing attenuation greatly. Guinness Draught was launched as a brand in 1959. Draught cans and bottles were developed in the late 1980s and 1990s.", - "ingredients": "Guinness is made using roasted barley, flaked barley, and pale malt, but other breweries don't necessarily use roasted barley; they can use chocolate or other dark and specialty malts. Whatever combination of malts or grains is used, the resulting product should be black. Cork-type stouts are perhaps closer to historical London-type stouts in composition with a varied grist not dominated by roasted barley.", - "comparison": "Lower strength than an Irish Extra Stout, but with similar flavors. Darker in color (black) than an English porter (brown).", - "examples": "Beamish Irish Stout, Guinness Draught, Harpoon Boston Irish Stout, Murphy's Irish Stout, O'Hara's Irish Stout, Porterhouse Wrasslers 4X", - "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, bitter, roasty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.036 - }, - "maximum": { - "unit": "sg", - "value": 1.044 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.007 - }, - "maximum": { - "unit": "sg", - "value": 1.011 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 45 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 25 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4 - }, - "maximum": { - "unit": "%", - "value": 4.5 - } - } - }, - { - "name": "Irish Extra Stout", - "category": "Irish Beer", - "category_number": 15, - "category_id": "15", - "style_id": "15C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate to moderately high coffee-like aroma, often with slight dark chocolate, cocoa, biscuit, vanilla and/or roasted grain secondary notes. Esters medium-low to none. Hop aroma low to none, may be lightly earthy or spicy, but is typically absent. Malt and roast dominate the aroma.", - "appearance": "Jet black. Opaque. A thick, creamy, tan head is characteristic.", - "flavor": "Moderate to moderately high dark-roasted grain or malt flavor with a medium to medium-high hop bitterness. The finish can be dry and coffee-like to moderately balanced with up to moderate caramel or malty sweetness. Typically has roasted coffee-like flavors, but also often has a dark chocolate character in the palate, lasting into the finish. Background mocha, biscuit, or vanilla flavors are often present and add complexity. Medium-low to no fruitiness. Medium to no hop flavor (often earthy or spicy). The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers.", - "mouthfeel": "Medium-full to full body, with a somewhat creamy character. Moderate carbonation. Very smooth. May have a light astringency from the roasted grains, although harshness is undesirable. A slightly warming character may be detected.", - "comments": "Traditionally a bottled product. Consumers expect a stout to always have a black color; the flavor intensity from whatever made it black is what consumers expect in their beer. Not all breweries make a dry, roasty version typical of Guinness; a more balanced and chocolaty version is equally acceptable.", - "profile": "Moderate to moderately high coffee-like aroma, often with slight dark chocolate, cocoa, biscuit, vanilla and/or roasted grain secondary notes. Esters medium-low to none. Hop aroma low to none, may be lightly earthy or spicy, but is typically absent. Malt and roast dominate the aroma. Jet black. Opaque. A thick, creamy, tan head is characteristic.Moderate to moderately high dark-roasted grain or malt flavor with a medium to medium-high hop bitterness. The finish can be dry and coffee-like to moderately balanced with up to moderate caramel or malty sweetness. Typically has roasted coffee-like flavors, but also often has a dark chocolate character in the palate, lasting into the finish. Background mocha, biscuit, or vanilla flavors are often present and add complexity. Medium-low to no fruitiness. Medium to no hop flavor (often earthy or spicy). The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers. Medium-full to full body, with a somewhat creamy character. Moderate carbonation. Very smooth. May have a light astringency from the roasted grains, although harshness is undesirable. A slightly warming character may be detected. Traditionally a bottled product. Consumers expect a stout to always have a black color; the flavor intensity from whatever made it black is what consumers expect in their beer. Not all breweries make a dry, roasty version typical of Guinness; a more balanced and chocolaty version is equally acceptable.", - "overall_impression": "A fuller-bodied black beer with a pronounced roasted flavor, often similar to coffee and dark chocolate with some malty complexity. The balance can range from moderately bittersweet to bitter, with the more balanced versions having up to moderate malty richness and the bitter versions being quite dry.", - "history": "Same roots as Irish stout, but as a stronger product. Guinness Extra Stout (Extra Superior Porter, later Double Stout) was first brewed in 1821, and was primarily a bottled product. Described by Guinness as a \"more full-bodied beer with a deeper characteristic roasted bitterness and a rich, mature texture. Of all the types of Guinness available today, this is the closest to the porter originally brewed by Arthur Guinness.\" Note that in modern times, Guinness Extra Stout has different strengths in different regions; the European version is around 4.2% and fits in the Irish Stout style.", - "notes": "A fuller-bodied black beer with a pronounced roasted flavor, often similar to coffee and dark chocolate with some malty complexity. The balance can range from moderately bittersweet to bitter, with the more balanced versions having up to moderate malty richness and the bitter versions being quite dry. Same roots as Irish stout, but as a stronger product. Guinness Extra Stout (Extra Superior Porter, later Double Stout) was first brewed in 1821, and was primarily a bottled product. Described by Guinness as a \"more full-bodied beer with a deeper characteristic roasted bitterness and a rich, mature texture. Of all the types of Guinness available today, this is the closest to the porter originally brewed by Arthur Guinness.\" Note that in modern times, Guinness Extra Stout has different strengths in different regions; the European version is around 4.2% and fits in the Irish Stout style.", - "ingredients": "Similar to Irish Stout.", - "comparison": "Midway between an Irish Stout and a Foreign Extra Stout in strength and flavor intensity, although with a similar balance. More body, richness, and often malt complexity than an Irish Stout. Black in color, not brown like a porter.", - "examples": "Guinness Extra Stout (US version), O'Hara's Leann Folláin, Sheaf Stout", - "tags": "high-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, bitter, roasty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.052 - }, - "maximum": { - "unit": "sg", - "value": 1.062 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 35 - }, - "maximum": { - "unit": "IBUs", - "value": 50 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 25 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.5 - }, - "maximum": { - "unit": "%", - "value": 6.5 - } - } - }, - { - "name": "Sweet Stout", - "category": "Dark British Beer", - "category_number": 16, - "category_id": "16", - "style_id": "16A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Mild roasted grain aroma, sometimes with coffee and/or chocolate notes. An impression of cream-like sweetness often exists. Fruitiness can be low to moderately high. Diacetyl low to none. Hop aroma low to none, with floral or earthy notes.", - "appearance": "Very dark brown to black in color. Can be opaque (if not, it should be clear). Creamy tan to brown head.", - "flavor": "Dark roasted grain/malt impression with coffee and/or chocolate flavors dominate the palate. Hop bitterness is moderate. Medium to high sweetness provides a counterpoint to the roasted character and hop bitterness, and lasts into the finish. Low to moderate fruity esters. Diacetyl low to none. The balance between dark grains/malts and sweetness can vary, from quite sweet to moderately dry and somewhat roasty.", - "mouthfeel": "Medium-full to full-bodied and creamy. Low to moderate carbonation. High residual sweetness from unfermented sugars enhances the full-tasting mouthfeel.", - "comments": "Gravities are low in England, higher in exported and US products. Variations exist, with the level of residual sweetness, the intensity of the roast character, and the balance between the two being the variables most subject to interpretation. Some versions in England are very sweet (low attenuation) and also low in ABV (Tennent's Sweetheart Stout is 2%), but is an outlier compared to the other examples. These guidelines mostly describe the higher gravity, more balanced, export versions rather than the low alcohol, very sweet versions that many find quite difficult to drink.", - "profile": "Mild roasted grain aroma, sometimes with coffee and/or chocolate notes. An impression of cream-like sweetness often exists. Fruitiness can be low to moderately high. Diacetyl low to none. Hop aroma low to none, with floral or earthy notes. Very dark brown to black in color. Can be opaque (if not, it should be clear). Creamy tan to brown head.Dark roasted grain/malt impression with coffee and/or chocolate flavors dominate the palate. Hop bitterness is moderate. Medium to high sweetness provides a counterpoint to the roasted character and hop bitterness, and lasts into the finish. Low to moderate fruity esters. Diacetyl low to none. The balance between dark grains/malts and sweetness can vary, from quite sweet to moderately dry and somewhat roasty. Medium-full to full-bodied and creamy. Low to moderate carbonation. High residual sweetness from unfermented sugars enhances the full-tasting mouthfeel. Gravities are low in England, higher in exported and US products. Variations exist, with the level of residual sweetness, the intensity of the roast character, and the balance between the two being the variables most subject to interpretation. Some versions in England are very sweet (low attenuation) and also low in ABV (Tennent's Sweetheart Stout is 2%), but is an outlier compared to the other examples. These guidelines mostly describe the higher gravity, more balanced, export versions rather than the low alcohol, very sweet versions that many find quite difficult to drink.", - "overall_impression": "A very dark, sweet, full-bodied, slightly roasty ale that can suggest coffee-and-cream, or sweetened espresso.", - "history": "An English style of stout developed in the early 1900s. Historically known as \"Milk\" or \"Cream\" stouts, legally this designation is no longer permitted in England (but is acceptable elsewhere). The \"milk\" name is derived from the use of lactose, or milk sugar, as a sweetener. Originally marketed as a tonic for invalids and nursing mothers.", - "notes": "A very dark, sweet, full-bodied, slightly roasty ale that can suggest coffee-and-cream, or sweetened espresso. An English style of stout developed in the early 1900s. Historically known as \"Milk\" or \"Cream\" stouts, legally this designation is no longer permitted in England (but is acceptable elsewhere). The \"milk\" name is derived from the use of lactose, or milk sugar, as a sweetener. Originally marketed as a tonic for invalids and nursing mothers.", - "ingredients": "The sweetness in most Sweet Stouts comes from a lower bitterness level than most other stouts and a high percentage of unfermentable dextrins. Lactose, an unfermentable sugar, is frequently added to provide additional residual sweetness. Base of pale malt, and may use roasted barley, black malt, chocolate malt, crystal malt, and adjuncts such as maize or brewing sugars.", - "comparison": "Much sweeter and less bitter than other stouts (except the stronger tropical stout). The roast character is mild, not burnt like other stouts. Somewhat similar in balance to oatmeal stouts, albeit with more sweetness.", - "examples": "Bristol Beer Factory Milk Stout, Left Hand Milk Stout, Lancaster Milk Stout, Mackeson's XXX Stout, Marston's Oyster Stout, Samuel Adams Cream Stout", - "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, malty, roasty, sweet", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.012 - }, - "maximum": { - "unit": "sg", - "value": 1.024 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 30 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "Oatmeal Stout", - "category": "Dark British Beer", - "category_number": 16, - "category_id": "16", - "style_id": "16B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Mild roasted grain aromas, generally with a coffee-like character. A light malty sweetness can suggest a coffee-and-cream impression. Fruitiness should be low to medium-high. Diacetyl medium-low to none. Hop aroma medium-low to none, earthy or floral. A light grainy-nutty oatmeal aroma is optional.", - "appearance": "Medium brown to black in color. Thick, creamy, persistent tan- to brown-colored head. Can be opaque (if not, it should be clear).", - "flavor": "Similar to the aroma, with a mild roasted coffee to coffee-and-cream flavor, and low to moderately-high fruitiness. Oats and dark roasted grains provide some flavor complexity; the oats can add a nutty, grainy or earthy flavor. Dark grains can combine with malt sweetness to give the impression of milk chocolate or coffee with cream. Medium hop bitterness with the balance toward malt. Medium-sweet to medium-dry finish. Diacetyl medium-low to none. Hop flavor medium-low to none, typically earthy or floral.", - "mouthfeel": "Medium-full to full body, with a smooth, silky, velvety, sometimes an almost oily slickness from the oatmeal. Creamy. Medium to medium-high carbonation.", - "comments": "Generally between Sweet and Irish Stouts in sweetness. Variations exist, from fairly sweet to quite dry, as well as English and American versions (American versions tend to be more hoppy, less sweet, and less fruity). The level of bitterness also varies, as does the oatmeal impression. Light use of oatmeal may give a certain silkiness of body and richness of flavor, while heavy use of oatmeal can be fairly intense in flavor with an almost oily mouthfeel, dryish finish, and slight grainy astringency. When judging, allow for differences in interpretation.", - "profile": "Mild roasted grain aromas, generally with a coffee-like character. A light malty sweetness can suggest a coffee-and-cream impression. Fruitiness should be low to medium-high. Diacetyl medium-low to none. Hop aroma medium-low to none, earthy or floral. A light grainy-nutty oatmeal aroma is optional. Medium brown to black in color. Thick, creamy, persistent tan- to brown-colored head. Can be opaque (if not, it should be clear).Similar to the aroma, with a mild roasted coffee to coffee-and-cream flavor, and low to moderately-high fruitiness. Oats and dark roasted grains provide some flavor complexity; the oats can add a nutty, grainy or earthy flavor. Dark grains can combine with malt sweetness to give the impression of milk chocolate or coffee with cream. Medium hop bitterness with the balance toward malt. Medium-sweet to medium-dry finish. Diacetyl medium-low to none. Hop flavor medium-low to none, typically earthy or floral. Medium-full to full body, with a smooth, silky, velvety, sometimes an almost oily slickness from the oatmeal. Creamy. Medium to medium-high carbonation. Generally between Sweet and Irish Stouts in sweetness. Variations exist, from fairly sweet to quite dry, as well as English and American versions (American versions tend to be more hoppy, less sweet, and less fruity). The level of bitterness also varies, as does the oatmeal impression. Light use of oatmeal may give a certain silkiness of body and richness of flavor, while heavy use of oatmeal can be fairly intense in flavor with an almost oily mouthfeel, dryish finish, and slight grainy astringency. When judging, allow for differences in interpretation.", - "overall_impression": "A very dark, full-bodied, roasty, malty ale with a complementary oatmeal flavor. The sweetness, balance, and oatmeal impression can vary considerably.", - "history": "A variant of nourishing or invalid stouts of the late 1800s using oatmeal in the grist, similar to the development of sweet stout that used lactose. An original Scottish version used a significant amount of oat malt. Later went through a shady phase where some English brewers would throw a handful of oats into their parti-gyled stouts in order to legally produce a ‘healthy' Oatmeal Stout for marketing purposes. Most popular in England between the World Wars, was revived in the craft beer era for export, which helped lead to its adoption as a popular modern American craft beer style that uses a noticeable (not symbolic) quantity of oats.", - "notes": "A very dark, full-bodied, roasty, malty ale with a complementary oatmeal flavor. The sweetness, balance, and oatmeal impression can vary considerably. A variant of nourishing or invalid stouts of the late 1800s using oatmeal in the grist, similar to the development of sweet stout that used lactose. An original Scottish version used a significant amount of oat malt. Later went through a shady phase where some English brewers would throw a handful of oats into their parti-gyled stouts in order to legally produce a ‘healthy' Oatmeal Stout for marketing purposes. Most popular in England between the World Wars, was revived in the craft beer era for export, which helped lead to its adoption as a popular modern American craft beer style that uses a noticeable (not symbolic) quantity of oats.", - "ingredients": "Pale, caramel and dark roasted malts (often chocolate) and grains. Oatmeal or malted oats (5-20% or more) used to enhance fullness of body and complexity of flavor. Hops primarily for bittering. Can use brewing sugars or syrups. English ale yeast.", - "comparison": "Most are like a cross between an Irish Extra Stout and a Sweet Stout with oatmeal added. Several variations exist, with the sweeter versions more like a Sweet Stout with oatmeal instead of lactose, and the drier versions more like a more nutty, flavorful Irish Extra Stout. Both tend to emphasize the body and mouthfeel.", - "examples": "Anderson Valley Barney Flats Oatmeal Stout, Broughton Scottish Oatmeal Stout, Figueroa Mountain Stagecoach Stout, St-Ambroise Oatmeal Stout, Samuel Smith Oatmeal Stout, Young's Oatmeal Stout", - "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, balanced, roasty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.065 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 22 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.2 - }, - "maximum": { - "unit": "%", - "value": 5.9 - } - } - }, - { - "name": "Tropical Stout", - "category": "Dark British Beer", - "category_number": 16, - "category_id": "16", - "style_id": "16C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Sweetness evident, moderate to high intensity. Roasted grain aromas moderate to high, and can have coffee or chocolate notes. Fruitiness medium to high. May have a molasses, licorice, dried fruit, and/or vinous aromatics. Stronger versions can have a subtle clean aroma of alcohol. Hop aroma low to none. Diacetyl low to none.", - "appearance": "Very deep brown to black in color. Clarity usually obscured by deep color (if not opaque, should be clear). Large tan to brown head with good retention.", - "flavor": "Quite sweet with a smooth dark grain flavors, and restrained bitterness. Roasted grain and malt character can be moderate to high with a smooth coffee or chocolate flavor, although the roast character is moderated in the balance by the sweet finish. Moderate to high fruity esters. Can have a sweet, dark rum-like quality. Little to no hop flavor. Medium-low to no diacetyl.", - "mouthfeel": "Medium-full to full body, often with a smooth, creamy character. May give a warming (but never hot) impression from alcohol presence. Moderate to moderately-high carbonation.", - "comments": "Sweetness levels can vary significantly. Surprisingly refreshing in a hot climate.", - "profile": "Sweetness evident, moderate to high intensity. Roasted grain aromas moderate to high, and can have coffee or chocolate notes. Fruitiness medium to high. May have a molasses, licorice, dried fruit, and/or vinous aromatics. Stronger versions can have a subtle clean aroma of alcohol. Hop aroma low to none. Diacetyl low to none. Very deep brown to black in color. Clarity usually obscured by deep color (if not opaque, should be clear). Large tan to brown head with good retention.Quite sweet with a smooth dark grain flavors, and restrained bitterness. Roasted grain and malt character can be moderate to high with a smooth coffee or chocolate flavor, although the roast character is moderated in the balance by the sweet finish. Moderate to high fruity esters. Can have a sweet, dark rum-like quality. Little to no hop flavor. Medium-low to no diacetyl. Medium-full to full body, often with a smooth, creamy character. May give a warming (but never hot) impression from alcohol presence. Moderate to moderately-high carbonation. Sweetness levels can vary significantly. Surprisingly refreshing in a hot climate.", - "overall_impression": "A very dark, sweet, fruity, moderately strong ale with smooth roasty flavors without a burnt harshness.", - "history": "Originally high-gravity stouts brewed for tropical markets, became popular and imitated by local brewers often using local sugars and ingredients.", - "notes": "A very dark, sweet, fruity, moderately strong ale with smooth roasty flavors without a burnt harshness. Originally high-gravity stouts brewed for tropical markets, became popular and imitated by local brewers often using local sugars and ingredients.", - "ingredients": "Similar to a sweet stout, but with more gravity. Pale and dark roasted malts and grains. Hops mostly for bitterness. May use adjuncts and sugar to boost gravity. Typically made with warm-fermented lager yeast.", - "comparison": "Tastes like a scaled-up sweet stout with higher fruitiness. Similar to some Imperial Stouts without the high bitterness, strong/burnt roastiness, and late hops, and with lower alcohol. Much more sweet and less hoppy than American Stouts. Much sweeter and less bitter than the similar-gravity Export Stouts.", - "examples": "ABC Extra Stout, Dragon Stout, Jamaica Stout, Lion Stout, Royal Extra Stout", - "tags": "high-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, malty, roasty, sweet", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.056 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 50 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 30 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.5 - }, - "maximum": { - "unit": "%", - "value": 8 - } - } - }, - { - "name": "Foreign Extra Stout", - "category": "Dark British Beer", - "category_number": 16, - "category_id": "16", - "style_id": "16D", - "style_letter": "D", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate to high roasted grain aromas, often with coffee, chocolate and/or lightly burnt notes. Low to medium fruitiness. May have a sweet aroma, or molasses, licorice, dried fruit, and/or vinous aromatics. Stronger versions can have a subtle, clean aroma of alcohol. Hop aroma moderately low to none, can be earthy, herbal or floral. Diacetyl low to none.", - "appearance": "Very deep brown to black in color. Clarity usually obscured by deep color (if not opaque, should be clear). Large tan to brown head with good retention.", - "flavor": "Moderate to high roasted grain and malt flavor with a coffee, chocolate, or lightly burnt grain character, although without a sharp bite. Moderately dry. Low to medium esters. Medium to high bitterness. Moderate to no hop flavor, can be earthy, herbal, or floral. Diacetyl medium-low to none.", - "mouthfeel": "Medium-full to full body, often with a smooth, sometimes creamy character. May give a warming (but never hot) impression from alcohol presence. Moderate to moderately-high carbonation.", - "comments": "Also known as Foreign Stout, Export Stout, Foreign Export Stout. Historic versions (before WWI, at least) had the same OG as domestic Extra Stouts, but had a higher ABV because it had a long secondary with Brettanomyces chewing away at it. The difference between domestic and foreign versions were the hopping and length of maturation.", - "profile": "Moderate to high roasted grain aromas, often with coffee, chocolate and/or lightly burnt notes. Low to medium fruitiness. May have a sweet aroma, or molasses, licorice, dried fruit, and/or vinous aromatics. Stronger versions can have a subtle, clean aroma of alcohol. Hop aroma moderately low to none, can be earthy, herbal or floral. Diacetyl low to none. Very deep brown to black in color. Clarity usually obscured by deep color (if not opaque, should be clear). Large tan to brown head with good retention.Moderate to high roasted grain and malt flavor with a coffee, chocolate, or lightly burnt grain character, although without a sharp bite. Moderately dry. Low to medium esters. Medium to high bitterness. Moderate to no hop flavor, can be earthy, herbal, or floral. Diacetyl medium-low to none. Medium-full to full body, often with a smooth, sometimes creamy character. May give a warming (but never hot) impression from alcohol presence. Moderate to moderately-high carbonation. Also known as Foreign Stout, Export Stout, Foreign Export Stout. Historic versions (before WWI, at least) had the same OG as domestic Extra Stouts, but had a higher ABV because it had a long secondary with Brettanomyces chewing away at it. The difference between domestic and foreign versions were the hopping and length of maturation.", - "overall_impression": "A very dark, moderately strong, fairly dry, stout with prominent roast flavors.", - "history": "Stronger stouts brewed for the export market today, but with a history stretching back to the 18th and 19th centuries when they were more heavily-hopped versions of stronger export stouts. Guinness Foreign Extra Stout (originally, West India Porter, later Foreign Extra Double Stout) was first brewed in 1801 according to Guinness with \"extra hops to give it a distinctive taste and a longer shelf life in hot weather, this is brewed [today] in Africa, Asia and the Caribbean. It [currently] makes up 40% of all the Guinness brewed around the world.\"", - "notes": "A very dark, moderately strong, fairly dry, stout with prominent roast flavors. Stronger stouts brewed for the export market today, but with a history stretching back to the 18th and 19th centuries when they were more heavily-hopped versions of stronger export stouts. Guinness Foreign Extra Stout (originally, West India Porter, later Foreign Extra Double Stout) was first brewed in 1801 according to Guinness with \"extra hops to give it a distinctive taste and a longer shelf life in hot weather, this is brewed [today] in Africa, Asia and the Caribbean. It [currently] makes up 40% of all the Guinness brewed around the world.\"", - "ingredients": "Pale and dark roasted malts and grains, historically also could have used brown and amber malts. Hops mostly for bitterness, typically English varieties. May use adjuncts and sugar to boost gravity.", - "comparison": "Similar in balance to an Irish Extra Stout, but with more alcohol. Not as big or intense as a Russian Imperial Stout. Lacking the strong bitterness and high late hops of American Stouts. Similar gravity as Tropical Stout, but with a drier finish, higher bitterness, and less esters.", - "examples": "Coopers Best Extra Stout, Guinness Foreign Extra Stout, The Kernel Export Stout, Ridgeway Foreign Export Stout, Southwark Old Stout", - "tags": "high-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, balanced, roasty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.056 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 50 - }, - "maximum": { - "unit": "IBUs", - "value": 70 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 30 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.3 - }, - "maximum": { - "unit": "%", - "value": 8 - } - } - }, - { - "name": "British Strong Ale", - "category": "Strong British Ale", - "category_number": 17, - "category_id": "17", - "style_id": "17A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Malty-sweet with fruity esters, often with a complex blend of dried-fruit, caramel, nuts, toffee, and/or other specialty malt aromas. Some alcohol notes are acceptable, but shouldn't be hot or solventy. Hop aromas can vary widely, but typically have earthy, resiny, fruity, and/or floral notes. The balance can vary widely, but most examples will have a blend of malt, fruit, hops, and alcohol in varying intensities.", - "appearance": "Deep gold to dark reddish-brown color (many are fairly dark). Generally clear, although darker versions may be almost opaque. Moderate to low cream- to light tan-colored head; average retention.", - "flavor": "Medium to high malt character often rich with nutty, toffee, or caramel flavors. Light chocolate notes are sometimes found in darker beers. May have interesting flavor complexity from brewing sugars. Balance is often malty, but may be well hopped, which affects the impression of maltiness. Moderate fruity esters are common, often with a dark fruit or dried fruit character. The finish may vary from medium dry to somewhat sweet. Alcoholic strength should be evident, though not overwhelming. Diacetyl low to none, and is generally not desirable.", - "mouthfeel": "Medium to full, chewy body. Alcohol warmth is often evident and always welcome. Low to moderate carbonation. Smooth texture.", - "comments": "As an entry category more than a style, the strength and character of examples can vary widely. Fits in the style space between normal gravity beers (strong bitters, brown ales, English porters) and barleywines. Can include pale malty-hoppy beers, English winter warmers, strong dark milds, smaller Burton ales, and other unique beers in the general gravity range that don't fit other categories. Traditionally a bottle-conditioned product suitable for cellaring.", - "profile": "Malty-sweet with fruity esters, often with a complex blend of dried-fruit, caramel, nuts, toffee, and/or other specialty malt aromas. Some alcohol notes are acceptable, but shouldn't be hot or solventy. Hop aromas can vary widely, but typically have earthy, resiny, fruity, and/or floral notes. The balance can vary widely, but most examples will have a blend of malt, fruit, hops, and alcohol in varying intensities. Deep gold to dark reddish-brown color (many are fairly dark). Generally clear, although darker versions may be almost opaque. Moderate to low cream- to light tan-colored head; average retention.Medium to high malt character often rich with nutty, toffee, or caramel flavors. Light chocolate notes are sometimes found in darker beers. May have interesting flavor complexity from brewing sugars. Balance is often malty, but may be well hopped, which affects the impression of maltiness. Moderate fruity esters are common, often with a dark fruit or dried fruit character. The finish may vary from medium dry to somewhat sweet. Alcoholic strength should be evident, though not overwhelming. Diacetyl low to none, and is generally not desirable. Medium to full, chewy body. Alcohol warmth is often evident and always welcome. Low to moderate carbonation. Smooth texture. As an entry category more than a style, the strength and character of examples can vary widely. Fits in the style space between normal gravity beers (strong bitters, brown ales, English porters) and barleywines. Can include pale malty-hoppy beers, English winter warmers, strong dark milds, smaller Burton ales, and other unique beers in the general gravity range that don't fit other categories. Traditionally a bottle-conditioned product suitable for cellaring.", - "overall_impression": "An ale of respectable alcoholic strength, traditionally bottled-conditioned and cellared. Can have a wide range of interpretations, but most will have varying degrees of malty richness, late hops and bitterness, fruity esters, and alcohol warmth. Judges should allow for a significant range in character, as long as the beer is within the alcohol strength range and has an interesting ‘British' character, it likely fits the style. The malt and adjunct flavors and intensity can vary widely, but any combination should result in an agreeable palate experience.", - "history": "The heritage varies since this category generally reflects a grouping of unrelated minor styles with limited production. Some are historical recreations while others are modern. Some directly descend from older styles such as Burton ales, while others maintain a historical connection with older beers. As a grouping, the notion is relatively modern since beers of this strength category would not have been abnormal in past centuries. Do not use this category grouping to infer historical relationships between examples; this is almost a modern British specialty category where the ‘special' attribute is alcohol level.", - "notes": "An ale of respectable alcoholic strength, traditionally bottled-conditioned and cellared. Can have a wide range of interpretations, but most will have varying degrees of malty richness, late hops and bitterness, fruity esters, and alcohol warmth. Judges should allow for a significant range in character, as long as the beer is within the alcohol strength range and has an interesting ‘British' character, it likely fits the style. The malt and adjunct flavors and intensity can vary widely, but any combination should result in an agreeable palate experience. The heritage varies since this category generally reflects a grouping of unrelated minor styles with limited production. Some are historical recreations while others are modern. Some directly descend from older styles such as Burton ales, while others maintain a historical connection with older beers. As a grouping, the notion is relatively modern since beers of this strength category would not have been abnormal in past centuries. Do not use this category grouping to infer historical relationships between examples; this is almost a modern British specialty category where the ‘special' attribute is alcohol level.", - "ingredients": "Grists vary, often based on pale malt with caramel and specialty malts. Some darker examples suggest that dark malts (e.g., chocolate, black malt) may be appropriate, though sparingly so as to avoid an overly roasted character. Sugary adjuncts are common, as are starchy adjuncts (maize, flaked barley, wheat). Finishing hops are traditionally English.", - "comparison": "Significant overlap in gravity with old ales, but not having a stale or aged character. A wide range of interpretations is possible. Should not be as rich or strong as an English Barleywine. Stronger than the stronger everyday beers (strong bitters, brown ales, porters). More specialty malt and/or sugar character than American Strong Ales.", - "examples": "Fuller's 1845, Harvey's Elizabethan Ale, J.W. Lees Manchester Star, Samuel Smith's Winter Welcome, Young's Winter Warmer", - "tags": "high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.055 - }, - "maximum": { - "unit": "sg", - "value": 1.08 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.015 - }, - "maximum": { - "unit": "sg", - "value": 1.022 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 60 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.5 - }, - "maximum": { - "unit": "%", - "value": 8 - } - } - }, - { - "name": "Old Ale", - "category": "Strong British Ale", - "category_number": 17, - "category_id": "17", - "style_id": "17B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Malty-sweet with fruity esters, often with a complex blend of dried-fruit, vinous, caramelly, molasses, nutty, toffee, light treacle, and/or other specialty malt aromas. Some alcohol and oxidative notes are acceptable, akin to those found in Sherry or Port. Hop aromas not usually present due to extended aging.", - "appearance": "Light amber to very dark reddish-brown color (most are fairly dark). Age and oxidation may darken the beer further. May be almost opaque (if not, should be clear). Moderate to low cream- to light tan-colored head; may be adversely affected by alcohol and age.", - "flavor": "Medium to high malt character with a luscious malt complexity, often with nutty, caramelly and/or molasses-like flavors. Light chocolate or roasted malt flavors are optional, but should never be prominent. Balance is often malty-sweet, but may be well hopped (the impression of bitterness often depends on amount of aging). Moderate to high fruity esters are common, and may take on a dried-fruit or vinous character. The finish may vary from dry to somewhat sweet. Extended aging may contribute oxidative flavors similar to a fine old Sherry, Port or Madeira. Alcoholic strength should be evident, though not overwhelming. Diacetyl low to none. Some wood-aged or blended versions may have a lactic or Brettanomyces character; but this is optional and should not be too strong. Any acidity or tannin from age should be well-integrated and contribute to complexity in the flavor profile, not be a dominant experience.", - "mouthfeel": "Medium to full, chewy body, although older examples may be lower in body due to continued attenuation during conditioning. Alcohol warmth is often evident and always welcome. Low to moderate carbonation, depending on age and conditioning. Light acidity may be present, as well as some tannin if wood-aged; both are optional.", - "comments": "Strength and character varies widely. The predominant defining quality for this style is the impression of age, which can manifest itself in different ways (complexity, lactic, Brett, oxidation, leather, vinous qualities, etc.). Even if these qualities are otherwise faults, if the resulting character of the beer is still pleasantly drinkable and complex, then those characteristics are acceptable. In no way should those allowable characteristics be interpreted as making an undrinkably off beer as somehow in style. Old Peculier is a fairly unique type of beer that is quite different than other Old Ales.", - "profile": "Malty-sweet with fruity esters, often with a complex blend of dried-fruit, vinous, caramelly, molasses, nutty, toffee, light treacle, and/or other specialty malt aromas. Some alcohol and oxidative notes are acceptable, akin to those found in Sherry or Port. Hop aromas not usually present due to extended aging. Light amber to very dark reddish-brown color (most are fairly dark). Age and oxidation may darken the beer further. May be almost opaque (if not, should be clear). Moderate to low cream- to light tan-colored head; may be adversely affected by alcohol and age.Medium to high malt character with a luscious malt complexity, often with nutty, caramelly and/or molasses-like flavors. Light chocolate or roasted malt flavors are optional, but should never be prominent. Balance is often malty-sweet, but may be well hopped (the impression of bitterness often depends on amount of aging). Moderate to high fruity esters are common, and may take on a dried-fruit or vinous character. The finish may vary from dry to somewhat sweet. Extended aging may contribute oxidative flavors similar to a fine old Sherry, Port or Madeira. Alcoholic strength should be evident, though not overwhelming. Diacetyl low to none. Some wood-aged or blended versions may have a lactic or Brettanomyces character; but this is optional and should not be too strong. Any acidity or tannin from age should be well-integrated and contribute to complexity in the flavor profile, not be a dominant experience. Medium to full, chewy body, although older examples may be lower in body due to continued attenuation during conditioning. Alcohol warmth is often evident and always welcome. Low to moderate carbonation, depending on age and conditioning. Light acidity may be present, as well as some tannin if wood-aged; both are optional. Strength and character varies widely. The predominant defining quality for this style is the impression of age, which can manifest itself in different ways (complexity, lactic, Brett, oxidation, leather, vinous qualities, etc.). Even if these qualities are otherwise faults, if the resulting character of the beer is still pleasantly drinkable and complex, then those characteristics are acceptable. In no way should those allowable characteristics be interpreted as making an undrinkably off beer as somehow in style. Old Peculier is a fairly unique type of beer that is quite different than other Old Ales.", - "overall_impression": "An ale of moderate to fairly significant alcoholic strength, bigger than standard beers, though usually not as strong or rich as barleywine. Often tilted towards a maltier balance. \"It should be a warming beer of the type that is best drunk in half pints by a warm fire on a cold winter's night\" – Michael Jackson.", - "history": "Historically, an aged ale used as stock ales for blending or enjoyed at full strength (stale or stock refers to beers that were aged or stored for a significant period of time). There are at least two definite types in Britain today, weaker draught ones that are similar aged milds of around 4.5%, and stronger ones that are often 6-8% or more.", - "notes": "An ale of moderate to fairly significant alcoholic strength, bigger than standard beers, though usually not as strong or rich as barleywine. Often tilted towards a maltier balance. \"It should be a warming beer of the type that is best drunk in half pints by a warm fire on a cold winter's night\" – Michael Jackson. Historically, an aged ale used as stock ales for blending or enjoyed at full strength (stale or stock refers to beers that were aged or stored for a significant period of time). There are at least two definite types in Britain today, weaker draught ones that are similar aged milds of around 4.5%, and stronger ones that are often 6-8% or more.", - "ingredients": "Composition varies, although generally similar to British Strong Ales. The age character is the biggest driver of the final style profile, which is more handling than brewing. May be aged in wood, but should not have a strong wood character.", - "comparison": "Roughly overlapping the British Strong Ale and the lower end of the English Barleywine styles, but always having an aged quality. The distinction between an Old Ale and a Barleywine is somewhat arbitrary above 7% ABV, and generally means having a more significant aged quality (particularly from wood). Barleywines tend to develop more of a ‘mature' quality, while Old Ales can show more of the barrel qualities (lactic, Brett, vinous, etc.).", - "examples": "Burton Bridge Olde Expensive, Gale's Prize Old Ale, Greene King Strong Suffolk Ale, Marston Owd Roger, Theakston Old Peculier", - "tags": "high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty, aged", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.055 - }, - "maximum": { - "unit": "sg", - "value": 1.088 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.015 - }, - "maximum": { - "unit": "sg", - "value": 1.022 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 60 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 10 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.5 - }, - "maximum": { - "unit": "%", - "value": 9 - } - } - }, - { - "name": "Wee Heavy", - "category": "Strong British Ale", - "category_number": 17, - "category_id": "17", - "style_id": "17C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Deeply malty, with a strong caramel component. Lightly smoky secondary aromas may also be present, adding complexity; peat smoke is inappropriate. Diacetyl should be low to none. Low to moderate esters and alcohol are often present in stronger versions. Hops are very low to none, and can be slightly earthy or floral.", - "appearance": "Light copper to dark brown color, often with deep ruby highlights. Clear. Usually has a large tan head, which may not persist. Legs may be evident in stronger versions.", - "flavor": "Richly malty with significant caramel (particularly in stronger versions). Hints of roasted malt may be present (sometimes perceived as a faint smoke character), as may some nutty character, all of which may last into the finish. Peat smoke is inappropriate. Hop flavors and bitterness are low to medium-low, so the malt presence should dominate the balance. Diacetyl should be low to none. Low to moderate esters and alcohol are usually present. Esters may suggest plums, raisins or dried fruit. The palate is usually full and sweet, but the finish may be sweet to medium-dry, sometimes with a light roasty-grainy note.", - "mouthfeel": "Medium-full to full-bodied, with some versions (but not all) having a thick, chewy viscosity. A smooth, alcoholic warmth is usually present and is quite welcome since it balances the malty sweetness. Moderate carbonation.", - "comments": "Also known as \"strong Scotch ale.\" The term \"wee heavy\" means \"small strong\" and traces to the beer that made the term famous, Fowler's Wee Heavy, a 12 Guinea Ale. Historically, the strongest beer from a Scottish ale parti-gyle.", - "profile": "Deeply malty, with a strong caramel component. Lightly smoky secondary aromas may also be present, adding complexity; peat smoke is inappropriate. Diacetyl should be low to none. Low to moderate esters and alcohol are often present in stronger versions. Hops are very low to none, and can be slightly earthy or floral. Light copper to dark brown color, often with deep ruby highlights. Clear. Usually has a large tan head, which may not persist. Legs may be evident in stronger versions.Richly malty with significant caramel (particularly in stronger versions). Hints of roasted malt may be present (sometimes perceived as a faint smoke character), as may some nutty character, all of which may last into the finish. Peat smoke is inappropriate. Hop flavors and bitterness are low to medium-low, so the malt presence should dominate the balance. Diacetyl should be low to none. Low to moderate esters and alcohol are usually present. Esters may suggest plums, raisins or dried fruit. The palate is usually full and sweet, but the finish may be sweet to medium-dry, sometimes with a light roasty-grainy note. Medium-full to full-bodied, with some versions (but not all) having a thick, chewy viscosity. A smooth, alcoholic warmth is usually present and is quite welcome since it balances the malty sweetness. Moderate carbonation. Also known as \"strong Scotch ale.\" The term \"wee heavy\" means \"small strong\" and traces to the beer that made the term famous, Fowler's Wee Heavy, a 12 Guinea Ale. Historically, the strongest beer from a Scottish ale parti-gyle.", - "overall_impression": "Rich, malty, dextrinous, and usually caramel-sweet, these beers can give an impression that is suggestive of a dessert. Complex secondary malt and alcohol flavors prevent a one-dimensional quality. Strength and maltiness can vary, but should not be cloying or syrupy.", - "history": "More related to historical brews than modern lower-strength Scottish ales, these beers have their roots in the strong ales of the 1700s and 1800s, although formulations and methods have changed. A premium product, often produced for export. Modern versions have lower starting and finishing gravities than their historical ancestors.", - "notes": "Rich, malty, dextrinous, and usually caramel-sweet, these beers can give an impression that is suggestive of a dessert. Complex secondary malt and alcohol flavors prevent a one-dimensional quality. Strength and maltiness can vary, but should not be cloying or syrupy. More related to historical brews than modern lower-strength Scottish ales, these beers have their roots in the strong ales of the 1700s and 1800s, although formulations and methods have changed. A premium product, often produced for export. Modern versions have lower starting and finishing gravities than their historical ancestors.", - "ingredients": "Well-modified pale malt, with roasted barley for color. May use some crystal malt for color adjustment. Slight smoke character may be present in some versions, but derives from roasted grains or from the boil. Peated malt is absolutely not traditional.", - "comparison": "Somewhat similar to an English Barleywine.", - "examples": "Belhaven Wee Heavy, Gordon Highland Scotch Ale, Inveralmond Blackfriar, McEwan's Scotch Ale, Orkney Skull Splitter, Traquair House Ale", - "tags": "high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.07 - }, - "maximum": { - "unit": "sg", - "value": 1.13 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.018 - }, - "maximum": { - "unit": "sg", - "value": 1.04 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 17 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 14 - }, - "maximum": { - "unit": "SRM", - "value": 25 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.5 - }, - "maximum": { - "unit": "%", - "value": 10 - } - } - }, - { - "name": "English Barleywine", - "category": "Strong British Ale", - "category_number": 17, - "category_id": "17", - "style_id": "17D", - "style_letter": "D", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Very rich and strongly malty, often with a caramel-like aroma in darker versions or a light toffee character in paler versions. May have moderate to strong fruitiness, often with a dark- or dried-fruit character, particularly in dark versions. The hop aroma may range from mild to assertive, and is typically floral, earthy, or marmalade-like. Alcohol aromatics may be low to moderate, but are soft and rounded. The intensity of these aromatics often subsides with age. The aroma may have a rich character including bready, toasty, toffee, and/or molasses notes. Aged versions may have a sherry-like quality, possibly vinous or port-like aromatics, and generally more muted malt aromas.", - "appearance": "Color may range from rich gold to very dark amber or even dark brown (often has ruby highlights, but should not be opaque). Low to moderate off-white head; may have low head retention. May be cloudy with chill haze at cooler temperatures, but generally clears to good to brilliant clarity as it warms. The color may appear to have great depth, as if viewed through a thick glass lens. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.", - "flavor": "Strong, intense, complex, multi-layered malt flavors ranging from bready, toffee, and biscuity in paler versions through nutty, deep toast, dark caramel, and/or molasses in darker versions. Moderate to high malty sweetness on the palate, although the finish may be moderately sweet to moderately dry (depending on aging). Some oxidative or vinous flavors may be present, and often complex alcohol flavors should be evident. Moderate to fairly high fruitiness, often with a dark- or dried-fruit character. Hop bitterness may range from just enough for balance to a firm presence; balance therefore ranges from malty to somewhat bitter. Pale versions are often more bitter, better attenuated, and might show more hop character than darker versions; however, all versions are malty in the balance. Low to moderately high hop flavor, often floral, earthy, or marmalade-like English varieties.", - "mouthfeel": "Full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). A smooth warmth from aged alcohol should be present. Carbonation may be low to moderate, depending on age and conditioning.", - "comments": "The richest and strongest of modern English Ales. The character of these ales can change significantly over time; both young and old versions should be appreciated for what they are. The malt profile can vary widely; not all examples will have all possible flavors or aromas. Paler varieties won't have the caramel and richer malt flavors, nor will they typically have the darker dried fruits – don't expect flavors and aromatics that are impossible from a beer of that color. Typically written as \"Barley Wine\" in the UK, and \"Barleywine\" in the US.", - "profile": "Very rich and strongly malty, often with a caramel-like aroma in darker versions or a light toffee character in paler versions. May have moderate to strong fruitiness, often with a dark- or dried-fruit character, particularly in dark versions. The hop aroma may range from mild to assertive, and is typically floral, earthy, or marmalade-like. Alcohol aromatics may be low to moderate, but are soft and rounded. The intensity of these aromatics often subsides with age. The aroma may have a rich character including bready, toasty, toffee, and/or molasses notes. Aged versions may have a sherry-like quality, possibly vinous or port-like aromatics, and generally more muted malt aromas. Color may range from rich gold to very dark amber or even dark brown (often has ruby highlights, but should not be opaque). Low to moderate off-white head; may have low head retention. May be cloudy with chill haze at cooler temperatures, but generally clears to good to brilliant clarity as it warms. The color may appear to have great depth, as if viewed through a thick glass lens. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.Strong, intense, complex, multi-layered malt flavors ranging from bready, toffee, and biscuity in paler versions through nutty, deep toast, dark caramel, and/or molasses in darker versions. Moderate to high malty sweetness on the palate, although the finish may be moderately sweet to moderately dry (depending on aging). Some oxidative or vinous flavors may be present, and often complex alcohol flavors should be evident. Moderate to fairly high fruitiness, often with a dark- or dried-fruit character. Hop bitterness may range from just enough for balance to a firm presence; balance therefore ranges from malty to somewhat bitter. Pale versions are often more bitter, better attenuated, and might show more hop character than darker versions; however, all versions are malty in the balance. Low to moderately high hop flavor, often floral, earthy, or marmalade-like English varieties. Full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). A smooth warmth from aged alcohol should be present. Carbonation may be low to moderate, depending on age and conditioning. The richest and strongest of modern English Ales. The character of these ales can change significantly over time; both young and old versions should be appreciated for what they are. The malt profile can vary widely; not all examples will have all possible flavors or aromas. Paler varieties won't have the caramel and richer malt flavors, nor will they typically have the darker dried fruits – don't expect flavors and aromatics that are impossible from a beer of that color. Typically written as \"Barley Wine\" in the UK, and \"Barleywine\" in the US.", - "overall_impression": "A showcase of malty richness and complex, intense flavors. Chewy and rich in body, with warming alcohol and a pleasant fruity or hoppy interest. When aged, it can take on port-like flavors. A wintertime sipper.", - "history": "Strong ales of various formulations have long been brewed in England, and were known by several names. The modern barleywine traces back to Bass No. 1, which was first called a barleywine in 1872. Barleywines were darker beers until Tennant (now Whitbread) first produced Gold Label, a gold-colored barleywine in 1951. Usually the strongest ale offered by a brewery, and in recent years many commercial examples are now vintage-dated and offered as a limited-release winter seasonal specialty. The original barleywine style that inspired derivative variations in Belgium, the United States, and elsewhere in the world.", - "notes": "A showcase of malty richness and complex, intense flavors. Chewy and rich in body, with warming alcohol and a pleasant fruity or hoppy interest. When aged, it can take on port-like flavors. A wintertime sipper. Strong ales of various formulations have long been brewed in England, and were known by several names. The modern barleywine traces back to Bass No. 1, which was first called a barleywine in 1872. Barleywines were darker beers until Tennant (now Whitbread) first produced Gold Label, a gold-colored barleywine in 1951. Usually the strongest ale offered by a brewery, and in recent years many commercial examples are now vintage-dated and offered as a limited-release winter seasonal specialty. The original barleywine style that inspired derivative variations in Belgium, the United States, and elsewhere in the world.", - "ingredients": "High-quality, well-modified pale malt should form the backbone of the grist, with judicious amounts of caramel malts. Dark malts should be used with great restraint, if at all, as most of the color arises from a lengthy boil. English hops such as Northdown, Target, East Kent Goldings and Fuggles are typical. Characterful British yeast.", - "comparison": "Although often a hoppy beer, the English Barleywine places less emphasis on hop character than the American Barleywine and features English hops. English versions can be darker, maltier, fruitier, and feature richer specialty malt flavors than American Barleywines. Has some overlap British Old Ale on the lower end, but generally does not have the vinous qualities of age; rather, it tends to display the mature, elegant signs of age.", - "examples": "Adnams Tally-Ho, Burton Bridge Thomas Sykes Old Ale, Coniston No. 9 Barley Wine, Fuller's Golden Pride, J.W. Lee's Vintage Harvest Ale, Robinson's Old Tom", - "tags": "very-high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.08 - }, - "maximum": { - "unit": "sg", - "value": 1.12 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.018 - }, - "maximum": { - "unit": "sg", - "value": 1.03 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 35 - }, - "maximum": { - "unit": "IBUs", - "value": 70 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 8 - }, - "maximum": { - "unit": "%", - "value": 12 - } - } - }, - { - "name": "Blonde Ale", - "category": "Pale American Ale", - "category_number": 18, - "category_id": "18", - "style_id": "18A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Light to moderate sweet malty aroma, possibly with a light bready or caramelly note. Low to moderate fruitiness is optional, but acceptable. May have a low to medium hop aroma, and can reflect almost any hop variety although citrusy, floral, fruity, and spicy notes are common.", - "appearance": "Light yellow to deep gold in color. Clear to brilliant. Low to medium white head with fair to good retention.", - "flavor": "Initial soft malty sweetness, but optionally some light character malt flavor (e.g., bread, toast, biscuit, wheat) can also be present. Caramel flavors typically absent; if present, they are typically low-color caramel notes. Low to medium fruity esters optional, but are welcome. Light to moderate hop flavor (any variety), but shouldn't be overly aggressive. Medium-low to medium bitterness, but the balance is normally towards the malt or even between malt and hops. Finishes medium-dry to slightly malty-sweet; impression of sweetness is often an expression of lower bitterness than actual residual sweetness.", - "mouthfeel": "Medium-light to medium body. Medium to high carbonation. Smooth without being heavy.", - "comments": "Brewpub alternative to standard American lagers, typically offered as an entry-level craft beer.", - "profile": "Light to moderate sweet malty aroma, possibly with a light bready or caramelly note. Low to moderate fruitiness is optional, but acceptable. May have a low to medium hop aroma, and can reflect almost any hop variety although citrusy, floral, fruity, and spicy notes are common. Light yellow to deep gold in color. Clear to brilliant. Low to medium white head with fair to good retention.Initial soft malty sweetness, but optionally some light character malt flavor (e.g., bread, toast, biscuit, wheat) can also be present. Caramel flavors typically absent; if present, they are typically low-color caramel notes. Low to medium fruity esters optional, but are welcome. Light to moderate hop flavor (any variety), but shouldn't be overly aggressive. Medium-low to medium bitterness, but the balance is normally towards the malt or even between malt and hops. Finishes medium-dry to slightly malty-sweet; impression of sweetness is often an expression of lower bitterness than actual residual sweetness. Medium-light to medium body. Medium to high carbonation. Smooth without being heavy. Brewpub alternative to standard American lagers, typically offered as an entry-level craft beer.", - "overall_impression": "Easy-drinking, approachable, malt-oriented American craft beer, often with interesting fruit, hop, or character malt notes. Well-balanced and clean, is a refreshing pint without aggressive flavors.", - "history": "An American craft beer style produced by many microbreweries and brewpubs, particularly those who cannot produce lagers. Regional variations exist (many US West Coast brewpub examples are more assertive, like pale ales) but in most areas this beer is designed as the least challenging beer in their lineup.", - "notes": "Easy-drinking, approachable, malt-oriented American craft beer, often with interesting fruit, hop, or character malt notes. Well-balanced and clean, is a refreshing pint without aggressive flavors. An American craft beer style produced by many microbreweries and brewpubs, particularly those who cannot produce lagers. Regional variations exist (many US West Coast brewpub examples are more assertive, like pale ales) but in most areas this beer is designed as the least challenging beer in their lineup.", - "ingredients": "Generally all malt, but can include up to 25% wheat malt and some sugar adjuncts. Any hop variety can be used. Clean American, lightly fruity English, or Kölsch yeast. May also be made with lager yeast, or cold-conditioned. Some versions may have honey, spices and/or fruit added, although if any of these ingredients are stronger than a background flavor they should be entered in those specialty categories instead.", - "comparison": "Typically has more flavor than American Lagers and Cream Ales. Less bitterness than an American Pale Ale.", - "examples": "Kona Big Wave Golden Ale, Pelican Kiwanda Cream Ale, Russian River Aud Blonde, Victory Summer Love, Widmer Citra Summer Blonde Brew", - "tags": "standard-strength, pale-color, any-fermentation, north-america, craft-style, pale-ale-family, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.038 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 28 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.8 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - } - }, - { - "name": "American Pale Ale", - "category": "Pale American Ale", - "category_number": 18, - "category_id": "18", - "style_id": "18B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate to strong hop aroma from American or New World hop varieties with a wide range of possible characteristics, including citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon. None of these specific characteristics are required, but hops should be apparent. Low to moderate maltiness supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuit, caramelly). Fruity esters vary from moderate to none. Dry hopping (if used) may add grassy notes, although this character should not be excessive.", - "appearance": "Pale golden to light amber. Moderately large white to off-white head with good retention. Generally quite clear, although dry-hopped versions may be slightly hazy.", - "flavor": "Moderate to high hop flavor, typically showing an American or New World hop character (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc.). Low to moderate clean grainy-malt character supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuity). The balance is typically towards the late hops and bitterness, but the malt presence should be supportive, not distracting. Caramel flavors are often absent or fairly restrained (but are acceptable as long as they don't clash with the hops). Fruity yeast esters can be moderate to none, although many hop varieties are quite fruity. Moderate to high hop bitterness with a medium to dry finish. Hop flavor and bitterness often lingers into the finish, but the aftertaste should generally be clean and not harsh. Dry hopping (if used) may add grassy notes, although this character should not be excessive.", - "mouthfeel": "Medium-light to medium body. Moderate to high carbonation. Overall smooth finish without astringency and harshness.", - "comments": "New hop varieties and usage methods continue to be developed. Judges should allow for characteristics of modern hops in this style, as well as classic varieties. Becoming more of an international craft style, with local adaptations appearing in many countries with an emerging craft beer market. Hopping styles can vary from the classic large bitterness addition, to more modern late hop-bursted examples; all variations are allowable.", - "profile": "Moderate to strong hop aroma from American or New World hop varieties with a wide range of possible characteristics, including citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon. None of these specific characteristics are required, but hops should be apparent. Low to moderate maltiness supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuit, caramelly). Fruity esters vary from moderate to none. Dry hopping (if used) may add grassy notes, although this character should not be excessive. Pale golden to light amber. Moderately large white to off-white head with good retention. Generally quite clear, although dry-hopped versions may be slightly hazy.Moderate to high hop flavor, typically showing an American or New World hop character (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc.). Low to moderate clean grainy-malt character supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuity). The balance is typically towards the late hops and bitterness, but the malt presence should be supportive, not distracting. Caramel flavors are often absent or fairly restrained (but are acceptable as long as they don't clash with the hops). Fruity yeast esters can be moderate to none, although many hop varieties are quite fruity. Moderate to high hop bitterness with a medium to dry finish. Hop flavor and bitterness often lingers into the finish, but the aftertaste should generally be clean and not harsh. Dry hopping (if used) may add grassy notes, although this character should not be excessive. Medium-light to medium body. Moderate to high carbonation. Overall smooth finish without astringency and harshness. New hop varieties and usage methods continue to be developed. Judges should allow for characteristics of modern hops in this style, as well as classic varieties. Becoming more of an international craft style, with local adaptations appearing in many countries with an emerging craft beer market. Hopping styles can vary from the classic large bitterness addition, to more modern late hop-bursted examples; all variations are allowable.", - "overall_impression": "A pale, refreshing and hoppy ale, yet with sufficient supporting malt to make the beer balanced and drinkable. The clean hop presence can reflect classic or modern American or New World hop varieties with a wide range of characteristics. An average-strength hop-forward pale American craft beer, generally balanced to be more accessible than modern American IPAs.", - "history": "A modern American craft beer era adaptation of English pale ale, reflecting indigenous ingredients (hops, malt, yeast, and water). Prior to the explosion in popularity of IPAs, was traditionally the most well-known and popular of American craft beers.", - "notes": "A pale, refreshing and hoppy ale, yet with sufficient supporting malt to make the beer balanced and drinkable. The clean hop presence can reflect classic or modern American or New World hop varieties with a wide range of characteristics. An average-strength hop-forward pale American craft beer, generally balanced to be more accessible than modern American IPAs. A modern American craft beer era adaptation of English pale ale, reflecting indigenous ingredients (hops, malt, yeast, and water). Prior to the explosion in popularity of IPAs, was traditionally the most well-known and popular of American craft beers.", - "ingredients": "Pale ale malt, typically North American two-row. American or New World hops, with a wide range of allowable characteristics. American or English ale yeast (neutral to lightly fruity). Specialty grains may add character and complexity, but generally make up a relatively small portion of the grist. Grains that add malt flavor and richness, light sweetness, and toasty or bready notes are often used (along with late hops) to differentiate brands.", - "comparison": "Typically lighter in color, cleaner in fermentation by-products, and having less caramel flavors than English counterparts. There can be some overlap in color between American pale ale and American amber ale. The American pale ale will generally be cleaner, have a less caramelly malt profile, less body, and often more finishing hops. Less bitterness in the balance and alcohol strength than an American IPA. More balanced and drinkable, and less intensely hop-focused and bitter than session-strength American IPAs (aka Session IPAs).", - "examples": "Ballast Point Grunion Pale Ale, Firestone Walker Pale 31, Great Lakes Burning River, Sierra Nevada Pale Ale, Stone Pale Ale, Tröegs Pale Ale", - "tags": "standard-strength, pale-color, top-fermented, north-america, craft-style, pale-ale-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 50 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 5 - }, - "maximum": { - "unit": "SRM", - "value": 10 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 6.2 - } - } - }, - { - "name": "American Amber Ale", - "category": "Amber And Brown American Beer", - "category_number": 19, - "category_id": "19", - "style_id": "19A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to moderate hop aroma with characteristics typical of American or New World hop varieties (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon). A citrusy hop character is common, but not required. Moderately-low to moderately-high maltiness (usually with a moderate caramel character), which can either support, balance, or sometimes mask the hop presentation. Esters vary from moderate to none.", - "appearance": "Amber to coppery-brown in color. Moderately large off-white head with good retention. Generally quite clear, although dry-hopped versions may be slightly hazy.", - "flavor": "Moderate to high hop flavor with characteristics typical of American or New World hop varieties (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon). A citrusy hop character is common, but not required. Malt flavors are moderate to strong, and usually show an initial malty sweetness followed by a moderate caramel flavor (and sometimes other character malts in lesser amounts). Malt and hop bitterness are usually balanced and mutually supportive, but can vary either way. Fruity esters can be moderate to none. Caramel sweetness and hop flavor/bitterness can linger somewhat into the medium to full finish.", - "mouthfeel": "Medium to medium-full body. Medium to high carbonation. Overall smooth finish without astringency. Stronger versions may have a slight alcohol warmth.", - "comments": "Can overlap in color with darker American pale ales, but with a different malt flavor and balance. Regional variations exist with some being fairly mainstream and others being quite aggressive in hopping. Stronger and more bitter versions are now split into the Red IPA style.", - "profile": "Low to moderate hop aroma with characteristics typical of American or New World hop varieties (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon). A citrusy hop character is common, but not required. Moderately-low to moderately-high maltiness (usually with a moderate caramel character), which can either support, balance, or sometimes mask the hop presentation. Esters vary from moderate to none. Amber to coppery-brown in color. Moderately large off-white head with good retention. Generally quite clear, although dry-hopped versions may be slightly hazy.Moderate to high hop flavor with characteristics typical of American or New World hop varieties (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon). A citrusy hop character is common, but not required. Malt flavors are moderate to strong, and usually show an initial malty sweetness followed by a moderate caramel flavor (and sometimes other character malts in lesser amounts). Malt and hop bitterness are usually balanced and mutually supportive, but can vary either way. Fruity esters can be moderate to none. Caramel sweetness and hop flavor/bitterness can linger somewhat into the medium to full finish. Medium to medium-full body. Medium to high carbonation. Overall smooth finish without astringency. Stronger versions may have a slight alcohol warmth. Can overlap in color with darker American pale ales, but with a different malt flavor and balance. Regional variations exist with some being fairly mainstream and others being quite aggressive in hopping. Stronger and more bitter versions are now split into the Red IPA style.", - "overall_impression": "An amber, hoppy, moderate-strength American craft beer with a caramel malty flavor. The balance can vary quite a bit, with some versions being fairly malty and others being aggressively hoppy. Hoppy and bitter versions should not have clashing flavors with the caramel malt profile.", - "history": "A modern American craft beer style developed as a variation from American Pale Ales. Known simply as Red Ales in some regions, these beers were popularized in the hop-loving Northern California and the Pacific Northwest areas before spreading nationwide.", - "notes": "An amber, hoppy, moderate-strength American craft beer with a caramel malty flavor. The balance can vary quite a bit, with some versions being fairly malty and others being aggressively hoppy. Hoppy and bitter versions should not have clashing flavors with the caramel malt profile. A modern American craft beer style developed as a variation from American Pale Ales. Known simply as Red Ales in some regions, these beers were popularized in the hop-loving Northern California and the Pacific Northwest areas before spreading nationwide.", - "ingredients": "Pale ale malt, typically North American two-row. Medium to dark crystal malts. May also contain specialty grains which add additional character and uniqueness. American or New World hops, often with citrusy flavors, are common but others may also be used.", - "comparison": "Darker, more caramelly, more body, and generally less bitter in the balance than American Pale Ales. Less alcohol, bitterness, and hop character than Red IPAs. Less strength, malt, and hop character than American Strong Ales. Should not have a strong chocolate or roast character that might suggest an American brown ale (although small amounts are OK).", - "examples": "Deschutes Cinder Cone Red, Full Sail Amber, Kona Lavaman Red Ale, North Coast Ruedrich's Red Seal Ale, Rogue American Amber Ale, Tröegs HopBack Amber Ale", - "tags": "standard-strength, amber-color, top-fermented, north-america, craft-style, amber-ale-family, balanced, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 10 - }, - "maximum": { - "unit": "SRM", - "value": 17 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 6.2 - } - } - }, - { - "name": "California Common", - "category": "Amber And Brown American Beer", - "category_number": 19, - "category_id": "19", - "style_id": "19B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Typically showcases rustic, traditional American hops (often with woody, rustic or minty qualities) in moderate to high strength. Light fruitiness acceptable. Low to moderate caramel and/or toasty malt aromatics support the hops.", - "appearance": "Medium amber to light copper color. Generally clear. Moderate off-white head with good retention.", - "flavor": "Moderately malty with a pronounced hop bitterness. The malt character is usually toasty (not roasted) and caramelly. Low to moderately high hop flavor, usually showing rustic, traditional American hop qualities (often woody, rustic, minty). Finish fairly dry and crisp, with a lingering hop bitterness and a firm, grainy malt flavor. Light fruity esters are acceptable, but otherwise clean.", - "mouthfeel": "Medium-bodied. Medium to medium-high carbonation.", - "comments": "This style is narrowly defined around the prototypical Anchor Steam example, although allowing other typical ingredients of the era. Northern Brewer hops are not a strict requirement for the style; modern American and New World-type hops (especially citrusy ones) are inappropriate, however.", - "profile": "Typically showcases rustic, traditional American hops (often with woody, rustic or minty qualities) in moderate to high strength. Light fruitiness acceptable. Low to moderate caramel and/or toasty malt aromatics support the hops. Medium amber to light copper color. Generally clear. Moderate off-white head with good retention.Moderately malty with a pronounced hop bitterness. The malt character is usually toasty (not roasted) and caramelly. Low to moderately high hop flavor, usually showing rustic, traditional American hop qualities (often woody, rustic, minty). Finish fairly dry and crisp, with a lingering hop bitterness and a firm, grainy malt flavor. Light fruity esters are acceptable, but otherwise clean. Medium-bodied. Medium to medium-high carbonation. This style is narrowly defined around the prototypical Anchor Steam example, although allowing other typical ingredients of the era. Northern Brewer hops are not a strict requirement for the style; modern American and New World-type hops (especially citrusy ones) are inappropriate, however.", - "overall_impression": "A lightly fruity beer with firm, grainy maltiness, interesting toasty and caramel flavors, and showcasing rustic, traditional American hop characteristics.", - "history": "American West Coast original, brewed originally as Steam Beer in the Gold Rush era. Large shallow open fermenters (coolships) were traditionally used to compensate for the absence of refrigeration and to take advantage of the cool ambient temperatures in the San Francisco Bay area. Fermented with a lager yeast, but one that was selected to ferment relatively clean beer at warmer temperatures. Modern versions are based on Anchor Brewing re-launching the style in the 1970s.", - "notes": "A lightly fruity beer with firm, grainy maltiness, interesting toasty and caramel flavors, and showcasing rustic, traditional American hop characteristics. American West Coast original, brewed originally as Steam Beer in the Gold Rush era. Large shallow open fermenters (coolships) were traditionally used to compensate for the absence of refrigeration and to take advantage of the cool ambient temperatures in the San Francisco Bay area. Fermented with a lager yeast, but one that was selected to ferment relatively clean beer at warmer temperatures. Modern versions are based on Anchor Brewing re-launching the style in the 1970s.", - "ingredients": "Pale ale malt, non-citrusy hops (often Northern Brewer), small amounts of toasted malt and/or crystal malts. Lager yeast; however, some strains (often with the mention of \"California\" in the name) work better than others at the warmer fermentation temperatures (55 to 60 °F) typically used. Note that some German yeast strains produce inappropriate sulfury character.", - "comparison": "Superficially similar to an American Amber Ale, but with specific choices for malt and hopping – the hop flavor/aroma is traditional (not modern) American hops, malt flavors are more toasty, the hopping is always assertive, and a warm-fermented lager yeast is used. Less attenuated, less carbonated and less fruity than Australian Sparkling ale.", - "examples": "Anchor Steam, Flying Dog Old Scratch Amber Lager, Schlafly Pi Common, Steamworks Steam Engine Lager", - "tags": "standard-strength, amber-color, bottom-fermented, north-america, traditional-style, amber-lager-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.011 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 45 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 10 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - } - }, - { - "name": "American Brown Ale", - "category": "Amber And Brown American Beer", - "category_number": 19, - "category_id": "19", - "style_id": "19C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate malty-sweet to malty-rich aroma with chocolate, caramel, nutty, and/or toasty qualities. Hop aroma is typically low to moderate, of almost any variety that complements the malt. Some interpretations of the style may feature a stronger hop aroma, an American or New World hop character (citrusy, fruity, tropical, etc.), and/or a fresh dry-hopped aroma (all are optional). Fruity esters are moderate to very low. The dark malt character is more robust than other brown ales, yet stops short of being overly porter-like. The malt and hops are generally balanced.", - "appearance": "Light to very dark brown color. Clear. Low to moderate off-white to light tan head.", - "flavor": "Medium to moderately-high malty-sweet or malty-rich flavor with chocolate, caramel, nutty, and/or toasty malt complexity, with medium to medium-high bitterness. The medium to medium-dry finish provides an aftertaste having both malt and hops. Hop flavor can be light to moderate, and may optionally have a citrusy, fruity, or tropical character, although any hop flavor that complements the malt is acceptable. Very low to moderate fruity esters.", - "mouthfeel": "Medium to medium-full body. More bitter versions may have a dry, resiny impression. Moderate to moderately-high carbonation.", - "comments": "Most commercial American Browns are not as aggressive as the original homebrewed versions, and some modern craft-brewed examples. This style reflects the current commercial offerings typically marketed as American Brown Ales rather than the hoppier, stronger homebrew versions from the early days of homebrewing. These IPA-strength brown ales should be entered in the Specialty IPA as Brown IPAs.", - "profile": "Moderate malty-sweet to malty-rich aroma with chocolate, caramel, nutty, and/or toasty qualities. Hop aroma is typically low to moderate, of almost any variety that complements the malt. Some interpretations of the style may feature a stronger hop aroma, an American or New World hop character (citrusy, fruity, tropical, etc.), and/or a fresh dry-hopped aroma (all are optional). Fruity esters are moderate to very low. The dark malt character is more robust than other brown ales, yet stops short of being overly porter-like. The malt and hops are generally balanced. Light to very dark brown color. Clear. Low to moderate off-white to light tan head.Medium to moderately-high malty-sweet or malty-rich flavor with chocolate, caramel, nutty, and/or toasty malt complexity, with medium to medium-high bitterness. The medium to medium-dry finish provides an aftertaste having both malt and hops. Hop flavor can be light to moderate, and may optionally have a citrusy, fruity, or tropical character, although any hop flavor that complements the malt is acceptable. Very low to moderate fruity esters. Medium to medium-full body. More bitter versions may have a dry, resiny impression. Moderate to moderately-high carbonation. Most commercial American Browns are not as aggressive as the original homebrewed versions, and some modern craft-brewed examples. This style reflects the current commercial offerings typically marketed as American Brown Ales rather than the hoppier, stronger homebrew versions from the early days of homebrewing. These IPA-strength brown ales should be entered in the Specialty IPA as Brown IPAs.", - "overall_impression": "A malty but hoppy beer frequently with chocolate and caramel flavors. The hop flavor and aroma complements and enhances the malt rather than clashing with it.", - "history": "An American style from the modern craft beer era. Derived from English Brown Ales, but with more hops. Pete's Wicked Ale was one of the first and best known examples, and inspired many imitations. Popular with homebrewers, where very hoppy versions were sometimes called Texas Brown Ales (this is now more appropriately a Brown IPA).", - "notes": "A malty but hoppy beer frequently with chocolate and caramel flavors. The hop flavor and aroma complements and enhances the malt rather than clashing with it. An American style from the modern craft beer era. Derived from English Brown Ales, but with more hops. Pete's Wicked Ale was one of the first and best known examples, and inspired many imitations. Popular with homebrewers, where very hoppy versions were sometimes called Texas Brown Ales (this is now more appropriately a Brown IPA).", - "ingredients": "Well-modified pale malt, plus crystal and darker malts (typically chocolate). American hops are typical, but continental or New World hops can also be used.", - "comparison": "More chocolate and caramel type flavors than American Pale or Amber Ales, typically with less prominent bitterness in the balance. Less bitterness, alcohol, and hop character than Brown IPAs. More bitter and generally hoppier than English Brown Ales, with a richer malt presence, usually higher alcohol, and American/New World hop character.", - "examples": "Anchor Brekle's Brown, Big Sky Moose Drool Brown Ale, Brooklyn Brown Ale, Bell's Best Brown, Cigar City Maduro Brown Ale, Smuttynose Old Brown Dog Ale, Telluride Face Down Brown", - "tags": "standard-strength, dark-color, top-fermented, north-america, craft-style, brown-ale-family, balanced, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 18 - }, - "maximum": { - "unit": "SRM", - "value": 35 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.3 - }, - "maximum": { - "unit": "%", - "value": 6.2 - } - } - }, - { - "name": "American Porter", - "category": "American Porter And Stout", - "category_number": 20, - "category_id": "20", - "style_id": "20A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Medium-light to medium-strong dark malt aroma, often with a lightly burnt character. Optionally may also show some additional malt character in support (grainy, bready, toffee-like, caramelly, chocolate, coffee, rich, and/or sweet). Hop aroma low to high, often with a resiny, earthy, or floral character. May be dry-hopped. Fruity esters are moderate to none.", - "appearance": "Medium brown to very dark brown, often with ruby- or garnet-like highlights. Can approach black in color. Clarity may be difficult to discern in such a dark beer, but when not opaque will be clear (particularly when held up to the light). Full, tan-colored head with moderately good head retention.", - "flavor": "Moderately strong malt flavor usually features a lightly burnt malt character (and sometimes chocolate and/or coffee flavors) with a bit of grainy, dark malt dryness in the finish. Overall flavor may finish from dry to medium-sweet. May have a sharp character from dark roasted grains, but should not be overly acrid, burnt or harsh. Medium to high bitterness, which can be accentuated by the dark malt. Hop flavor can vary from low to high with a resiny, earthy, or floral character, and balances the dark malt flavors. The dark malt and hops should not clash. Dry-hopped versions may have a resiny flavor. Fruity esters moderate to none.", - "mouthfeel": "Medium to medium-full body. Moderately low to moderately high carbonation. Stronger versions may have a slight alcohol warmth. May have a slight astringency from dark malts, although this character should not be strong.", - "comments": "Although a rather broad style open to brewer interpretation. Dark malt intensity and flavor can vary significantly. May or may not have a strong hop character, and may or may not have significant fermentation by-products; thus may seem to have an \"American\" or \"British\" character.", - "profile": "Medium-light to medium-strong dark malt aroma, often with a lightly burnt character. Optionally may also show some additional malt character in support (grainy, bready, toffee-like, caramelly, chocolate, coffee, rich, and/or sweet). Hop aroma low to high, often with a resiny, earthy, or floral character. May be dry-hopped. Fruity esters are moderate to none. Medium brown to very dark brown, often with ruby- or garnet-like highlights. Can approach black in color. Clarity may be difficult to discern in such a dark beer, but when not opaque will be clear (particularly when held up to the light). Full, tan-colored head with moderately good head retention.Moderately strong malt flavor usually features a lightly burnt malt character (and sometimes chocolate and/or coffee flavors) with a bit of grainy, dark malt dryness in the finish. Overall flavor may finish from dry to medium-sweet. May have a sharp character from dark roasted grains, but should not be overly acrid, burnt or harsh. Medium to high bitterness, which can be accentuated by the dark malt. Hop flavor can vary from low to high with a resiny, earthy, or floral character, and balances the dark malt flavors. The dark malt and hops should not clash. Dry-hopped versions may have a resiny flavor. Fruity esters moderate to none. Medium to medium-full body. Moderately low to moderately high carbonation. Stronger versions may have a slight alcohol warmth. May have a slight astringency from dark malts, although this character should not be strong. Although a rather broad style open to brewer interpretation. Dark malt intensity and flavor can vary significantly. May or may not have a strong hop character, and may or may not have significant fermentation by-products; thus may seem to have an \"American\" or \"British\" character.", - "overall_impression": "A substantial, malty dark beer with a complex and flavorful dark malt character.", - "history": "A stronger, more aggressive version of pre-prohibition porters and/or English porters developed in the modern craft beer era. Historical versions existed, particularly on the US East Coast, some of which are still being produced (see the Historical Beer, Pre-Prohibition Porter). This style describes the modern craft version.", - "notes": "A substantial, malty dark beer with a complex and flavorful dark malt character. A stronger, more aggressive version of pre-prohibition porters and/or English porters developed in the modern craft beer era. Historical versions existed, particularly on the US East Coast, some of which are still being produced (see the Historical Beer, Pre-Prohibition Porter). This style describes the modern craft version.", - "ingredients": "May contain several malts, prominently dark malts, which often include black malt (chocolate malt is also often used). American hops typically used for bittering, but US or UK finishing hops can be used; a clashing citrus quality is generally undesirable. Ale yeast can either be clean US versions or characterful English varieties.", - "comparison": "More bitter and often stronger with more dark malt qualities and dryness than English Porters or Pre-Prohibition Porters. Less strong and assertive than American Stouts.", - "examples": "Anchor Porter, Boulevard Bully! Porter, Deschutes Black Butte Porter, Founders Porter, Great Lakes Edmund Fitzgerald Porter, Smuttynose Robust Porter, Sierra Nevada Porter", - "tags": "standard-strength, dark-color, top-fermented, north-america, craft-style, porter-family, bitter, roasty, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.07 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.012 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 50 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 22 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.8 - }, - "maximum": { - "unit": "%", - "value": 6.5 - } - } - }, - { - "name": "American Stout", - "category": "American Porter And Stout", - "category_number": 20, - "category_id": "20", - "style_id": "20B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate to strong aroma of roasted malts, often having a roasted coffee or dark chocolate quality. Burnt or charcoal aromas are acceptable at low levels. Medium to very low hop aroma, often with a citrusy or resiny character. Medium to no esters. Light alcohol-derived aromatics are also optional.", - "appearance": "Generally a jet black color, although some may appear very dark brown. Large, persistent head of light tan to light brown in color. Usually opaque.", - "flavor": "Moderate to very high roasted malt flavors, often tasting of coffee, roasted coffee beans, dark or bittersweet chocolate. May have the flavor of slightly burnt coffee grounds, but this character should not be prominent. Low to medium malt sweetness, often with rich chocolate or caramel flavors. Medium to high bitterness. Low to high hop flavor, generally citrusy or resiny. Low to no esters. Medium to dry finish, occasionally with a lightly burnt quality. Alcohol flavors can be present up to medium levels, but smooth.", - "mouthfeel": "Medium to full body. Can be somewhat creamy, particularly if a small amount of oats have been used to enhance mouthfeel. Can have a bit of roast-derived astringency, but this character should not be excessive. Medium-high to high carbonation. Light to moderately strong alcohol warmth, but smooth and not excessively hot.", - "comments": "Breweries express individuality through varying the roasted malt profile, malt sweetness and flavor, and the amount of finishing hops used. Generally has bolder roasted malt flavors and hopping than other traditional stouts (except Imperial Stouts).", - "profile": "Moderate to strong aroma of roasted malts, often having a roasted coffee or dark chocolate quality. Burnt or charcoal aromas are acceptable at low levels. Medium to very low hop aroma, often with a citrusy or resiny character. Medium to no esters. Light alcohol-derived aromatics are also optional. Generally a jet black color, although some may appear very dark brown. Large, persistent head of light tan to light brown in color. Usually opaque.Moderate to very high roasted malt flavors, often tasting of coffee, roasted coffee beans, dark or bittersweet chocolate. May have the flavor of slightly burnt coffee grounds, but this character should not be prominent. Low to medium malt sweetness, often with rich chocolate or caramel flavors. Medium to high bitterness. Low to high hop flavor, generally citrusy or resiny. Low to no esters. Medium to dry finish, occasionally with a lightly burnt quality. Alcohol flavors can be present up to medium levels, but smooth. Medium to full body. Can be somewhat creamy, particularly if a small amount of oats have been used to enhance mouthfeel. Can have a bit of roast-derived astringency, but this character should not be excessive. Medium-high to high carbonation. Light to moderately strong alcohol warmth, but smooth and not excessively hot. Breweries express individuality through varying the roasted malt profile, malt sweetness and flavor, and the amount of finishing hops used. Generally has bolder roasted malt flavors and hopping than other traditional stouts (except Imperial Stouts).", - "overall_impression": "A fairly strong, highly roasted, bitter, hoppy dark stout. Has the body and dark flavors typical of stouts with a more aggressive American hop character and bitterness.", - "history": "A modern craft beer and homebrew style that applied an aggressive American hopping regime to a strong traditional English or Irish stout. The homebrew version was previously known as West Coast Stout, which is a common naming scheme for a more highly-hopped beer.", - "notes": "A fairly strong, highly roasted, bitter, hoppy dark stout. Has the body and dark flavors typical of stouts with a more aggressive American hop character and bitterness. A modern craft beer and homebrew style that applied an aggressive American hopping regime to a strong traditional English or Irish stout. The homebrew version was previously known as West Coast Stout, which is a common naming scheme for a more highly-hopped beer.", - "ingredients": "Common American base malts and yeast. Varied use of dark and roasted malts, as well as caramel-type malts. Adjuncts such as oatmeal may be present in low quantities. American hop varieties.", - "comparison": "Like a hoppy, bitter, strongly roasted Extra or Export Stout. Much more roast and body than a Black IPA. Bigger, stronger versions belong in the Russian Imperial Stout style. Stronger and more assertive, particularly in the dark malt/grain additions and hop character, than American Porter.", - "examples": "Avery Out of Bounds Stout, Deschutes Obsidian Stout, North Coast Old No. 38, Rogue Shakespeare Stout, Sierra Nevada Stout", - "tags": "high-strength, dark-color, top-fermented, north-america, craft-style, stout-family, bitter, roasty, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.022 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 35 - }, - "maximum": { - "unit": "IBUs", - "value": 75 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 30 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 7 - } - } - }, - { - "name": "Imperial Stout", - "category": "American Porter And Stout", - "category_number": 20, - "category_id": "20", - "style_id": "20C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Rich and complex, with variable amounts of roasted grains, maltiness, fruity esters, hops, and alcohol. The roasted malt character can take on coffee, dark chocolate, or slightly burnt tones and can be light to moderately strong. The malt aroma can be subtle to rich and barleywine-like. May optionally show a slight specialty malt character (e.g., caramel), but this should only add complexity and not dominate. Fruity esters may be low to moderately strong, and may take on a complex, dark fruit (e.g., plums, prunes, raisins) character. Hop aroma can be very low to quite aggressive, and may contain any hop variety. An alcohol character may be present, but shouldn't be sharp, hot, or solventy. Aged versions may have a slight vinous or port-like quality, but shouldn't be sour. The balance can vary with any of the aroma elements taking center stage. Not all possible aromas described need be present; many interpretations are possible. Aging affects the intensity, balance and smoothness of aromatics.", - "appearance": "Color may range from very dark reddish-brown to jet black. Opaque. Deep tan to dark brown head. Generally has a well-formed head, although head retention may be low to moderate. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.", - "flavor": "Rich, deep, complex and frequently quite intense, with variable amounts of roasted malt/grains, maltiness, fruity esters, hop bitterness and flavor, and alcohol. Medium to aggressively high bitterness. Medium-low to high hop flavor (any variety). Moderate to aggressively high roasted malt/grain flavors can suggest bittersweet or unsweetened chocolate, cocoa, and/or strong coffee. A slightly burnt grain, burnt currant or tarry character may be evident. Fruity esters may be low to intense, and can take on a dark fruit character (raisins, plums, or prunes). Malt backbone can be balanced and supportive to rich and barleywine-like, and may optionally show some supporting caramel, bready or toasty flavors. The palate and finish can vary from relatively dry to moderately sweet, usually with some lingering roastiness, hop bitterness and warming character. The balance and intensity of flavors can be affected by aging, with some flavors becoming more subdued over time and some aged, vinous or port-like qualities developing.", - "mouthfeel": "Full to very full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). Gentle smooth warmth from alcohol should be present and noticeable, but not a primary characteristic; in well-conditioned versions, the alcohol can be deceptive. Should not be syrupy or under-attenuated. Carbonation may be low to moderate, depending on age and conditioning.", - "comments": "Traditionally an English style, but it is currently much more popular and widely available in America where it is a craft beer favorite, not a curiosity. Variations exist, with English and American interpretations (predictably, the American versions have more bitterness, roasted character, and finishing hops, while the English varieties reflect a more complex specialty malt character and a more forward ester profile). Not all Imperial Stouts have a clearly ‘English' or ‘American' character; anything in between the two variants are allowable as well, which is why it is counter-productive to designate a sub-type when entering a competition. The wide range of allowable characteristics allow for maximum brewer creativity. Judges must be aware of the broad range of the style, and not try to judge all examples as clones of a specific commercial beer.", - "profile": "Rich and complex, with variable amounts of roasted grains, maltiness, fruity esters, hops, and alcohol. The roasted malt character can take on coffee, dark chocolate, or slightly burnt tones and can be light to moderately strong. The malt aroma can be subtle to rich and barleywine-like. May optionally show a slight specialty malt character (e.g., caramel), but this should only add complexity and not dominate. Fruity esters may be low to moderately strong, and may take on a complex, dark fruit (e.g., plums, prunes, raisins) character. Hop aroma can be very low to quite aggressive, and may contain any hop variety. An alcohol character may be present, but shouldn't be sharp, hot, or solventy. Aged versions may have a slight vinous or port-like quality, but shouldn't be sour. The balance can vary with any of the aroma elements taking center stage. Not all possible aromas described need be present; many interpretations are possible. Aging affects the intensity, balance and smoothness of aromatics. Color may range from very dark reddish-brown to jet black. Opaque. Deep tan to dark brown head. Generally has a well-formed head, although head retention may be low to moderate. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.Rich, deep, complex and frequently quite intense, with variable amounts of roasted malt/grains, maltiness, fruity esters, hop bitterness and flavor, and alcohol. Medium to aggressively high bitterness. Medium-low to high hop flavor (any variety). Moderate to aggressively high roasted malt/grain flavors can suggest bittersweet or unsweetened chocolate, cocoa, and/or strong coffee. A slightly burnt grain, burnt currant or tarry character may be evident. Fruity esters may be low to intense, and can take on a dark fruit character (raisins, plums, or prunes). Malt backbone can be balanced and supportive to rich and barleywine-like, and may optionally show some supporting caramel, bready or toasty flavors. The palate and finish can vary from relatively dry to moderately sweet, usually with some lingering roastiness, hop bitterness and warming character. The balance and intensity of flavors can be affected by aging, with some flavors becoming more subdued over time and some aged, vinous or port-like qualities developing. Full to very full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). Gentle smooth warmth from alcohol should be present and noticeable, but not a primary characteristic; in well-conditioned versions, the alcohol can be deceptive. Should not be syrupy or under-attenuated. Carbonation may be low to moderate, depending on age and conditioning. Traditionally an English style, but it is currently much more popular and widely available in America where it is a craft beer favorite, not a curiosity. Variations exist, with English and American interpretations (predictably, the American versions have more bitterness, roasted character, and finishing hops, while the English varieties reflect a more complex specialty malt character and a more forward ester profile). Not all Imperial Stouts have a clearly ‘English' or ‘American' character; anything in between the two variants are allowable as well, which is why it is counter-productive to designate a sub-type when entering a competition. The wide range of allowable characteristics allow for maximum brewer creativity. Judges must be aware of the broad range of the style, and not try to judge all examples as clones of a specific commercial beer.", - "overall_impression": "An intensely-flavored, big, dark ale with a wide range of flavor balances and regional interpretations. Roasty-burnt malt with deep dark or dried fruit flavors, and a warming, bittersweet finish. Despite the intense flavors, the components need to meld together to create a complex, harmonious beer, not a hot mess.", - "history": "A style with a long, although not necessarily continuous, heritage. Traces roots to strong English porters brewed for export in the 1700s, and said to have been popular with the Russian Imperial Court. After the Napoleonic wars interrupted trade, these beers were increasingly sold in England. The style eventually all but died out, until being popularly embraced in the modern craft beer era, both in England as a revival and in the United States as a reinterpretation or re-imagination by extending the style with American characteristics.", - "notes": "An intensely-flavored, big, dark ale with a wide range of flavor balances and regional interpretations. Roasty-burnt malt with deep dark or dried fruit flavors, and a warming, bittersweet finish. Despite the intense flavors, the components need to meld together to create a complex, harmonious beer, not a hot mess. A style with a long, although not necessarily continuous, heritage. Traces roots to strong English porters brewed for export in the 1700s, and said to have been popular with the Russian Imperial Court. After the Napoleonic wars interrupted trade, these beers were increasingly sold in England. The style eventually all but died out, until being popularly embraced in the modern craft beer era, both in England as a revival and in the United States as a reinterpretation or re-imagination by extending the style with American characteristics.", - "ingredients": "Well-modified pale malt, with generous quantities of roasted malts and/or grain. May have a complex grain bill using virtually any variety of malt. Any type of hops may be used. American or English ale yeast.", - "comparison": "Like a black barleywine with every dimension of flavor coming into play. More complex, with a broader range of possible flavors than lower-gravity stouts.", - "examples": "American –Bell's Expedition Stout, Cigar City Marshal Zhukov's Imperial Stout, Great Divide Yeti Imperial Stout, North Coast Old Rasputin Imperial Stout, Sierra Nevada Narwhal Imperial Stout; English – Courage Imperial Russian Stout, Le Coq Imperial Extra Double Stout, Samuel Smith Imperial Stout", - "tags": "very-high-strength, dark-color, top-fermented, british-isles, north-america, traditional-style, craft-style, stout-family, malty, bitter, roasty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.075 - }, - "maximum": { - "unit": "sg", - "value": 1.115 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.018 - }, - "maximum": { - "unit": "sg", - "value": 1.03 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 50 - }, - "maximum": { - "unit": "IBUs", - "value": 90 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 30 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 8 - }, - "maximum": { - "unit": "%", - "value": 12 - } - } - }, - { - "name": "American IPA", - "category": "IPA", - "category_number": 21, - "category_id": "21", - "style_id": "21A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "A prominent to intense hop aroma featuring one or more characteristics of American or New World hops, such as citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc. Many versions are dry hopped and can have an additional fresh hop aroma; this is desirable but not required. Grassiness should be minimal, if present. A low to medium-low clean, grainy-malty aroma may be found in the background. Fruitiness from yeast may also be detected in some versions, although a neutral fermentation character is also acceptable. A restrained alcohol note may be present, but this character should be minimal at best. Any American or New World hop character is acceptable; new hop varieties continue to be released and should not constrain this style.", - "appearance": "Color ranges from medium gold to light reddish-amber. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Medium-sized, white to off-white head with good persistence.", - "flavor": "Hop flavor is medium to very high, and should reflect an American or New World hop character, such as citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc. Medium-high to very high hop bitterness. Malt flavor should be low to medium-low, and is generally clean and grainy-malty although some light caramel or toasty flavors are acceptable. Low yeast-derived fruitiness is acceptable but not required. Dry to medium-dry finish; residual sweetness should be low to none. The bitterness and hop flavor may linger into the aftertaste but should not be harsh. A very light, clean alcohol flavor may be noted in stronger versions. May be slightly sulfury, but most examples do not exhibit this character.", - "mouthfeel": "Medium-light to medium body, with a smooth texture. Medium to medium-high carbonation. No harsh hop-derived astringency. Very light, smooth alcohol warming not a fault if it does not intrude into overall balance.", - "comments": "A modern American craft beer interpretation of the historical English style, brewed using American ingredients and attitude. The basis for many modern variations, including the stronger Double IPA as well as IPAs with various other ingredients. Those other IPAs should generally be entered in the Specialty IPA style. Oak is inappropriate in this style; if noticeably oaked, enter in wood-aged category.", - "profile": "A prominent to intense hop aroma featuring one or more characteristics of American or New World hops, such as citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc. Many versions are dry hopped and can have an additional fresh hop aroma; this is desirable but not required. Grassiness should be minimal, if present. A low to medium-low clean, grainy-malty aroma may be found in the background. Fruitiness from yeast may also be detected in some versions, although a neutral fermentation character is also acceptable. A restrained alcohol note may be present, but this character should be minimal at best. Any American or New World hop character is acceptable; new hop varieties continue to be released and should not constrain this style. Color ranges from medium gold to light reddish-amber. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Medium-sized, white to off-white head with good persistence.Hop flavor is medium to very high, and should reflect an American or New World hop character, such as citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc. Medium-high to very high hop bitterness. Malt flavor should be low to medium-low, and is generally clean and grainy-malty although some light caramel or toasty flavors are acceptable. Low yeast-derived fruitiness is acceptable but not required. Dry to medium-dry finish; residual sweetness should be low to none. The bitterness and hop flavor may linger into the aftertaste but should not be harsh. A very light, clean alcohol flavor may be noted in stronger versions. May be slightly sulfury, but most examples do not exhibit this character. Medium-light to medium body, with a smooth texture. Medium to medium-high carbonation. No harsh hop-derived astringency. Very light, smooth alcohol warming not a fault if it does not intrude into overall balance. A modern American craft beer interpretation of the historical English style, brewed using American ingredients and attitude. The basis for many modern variations, including the stronger Double IPA as well as IPAs with various other ingredients. Those other IPAs should generally be entered in the Specialty IPA style. Oak is inappropriate in this style; if noticeably oaked, enter in wood-aged category.", - "overall_impression": "A decidedly hoppy and bitter, moderately strong American pale ale, showcasing modern American or New World hop varieties. The balance is hop-forward, with a clean fermentation profile, dryish finish, and clean, supporting malt allowing a creative range of hop character to shine through.", - "history": "The first modern American craft beer example is generally believed to be Anchor Liberty Ale, first brewed in 1975 and using whole Cascade hops; the style has pushed beyond that original beer, which now tastes more like an American Pale Ale in comparison. American-made IPAs from earlier eras were not unknown (particularly the well-regarded Ballantine's IPA, an oak-aged beer using an old English recipe). This style is based on the modern craft beer examples.", - "notes": "A decidedly hoppy and bitter, moderately strong American pale ale, showcasing modern American or New World hop varieties. The balance is hop-forward, with a clean fermentation profile, dryish finish, and clean, supporting malt allowing a creative range of hop character to shine through. The first modern American craft beer example is generally believed to be Anchor Liberty Ale, first brewed in 1975 and using whole Cascade hops; the style has pushed beyond that original beer, which now tastes more like an American Pale Ale in comparison. American-made IPAs from earlier eras were not unknown (particularly the well-regarded Ballantine's IPA, an oak-aged beer using an old English recipe). This style is based on the modern craft beer examples.", - "ingredients": "Pale ale or 2-row brewers malt as the base, American or New World hops, American or English yeast with a clean or slightly fruity profile. Generally all-malt, but mashed at lower temperatures for high attenuation. Sugar additions to aid attenuation are acceptable. Restrained use of crystal malts, if any, as high amounts can lead to a sweet finish and clash with the hop character.", - "comparison": "Stronger and more highly hopped than an American Pale Ale. Compared to an English IPA, has less of the \"English\" character from malt, hops, and yeast (less caramel, bread, and toast; more American/New World hops than English; less yeast-derived esters), less body, and often has a more hoppy balance and is slightly stronger than most examples. Less alcohol than a Double IPA, but with a similar balance.", - "examples": "Alpine Duet, Bell's Two-Hearted Ale, Fat Heads Head Hunter IPA, Firestone Walker Union Jack, Lagunitas IPA, Russian River Blind Pig IPA, Stone IPA", - "tags": "high-strength, pale-color, top-fermented, north-america, craft-style, ipa-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.056 - }, - "maximum": { - "unit": "sg", - "value": 1.07 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 40 - }, - "maximum": { - "unit": "IBUs", - "value": 70 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.5 - }, - "maximum": { - "unit": "%", - "value": 7.5 - } - } - }, - { - "name": "Specialty IPA", - "category": "IPA", - "category_number": 21, - "category_id": "21", - "style_id": "21B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Detectable hop aroma is required; characterization of hops is dependent on the specific type of Specialty IPA. Other aromatics may be present; hop aroma is typically the strongest element.", - "appearance": "Color depends on specific type of Specialty IPA. Most should be clear, although certain styles with high amounts of starchy adjuncts, or unfiltered dry-hopped versions may be slightly hazy. Darker types can be opaque making clarity irrelevant. Good, persistent head stand with color dependent on the specific type of Specialty IPA.", - "flavor": "Hop flavor is typically medium-low to high, with qualities dependent on typical varieties used in the specific Specialty IPA. Hop bitterness is typically medium-high to very high, with qualities dependent on typical varieties used in the specific Specialty IPA. Malt flavor generally low to medium, with qualities dependent on typical varieties used in the specific Specialty IPA. Commonly will have a medium-dry to dry finish. Some clean alcohol flavor can be noted in stronger versions. Various types of Specialty IPAs can show additional malt and yeast characteristics, depending on the type.", - "mouthfeel": "Smooth, medium-light to medium-bodied mouthfeel. Medium carbonation. Some smooth alcohol warming can be sensed in stronger versions.", - "comments": "The choice of yeast strain and hop varieties is critical since many choices will horribly clash.", - "profile": "Detectable hop aroma is required; characterization of hops is dependent on the specific type of Specialty IPA. Other aromatics may be present; hop aroma is typically the strongest element. Color depends on specific type of Specialty IPA. Most should be clear, although certain styles with high amounts of starchy adjuncts, or unfiltered dry-hopped versions may be slightly hazy. Darker types can be opaque making clarity irrelevant. Good, persistent head stand with color dependent on the specific type of Specialty IPA.Hop flavor is typically medium-low to high, with qualities dependent on typical varieties used in the specific Specialty IPA. Hop bitterness is typically medium-high to very high, with qualities dependent on typical varieties used in the specific Specialty IPA. Malt flavor generally low to medium, with qualities dependent on typical varieties used in the specific Specialty IPA. Commonly will have a medium-dry to dry finish. Some clean alcohol flavor can be noted in stronger versions. Various types of Specialty IPAs can show additional malt and yeast characteristics, depending on the type. Smooth, medium-light to medium-bodied mouthfeel. Medium carbonation. Some smooth alcohol warming can be sensed in stronger versions. The choice of yeast strain and hop varieties is critical since many choices will horribly clash.", - "overall_impression": "Recognizable as an IPA by balance – a hop-forward, bitter, dryish beer – with something else present to distinguish it from the standard categories. Should have good drinkability, regardless of the form. Excessive harshness and heaviness are typically faults, as are strong flavor clashes between the hops and the other specialty ingredients.", - "history": "A relatively new style, started showing up in the mid 2000s. Homebrewers and microbreweries simply substituted Belgian yeast in their American IPA recipes. Belgian breweries added more hops to their tripel and pale ale recipes.", - "notes": "Recognizable as an IPA by balance – a hop-forward, bitter, dryish beer – with something else present to distinguish it from the standard categories. Should have good drinkability, regardless of the form. Excessive harshness and heaviness are typically faults, as are strong flavor clashes between the hops and the other specialty ingredients. A relatively new style, started showing up in the mid 2000s. Homebrewers and microbreweries simply substituted Belgian yeast in their American IPA recipes. Belgian breweries added more hops to their tripel and pale ale recipes.", - "ingredients": "Belgian yeast strains used in making tripels and golden strong ales. American examples tend to use American or New World hops while Belgian versions tend to use European hops and only pale malt.", - "comparison": "A cross between an American IPA/Imperial IPA with a Belgian Golden Strong Ale or Tripel. This style is may be spicier, stronger, drier and more fruity than an American IPA.", - "examples": "Brewery Vivant Triomphe, Houblon Chouffe, Epic Brainless IPA, Green Flash Le Freak, Stone Cali-Belgique, Urthel Hop It", - "tags": "high-strength, pale-color, top-fermented, north-america, craft-style, ipa-family, specialty-family, bitter, hoppy", - "entry_instructions": "Entrant must specify a strength (session, standard, double); if no strength is specified, standard will be assumed. Entrant must specify specific type of Specialty IPA from the library of known types listed in the Style Guidelines, or as amended by the BJCP web site; or the entrant must describe the type of Specialty IPA and its key characteristics in comment form so judges will know what to expect. Entrants may specify specific hop varieties used, if entrants feel that judges may not recognize the varietal characteristics of newer hops. Entrants may specify a combination of defined IPA types (e.g., Black Rye IPA) without providing additional descriptions. Entrants may use this category for a different strength version of an IPA defined by its own BJCP subcategory (e.g., session-strength American or English IPA) – except where an existing BJCP subcategory already exists for that style (e.g., double [American] IPA). Currently Defined Types: Black IPA, Brown IPA, White IPA, Rye IPA, Belgian IPA, Red IPA\n \n " - }, - { - "name": "Double IPA", - "category": "Strong American Ale", - "category_number": 22, - "category_id": "22", - "style_id": "22A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "A prominent to intense hop aroma that typically showcases American or New World hop characteristics (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc.). Most versions are dry hopped and can have an additional resinous or grassy aroma, although this is not absolutely required. Some clean malty sweetness may be found in the background. Fruitiness, either from esters or hops, may also be detected in some versions, although a neutral fermentation character is typical. Some alcohol can usually be noted, but it should not have a \"hot\" character.", - "appearance": "Color ranges from golden to light orange-copper; most modern versions are fairly pale. Good clarity, although unfiltered dry-hopped versions may be a bit hazy. Moderate-sized, persistent, white to off-white head.", - "flavor": "Hop flavor is strong and complex, and can reflect the characteristics of modern American or New World hop varieties (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc.). High to absurdly high hop bitterness. Low to medium malt flavor, generally clean and grainy-malty although low levels of caramel or toasty flavors are acceptable. Low to medium fruitiness is acceptable but not required. A long, lingering bitterness is usually present in the aftertaste but should not be harsh. Dry to medium-dry finish; should not finish sweet or heavy. A light, clean, smooth alcohol flavor is not a fault. Oak is inappropriate in this style. May be slightly sulfury, but most examples do not exhibit this character.", - "mouthfeel": "Medium-light to medium body, with a smooth texture. Medium to medium-high carbonation. No harsh hop-derived astringency. Restrained, smooth alcohol warming acceptable.", - "comments": "A showcase for hops, yet remaining quite drinkable. The adjective \"double\" is arbitrary and simply implies a stronger version of an IPA; \"imperial,\" \"extra,\" \"extreme,\" or any other variety of adjectives would be equally valid, although the modern American market seems to have now coalesced around the \"double\" term.", - "profile": "A prominent to intense hop aroma that typically showcases American or New World hop characteristics (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc.). Most versions are dry hopped and can have an additional resinous or grassy aroma, although this is not absolutely required. Some clean malty sweetness may be found in the background. Fruitiness, either from esters or hops, may also be detected in some versions, although a neutral fermentation character is typical. Some alcohol can usually be noted, but it should not have a \"hot\" character. Color ranges from golden to light orange-copper; most modern versions are fairly pale. Good clarity, although unfiltered dry-hopped versions may be a bit hazy. Moderate-sized, persistent, white to off-white head.Hop flavor is strong and complex, and can reflect the characteristics of modern American or New World hop varieties (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc.). High to absurdly high hop bitterness. Low to medium malt flavor, generally clean and grainy-malty although low levels of caramel or toasty flavors are acceptable. Low to medium fruitiness is acceptable but not required. A long, lingering bitterness is usually present in the aftertaste but should not be harsh. Dry to medium-dry finish; should not finish sweet or heavy. A light, clean, smooth alcohol flavor is not a fault. Oak is inappropriate in this style. May be slightly sulfury, but most examples do not exhibit this character. Medium-light to medium body, with a smooth texture. Medium to medium-high carbonation. No harsh hop-derived astringency. Restrained, smooth alcohol warming acceptable. A showcase for hops, yet remaining quite drinkable. The adjective \"double\" is arbitrary and simply implies a stronger version of an IPA; \"imperial,\" \"extra,\" \"extreme,\" or any other variety of adjectives would be equally valid, although the modern American market seems to have now coalesced around the \"double\" term.", - "overall_impression": "An intensely hoppy, fairly strong pale ale without the big, rich, complex maltiness and residual sweetness and body of an American barleywine. Strongly hopped, but clean, dry, and lacking harshness. Drinkability is an important characteristic; this should not be a heavy, sipping beer.", - "history": "An American craft beer innovation first developed in the mid-late 1990s reflecting the trend of American craft brewers \"pushing the envelope\" to satisfy the need of hop aficionados for increasingly intense products. Became more mainstream and popular throughout the 2000s, and inspired additional IPA creativity.", - "notes": "An intensely hoppy, fairly strong pale ale without the big, rich, complex maltiness and residual sweetness and body of an American barleywine. Strongly hopped, but clean, dry, and lacking harshness. Drinkability is an important characteristic; this should not be a heavy, sipping beer. An American craft beer innovation first developed in the mid-late 1990s reflecting the trend of American craft brewers \"pushing the envelope\" to satisfy the need of hop aficionados for increasingly intense products. Became more mainstream and popular throughout the 2000s, and inspired additional IPA creativity.", - "ingredients": "Clean 2-row malt is typical as a base grain; an excessively complex grist can be distracting. Crystal-type malts often muddy the hop flavors, and are generally considered undesirable in significant quantities. Sugar or other highly fermentable adjuncts are often used to increase attenuation, as are lower-temperature mash rests. Can use a complex variety of hops, typically American or New World, often with cutting-edge profiles providing distinctive differences. Modern hops with unusual characteristics are not out of style. American yeast that can give a clean or slightly fruity profile.", - "comparison": "Bigger than either an English or American IPA in both alcohol strength and overall hop level (bittering and finish). Less malty, lower body, less rich and a greater overall hop intensity than an American Barleywine. Typically not as high in gravity/alcohol as a barleywine, since high alcohol and malt tend to limit drinkability.", - "examples": "Avery Maharaja, Fat Heads Hop Juju, Firestone Walker Double Jack, Port Brewing Hop 15, Russian River Pliny the Elder, Stone Ruination IPA, Three Floyds Dreadnaught", - "tags": "very-high-strength, pale-color, top-fermented, north-america, craft-style, ipa-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.065 - }, - "maximum": { - "unit": "sg", - "value": 1.085 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 60 - }, - "maximum": { - "unit": "IBUs", - "value": 120 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 7.5 - }, - "maximum": { - "unit": "%", - "value": 10 - } - } - }, - { - "name": "American Strong Ale", - "category": "Strong American Ale", - "category_number": 22, - "category_id": "22", - "style_id": "22B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Medium to high hop aroma, most often presenting citrusy or resiny notes although characteristics associated with other American or New World varieties may be found (tropical, stone fruit, melon, etc.). Moderate to bold maltiness supports hop profile, with medium to dark caramel a common presence, bready or toasty possible and background notes of light roast and/or chocolate noticeable in some examples. Generally exhibits clean to moderately fruity ester profile. Moderate alcohol aromatics may be noticeable, but should not be hot, harsh, or solventy.", - "appearance": "Medium amber to deep copper or light brown. Moderate-low to medium-sized off-white to light tan head; may have low head retention. Good clarity. Alcohol level and viscosity may present \"legs\" when glass is swirled.", - "flavor": "Medium to high dextrinous malt with a full range of caramel, toffee, dark fruit flavors. Low to medium toasty, bready, or Maillard-rich malty flavors are optional, and can add complexity. Medium-high to high hop bitterness. The malt gives a medium to high sweet impression on the palate, although the finish may be slightly sweet to somewhat dry. Moderate to high hop flavor. Low to moderate fruity esters. The hop flavors are similar to the aroma (citrusy, resiny, tropical, stone fruit, melon, etc.). Alcohol presence may be noticeable, but sharp or solventy alcohol flavors are undesirable. Roasted malt flavors are allowable but should be a background note; burnt malt flavors are inappropriate. While strongly malty on the palate, the finish should seem bitter to bittersweet. Should not be syrupy and under-attenuated. The aftertaste typically has malt, hops, and alcohol noticeable.", - "mouthfeel": "Medium to full body. An alcohol warmth may be present, but not be excessively hot. Any astringency present should be attributable to bold hop bitterness and should not be objectionable on the palate. Medium-low to medium carbonation.", - "comments": "A fairly broad style that can describe beers labeled in various ways, including modern Double/Imperial Red/Amber Ales and other strong, malty-but-hoppy beers that aren't quite in the Barleywine class. Diverse enough to include what may be viewed as a strong American Amber Ale with room for more interpretations of other \"Imperial\" versions of lower gravity American Ale styles. Many \"East Coast\" type IPAs might fit better in this category if they have considerable crystal malt or otherwise more of a malty-sweet finish.", - "profile": "Medium to high hop aroma, most often presenting citrusy or resiny notes although characteristics associated with other American or New World varieties may be found (tropical, stone fruit, melon, etc.). Moderate to bold maltiness supports hop profile, with medium to dark caramel a common presence, bready or toasty possible and background notes of light roast and/or chocolate noticeable in some examples. Generally exhibits clean to moderately fruity ester profile. Moderate alcohol aromatics may be noticeable, but should not be hot, harsh, or solventy. Medium amber to deep copper or light brown. Moderate-low to medium-sized off-white to light tan head; may have low head retention. Good clarity. Alcohol level and viscosity may present \"legs\" when glass is swirled.Medium to high dextrinous malt with a full range of caramel, toffee, dark fruit flavors. Low to medium toasty, bready, or Maillard-rich malty flavors are optional, and can add complexity. Medium-high to high hop bitterness. The malt gives a medium to high sweet impression on the palate, although the finish may be slightly sweet to somewhat dry. Moderate to high hop flavor. Low to moderate fruity esters. The hop flavors are similar to the aroma (citrusy, resiny, tropical, stone fruit, melon, etc.). Alcohol presence may be noticeable, but sharp or solventy alcohol flavors are undesirable. Roasted malt flavors are allowable but should be a background note; burnt malt flavors are inappropriate. While strongly malty on the palate, the finish should seem bitter to bittersweet. Should not be syrupy and under-attenuated. The aftertaste typically has malt, hops, and alcohol noticeable. Medium to full body. An alcohol warmth may be present, but not be excessively hot. Any astringency present should be attributable to bold hop bitterness and should not be objectionable on the palate. Medium-low to medium carbonation. A fairly broad style that can describe beers labeled in various ways, including modern Double/Imperial Red/Amber Ales and other strong, malty-but-hoppy beers that aren't quite in the Barleywine class. Diverse enough to include what may be viewed as a strong American Amber Ale with room for more interpretations of other \"Imperial\" versions of lower gravity American Ale styles. Many \"East Coast\" type IPAs might fit better in this category if they have considerable crystal malt or otherwise more of a malty-sweet finish.", - "overall_impression": "A strong, full-flavored American ale that challenges and rewards the palate with full malty and hoppy flavors and substantial bitterness. The flavors are bold but complementary, and are stronger and richer than average-strength pale and amber American ales.", - "history": "While modern craft versions were developed as \"imperial\" strength versions of American amber or red ales, the style has much in common with historic American stock ales. Strong, malty beers were highly hopped to keep as provision beers prior to prohibition. There is no continuous legacy of brewing stock ales in this manner, but the resemblance is considerable. Stone Arrogant Bastard was born out of a batch of pale ale that was mistakenly made with excess ingredients, thus creating what may have been the prototype for the imperial amber/red ale. Great Lakes first brewed Nosferatu in the early 1990s and called it a stock ale, although they now call it an imperial red ale. So whether by direct historical inspiration or by accident, the style developed independently in the craft beer era and has subsequently become quite popular.", - "notes": "A strong, full-flavored American ale that challenges and rewards the palate with full malty and hoppy flavors and substantial bitterness. The flavors are bold but complementary, and are stronger and richer than average-strength pale and amber American ales. While modern craft versions were developed as \"imperial\" strength versions of American amber or red ales, the style has much in common with historic American stock ales. Strong, malty beers were highly hopped to keep as provision beers prior to prohibition. There is no continuous legacy of brewing stock ales in this manner, but the resemblance is considerable. Stone Arrogant Bastard was born out of a batch of pale ale that was mistakenly made with excess ingredients, thus creating what may have been the prototype for the imperial amber/red ale. Great Lakes first brewed Nosferatu in the early 1990s and called it a stock ale, although they now call it an imperial red ale. So whether by direct historical inspiration or by accident, the style developed independently in the craft beer era and has subsequently become quite popular.", - "ingredients": "Well-modified pale malt as a base; some character malts would be appropriate, medium to dark crystal malts are typical. Citrusy or piney American hops are common, although any American or New World varieties can be used in quantity, provided they do not clash with the malt character. Generally uses an attenuative American yeast.", - "comparison": "Generally not as strong and as rich as an American Barleywine. More malt balanced than an American or Double IPA with more American hop intensity than an English Strong Ale style would tolerate.", - "examples": "Bear Republic Red Rocket Ale, Great Lakes Nosferatu, Terrapin Big Hoppy Monster, Port Brewing Shark Attack Double Red, Stone Arrogant Bastard,", - "tags": "high-strength, amber-color, top-fermented, north-america, craft-style, strong-ale-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.062 - }, - "maximum": { - "unit": "sg", - "value": 1.09 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.014 - }, - "maximum": { - "unit": "sg", - "value": 1.024 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 50 - }, - "maximum": { - "unit": "IBUs", - "value": 100 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 7 - }, - "maximum": { - "unit": "SRM", - "value": 19 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.3 - }, - "maximum": { - "unit": "%", - "value": 10 - } - } - }, - { - "name": "American Barleywine", - "category": "Strong American Ale", - "category_number": 22, - "category_id": "22", - "style_id": "22C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Hop character moderate to assertive and often showcases citrusy, fruity, or resiny New World varieties (although other varieties, such as floral, earthy or spicy English varieties or a blend of varieties, may be used). Rich maltiness, with a character that may be sweet, caramelly, bready, or fairly neutral. Low to moderately-strong fruity esters and alcohol aromatics. However, the intensity of aromatics often subsides with age. Hops tend to be nearly equal to malt in the aroma, with alcohol and esters far behind.", - "appearance": "Color may range from light amber to medium copper; may rarely be as dark as light brown. Often has ruby highlights. Moderately-low to large off-white to light tan head; may have low head retention. May be cloudy with chill haze at cooler temperatures, but generally clears to good to brilliant clarity as it warms. The color may appear to have great depth, as if viewed through a thick glass lens. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.", - "flavor": "Strong, rich malt flavor with a noticeable hop flavor and bitterness in the balance. Moderately-low to moderately-high malty sweetness on the palate, although the finish may be somewhat sweet to quite dry (depending on aging). Hop bitterness may range from moderately strong to aggressive. While strongly malty, the balance should always seem bitter. Moderate to high hop flavor (any variety, but often showing a range of New World hop characteristics). Low to moderate fruity esters. Noticeable alcohol presence, but well-integrated. Flavors will smooth out and decline over time, but any oxidized character should be muted (and generally be masked by the hop character). May have some bready or caramelly malt flavors, but these should not be high; roasted or burnt malt flavors are inappropriate.", - "mouthfeel": "Full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). Alcohol warmth should be noticeable but smooth. Should not be syrupy and under-attenuated. Carbonation may be low to moderate, depending on age and conditioning.", - "comments": "Sometimes known as \"Barley Wine\" or \"Barleywine style ale\" (the latter due to legal requirements, not brewery preference).", - "profile": "Hop character moderate to assertive and often showcases citrusy, fruity, or resiny New World varieties (although other varieties, such as floral, earthy or spicy English varieties or a blend of varieties, may be used). Rich maltiness, with a character that may be sweet, caramelly, bready, or fairly neutral. Low to moderately-strong fruity esters and alcohol aromatics. However, the intensity of aromatics often subsides with age. Hops tend to be nearly equal to malt in the aroma, with alcohol and esters far behind. Color may range from light amber to medium copper; may rarely be as dark as light brown. Often has ruby highlights. Moderately-low to large off-white to light tan head; may have low head retention. May be cloudy with chill haze at cooler temperatures, but generally clears to good to brilliant clarity as it warms. The color may appear to have great depth, as if viewed through a thick glass lens. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.Strong, rich malt flavor with a noticeable hop flavor and bitterness in the balance. Moderately-low to moderately-high malty sweetness on the palate, although the finish may be somewhat sweet to quite dry (depending on aging). Hop bitterness may range from moderately strong to aggressive. While strongly malty, the balance should always seem bitter. Moderate to high hop flavor (any variety, but often showing a range of New World hop characteristics). Low to moderate fruity esters. Noticeable alcohol presence, but well-integrated. Flavors will smooth out and decline over time, but any oxidized character should be muted (and generally be masked by the hop character). May have some bready or caramelly malt flavors, but these should not be high; roasted or burnt malt flavors are inappropriate. Full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). Alcohol warmth should be noticeable but smooth. Should not be syrupy and under-attenuated. Carbonation may be low to moderate, depending on age and conditioning. Sometimes known as \"Barley Wine\" or \"Barleywine style ale\" (the latter due to legal requirements, not brewery preference).", - "overall_impression": "A well-hopped American interpretation of the richest and strongest of the English ales. The hop character should be evident throughout, but does not have to be unbalanced. The alcohol strength and hop bitterness often combine to leave a very long finish.", - "history": "Usually the strongest ale offered by a brewery, often associated with the winter or holiday season and vintage-dated. As with many American craft beer styles, derived from English examples but using American ingredients and featuring a much more forward hop profile. One of the first American craft beer versions was Anchor Old Foghorn, first brewed in 1975. Sierra Nevada Bigfoot, first brewed in 1983, set the standard for the hop-forward style of today. The story goes that when Sierra Nevada first sent Bigfoot out for lab analysis, the lab called and said, \"your barleywine is too bitter\" – to which Sierra Nevada replied, \"thank you.\"", - "notes": "A well-hopped American interpretation of the richest and strongest of the English ales. The hop character should be evident throughout, but does not have to be unbalanced. The alcohol strength and hop bitterness often combine to leave a very long finish. Usually the strongest ale offered by a brewery, often associated with the winter or holiday season and vintage-dated. As with many American craft beer styles, derived from English examples but using American ingredients and featuring a much more forward hop profile. One of the first American craft beer versions was Anchor Old Foghorn, first brewed in 1975. Sierra Nevada Bigfoot, first brewed in 1983, set the standard for the hop-forward style of today. The story goes that when Sierra Nevada first sent Bigfoot out for lab analysis, the lab called and said, \"your barleywine is too bitter\" – to which Sierra Nevada replied, \"thank you.\"", - "ingredients": "Well-modified pale malt should form the backbone of the grist. Some specialty or character malts may be used. Dark malts should be used with great restraint, if at all, as most of the color arises from a lengthy boil. New World hops are common, although any varieties can be used in quantity. Generally uses an attenuative American ale yeast.", - "comparison": "The American version of the Barleywine tends to have a greater emphasis on hop bitterness, flavor and aroma than the English Barleywine, and often features American hop varieties. Typically paler than the darker English Barleywines (and lacking in the deeper malt flavors) but darker than the golden English Barleywines. Differs from a Double IPA in that the hops are not extreme, the malt is more forward, and the body is fuller and often richer. An American Barleywine typically has more residual sweetness than a Double IPA, which affects the overall drinkability (sipping vs. drinking).", - "examples": "Avery Hog Heaven Barleywine, Anchor Old Foghorn, Great Divide Old Ruffian, Rogue Old Crustacean, Sierra Nevada Bigfoot, Victory Old Horizontal", - "tags": "very-high-strength, amber-color, top-fermented, north-america, craft-style, strong-ale-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.08 - }, - "maximum": { - "unit": "sg", - "value": 1.12 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.016 - }, - "maximum": { - "unit": "sg", - "value": 1.03 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 50 - }, - "maximum": { - "unit": "IBUs", - "value": 100 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 10 - }, - "maximum": { - "unit": "SRM", - "value": 19 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 8 - }, - "maximum": { - "unit": "%", - "value": 12 - } - } - }, - { - "name": "Wheatwine", - "category": "Strong American Ale", - "category_number": 22, - "category_id": "22", - "style_id": "22D", - "style_letter": "D", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Hop aroma is mild and can represent just about any late hop aromatic. Moderate to moderately-strong bready, wheaty malt character, often with additional malt complexity such as honey and caramel. A light, clean, alcohol aroma may noted. Low to medium fruity notes may be apparent. Very low levels of diacetyl are acceptable but not required. Weizen yeast character (banana/clove) is inappropriate.", - "appearance": "Color ranges from gold to deep amber, often with garnet or ruby highlights. Low to medium off-white head. The head may have creamy texture, and good retention. Chill haze is allowable, but usually clears up as the beer gets warmer. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.", - "flavor": "Moderate to moderately-high wheaty malt flavor, dominant in the flavor balance over any hop character. Low to moderate bready, toasty, caramel, or honey malt notes are a welcome complexity note, although not required. Hop flavor is low to medium, and can reflect any variety. Moderate to moderately-high fruitiness, often with a dried-fruit character. Hop bitterness may range from low to moderate; balance therefore ranges from malty to evenly balanced. Should not be syrupy and under-attenuated. Some oxidative or vinous flavors may be present, as are light alcohol notes that are clean and smooth but complex. A complementary, supportive oak character is welcome, but not required.", - "mouthfeel": "Medium-full to full bodied and chewy, often with a luscious, velvety texture. Low to moderate carbonation. Light to moderate smooth alcohol warming may also be present.", - "comments": "Dark malts should be used with restraint. Much of the color arises from a lengthy boil. Some commercial examples may be larger than the Vital Statistics, and some may not be brewed every year.", - "profile": "Hop aroma is mild and can represent just about any late hop aromatic. Moderate to moderately-strong bready, wheaty malt character, often with additional malt complexity such as honey and caramel. A light, clean, alcohol aroma may noted. Low to medium fruity notes may be apparent. Very low levels of diacetyl are acceptable but not required. Weizen yeast character (banana/clove) is inappropriate. Color ranges from gold to deep amber, often with garnet or ruby highlights. Low to medium off-white head. The head may have creamy texture, and good retention. Chill haze is allowable, but usually clears up as the beer gets warmer. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.Moderate to moderately-high wheaty malt flavor, dominant in the flavor balance over any hop character. Low to moderate bready, toasty, caramel, or honey malt notes are a welcome complexity note, although not required. Hop flavor is low to medium, and can reflect any variety. Moderate to moderately-high fruitiness, often with a dried-fruit character. Hop bitterness may range from low to moderate; balance therefore ranges from malty to evenly balanced. Should not be syrupy and under-attenuated. Some oxidative or vinous flavors may be present, as are light alcohol notes that are clean and smooth but complex. A complementary, supportive oak character is welcome, but not required. Medium-full to full bodied and chewy, often with a luscious, velvety texture. Low to moderate carbonation. Light to moderate smooth alcohol warming may also be present. Dark malts should be used with restraint. Much of the color arises from a lengthy boil. Some commercial examples may be larger than the Vital Statistics, and some may not be brewed every year.", - "overall_impression": "A richly textured, high alcohol sipping beer with a significant grainy, bready flavor and sleek body. The emphasis is first on the bready, wheaty flavors with interesting complexity from malt, hops, fruity yeast character and alcohol complexity.", - "history": "A relatively recent American craft beer style that was first brewed at the Rubicon Brewing Company in 1988. Often a winter seasonal, vintage, or one-off release. Breweries frequently experiment with this style, leading to a range of interpretations.", - "notes": "A richly textured, high alcohol sipping beer with a significant grainy, bready flavor and sleek body. The emphasis is first on the bready, wheaty flavors with interesting complexity from malt, hops, fruity yeast character and alcohol complexity. A relatively recent American craft beer style that was first brewed at the Rubicon Brewing Company in 1988. Often a winter seasonal, vintage, or one-off release. Breweries frequently experiment with this style, leading to a range of interpretations.", - "ingredients": "Typically brewed with a combination of American two-row and American wheat. Style commonly uses 50% or more wheat malt. Any variety of hops may be used. May be oak-aged.", - "comparison": "More than simply a wheat-based barleywine, many versions have very expressive fruity and hoppy notes, while others develop complexity through oak aging. Less emphasis on the hops than American Barleywine. Has roots in American Wheat Beer rather than any German wheat styles, so should not have any German weizen yeast character.", - "examples": "Rubicon Winter Wheat Wine, Two Brothers Bare Trees Weiss Wine, Smuttynose Wheat Wine, Portsmouth Wheat Wine", - "tags": "very-high-strength, amber-color, top-fermented, north-america, craft-style, strong-ale-family, wheat-beer-family, balanced, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.08 - }, - "maximum": { - "unit": "sg", - "value": 1.12 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.016 - }, - "maximum": { - "unit": "sg", - "value": 1.03 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 60 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 15 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 8 - }, - "maximum": { - "unit": "%", - "value": 12 - } - } - }, - { - "name": "Berliner Weisse", - "category": "European Sour Ale", - "category_number": 23, - "category_id": "23", - "style_id": "23A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "A sharply sour character is dominant (moderate to moderately-high). Can have up to a moderately fruity character (often lemony or tart apple). The fruitiness may increase with age and a light flowery character may develop. No hop aroma. The wheat may present as uncooked bread dough in fresher versions; combined with the acidity, may suggest sourdough bread. May optionally have a restrained funky Brettanomyces character.", - "appearance": "Very pale straw in color. Clarity ranges from clear to somewhat hazy. Large, dense, white head with poor retention. Always effervescent.", - "flavor": "Clean lactic sourness dominates and can be quite strong. Some complementary doughy, bready or grainy wheat flavor is generally noticeable. Hop bitterness is undetectable; sourness provides the balance rather than hops. Never vinegary. A restrained citrusy-lemony or tart apple fruitiness may be detected. Very dry finish. Balance dominated by sourness, but some malt flavor should be present. No hop flavor. May optionally have a restrained funky Brettanomyces character.", - "mouthfeel": "Light body. Very high carbonation. No sensation of alcohol. Crisp, juicy acidity.", - "comments": "In Germany, it is classified as a Schankbier denoting a small beer of starting gravity in the range 7-8 °P. Often served with the addition of a shot of sugar syrups (mit schuss) flavored with raspberry (himbeer), woodruff (waldmeister), or Caraway schnapps (Kümmel) to counter the substantial sourness. Has been described by some as the most purely refreshing beer in the world.", - "profile": "A sharply sour character is dominant (moderate to moderately-high). Can have up to a moderately fruity character (often lemony or tart apple). The fruitiness may increase with age and a light flowery character may develop. No hop aroma. The wheat may present as uncooked bread dough in fresher versions; combined with the acidity, may suggest sourdough bread. May optionally have a restrained funky Brettanomyces character. Very pale straw in color. Clarity ranges from clear to somewhat hazy. Large, dense, white head with poor retention. Always effervescent.Clean lactic sourness dominates and can be quite strong. Some complementary doughy, bready or grainy wheat flavor is generally noticeable. Hop bitterness is undetectable; sourness provides the balance rather than hops. Never vinegary. A restrained citrusy-lemony or tart apple fruitiness may be detected. Very dry finish. Balance dominated by sourness, but some malt flavor should be present. No hop flavor. May optionally have a restrained funky Brettanomyces character. Light body. Very high carbonation. No sensation of alcohol. Crisp, juicy acidity. In Germany, it is classified as a Schankbier denoting a small beer of starting gravity in the range 7-8 °P. Often served with the addition of a shot of sugar syrups (mit schuss) flavored with raspberry (himbeer), woodruff (waldmeister), or Caraway schnapps (Kümmel) to counter the substantial sourness. Has been described by some as the most purely refreshing beer in the world.", - "overall_impression": "A very pale, refreshing, low-alcohol German wheat beer with a clean lactic sourness and a very high carbonation level. A light bread dough malt flavor supports the sourness, which shouldn't seem artificial. Any Brettanomyces funk is restrained.", - "history": "A regional specialty of Berlin; referred to by Napoleon's troops in 1809 as \"the Champagne of the North\" due to its lively and elegant character. At one point, it was smoked and there used to be Märzen-strength (14 °P) version. Increasingly rare in German, but some American craft breweries now regularly produce the style.", - "notes": "A very pale, refreshing, low-alcohol German wheat beer with a clean lactic sourness and a very high carbonation level. A light bread dough malt flavor supports the sourness, which shouldn't seem artificial. Any Brettanomyces funk is restrained. A regional specialty of Berlin; referred to by Napoleon's troops in 1809 as \"the Champagne of the North\" due to its lively and elegant character. At one point, it was smoked and there used to be Märzen-strength (14 °P) version. Increasingly rare in German, but some American craft breweries now regularly produce the style.", - "ingredients": "Wheat malt content is typically 50% of the grist (as is tradition with all German wheat beers) with the remainder typically being Pilsner malt. A symbiotic fermentation with top-fermenting yeast and Lactobacillus (various strains) provides the sharp sourness, which may be enhanced by blending of beers of different ages during fermentation and by extended cool aging. Hop bitterness is non-existent. Decoction mashing with mash hopping is traditional. German brewing scientists believe that Brettanomyces is essential to get the correct flavor profile, but this character is never strong.", - "comparison": "Compared to a lambic, is generally not as acidic and has a clean lactic sourness with restrained to below sensory threshold funk. Also lower in alcohol content.", - "examples": "Bayerischer Bahnhof Berliner Style Weisse, Berliner Kindl Weisse, Nodding Head Berliner Weisse, The Bruery Hottenroth", - "tags": "session-beer, pale-color, top-fermented, central-europe, traditional-style, wheat-beer-family, sour", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.028 - }, - "maximum": { - "unit": "sg", - "value": 1.032 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.003 - }, - "maximum": { - "unit": "sg", - "value": 1.006 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 3 - }, - "maximum": { - "unit": "IBUs", - "value": 8 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 3 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 2.8 - }, - "maximum": { - "unit": "%", - "value": 3.8 - } - } - }, - { - "name": "Flanders Red Ale", - "category": "European Sour Ale", - "category_number": 23, - "category_id": "23", - "style_id": "23B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Complex fruity-sour profile with supporting malt that often gives a wine-like impression. Fruitiness is high, and reminiscent of black cherries, oranges, plums or red currants. There are often low to medium-low vanilla and/or chocolate notes. Spicy phenols can be present in low amounts for complexity. The sour aroma ranges from balanced to intense. Prominent vinegary acetic character is inappropriate. No hop aroma. Diacetyl is perceived only in very minor quantities, if at all, as a complementary aroma.", - "appearance": "Deep red, burgundy to reddish-brown in color. Good clarity. White to very pale tan head. Average to good head retention.", - "flavor": "Intense fruitiness commonly includes plum, orange, black cherry or red currant flavors. A mild vanilla and/or chocolate character is often present. Spicy phenols can be present in low amounts for complexity. Sour flavor ranges from complementary to intense, and can have an acidic bite. Malty flavors range from complementary to prominent, and often have a soft toasty-rich quality. Generally as the sour character increases, the malt character blends to more of a background flavor (and vice versa). No hop flavor. Restrained hop bitterness. An acidic, tannic bitterness is often present in low to moderate amounts, and adds an aged red wine-like character and finish. Prominent vinegary acetic character is inappropriate. Diacetyl is perceived only in very minor quantities, if at all, as a complementary flavor. Balanced to the malt side, but dominated by the fruity, sour, wine-like impression.", - "mouthfeel": "Medium bodied. Low to medium carbonation. Low to medium astringency, like a well-aged red wine, often with a prickly acidity. Deceivingly light and crisp on the palate although a somewhat sweet finish is not uncommon.", - "comments": "Long aging and blending of young and well-aged beer often occurs, adding to the smoothness and complexity, though the aged product is sometimes released as a connoisseur's beer. Known as the Burgundy of Belgium, it is more wine-like than any other beer style. The reddish color is a product of the malt although an extended, less-than-rolling portion of the boil may help add an attractive Burgundy hue. Aging will also darken the beer. The Flanders red is more acetic (but never vinegar-like) and the fruity flavors more reminiscent of a red wine than an Oud Bruin. Can have an apparent attenuation of up to 98%.", - "profile": "Complex fruity-sour profile with supporting malt that often gives a wine-like impression. Fruitiness is high, and reminiscent of black cherries, oranges, plums or red currants. There are often low to medium-low vanilla and/or chocolate notes. Spicy phenols can be present in low amounts for complexity. The sour aroma ranges from balanced to intense. Prominent vinegary acetic character is inappropriate. No hop aroma. Diacetyl is perceived only in very minor quantities, if at all, as a complementary aroma. Deep red, burgundy to reddish-brown in color. Good clarity. White to very pale tan head. Average to good head retention.Intense fruitiness commonly includes plum, orange, black cherry or red currant flavors. A mild vanilla and/or chocolate character is often present. Spicy phenols can be present in low amounts for complexity. Sour flavor ranges from complementary to intense, and can have an acidic bite. Malty flavors range from complementary to prominent, and often have a soft toasty-rich quality. Generally as the sour character increases, the malt character blends to more of a background flavor (and vice versa). No hop flavor. Restrained hop bitterness. An acidic, tannic bitterness is often present in low to moderate amounts, and adds an aged red wine-like character and finish. Prominent vinegary acetic character is inappropriate. Diacetyl is perceived only in very minor quantities, if at all, as a complementary flavor. Balanced to the malt side, but dominated by the fruity, sour, wine-like impression. Medium bodied. Low to medium carbonation. Low to medium astringency, like a well-aged red wine, often with a prickly acidity. Deceivingly light and crisp on the palate although a somewhat sweet finish is not uncommon. Long aging and blending of young and well-aged beer often occurs, adding to the smoothness and complexity, though the aged product is sometimes released as a connoisseur's beer. Known as the Burgundy of Belgium, it is more wine-like than any other beer style. The reddish color is a product of the malt although an extended, less-than-rolling portion of the boil may help add an attractive Burgundy hue. Aging will also darken the beer. The Flanders red is more acetic (but never vinegar-like) and the fruity flavors more reminiscent of a red wine than an Oud Bruin. Can have an apparent attenuation of up to 98%.", - "overall_impression": "A sour, fruity, red wine-like Belgian-style ale with interesting supportive malt flavors and fruit complexity. The dry finish and tannin completes the mental image of a fine red wine.", - "history": "An indigenous beer of West Flanders, typified by the products of the Rodenbach brewery, established in 1820 in West Flanders but reflective of earlier brewing traditions. The beer is aged for up to two years, often in huge oaken barrels which contain the resident bacteria necessary to sour the beer. It was once common in Belgium and England to blend old beer with young to balance the sourness and acidity found in aged beer. While blending of batches for consistency is now common among larger breweries, this type of blending is a fading art.", - "notes": "A sour, fruity, red wine-like Belgian-style ale with interesting supportive malt flavors and fruit complexity. The dry finish and tannin completes the mental image of a fine red wine. An indigenous beer of West Flanders, typified by the products of the Rodenbach brewery, established in 1820 in West Flanders but reflective of earlier brewing traditions. The beer is aged for up to two years, often in huge oaken barrels which contain the resident bacteria necessary to sour the beer. It was once common in Belgium and England to blend old beer with young to balance the sourness and acidity found in aged beer. While blending of batches for consistency is now common among larger breweries, this type of blending is a fading art.", - "ingredients": "A base of Vienna and/or Munich malts, light to medium cara-malts, and a small amount of Special B are used with up to 20% maize. Low alpha acid continental hops are commonly used (avoid high alpha or distinctive American hops). Saccharomyces, Lactobacillus and Brettanomyces (and acetobacter) contribute to the fermentation and eventual flavor.", - "comparison": "Less malty-rich than an Oud Bruin, often with more of a fruity-tart profile.", - "examples": "Cuvée des Jacobins Rouge, Duchesse de Bourgogne, Rodenbach Grand Cru, Rodenbach Klassiek, Vichtenaar Flemish Ale", - "tags": "standard-strength, amber-color, top-fermenting, western-europe, traditional-style, sour-ale-family, balanced, sour, wood", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.057 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.002 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 10 - }, - "maximum": { - "unit": "IBUs", - "value": 25 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 10 - }, - "maximum": { - "unit": "SRM", - "value": 16 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.6 - }, - "maximum": { - "unit": "%", - "value": 6.5 - } - } - }, - { - "name": "Oud Bruin", - "category": "European Sour Ale", - "category_number": 23, - "category_id": "23", - "style_id": "23C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Complex combination of fruity esters and rich malt character. Medium to medium-high esters commonly reminiscent of raisins, plums, figs, dates, black cherries or prunes. Medium low to medium high malt character of caramel, toffee, orange, treacle or chocolate. Spicy phenols can be present in low amounts for complexity. A sherry-like character may be present and generally denotes an aged example. A low sour aroma may be present, and can modestly increase with age but should not grow to a noticeable acetic/vinegary character. Hop aroma absent. Diacetyl is perceived only in very minor quantities, if at all, as a complementary aroma.", - "appearance": "Dark reddish-brown to brown in color. Good clarity. Average to good head retention. Ivory to light tan head color.", - "flavor": "Malty with fruity complexity and typically some caramel character. Medium to medium-high fruitiness commonly includes dark or dried fruit such as raisins, plums, figs, dates, black cherries or prunes. Medium low to medium high malt character of caramel, toffee, orange, treacle or chocolate. Spicy phenols can be present in low amounts for complexity. A slight sourness often becomes more pronounced in well-aged examples, along with some sherry-like character, producing a \"sweet-and-sour\" profile. The sourness should not grow to a notable acetic/vinegary character. Hop flavor absent. Restrained hop bitterness. Low oxidation is appropriate as a point of complexity. Diacetyl is perceived only in very minor quantities, if at all, as a complementary flavor. Balance is malty, but with fruitiness and sourness present. Sweet and tart finish", - "mouthfeel": "Medium to medium-full body. Low to moderate carbonation. No astringency.", - "comments": "Long aging and blending of young and aged beer may occur, adding smoothness and complexity and balancing any harsh, sour character. This style was designed to lay down so examples with a moderate aged character are considered superior to younger examples. As in fruit lambics, Oud Bruin can be used as a base for fruit-flavored beers such as kriek (cherries) or frambozen (raspberries), though these should be entered in the Classic-Style Fruit Beer category.", - "profile": "Complex combination of fruity esters and rich malt character. Medium to medium-high esters commonly reminiscent of raisins, plums, figs, dates, black cherries or prunes. Medium low to medium high malt character of caramel, toffee, orange, treacle or chocolate. Spicy phenols can be present in low amounts for complexity. A sherry-like character may be present and generally denotes an aged example. A low sour aroma may be present, and can modestly increase with age but should not grow to a noticeable acetic/vinegary character. Hop aroma absent. Diacetyl is perceived only in very minor quantities, if at all, as a complementary aroma. Dark reddish-brown to brown in color. Good clarity. Average to good head retention. Ivory to light tan head color.Malty with fruity complexity and typically some caramel character. Medium to medium-high fruitiness commonly includes dark or dried fruit such as raisins, plums, figs, dates, black cherries or prunes. Medium low to medium high malt character of caramel, toffee, orange, treacle or chocolate. Spicy phenols can be present in low amounts for complexity. A slight sourness often becomes more pronounced in well-aged examples, along with some sherry-like character, producing a \"sweet-and-sour\" profile. The sourness should not grow to a notable acetic/vinegary character. Hop flavor absent. Restrained hop bitterness. Low oxidation is appropriate as a point of complexity. Diacetyl is perceived only in very minor quantities, if at all, as a complementary flavor. Balance is malty, but with fruitiness and sourness present. Sweet and tart finish Medium to medium-full body. Low to moderate carbonation. No astringency. Long aging and blending of young and aged beer may occur, adding smoothness and complexity and balancing any harsh, sour character. This style was designed to lay down so examples with a moderate aged character are considered superior to younger examples. As in fruit lambics, Oud Bruin can be used as a base for fruit-flavored beers such as kriek (cherries) or frambozen (raspberries), though these should be entered in the Classic-Style Fruit Beer category.", - "overall_impression": "A malty, fruity, aged, somewhat sour Belgian-style brown ale.", - "history": "An \"old ale\" tradition, indigenous to East Flanders, typified by the products of the Liefman brewery (now owned by Riva), which has roots back to the 1600s. Historically brewed as a \"provision beer\" that would develop some sourness as it aged. These beers were typically more sour than current commercial examples. While Flanders red beers are aged in oak, the brown beers are warm aged in stainless steel.", - "notes": "A malty, fruity, aged, somewhat sour Belgian-style brown ale. An \"old ale\" tradition, indigenous to East Flanders, typified by the products of the Liefman brewery (now owned by Riva), which has roots back to the 1600s. Historically brewed as a \"provision beer\" that would develop some sourness as it aged. These beers were typically more sour than current commercial examples. While Flanders red beers are aged in oak, the brown beers are warm aged in stainless steel.", - "ingredients": "A base of Pils malt with judicious amounts of dark cara malts and a tiny bit of black or roast malt. Often includes maize. Low alpha acid continental hops are typical (avoid high alpha or distinctive American hops). Saccharomyces and Lactobacillus (and acetobacter) contribute to the fermentation and eventual flavor. Lactobacillus reacts poorly to elevated levels of alcohol. Water high in carbonates is typical of its home region and will buffer the acidity of darker malts and the lactic sourness. Magnesium in the water accentuates the sourness.", - "comparison": "A deeper malt character distinguishes these beers from Flanders red ales. The Oud Bruin is less acetic and maltier than a Flanders Red, and the fruity flavors are more malt-oriented.", - "examples": "Ichtegem Oud Bruin, Liefmans Goudenband, Liefmans Liefmans Oud Bruin, Petrus Oud Bruin, Riva Vondel, Vanderghinste Bellegems Bruin", - "tags": "standard-strength, dark-color, top-fermented, western-europe, traditional-style, sour-ale-family, malty, sour", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.074 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 25 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 15 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4 - }, - "maximum": { - "unit": "%", - "value": 8 - } - } - }, - { - "name": "Lambic", - "category": "European Sour Ale", - "category_number": 23, - "category_id": "23", - "style_id": "23D", - "style_letter": "D", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "A decidedly sour aroma is often dominant in young examples, but may become more subdued with age as it blends with aromas described as barnyard, earthy, goaty, hay, horsey, and horse blanket. A mild citrus-fruity aroma is considered favorable. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. Older versions are commonly fruity with aromas of apples or even honey. No hop aroma.", - "appearance": "Pale yellow to deep golden in color; age tends to darken the beer. Clarity is hazy to good. Younger versions are often cloudy, while older ones are generally clear. White colored head generally has poor retention.", - "flavor": "Young examples are often noticeably lactic-sour, but aging can bring this character more in balance with the malt, wheat and barnyard characteristics. Fruity flavors are simpler in young lambics and more complex in the older examples, where they are reminiscent of apples or other light fruits, rhubarb, or honey. Some citrus flavor (often grapefruit) is occasionally noticeable, and is desirable. The malt and wheat character are typically low with some bready-grainy notes. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is low to none, and generally undetectable; sourness provides the balance. Typically has a dry finish. No hop flavor.", - "mouthfeel": "Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from feeling like water. As a rule of thumb, lambic dries with age, which makes dryness a reasonable indicator of age. Has a medium to high tart, puckering quality without being sharply astringent. Traditional versions are virtually to completely uncarbonated, but bottled examples can pick up moderate carbonation with age.", - "comments": "Straight lambics are single-batch, unblended beers. Since they are unblended, the straight lambic is often a true product of the \"house character\" of a brewery and will be more variable than a gueuze. They are generally served young (6 months) and on tap as cheap, easy-drinking beers without any filling carbonation. Younger versions tend to be one-dimensionally sour since a complex Brett character often takes upwards of a year to develop. An enteric character is often indicative of a lambic that is too young. A noticeable vinegary or cidery character is considered a fault by Belgian brewers. Since the wild yeast and bacteria will ferment ALL sugars, they are typically bottled only when they have completely fermented.", - "profile": "A decidedly sour aroma is often dominant in young examples, but may become more subdued with age as it blends with aromas described as barnyard, earthy, goaty, hay, horsey, and horse blanket. A mild citrus-fruity aroma is considered favorable. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. Older versions are commonly fruity with aromas of apples or even honey. No hop aroma. Pale yellow to deep golden in color; age tends to darken the beer. Clarity is hazy to good. Younger versions are often cloudy, while older ones are generally clear. White colored head generally has poor retention.Young examples are often noticeably lactic-sour, but aging can bring this character more in balance with the malt, wheat and barnyard characteristics. Fruity flavors are simpler in young lambics and more complex in the older examples, where they are reminiscent of apples or other light fruits, rhubarb, or honey. Some citrus flavor (often grapefruit) is occasionally noticeable, and is desirable. The malt and wheat character are typically low with some bready-grainy notes. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is low to none, and generally undetectable; sourness provides the balance. Typically has a dry finish. No hop flavor. Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from feeling like water. As a rule of thumb, lambic dries with age, which makes dryness a reasonable indicator of age. Has a medium to high tart, puckering quality without being sharply astringent. Traditional versions are virtually to completely uncarbonated, but bottled examples can pick up moderate carbonation with age. Straight lambics are single-batch, unblended beers. Since they are unblended, the straight lambic is often a true product of the \"house character\" of a brewery and will be more variable than a gueuze. They are generally served young (6 months) and on tap as cheap, easy-drinking beers without any filling carbonation. Younger versions tend to be one-dimensionally sour since a complex Brett character often takes upwards of a year to develop. An enteric character is often indicative of a lambic that is too young. A noticeable vinegary or cidery character is considered a fault by Belgian brewers. Since the wild yeast and bacteria will ferment ALL sugars, they are typically bottled only when they have completely fermented.", - "overall_impression": "A fairly sour, often moderately funky wild Belgian wheat beer with sourness taking the place of hop bitterness in the balance. Traditionally spontaneously fermented in the Brussels area and served uncarbonated, the refreshing acidity makes for a very pleasant café drink.", - "history": "Spontaneously fermented wild ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing tradition several centuries old. The number of producers is constantly dwindling.", - "notes": "A fairly sour, often moderately funky wild Belgian wheat beer with sourness taking the place of hop bitterness in the balance. Traditionally spontaneously fermented in the Brussels area and served uncarbonated, the refreshing acidity makes for a very pleasant café drink. Spontaneously fermented wild ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing tradition several centuries old. The number of producers is constantly dwindling.", - "ingredients": "Unmalted wheat (30-40%), Pilsner malt and aged hops (3 years) are used. The aged hops are used more for preservative effects than bitterness, and makes actual bitterness levels difficult to estimate. Traditionally these beers are spontaneously fermented with naturally occurring yeast and bacteria in predominately oaken barrels. The barrels used are neutral with little oak character, so don't expect a fresh or forward oak character – more neutral is typical. Home-brewed and craft-brewed versions are more typically made with pure cultures of yeast commonly including Saccharomyces, Brettanomyces, Pediococcus and Lactobacillus in an attempt to recreate the effects of the dominant microbiota of Brussels and the surrounding countryside of the Senne River valley. Cultures taken from bottles are sometimes used but there is no simple way of knowing what organisms are still viable.", - "comparison": "Generally has a more simple sourness and complexity than a gueuze. Traditionally served uncarbonated from pitchers, while gueuze is bottled and very highly carbonated.", - "examples": "The only bottled version readily available is Cantillon Grand Cru Bruocsella of whatever single batch vintage the brewer deems worthy to bottle. De Cam sometimes bottles their very old (5 years) lambic. In and around Brussels there are specialty cafes that often have draught lambics from traditional brewers or blenders such as Boon, De Cam, Cantillon, Drie Fonteinen, Lindemans, Timmermans and Girardin.", - "tags": "standard-strength, pale-color, wild-fermented, western-europe, traditional-style, wheat-beer-family, sour", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.001 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 0 - }, - "maximum": { - "unit": "IBUs", - "value": 10 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 7 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 6.5 - } - } - }, - { - "name": "Gueuze", - "category": "European Sour Ale", - "category_number": 23, - "category_id": "23", - "style_id": "23E", - "style_letter": "E", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "A moderately sour aroma blends with aromas described as barnyard, leather, earthy, goaty, hay, horsey, and horse blanket. While some may be more dominantly sour, balance is the key and denotes a better gueuze. Commonly fruity with aromas of citrus fruits (often grapefruit), apples or other light fruits, rhubarb, or honey. A very mild oak aroma is considered favorable. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. No hop aroma.", - "appearance": "Golden color, with excellent clarity and a thick, rocky, mousse-like, white head that seems to last forever. Always effervescent.", - "flavor": "A moderately sour character is classically in balance with the malt, wheat and barnyard characteristics. A low, complementary sweetness may be present but higher levels are not traditional. While some may be more dominantly sour, balance is the key and denotes a better gueuze. A varied fruit flavor is common, and can have a honey-like character. A mild vanilla and/or oak flavor is occasionally noticeable. The malt is generally low and bready-grainy. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is generally absent but a very low hop bitterness may occasionally be perceived; sourness provides most of the balance. Crisp, dry, and tart finish. No hop flavor.", - "mouthfeel": "Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from feeling like water. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a light warming character. Highly carbonated.", - "comments": "Gueuze is traditionally produced by mixing one, two, and three-year old lambic. \"Young\" lambic contains fermentable sugars while old lambic has the characteristic \"wild\" taste of the Senne River valley. A noticeable vinegary or cidery character is considered a fault by Belgian brewers. A good gueuze is not the most pungent, but possesses a full and tantalizing bouquet, a sharp aroma, and a soft, velvety flavor. Lambic is served uncarbonated, while gueuze is served effervescent. Products marked oude or ville are considered most traditional.", - "profile": "A moderately sour aroma blends with aromas described as barnyard, leather, earthy, goaty, hay, horsey, and horse blanket. While some may be more dominantly sour, balance is the key and denotes a better gueuze. Commonly fruity with aromas of citrus fruits (often grapefruit), apples or other light fruits, rhubarb, or honey. A very mild oak aroma is considered favorable. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. No hop aroma. Golden color, with excellent clarity and a thick, rocky, mousse-like, white head that seems to last forever. Always effervescent.A moderately sour character is classically in balance with the malt, wheat and barnyard characteristics. A low, complementary sweetness may be present but higher levels are not traditional. While some may be more dominantly sour, balance is the key and denotes a better gueuze. A varied fruit flavor is common, and can have a honey-like character. A mild vanilla and/or oak flavor is occasionally noticeable. The malt is generally low and bready-grainy. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is generally absent but a very low hop bitterness may occasionally be perceived; sourness provides most of the balance. Crisp, dry, and tart finish. No hop flavor. Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from feeling like water. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a light warming character. Highly carbonated. Gueuze is traditionally produced by mixing one, two, and three-year old lambic. \"Young\" lambic contains fermentable sugars while old lambic has the characteristic \"wild\" taste of the Senne River valley. A noticeable vinegary or cidery character is considered a fault by Belgian brewers. A good gueuze is not the most pungent, but possesses a full and tantalizing bouquet, a sharp aroma, and a soft, velvety flavor. Lambic is served uncarbonated, while gueuze is served effervescent. Products marked oude or ville are considered most traditional.", - "overall_impression": "A complex, pleasantly sour but balanced wild Belgian wheat beer that is highly carbonated and very refreshing. The spontaneous fermentation character can provide a very interesting complexity, with a wide range of wild barnyard, horse blanket, or leather characteristics intermingling with citrusy-fruity flavors and acidity.", - "history": "Spontaneously fermented wild ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing and blending tradition several centuries old. The number of producers is constantly dwindling and some producers are untraditionally sweetening their products (post-fermentation) to make them more palatable to a wider audience. These guidelines describe the traditional dry product.", - "notes": "A complex, pleasantly sour but balanced wild Belgian wheat beer that is highly carbonated and very refreshing. The spontaneous fermentation character can provide a very interesting complexity, with a wide range of wild barnyard, horse blanket, or leather characteristics intermingling with citrusy-fruity flavors and acidity. Spontaneously fermented wild ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing and blending tradition several centuries old. The number of producers is constantly dwindling and some producers are untraditionally sweetening their products (post-fermentation) to make them more palatable to a wider audience. These guidelines describe the traditional dry product.", - "ingredients": "Unmalted wheat (30-40%), Pilsner malt and aged hops (3 years) are used. The aged hops are used more for preservative effects than bitterness, and makes actual bitterness levels difficult to estimate. Traditionally these beers are spontaneously fermented with naturally occurring yeast and bacteria in predominately oaken barrels. The barrels used are old and have little oak character, so don't expect a fresh or forward oak character – more neutral is typical. Home-brewed and craft-brewed versions are more typically made with pure cultures of yeast commonly including Saccharomyces, Brettanomyces, Pediococcus and Lactobacillus in an attempt to recreate the effects of the dominant microbiota of Brussels and the surrounding countryside of the Senne River valley. Cultures taken from bottles are sometimes used but there is no simple way of knowing what organisms are still viable.", - "comparison": "More complex and carbonated than a lambic. The sourness isn't necessarily higher, but it tends to have more of a well-developed wild character.", - "examples": "Boon Oude Gueuze, Boon Oude Gueuze Mariage Parfait, Cantillon Gueuze, De Cam Gueuze, De Cam/Drei Fonteinen Millennium Gueuze, Drie Fonteinen Oud Gueuze, Girardin Gueuze (Black Label), Hanssens Oude Gueuze, Lindemans Gueuze Cuvée René, Mort Subite (Unfiltered) Gueuze, Oud Beersel Oude Gueuze", - "tags": "high-strength, pale-color, wild-fermented, western-europe, traditional-style, wheat-beer-family, aged, sour", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1 - }, - "maximum": { - "unit": "sg", - "value": 1.006 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 0 - }, - "maximum": { - "unit": "IBUs", - "value": 10 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 7 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 8 - } - } - }, - { - "name": "Fruit Lambic", - "category": "European Sour Ale", - "category_number": 23, - "category_id": "23", - "style_id": "23F", - "style_letter": "F", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "The specified fruit should be the dominant aroma. A low to moderately sour character blends with aromas described as barnyard, earthy, goaty, hay, horsey, and horse blanket (and thus should be recognizable as a lambic). The fruit aroma commonly blends well with the other aromas. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. No hop aroma.", - "appearance": "The variety of fruit generally determines the color, although lighter-colored fruit may have little effect on the color. The color intensity may fade with age. Clarity is often good, although some fruit will not drop bright. A thick rocky, mousse-like head, sometimes a shade of fruit, is generally long-lasting (carbonation-dependent). Carbonation is typically high, but must be specified.", - "flavor": "The specified fruit should be evident. Low to moderately sour flavor, often with an acidic bite in the finish. The classic barnyard characteristics may be low to high. When young, the beer will present its full fruity taste. As it ages, the lambic taste will become dominant at the expense of the fruit character—thus fruit lambics are not intended for long aging. The finish is commonly dry and tart, but a low, complementary sweetness may be present; higher sweetness levels are not traditional but can be included for personal preference (sweetness level must be specified). A mild vanilla and/or oak flavor is occasionally noticeable. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is generally absent; acidity provides the balance. No hop flavor.", - "mouthfeel": "Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from tasting like water. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a light warming character. Carbonation can vary from sparkling to nearly still (must be specified).", - "comments": "Fruit-based lambics are often produced like gueuze by mixing one, two, and three-year old lambic. \"Young\" lambic contains fermentable sugars while old lambic has the characteristic \"wild\" taste of the Senne River valley. Fruit is commonly added halfway through aging and the yeast and bacteria will ferment all sugars from the fruit. Fruit may also be added to unblended lambic. The most traditional styles of fruit lambics include kriek (cherries), framboise (raspberries) and druivenlambik (muscat grapes). IBUs are approximate since aged hops are used; Belgians use hops for anti-bacterial properties more than bittering in lambics.", - "profile": "The specified fruit should be the dominant aroma. A low to moderately sour character blends with aromas described as barnyard, earthy, goaty, hay, horsey, and horse blanket (and thus should be recognizable as a lambic). The fruit aroma commonly blends well with the other aromas. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. No hop aroma. The variety of fruit generally determines the color, although lighter-colored fruit may have little effect on the color. The color intensity may fade with age. Clarity is often good, although some fruit will not drop bright. A thick rocky, mousse-like head, sometimes a shade of fruit, is generally long-lasting (carbonation-dependent). Carbonation is typically high, but must be specified.The specified fruit should be evident. Low to moderately sour flavor, often with an acidic bite in the finish. The classic barnyard characteristics may be low to high. When young, the beer will present its full fruity taste. As it ages, the lambic taste will become dominant at the expense of the fruit character—thus fruit lambics are not intended for long aging. The finish is commonly dry and tart, but a low, complementary sweetness may be present; higher sweetness levels are not traditional but can be included for personal preference (sweetness level must be specified). A mild vanilla and/or oak flavor is occasionally noticeable. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is generally absent; acidity provides the balance. No hop flavor. Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from tasting like water. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a light warming character. Carbonation can vary from sparkling to nearly still (must be specified). Fruit-based lambics are often produced like gueuze by mixing one, two, and three-year old lambic. \"Young\" lambic contains fermentable sugars while old lambic has the characteristic \"wild\" taste of the Senne River valley. Fruit is commonly added halfway through aging and the yeast and bacteria will ferment all sugars from the fruit. Fruit may also be added to unblended lambic. The most traditional styles of fruit lambics include kriek (cherries), framboise (raspberries) and druivenlambik (muscat grapes). IBUs are approximate since aged hops are used; Belgians use hops for anti-bacterial properties more than bittering in lambics.", - "overall_impression": "A complex, fruity, pleasantly sour, wild wheat ale fermented by a variety of Belgian microbiota, and showcasing the fruit contributions blended with the wild character. The type of fruit can sometimes be hard to identify as fermented and aged fruit characteristics can seem different from the more recognizable fresh fruit aromas and flavors.", - "history": "Spontaneously fermented wild ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing and blending tradition several centuries old. The number of producers is constantly dwindling and some are untraditionally sweetening their products (post-fermentation) with sugar or sweet fruit to make them more palatable to a wider audience. Fruit was traditionally added to lambic or gueuze, either by the blender or publican, to increase the variety of beers available in local cafes.", - "notes": "A complex, fruity, pleasantly sour, wild wheat ale fermented by a variety of Belgian microbiota, and showcasing the fruit contributions blended with the wild character. The type of fruit can sometimes be hard to identify as fermented and aged fruit characteristics can seem different from the more recognizable fresh fruit aromas and flavors. Spontaneously fermented wild ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing and blending tradition several centuries old. The number of producers is constantly dwindling and some are untraditionally sweetening their products (post-fermentation) with sugar or sweet fruit to make them more palatable to a wider audience. Fruit was traditionally added to lambic or gueuze, either by the blender or publican, to increase the variety of beers available in local cafes.", - "ingredients": "Unmalted wheat (30-40%), Pilsner malt and aged hops (3 years) are used. The aged hops are used more for preservative effects than bitterness, and makes actual bitterness levels difficult to estimate. Traditional products use 10-30% fruit (25%, if cherry). Fruits traditionally used include tart cherries (with pits), raspberries or Muscat grapes. More recent examples include peaches, apricots or merlot grapes. Tart or acidic fruit is traditionally used as its purpose is not to sweeten the beer but to add a new dimension. Traditionally these beers are spontaneously fermented with naturally occurring yeast and bacteria in predominately oaken barrels. The barrels used are old and have little oak character, so don't expect a fresh or forward oak character – more neutral is typical. Home-brewed and craft-brewed versions are more typically made with pure cultures of yeast commonly including Saccharomyces, Brettanomyces, Pediococcus and Lactobacillus in an attempt to recreate the effects of the dominant microbiota of Brussels and the surrounding countryside of the Senne River valley. Cultures taken from bottles are sometimes used but there is no simple way of knowing what organisms are still viable.", - "comparison": "A lambic with fruit, not just a fruit beer; the wild lambic character must be evident.", - "examples": "Boon Framboise Marriage Parfait, Boon Kriek Mariage Parfait, Boon Oude Kriek, Cantillon Fou' Foune, Cantillon Kriek, Cantillon Lou Pepe Kriek, Cantillon Lou Pepe Framboise, Cantillon Rose de Gambrinus, Cantillon St. Lamvinus, Cantillon Vigneronne, De Cam Oude Kriek, Drie Fonteinen Kriek, Girardin Kriek, Hanssens Oude Kriek, Oud Beersel Kriek, Mort Subite Kriek", - "tags": "standard-strength, pale-color, wild-fermented, western-europe, traditional-style, wheat-beer-family, sour, fruit", - "entry_instructions": "The type of fruit used must be specified. The brewer must declare a carbonation level (low, medium, high) and a sweetness level (low/none, medium, high).", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 0 - }, - "maximum": { - "unit": "IBUs", - "value": 10 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 7 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 7 - } - } - }, - { - "name": "Witbier", - "category": "Belgian Ale", - "category_number": 24, - "category_id": "24", - "style_id": "24A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate malty sweetness (often with light notes of honey and/or vanilla) with light, grainy, spicy wheat aromatics, often with a bit of tartness. Moderate perfumy coriander, often with a complex herbal, spicy, or peppery note in the background. Moderate zesty, citrusy-orangey fruitiness. A low spicy-herbal hop aroma is optional, but should never overpower the other characteristics. Vegetal, celery-like, or ham-like aromas are inappropriate. Spices should blend in with fruity, floral and sweet aromas and should not be overly strong.", - "appearance": "Very pale straw to very light gold in color. The beer will be very cloudy from starch haze and/or yeast, which gives it a milky, whitish-yellow appearance. Dense, white, moussy head. Head retention should be quite good.", - "flavor": "Pleasant malty-sweet grain flavor (often with a honey and/or vanilla character) and a zesty, orange-citrusy fruitiness. Refreshingly crisp with a dry, often tart, finish. Can have a low bready wheat flavor. Optionally has a very light lactic-tasting sourness. Herbal-spicy flavors, which may include coriander and other spices, are common should be subtle and balanced, not overpowering. A spicy-earthy hop flavor is low to none, and if noticeable, never gets in the way of the spices. Hop bitterness is low to medium-low, and doesn't interfere with refreshing flavors of fruit and spice, nor does it persist into the finish. Bitterness from orange pith should not be present. Vegetal, celery-like, ham-like, or soapy flavors are inappropriate.", - "mouthfeel": "Medium-light to medium body, often having a smoothness and light creaminess from unmalted wheat and the occasional oats. Despite body and creaminess, finishes dry and often a bit tart. Effervescent character from high carbonation. Refreshing, from carbonation, light acidity, and lack of bitterness in finish. No harshness or astringency from orange pith. Should not be overly dry and thin, nor should it be thick and heavy.", - "comments": "The presence, character and degree of spicing and lactic sourness varies. Overly spiced and/or sour beers are not good examples of the style. Coriander of certain origins might give an inappropriate ham or celery character. The beer tends to be fragile and does not age well, so younger, fresher, properly handled examples are most desirable. Most examples seem to be approximately 5% ABV.", - "profile": "Moderate malty sweetness (often with light notes of honey and/or vanilla) with light, grainy, spicy wheat aromatics, often with a bit of tartness. Moderate perfumy coriander, often with a complex herbal, spicy, or peppery note in the background. Moderate zesty, citrusy-orangey fruitiness. A low spicy-herbal hop aroma is optional, but should never overpower the other characteristics. Vegetal, celery-like, or ham-like aromas are inappropriate. Spices should blend in with fruity, floral and sweet aromas and should not be overly strong. Very pale straw to very light gold in color. The beer will be very cloudy from starch haze and/or yeast, which gives it a milky, whitish-yellow appearance. Dense, white, moussy head. Head retention should be quite good.Pleasant malty-sweet grain flavor (often with a honey and/or vanilla character) and a zesty, orange-citrusy fruitiness. Refreshingly crisp with a dry, often tart, finish. Can have a low bready wheat flavor. Optionally has a very light lactic-tasting sourness. Herbal-spicy flavors, which may include coriander and other spices, are common should be subtle and balanced, not overpowering. A spicy-earthy hop flavor is low to none, and if noticeable, never gets in the way of the spices. Hop bitterness is low to medium-low, and doesn't interfere with refreshing flavors of fruit and spice, nor does it persist into the finish. Bitterness from orange pith should not be present. Vegetal, celery-like, ham-like, or soapy flavors are inappropriate. Medium-light to medium body, often having a smoothness and light creaminess from unmalted wheat and the occasional oats. Despite body and creaminess, finishes dry and often a bit tart. Effervescent character from high carbonation. Refreshing, from carbonation, light acidity, and lack of bitterness in finish. No harshness or astringency from orange pith. Should not be overly dry and thin, nor should it be thick and heavy. The presence, character and degree of spicing and lactic sourness varies. Overly spiced and/or sour beers are not good examples of the style. Coriander of certain origins might give an inappropriate ham or celery character. The beer tends to be fragile and does not age well, so younger, fresher, properly handled examples are most desirable. Most examples seem to be approximately 5% ABV.", - "overall_impression": "A refreshing, elegant, tasty, moderate-strength wheat-based ale.", - "history": "A 400-year-old Belgian beer style that died out in the 1950s; it was later revived by Pierre Celis at Hoegaarden, and has grown steadily in popularity over time, both with modern craft brewers and mass-market producers who see it as a somewhat fruity summer seasonal beer.", - "notes": "A refreshing, elegant, tasty, moderate-strength wheat-based ale. A 400-year-old Belgian beer style that died out in the 1950s; it was later revived by Pierre Celis at Hoegaarden, and has grown steadily in popularity over time, both with modern craft brewers and mass-market producers who see it as a somewhat fruity summer seasonal beer.", - "ingredients": "About 50% unmalted wheat and 50% pale barley malt (usually Pils malt) constitute the grist. In some versions, up to 5-10% raw oats may be used. Spices of freshly-ground coriander and Curaçao or sometimes sweet orange peel complement the sweet aroma and are quite characteristic. Other spices (e.g., chamomile, cumin, cinnamon, Grains of Paradise) may be used for complexity but are much less prominent. Ale yeast prone to the production of mild, spicy flavors is very characteristic. In some instances a very limited lactic fermentation, or the actual addition of lactic acid, is done.", - "comparison": "Low bitterness level with a balance similar to a Weissbier, but with spice and citrus character coming from additions rather than the yeast.", - "examples": "Allagash White, Blanche de Bruxelles, Celis White, Hoegaarden Wit, Ommegang Witte, St. Bernardus Witbier, Wittekerke", - "tags": "standard-strength, pale-color, top-fermented, western-europe, traditional-style, wheat-beer-family, spice", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.052 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 8 - }, - "maximum": { - "unit": "IBUs", - "value": 20 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 4 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - } - }, - { - "name": "Belgian Pale Ale", - "category": "Belgian Ale", - "category_number": 24, - "category_id": "24", - "style_id": "24B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate malt aroma, which can be a combination of toasty, biscuity, or nutty, possibly with a touch of light caramel or honey. Moderate to moderately high fruitiness with an orange- or pear-like character. Low to moderate strength hop character (spicy, herbal, or floral) optionally blended with background level peppery, spicy phenols. The hop character is lower in balance than the malt and fruitiness.", - "appearance": "Amber to copper in color. Clarity is very good. Creamy, rocky, white head often fades more quickly than other Belgian beers.", - "flavor": "Has an initial soft, smooth, moderately malty flavor with a variable profile of toasty, biscuity, nutty, light caramel and/or honey notes. Moderate to moderately high fruitiness, sometimes orange- or pear-like. Relatively light (medium-low to low) spicy, herbal, or floral hop character. The hop bitterness is medium-high to medium-low, and is optionally enhanced by low to very low amounts of peppery phenols. There is a dry to balanced finish, with hops becoming more pronounced in the aftertaste of those with a drier finish. Fairly well balanced overall, with no single component being high in intensity; malt and fruitiness are more forward initially with a supportive bitterness and drying character coming on late.", - "mouthfeel": "Medium to medium-light body. Smooth palate. Alcohol level is restrained, and any warming character should be low if present. Medium to medium-high carbonation.", - "comments": "Most commonly found in the Flemish provinces of Antwerp and Brabant. Considered \"everyday\" beers (Category I). Compared to their higher alcohol Category S cousins, they are Belgian \"session beers\" for ease of drinking. Nothing should be too pronounced or dominant; balance is the key. Yeast character generally more subtle than many Belgian beers, with some of the fruitiness being hop-driven.", - "profile": "Moderate malt aroma, which can be a combination of toasty, biscuity, or nutty, possibly with a touch of light caramel or honey. Moderate to moderately high fruitiness with an orange- or pear-like character. Low to moderate strength hop character (spicy, herbal, or floral) optionally blended with background level peppery, spicy phenols. The hop character is lower in balance than the malt and fruitiness. Amber to copper in color. Clarity is very good. Creamy, rocky, white head often fades more quickly than other Belgian beers.Has an initial soft, smooth, moderately malty flavor with a variable profile of toasty, biscuity, nutty, light caramel and/or honey notes. Moderate to moderately high fruitiness, sometimes orange- or pear-like. Relatively light (medium-low to low) spicy, herbal, or floral hop character. The hop bitterness is medium-high to medium-low, and is optionally enhanced by low to very low amounts of peppery phenols. There is a dry to balanced finish, with hops becoming more pronounced in the aftertaste of those with a drier finish. Fairly well balanced overall, with no single component being high in intensity; malt and fruitiness are more forward initially with a supportive bitterness and drying character coming on late. Medium to medium-light body. Smooth palate. Alcohol level is restrained, and any warming character should be low if present. Medium to medium-high carbonation. Most commonly found in the Flemish provinces of Antwerp and Brabant. Considered \"everyday\" beers (Category I). Compared to their higher alcohol Category S cousins, they are Belgian \"session beers\" for ease of drinking. Nothing should be too pronounced or dominant; balance is the key. Yeast character generally more subtle than many Belgian beers, with some of the fruitiness being hop-driven.", - "overall_impression": "A moderately malty, somewhat fruity, easy-drinking, copper-colored Belgian ale that is somewhat less aggressive in flavor profile than many other Belgian beers. The malt character tends to be a bit biscuity with light toasty, honey-like, or caramelly components; the fruit character is noticeable and complementary to the malt. The bitterness level is generally moderate, but may not seem as high due to the flavorful malt profile.", - "history": "Produced by breweries with roots as far back as the mid-1700s, the most well-known examples were perfected after the Second World War with some influence from Britain, including hops and yeast strains.", - "notes": "A moderately malty, somewhat fruity, easy-drinking, copper-colored Belgian ale that is somewhat less aggressive in flavor profile than many other Belgian beers. The malt character tends to be a bit biscuity with light toasty, honey-like, or caramelly components; the fruit character is noticeable and complementary to the malt. The bitterness level is generally moderate, but may not seem as high due to the flavorful malt profile. Produced by breweries with roots as far back as the mid-1700s, the most well-known examples were perfected after the Second World War with some influence from Britain, including hops and yeast strains.", - "ingredients": "Pilsner or pale ale malt contributes the bulk of the grist with (cara) Vienna and Munich malts adding color, body and complexity. Sugar is not commonly used as high gravity is not desired. Saazer-type hops, Styrian Goldings, East Kent Goldings or Fuggles are commonly used. Yeasts prone to moderate production of phenols are often used but fermentation temperatures should be kept moderate to limit this character.", - "comparison": "Fairly similar to pale ales from England (Strong Bitter category), typically with a slightly different yeast character and a more varied malt profile. Less yeast character than many other Belgian beers, though.", - "examples": "De Koninck, De Ryck Special, Palm Dobble, Palm Speciale", - "tags": "standard-strength, amber-color, top-fermented, western-europe, traditional-style, pale-ale-family, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.8 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - } - }, - { - "name": "Bière de Garde", - "category": "Belgian Ale", - "category_number": 24, - "category_id": "24", - "style_id": "24C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Prominent malty sweetness, often with a complex, light to moderate intensity toasty-bready-rich malt character. Low to moderate esters. Little to no hop aroma (may be a bit spicy, peppery, or herbal). Paler versions will still be malty but will lack richer, deeper aromatics and may have a bit more hops. Generally quite clean, although stronger versions may have a light, spicy alcohol note as it warms.", - "appearance": "Three main variations exist (blond, amber and brown), so color can range from golden-blonde to reddish-bronze to chestnut brown. Clarity is brilliant to fair, although haze is not unexpected in this type of often unfiltered beer. Well-formed head, generally white to off-white (varies by beer color), average persistence.", - "flavor": "Medium to high malt flavor often with a toasty-rich, biscuity, toffee-like or light caramel-sweet character. Malt flavors and complexity tend to increase with beer color. Low to moderate esters and alcohol flavors. Medium-low hop bitterness provides some support, but the balance is always tilted toward the malt. Darker versions will have more of an initial malty-sweet impression than paler versions, but all should be malty in the palate and finish. The malt flavor lasts into the finish, which is medium-dry to dry, never cloying. Low to no hop flavor (spicy, peppery, or herbal), although paler versions can have slightly higher levels of herbal or spicy hop flavor (which can also come from the yeast). Smooth, well-lagered character, even if made with ale yeast. Aftertaste of malt (character appropriate for the color) with some dryness and light alcohol.", - "mouthfeel": "Medium to medium-light (lean) body, often with a smooth, creamy-silky character. Moderate to high carbonation. Moderate alcohol warming, but should be very smooth and never hot.", - "comments": "Three main variations are included in the style: the brown (brune), the blond (blonde), and the amber (ambrée). The darker versions will have more malt character, while the paler versions can have more hops (but still are malt-focused beers). A related style is Bière de Mars, which is brewed in March (Mars) for present use and will not age as well. Attenuation rates are in the 80-85% range. Some fuller-bodied examples exist, but these are somewhat rare. Age and oxidation in imports often increases fruitiness, caramel flavors, and adds corked and musty notes; these are all signs of mishandling, not characteristic elements of the style.", - "profile": "Prominent malty sweetness, often with a complex, light to moderate intensity toasty-bready-rich malt character. Low to moderate esters. Little to no hop aroma (may be a bit spicy, peppery, or herbal). Paler versions will still be malty but will lack richer, deeper aromatics and may have a bit more hops. Generally quite clean, although stronger versions may have a light, spicy alcohol note as it warms. Three main variations exist (blond, amber and brown), so color can range from golden-blonde to reddish-bronze to chestnut brown. Clarity is brilliant to fair, although haze is not unexpected in this type of often unfiltered beer. Well-formed head, generally white to off-white (varies by beer color), average persistence.Medium to high malt flavor often with a toasty-rich, biscuity, toffee-like or light caramel-sweet character. Malt flavors and complexity tend to increase with beer color. Low to moderate esters and alcohol flavors. Medium-low hop bitterness provides some support, but the balance is always tilted toward the malt. Darker versions will have more of an initial malty-sweet impression than paler versions, but all should be malty in the palate and finish. The malt flavor lasts into the finish, which is medium-dry to dry, never cloying. Low to no hop flavor (spicy, peppery, or herbal), although paler versions can have slightly higher levels of herbal or spicy hop flavor (which can also come from the yeast). Smooth, well-lagered character, even if made with ale yeast. Aftertaste of malt (character appropriate for the color) with some dryness and light alcohol. Medium to medium-light (lean) body, often with a smooth, creamy-silky character. Moderate to high carbonation. Moderate alcohol warming, but should be very smooth and never hot. Three main variations are included in the style: the brown (brune), the blond (blonde), and the amber (ambrée). The darker versions will have more malt character, while the paler versions can have more hops (but still are malt-focused beers). A related style is Bière de Mars, which is brewed in March (Mars) for present use and will not age as well. Attenuation rates are in the 80-85% range. Some fuller-bodied examples exist, but these are somewhat rare. Age and oxidation in imports often increases fruitiness, caramel flavors, and adds corked and musty notes; these are all signs of mishandling, not characteristic elements of the style.", - "overall_impression": "A fairly strong, malt-accentuated, lagered artisanal beer with a range of malt flavors appropriate for the color. All are malty yet dry, with clean flavors and a smooth character.", - "history": "Name literally means \"beer which has been kept or lagered.\" A traditional artisanal ale from Northern France brewed in early spring and kept in cold cellars for consumption in warmer weather. It is now brewed year-round.", - "notes": "A fairly strong, malt-accentuated, lagered artisanal beer with a range of malt flavors appropriate for the color. All are malty yet dry, with clean flavors and a smooth character. Name literally means \"beer which has been kept or lagered.\" A traditional artisanal ale from Northern France brewed in early spring and kept in cold cellars for consumption in warmer weather. It is now brewed year-round.", - "ingredients": "The \"cellar\" character commonly described in literature is more of a feature of mishandled commercial exports than fresh, authentic products. The somewhat moldy character comes from the corks and/or oxidation in commercial versions, and is incorrectly identified as \"musty\" or \"cellar-like.\" Base malts vary by beer color, but usually include pale, Vienna and Munich types. Darker versions will have richer malt complexity and sweetness from crystal-type malts. Sugar may be used to add flavor and aid in the dry finish. Lager or ale yeast fermented at cool ale temperatures, followed by long cold conditioning. Floral, herbal or spicy continental hops.", - "comparison": "Related to the Belgian Saison style, the main difference is that the Bière de Garde is rounder, richer, malt-focused, and lacks the spicy, bitter character of a Saison.", - "examples": "Ch'Ti (brown and blond), Jenlain (amber and blond), La Choulette (all 3 versions), St. Amand (brown), Saint Sylvestre 3 Monts (blond), Russian River Perdition", - "tags": "high-strength, pale-color, amber-color, any-fermentation, lagered, western-europe, traditional-style, amber-ale-family, malty", - "entry_instructions": "Entrant must specify blond, amber, or brown bière de garde. If no color is specified, the judge should attempt to judge based on initial observation, expecting a malt flavor and balance that matches the color.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.06 - }, - "maximum": { - "unit": "sg", - "value": 1.08 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 28 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 19 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6 - }, - "maximum": { - "unit": "%", - "value": 8.5 - } - } - }, - { - "name": "Belgian Blond Ale", - "category": "Strong Belgian Ale", - "category_number": 25, - "category_id": "25", - "style_id": "25A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Light earthy or spicy hop nose, along with a lightly grainy-sweet malt character. Shows a subtle yeast character that may include spicy phenolics, perfumy or honey-like alcohol, or yeasty, fruity esters (commonly orange-like or lemony). Light sweetness that may have a slightly sugar-like character. Subtle yet complex.", - "appearance": "Light to deep gold color. Generally very clear. Large, dense, and creamy white to off-white head. Good head retention with Belgian lace.", - "flavor": "Smooth, light to moderate grainy-sweet malt flavor initially, but finishes medium-dry to dry with some smooth alcohol becoming evident in the aftertaste. Medium hop and alcohol bitterness to balance. Light hop flavor, can be spicy or earthy. Very soft yeast character (esters and alcohols, which are sometimes perfumy or orange/lemon-like). Light spicy phenolics optional. Some lightly caramelized sugar or honey-like sweetness on palate.", - "mouthfeel": "Medium-high to high carbonation, can give mouth-filling bubbly sensation. Medium body. Light to moderate alcohol warmth, but smooth. Can be somewhat creamy.", - "comments": "Often has an almost lager-like character, which gives it a cleaner profile in comparison to many other Belgian styles. Belgians use the term Blond, while the French spell it Blonde. Most commercial examples are in the 6.5 – 7% ABV range. Many Trappist or artisanal Belgian beers are called Blond but those are not representative of this style.", - "profile": "Light earthy or spicy hop nose, along with a lightly grainy-sweet malt character. Shows a subtle yeast character that may include spicy phenolics, perfumy or honey-like alcohol, or yeasty, fruity esters (commonly orange-like or lemony). Light sweetness that may have a slightly sugar-like character. Subtle yet complex. Light to deep gold color. Generally very clear. Large, dense, and creamy white to off-white head. Good head retention with Belgian lace.Smooth, light to moderate grainy-sweet malt flavor initially, but finishes medium-dry to dry with some smooth alcohol becoming evident in the aftertaste. Medium hop and alcohol bitterness to balance. Light hop flavor, can be spicy or earthy. Very soft yeast character (esters and alcohols, which are sometimes perfumy or orange/lemon-like). Light spicy phenolics optional. Some lightly caramelized sugar or honey-like sweetness on palate. Medium-high to high carbonation, can give mouth-filling bubbly sensation. Medium body. Light to moderate alcohol warmth, but smooth. Can be somewhat creamy. Often has an almost lager-like character, which gives it a cleaner profile in comparison to many other Belgian styles. Belgians use the term Blond, while the French spell it Blonde. Most commercial examples are in the 6.5 – 7% ABV range. Many Trappist or artisanal Belgian beers are called Blond but those are not representative of this style.", - "overall_impression": "A moderate-strength golden ale that has a subtle fruity-spicy Belgian yeast complexity, slightly malty-sweet flavor, and dry finish.", - "history": "Relatively recent development to further appeal to European Pils drinkers, becoming more popular as it is heavily marketed and widely distributed.", - "notes": "A moderate-strength golden ale that has a subtle fruity-spicy Belgian yeast complexity, slightly malty-sweet flavor, and dry finish. Relatively recent development to further appeal to European Pils drinkers, becoming more popular as it is heavily marketed and widely distributed.", - "ingredients": "Belgian Pils malt, aromatic malts, sugar, Belgian yeast strains that produce complex alcohol, phenolics and perfumy esters, Saazer-type, Styrian Goldings, or East Kent Goldings hops. Spices are not traditionally used, although the ingredients and fermentation by-products may give an impression of spicing (often reminiscent of oranges or lemons). If spices are present, should be a background character only.", - "comparison": "Similar strength as a Dubbel, similar character as a Belgian Strong Golden Ale or Tripel, although a bit sweeter and not as bitter.", - "examples": "Affligem Blond, Grimbergen Blond, La Trappe Blond, Leffe Blond, Val-Dieu Blond", - "tags": "high-strength, pale-color, top-fermented, western-europe, traditional-style, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.062 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 4 - }, - "maximum": { - "unit": "SRM", - "value": 7 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6 - }, - "maximum": { - "unit": "%", - "value": 7.5 - } - } - }, - { - "name": "Saison", - "category": "Strong Belgian Ale", - "category_number": 25, - "category_id": "25", - "style_id": "25B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Quite aromatic, with fruity, spicy, and hoppy characteristics evident. The esters can be fairly high (moderate to high), and are often reminiscent of citrus fruits such as oranges or lemons. The hops are low to moderate and are often spicy, floral, earthy, or fruity. Stronger versions can have a soft, spicy alcohol note (low intensity). Spicy notes are typically peppery rather than clove-like, and can be up to moderately-strong (typically yeast-derived). Subtle, complementary herb or spice additions are allowable, but should not dominate. The malt character is typically slightly grainy in character and low in intensity. Darker and stronger versions will have more noticeable malt, with darker versions taking characteristics associated with grains of that color (toasty, biscuity, caramelly, chocolate, etc.). In versions where sourness is present instead of bitterness, some of the sour character can be detected (low to moderate).", - "appearance": "Pale versions are often a distinctive pale orange but may be pale golden to amber in color (gold to amber-gold is most common). Darker versions may run from copper to dark brown. Long-lasting, dense, rocky white to ivory head resulting in characteristic Belgian lace on the glass as it fades. Clarity is poor to good, though haze is not unexpected in this type of unfiltered beer. Effervescent.", - "flavor": "Medium-low to medium-high fruity and spicy flavors, supported by a low to medium soft malt character, often with some grainy flavors. Bitterness is typically moderate to high, although sourness can be present in place of bitterness (both should not be strong flavors at the same time). Attenuation is extremely high, which gives a characteristic dry finish essential to the style; a Saison should never finish sweet. The fruity character is frequently citrusy (orange or lemon), and the spices are typically peppery. Allow for a range of balance in the fruity-spicy characteristics; this is often driven by the yeast selection. Hop flavor is low to moderate, and generally spicy or earthy in character. The balance is towards the fruity, spicy, hoppy character, with any bitterness or sourness not overwhelming these flavors. Darker versions will have more malt character, with a range of flavors derived from darker malts (toasty, bready, biscuity, chocolate, etc.) that support the fruity-spicy character of the beer (roasted flavors are not typical). Stronger versions will have more malt flavor in general, as well as a light alcohol impression. Herbs and spices are completely optional, but if present should be used in moderation and not detract from the yeast character. The finish is very dry and the aftertaste is typically bitter and spicy. The hop bitterness can be restrained, although it can seem accentuated due to the high attenuation levels.", - "mouthfeel": "Light to medium body. Alcohol sensation varies with strength, from none in table version to light in standard versions, to moderate in super versions. However, any warming character should be fairly low. Very high carbonation with an effervescent quality. There is enough prickly acidity on the tongue to balance the very dry finish. In versions with sourness, a low to moderate tart character can add a refreshing bite, but not be puckering (optional).", - "comments": "Variations exist in strength and color, but they all have similar characteristics and balance, in particularly the refreshing, highly-attenuated, dry character with high carbonation. There is no correlation between strength and color. The balance can change somewhat with strength and color variations, but the family resemblance to the original artisanal ale should be evident. Pale versions are likely to be more bitter and have more hop character, while darker versions tend to have more malt character and sweetness, yielding a more balanced presentations. Stronger versions often will have more malt flavor, richness, and body simply due to their higher gravity. Although they tend to be very well-attenuated, they may not be perceived to be as dry as standard-strength saisons due to their strength. The Saison yeast character is a must, although maltier and richer versions will tend to mask this character more. Often called Farmhouse ales in the US, but this term is not common in Europe where they are simply part of a larger grouping of artisanal ales.", - "profile": "Quite aromatic, with fruity, spicy, and hoppy characteristics evident. The esters can be fairly high (moderate to high), and are often reminiscent of citrus fruits such as oranges or lemons. The hops are low to moderate and are often spicy, floral, earthy, or fruity. Stronger versions can have a soft, spicy alcohol note (low intensity). Spicy notes are typically peppery rather than clove-like, and can be up to moderately-strong (typically yeast-derived). Subtle, complementary herb or spice additions are allowable, but should not dominate. The malt character is typically slightly grainy in character and low in intensity. Darker and stronger versions will have more noticeable malt, with darker versions taking characteristics associated with grains of that color (toasty, biscuity, caramelly, chocolate, etc.). In versions where sourness is present instead of bitterness, some of the sour character can be detected (low to moderate). Pale versions are often a distinctive pale orange but may be pale golden to amber in color (gold to amber-gold is most common). Darker versions may run from copper to dark brown. Long-lasting, dense, rocky white to ivory head resulting in characteristic Belgian lace on the glass as it fades. Clarity is poor to good, though haze is not unexpected in this type of unfiltered beer. Effervescent.Medium-low to medium-high fruity and spicy flavors, supported by a low to medium soft malt character, often with some grainy flavors. Bitterness is typically moderate to high, although sourness can be present in place of bitterness (both should not be strong flavors at the same time). Attenuation is extremely high, which gives a characteristic dry finish essential to the style; a Saison should never finish sweet. The fruity character is frequently citrusy (orange or lemon), and the spices are typically peppery. Allow for a range of balance in the fruity-spicy characteristics; this is often driven by the yeast selection. Hop flavor is low to moderate, and generally spicy or earthy in character. The balance is towards the fruity, spicy, hoppy character, with any bitterness or sourness not overwhelming these flavors. Darker versions will have more malt character, with a range of flavors derived from darker malts (toasty, bready, biscuity, chocolate, etc.) that support the fruity-spicy character of the beer (roasted flavors are not typical). Stronger versions will have more malt flavor in general, as well as a light alcohol impression. Herbs and spices are completely optional, but if present should be used in moderation and not detract from the yeast character. The finish is very dry and the aftertaste is typically bitter and spicy. The hop bitterness can be restrained, although it can seem accentuated due to the high attenuation levels. Light to medium body. Alcohol sensation varies with strength, from none in table version to light in standard versions, to moderate in super versions. However, any warming character should be fairly low. Very high carbonation with an effervescent quality. There is enough prickly acidity on the tongue to balance the very dry finish. In versions with sourness, a low to moderate tart character can add a refreshing bite, but not be puckering (optional). Variations exist in strength and color, but they all have similar characteristics and balance, in particularly the refreshing, highly-attenuated, dry character with high carbonation. There is no correlation between strength and color. The balance can change somewhat with strength and color variations, but the family resemblance to the original artisanal ale should be evident. Pale versions are likely to be more bitter and have more hop character, while darker versions tend to have more malt character and sweetness, yielding a more balanced presentations. Stronger versions often will have more malt flavor, richness, and body simply due to their higher gravity. Although they tend to be very well-attenuated, they may not be perceived to be as dry as standard-strength saisons due to their strength. The Saison yeast character is a must, although maltier and richer versions will tend to mask this character more. Often called Farmhouse ales in the US, but this term is not common in Europe where they are simply part of a larger grouping of artisanal ales.", - "overall_impression": "Most commonly, a pale, refreshing, highly-attenuated, moderately-bitter, moderate-strength Belgian ale with a very dry finish. Typically highly carbonated, and using non-barley cereal grains and optional spices for complexity, as complements the expressive yeast character that is fruity, spicy, and not overly phenolic. Less common variations include both lower-alcohol and higher-alcohol products, as well as darker versions with additional malt character.", - "history": "A provision ale originally brewed in Wallonia, the French-speaking part of Belgium, for consumption during the active farming season. Originally a lower-alcohol product so as to not debilitate field workers, but tavern-strength products also existed. Higher-strength and different-colored products appeared after WWII. The best known modern saison, Saison Dupont, was first produced in the 1920s. Originally a rustic, artisanal ale made with local farm-produced ingredients, it is now brewed mostly in larger breweries yet retains the image of its humble origins.", - "notes": "Most commonly, a pale, refreshing, highly-attenuated, moderately-bitter, moderate-strength Belgian ale with a very dry finish. Typically highly carbonated, and using non-barley cereal grains and optional spices for complexity, as complements the expressive yeast character that is fruity, spicy, and not overly phenolic. Less common variations include both lower-alcohol and higher-alcohol products, as well as darker versions with additional malt character. A provision ale originally brewed in Wallonia, the French-speaking part of Belgium, for consumption during the active farming season. Originally a lower-alcohol product so as to not debilitate field workers, but tavern-strength products also existed. Higher-strength and different-colored products appeared after WWII. The best known modern saison, Saison Dupont, was first produced in the 1920s. Originally a rustic, artisanal ale made with local farm-produced ingredients, it is now brewed mostly in larger breweries yet retains the image of its humble origins.", - "ingredients": "Not typically spiced, with the yeast, hops and grain providing the character; but spices are allowed if they provide a complementary character. Continental base malts are typical, but the grist frequently contains other grains such as wheat, oats, rye, or spelt. Adjuncts such as sugar and honey can also serve to add complexity and dry out the beer. Darker versions will typically use richer, darker malts, but not typically roasted types. Saazer-type, Styrian or East Kent Golding hops are commonly used. A wide range of herbs or spices can add complexity and uniqueness, but should always meld well with the yeast and hop character. Brettanomyces is not typical for this style; Saisons with Brett should be entered in the American Wild Ale category.", - "comparison": "At standard strengths and pale color (the most common variety), like a more highly-attenuated, hoppy, and bitter Belgian blond ale with a stronger yeast character. At super strength and pale color, similar to a Belgian tripel, but often with more of a grainy, rustic quality and sometimes with a spicier yeast character.", - "examples": "Ellezelloise Saison, Fantôme Saison, Lefebvre Saison 1900, Saison Dupont Vieille Provision, Saison de Pipaix, Saison Regal, Saison Voisin, Boulevard Tank 7 Farmhouse Ale", - "tags": "standard-strength, pale-color, top-fermented, western-europe, traditional-style, bitter", - "entry_instructions": "The entrant must specify the strength (table, standard, super) and the color (pale, dark).", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.065 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.002 - }, - "maximum": { - "unit": "sg", - "value": 1.008 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 5 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.5 - }, - "maximum": { - "unit": "%", - "value": 5 - } - } - }, - { - "name": "Belgian Golden Strong Ale", - "category": "Strong Belgian Ale", - "category_number": 25, - "category_id": "25", - "style_id": "25C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Complex with significant fruity esters, moderate spiciness and low to moderate alcohol and hop aromas. Esters are reminiscent of lighter fruits such as pears, oranges or apples. Moderate to moderately low spicy, peppery phenols. A low to moderate yet distinctive perfumy, floral hop character is often present. Alcohols are soft, spicy, perfumy and low-to-moderate in intensity. No hot alcohol or solventy aromas. The malt character is light and slightly grainy-sweet to nearly neutral.", - "appearance": "Yellow to medium gold in color. Good clarity. Effervescent. Massive, long-lasting, rocky, often beady, white head resulting in characteristic Belgian lace on the glass as it fades.", - "flavor": "Marriage of fruity, spicy and alcohol flavors supported by a soft malt character. Esters are reminiscent of pears, oranges or apples. Low to moderately low phenols are peppery in character. A low to moderate spicy hop character is often present. Alcohols are soft and spicy, and are low-to-moderate in intensity. Bitterness is typically medium to high from a combination of hop bitterness and yeast-produced phenolics. Substantial carbonation and bitterness leads to a dry finish with a low to moderately bitter aftertaste.", - "mouthfeel": "Very highly carbonated; effervescent. Light to medium body, although lighter than the substantial gravity would suggest. Smooth but noticeable alcohol warmth. No hot alcohol or solventy character.", - "comments": "References to the devil are included in the names of many commercial examples of this style, referring to their potent alcoholic strength and as a tribute to the original example (Duvel). The best examples are complex and delicate. High carbonation helps to bring out the many flavors and to increase the perception of a dry finish. Traditionally bottle-conditioned (or refermented in the bottle).", - "profile": "Complex with significant fruity esters, moderate spiciness and low to moderate alcohol and hop aromas. Esters are reminiscent of lighter fruits such as pears, oranges or apples. Moderate to moderately low spicy, peppery phenols. A low to moderate yet distinctive perfumy, floral hop character is often present. Alcohols are soft, spicy, perfumy and low-to-moderate in intensity. No hot alcohol or solventy aromas. The malt character is light and slightly grainy-sweet to nearly neutral. Yellow to medium gold in color. Good clarity. Effervescent. Massive, long-lasting, rocky, often beady, white head resulting in characteristic Belgian lace on the glass as it fades.Marriage of fruity, spicy and alcohol flavors supported by a soft malt character. Esters are reminiscent of pears, oranges or apples. Low to moderately low phenols are peppery in character. A low to moderate spicy hop character is often present. Alcohols are soft and spicy, and are low-to-moderate in intensity. Bitterness is typically medium to high from a combination of hop bitterness and yeast-produced phenolics. Substantial carbonation and bitterness leads to a dry finish with a low to moderately bitter aftertaste. Very highly carbonated; effervescent. Light to medium body, although lighter than the substantial gravity would suggest. Smooth but noticeable alcohol warmth. No hot alcohol or solventy character. References to the devil are included in the names of many commercial examples of this style, referring to their potent alcoholic strength and as a tribute to the original example (Duvel). The best examples are complex and delicate. High carbonation helps to bring out the many flavors and to increase the perception of a dry finish. Traditionally bottle-conditioned (or refermented in the bottle).", - "overall_impression": "A pale, complex, effervescent, strong Belgian-style ale that is highly attenuated and features fruity and hoppy notes in preference to phenolics.", - "history": "Originally developed by the Moortgat brewery after WWI as a response to the growing popularity of Pilsner beers.", - "notes": "A pale, complex, effervescent, strong Belgian-style ale that is highly attenuated and features fruity and hoppy notes in preference to phenolics. Originally developed by the Moortgat brewery after WWI as a response to the growing popularity of Pilsner beers.", - "ingredients": "Pilsner malt with substantial sugary adjuncts. Saazer-type hops or Styrian Goldings are commonly used. Belgian yeast strains are used – those that produce fruity esters, spicy phenolics and higher alcohols – often aided by slightly warmer fermentation temperatures. Fairly soft water. Spicing is not traditional; if present, should be a background character only.", - "comparison": "Strongly resembles a Tripel, but may be even paler, lighter-bodied and even crisper and drier; the drier finish and lighter body also serves to make the assertive hopping and yeast character more prominent. Tends to use yeast that favor ester development (particularly pome fruit) over spiciness in the balance.", - "examples": "Brigand, Delirium Tremens, Dulle Teve, Duvel, Judas, Lucifer, Piraat, Russian River Damnation", - "tags": "very-high-strength, pale-color, top-fermented, western-europe, traditional-style, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.07 - }, - "maximum": { - "unit": "sg", - "value": 1.095 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.005 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 22 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 7.5 - }, - "maximum": { - "unit": "%", - "value": 10.5 - } - } - }, - { - "name": "Trappist Single", - "category": "Trappist Ale", - "category_number": 26, - "category_id": "26", - "style_id": "26A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Medium-low to medium-high Trappist yeast character, showing a fruity-spicy character along with medium-low to medium spicy or floral hops, occasionally enhanced by light herbal/citrusy spice additions. Low to medium-low grainy-sweet malt backdrop, which may have a light honey or sugar quality. Fruit expression can vary widely (citrus, pome fruit, stone fruit). Light spicy, yeast-driven phenolics found in the best examples. Bubblegum inappropriate.", - "appearance": "Pale yellow to medium gold color. Generally good clarity, with a moderate-sized, persistent, billowy white head with characteristic lacing.", - "flavor": "Fruity, hoppy, bitter, and dry. Initial malty-sweet impression, with a grainy-sweet soft malt palate, and a dry, hoppy finish. The malt may have a light honeyed biscuit or cracker impression. Moderate spicy or floral hop flavor. Esters can be citrus (orange, lemon, grapefruit), pome fruit (apple, pear), or stone fruit (apricot, peach). Light to moderate spicy, peppery, or clove phenolics. Bitterness rises towards the crisp, dry finish, with an aftertaste of light malt, moderate hops and yeast character.", - "mouthfeel": "Medium-light to medium body. Smooth. Medium-high to high carbonation, can be somewhat prickly. Should not have noticeable alcohol warmth.", - "comments": "Often not labeled or available outside the monastery, or infrequently brewed. Might also be called monk's beer or Brother's beer. Highly attenuated, generally 85% or higher.", - "profile": "Medium-low to medium-high Trappist yeast character, showing a fruity-spicy character along with medium-low to medium spicy or floral hops, occasionally enhanced by light herbal/citrusy spice additions. Low to medium-low grainy-sweet malt backdrop, which may have a light honey or sugar quality. Fruit expression can vary widely (citrus, pome fruit, stone fruit). Light spicy, yeast-driven phenolics found in the best examples. Bubblegum inappropriate. Pale yellow to medium gold color. Generally good clarity, with a moderate-sized, persistent, billowy white head with characteristic lacing.Fruity, hoppy, bitter, and dry. Initial malty-sweet impression, with a grainy-sweet soft malt palate, and a dry, hoppy finish. The malt may have a light honeyed biscuit or cracker impression. Moderate spicy or floral hop flavor. Esters can be citrus (orange, lemon, grapefruit), pome fruit (apple, pear), or stone fruit (apricot, peach). Light to moderate spicy, peppery, or clove phenolics. Bitterness rises towards the crisp, dry finish, with an aftertaste of light malt, moderate hops and yeast character. Medium-light to medium body. Smooth. Medium-high to high carbonation, can be somewhat prickly. Should not have noticeable alcohol warmth. Often not labeled or available outside the monastery, or infrequently brewed. Might also be called monk's beer or Brother's beer. Highly attenuated, generally 85% or higher.", - "overall_impression": "A pale, bitter, highly attenuated and well carbonated Trappist ale, showing a fruity-spicy Trappist yeast character, a spicy-floral hop profile, and a soft, supportive grainy-sweet malt palate.", - "history": "While Trappist breweries have a tradition of brewing a lower-strength beer as a monk's daily ration, the bitter, pale beer this style describes is a relatively modern invention reflecting current tastes. Westvleteren first brewed theirs in 1999, but replaced older lower-gravity products.", - "notes": "A pale, bitter, highly attenuated and well carbonated Trappist ale, showing a fruity-spicy Trappist yeast character, a spicy-floral hop profile, and a soft, supportive grainy-sweet malt palate. While Trappist breweries have a tradition of brewing a lower-strength beer as a monk's daily ration, the bitter, pale beer this style describes is a relatively modern invention reflecting current tastes. Westvleteren first brewed theirs in 1999, but replaced older lower-gravity products.", - "ingredients": "Pilsner malt, Belgian Trappist yeast, Saazer-type hops.", - "comparison": "Like a top-fermented Belgian/Trappist interpretation of a German Pils – pale, hoppy, and well-attenuated, but showing prototypical Belgian yeast character. Has less sweetness, higher attenuation, less character malt, and is more hop-centered than a Belgian Pale Ale. More like a much smaller, more highly hopped tripel than a smaller Belgian Blond Ale.", - "examples": "Achel 5° Blond, St. Bernardus Extra 4, Westmalle Extra, Westvleteren Blond", - "tags": "standard-strength, pale-color, top-fermenting, western-europe, craft-style, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.004 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 45 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 5 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.8 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "Belgian Dubbel", - "category": "Trappist Ale", - "category_number": 26, - "category_id": "26", - "style_id": "26B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Complex, rich-sweet malty aroma, possibly with hints of chocolate, caramel and/or toast (but never roasted or burnt aromas). Moderate fruity esters (usually including raisins and plums, sometimes also dried cherries). Esters sometimes include banana or apple. Spicy phenols and higher alcohols are common (may include light clove and spice, peppery, rose-like and/or perfumy notes). Spicy qualities can be moderate to very low. Alcohol, if present, is soft and never hot or solventy. Low to no spicy, herbal, or floral hop aroma, typically absent. The malt is most prominent in the balance with esters and a touch of alcohol in support, blending together for a harmonious presentation.", - "appearance": "Dark amber to copper in color, with an attractive reddish depth of color. Generally clear. Large, dense, and long-lasting creamy off-white head.", - "flavor": "Similar qualities as aroma. Rich, complex medium to medium-full rich-sweet malt flavor on the palate yet finishes moderately dry. Complex malt, ester, alcohol and phenol interplay (raisiny flavors are common; dried fruit flavors are welcome; clove or pepper spiciness is optional). Balance is always toward the malt. Medium-low bitterness that doesn't persist into the aftertaste. Low spicy, floral, or herbal hop flavor is optional and not usually present.", - "mouthfeel": "Medium-full body. Medium-high carbonation, which can influence the perception of body. Low alcohol warmth. Smooth, never hot or solventy.", - "comments": "Most commercial examples are in the 6.5 – 7% ABV range. Traditionally bottle-conditioned (or refermented in the bottle).", - "profile": "Complex, rich-sweet malty aroma, possibly with hints of chocolate, caramel and/or toast (but never roasted or burnt aromas). Moderate fruity esters (usually including raisins and plums, sometimes also dried cherries). Esters sometimes include banana or apple. Spicy phenols and higher alcohols are common (may include light clove and spice, peppery, rose-like and/or perfumy notes). Spicy qualities can be moderate to very low. Alcohol, if present, is soft and never hot or solventy. Low to no spicy, herbal, or floral hop aroma, typically absent. The malt is most prominent in the balance with esters and a touch of alcohol in support, blending together for a harmonious presentation. Dark amber to copper in color, with an attractive reddish depth of color. Generally clear. Large, dense, and long-lasting creamy off-white head.Similar qualities as aroma. Rich, complex medium to medium-full rich-sweet malt flavor on the palate yet finishes moderately dry. Complex malt, ester, alcohol and phenol interplay (raisiny flavors are common; dried fruit flavors are welcome; clove or pepper spiciness is optional). Balance is always toward the malt. Medium-low bitterness that doesn't persist into the aftertaste. Low spicy, floral, or herbal hop flavor is optional and not usually present. Medium-full body. Medium-high carbonation, which can influence the perception of body. Low alcohol warmth. Smooth, never hot or solventy. Most commercial examples are in the 6.5 – 7% ABV range. Traditionally bottle-conditioned (or refermented in the bottle).", - "overall_impression": "A deep reddish-copper, moderately strong, malty, complex Trappist ale with rich malty flavors, dark or dried fruit esters, and light alcohol blended together in a malty presentation that still finishes fairly dry.", - "history": "Originated at monasteries in the Middle Ages, and was revived in the mid-1800s after the Napoleonic era.", - "notes": "A deep reddish-copper, moderately strong, malty, complex Trappist ale with rich malty flavors, dark or dried fruit esters, and light alcohol blended together in a malty presentation that still finishes fairly dry. Originated at monasteries in the Middle Ages, and was revived in the mid-1800s after the Napoleonic era.", - "ingredients": "Belgian yeast strains prone to production of higher alcohols, esters, and phenolics are commonly used. Impression of complex grain bill, although traditional versions are typically Belgian Pils malt with caramelized sugar syrup or other unrefined sugars providing much of the character. Saazer-type, English-type or Styrian Goldings hops commonly used. No spices are traditionally used, although restrained use is allowable (background strength only).", - "comparison": "Should not be as malty as a bock and should not have crystal malt-type sweetness. Similar in strength and balance as a Belgian Blond, but with a richer malt and ester profile. Less strong and intense as a Belgian Dark Strong Ale.", - "examples": "Affligem Dubbel, Chimay Première, Corsendonk Pater, Grimbergen Double, La Trappe Dubbel, St. Bernardus Pater 6, Trappistes Rochefort 6, Westmalle Dubbel", - "tags": "high-strength, amber-color, top-fermented, western-europe, traditional-style, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.062 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 25 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 10 - }, - "maximum": { - "unit": "SRM", - "value": 17 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6 - }, - "maximum": { - "unit": "%", - "value": 7.6 - } - } - }, - { - "name": "Belgian Tripel", - "category": "Trappist Ale", - "category_number": 26, - "category_id": "26", - "style_id": "26C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Complex bouquet with moderate to significant spiciness, moderate fruity esters and low alcohol and hop aromas. Generous spicy, peppery, sometimes clove-like phenols. Esters are often reminiscent of citrus fruits such as oranges, but may sometimes have a slight banana character. A low yet distinctive spicy, floral, sometimes perfumy hop character is usually found. Alcohols are soft, spicy and low in intensity. The malt character is light, with a soft, slightly grainy-sweet or slightly honey-like impression. The best examples have a seamless, harmonious interplay between the yeast character, hops, malt, and alcohol.", - "appearance": "Deep yellow to deep gold in color. Good clarity. Effervescent. Long-lasting, creamy, rocky, white head resulting in characteristic Belgian lace on the glass as it fades.", - "flavor": "Marriage of spicy, fruity and alcohol flavors supported by a soft, rounded grainy-sweet malt impression, occasionally with a very light honey note. Low to moderate phenols are peppery in character. Esters are reminiscent of citrus fruit such as orange or sometimes lemon, and are low to moderate. A low to moderate spicy hop character is usually found. Alcohols are soft, spicy, and low in intensity. Bitterness is typically medium to high from a combination of hop bitterness and yeast-produced phenolics. Substantial carbonation and bitterness lends a dry finish with a moderately bitter aftertaste with substantial spicy-fruity yeast character. The grainy-sweet malt flavor does not imply any residual sweetness.", - "mouthfeel": "Medium-light to medium body, although lighter than the substantial gravity would suggest. Highly carbonated. The alcohol content is deceptive, and has little to no obvious warming sensation. Always effervescent.", - "comments": "High in alcohol but does not taste strongly of alcohol. The best examples are sneaky, not obvious. High carbonation and attenuation helps to bring out the many flavors and to increase the perception of a dry finish. Most Trappist versions have at least 30 IBUs and are very dry. Traditionally bottle-conditioned (or refermented in the bottle).", - "profile": "Complex bouquet with moderate to significant spiciness, moderate fruity esters and low alcohol and hop aromas. Generous spicy, peppery, sometimes clove-like phenols. Esters are often reminiscent of citrus fruits such as oranges, but may sometimes have a slight banana character. A low yet distinctive spicy, floral, sometimes perfumy hop character is usually found. Alcohols are soft, spicy and low in intensity. The malt character is light, with a soft, slightly grainy-sweet or slightly honey-like impression. The best examples have a seamless, harmonious interplay between the yeast character, hops, malt, and alcohol. Deep yellow to deep gold in color. Good clarity. Effervescent. Long-lasting, creamy, rocky, white head resulting in characteristic Belgian lace on the glass as it fades.Marriage of spicy, fruity and alcohol flavors supported by a soft, rounded grainy-sweet malt impression, occasionally with a very light honey note. Low to moderate phenols are peppery in character. Esters are reminiscent of citrus fruit such as orange or sometimes lemon, and are low to moderate. A low to moderate spicy hop character is usually found. Alcohols are soft, spicy, and low in intensity. Bitterness is typically medium to high from a combination of hop bitterness and yeast-produced phenolics. Substantial carbonation and bitterness lends a dry finish with a moderately bitter aftertaste with substantial spicy-fruity yeast character. The grainy-sweet malt flavor does not imply any residual sweetness. Medium-light to medium body, although lighter than the substantial gravity would suggest. Highly carbonated. The alcohol content is deceptive, and has little to no obvious warming sensation. Always effervescent. High in alcohol but does not taste strongly of alcohol. The best examples are sneaky, not obvious. High carbonation and attenuation helps to bring out the many flavors and to increase the perception of a dry finish. Most Trappist versions have at least 30 IBUs and are very dry. Traditionally bottle-conditioned (or refermented in the bottle).", - "overall_impression": "A pale, somewhat spicy, dry, strong Trappist ale with a pleasant rounded malt flavor and firm bitterness. Quite aromatic, with spicy, fruity, and light alcohol notes combining with the supportive clean malt character to produce a surprisingly drinkable beverage considering the high alcohol level.", - "history": "Originally popularized by the Trappist monastery at Westmalle.", - "notes": "A pale, somewhat spicy, dry, strong Trappist ale with a pleasant rounded malt flavor and firm bitterness. Quite aromatic, with spicy, fruity, and light alcohol notes combining with the supportive clean malt character to produce a surprisingly drinkable beverage considering the high alcohol level. Originally popularized by the Trappist monastery at Westmalle.", - "ingredients": "Pilsner malt, typically with pale sugar adjuncts. Saazer-type hops or Styrian Goldings are commonly used. Belgian yeast strains are used – those that produce fruity esters, spicy phenolics and higher alcohols – often aided by slightly warmer fermentation temperatures. Spice additions are generally not traditional, and if used, should be a background character only. Fairly soft water.", - "comparison": "May resemble a Belgian Golden Strong Ale but slightly darker and somewhat fuller-bodied, with more emphasis on phenolics and less on esters. Usually has a more rounded malt flavor but should never be sweet.", - "examples": "Affligem Tripel, Chimay Cinq Cents, La Rulles Tripel, La Trappe Tripel, St. Bernardus Tripel, Unibroue La Fin Du Monde, Val-Dieu Triple, Watou Tripel, Westmalle Tripel", - "tags": "high-strength, pale-color, top-fermented, western-europe, traditional-style, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.075 - }, - "maximum": { - "unit": "sg", - "value": 1.085 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 4.5 - }, - "maximum": { - "unit": "SRM", - "value": 7 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 7.5 - }, - "maximum": { - "unit": "%", - "value": 9.5 - } - } - }, - { - "name": "Belgian Dark Strong Ale", - "category": "Trappist Ale", - "category_number": 26, - "category_id": "26", - "style_id": "26D", - "style_letter": "D", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Complex, with a rich-sweet malty presence, significant esters and alcohol, and an optional light to moderate spiciness. The malt is rich and strong, and can have a deep bready-toasty quality often with a deep caramel complexity. The fruity esters are strong to moderately low, and can contain raisin, plum, dried cherry, fig or prune notes. Spicy phenols may be present, but usually have a peppery quality not clove-like; light vanilla is possible. Alcohols are soft, spicy, perfumy and/or rose-like, and are low to moderate in intensity. Hops are not usually present (but a very low spicy, floral, or herbal hop aroma is acceptable). No dark/roast malt aroma. No hot alcohols or solventy aromas.", - "appearance": "Deep amber to deep coppery-brown in color (dark in this context implies more deeply colored than golden). Huge, dense, moussy, persistent cream- to light tan-colored head. Can be clear to somewhat hazy.", - "flavor": "Similar to aroma (same malt, ester, phenol, alcohol, and hop comments apply to flavor as well). Moderately malty-rich on the palate, which can have a sweet impression if bitterness is low. Usually moderately dry to dry finish, although may be up to moderately sweet. Medium-low to moderate bitterness; alcohol provides some of the balance to the malt. Generally malty-rich balance, but can be fairly even with bitterness. The complex and varied flavors should blend smoothly and harmoniously. The finish should not be heavy or syrupy.", - "mouthfeel": "High carbonation but not sharp. Smooth but noticeable alcohol warmth. Body can range from medium-light to medium-full and creamy. Most are medium-bodied.", - "comments": "Authentic Trappist versions tend to be drier (Belgians would say more digestible) than Abbey versions, which can be rather sweet and full-bodied. Traditionally bottle-conditioned (or refermented in the bottle). Sometimes known as a Trappist Quadruple, most are simply known by their strength or color designation.", - "profile": "Complex, with a rich-sweet malty presence, significant esters and alcohol, and an optional light to moderate spiciness. The malt is rich and strong, and can have a deep bready-toasty quality often with a deep caramel complexity. The fruity esters are strong to moderately low, and can contain raisin, plum, dried cherry, fig or prune notes. Spicy phenols may be present, but usually have a peppery quality not clove-like; light vanilla is possible. Alcohols are soft, spicy, perfumy and/or rose-like, and are low to moderate in intensity. Hops are not usually present (but a very low spicy, floral, or herbal hop aroma is acceptable). No dark/roast malt aroma. No hot alcohols or solventy aromas. Deep amber to deep coppery-brown in color (dark in this context implies more deeply colored than golden). Huge, dense, moussy, persistent cream- to light tan-colored head. Can be clear to somewhat hazy.Similar to aroma (same malt, ester, phenol, alcohol, and hop comments apply to flavor as well). Moderately malty-rich on the palate, which can have a sweet impression if bitterness is low. Usually moderately dry to dry finish, although may be up to moderately sweet. Medium-low to moderate bitterness; alcohol provides some of the balance to the malt. Generally malty-rich balance, but can be fairly even with bitterness. The complex and varied flavors should blend smoothly and harmoniously. The finish should not be heavy or syrupy. High carbonation but not sharp. Smooth but noticeable alcohol warmth. Body can range from medium-light to medium-full and creamy. Most are medium-bodied. Authentic Trappist versions tend to be drier (Belgians would say more digestible) than Abbey versions, which can be rather sweet and full-bodied. Traditionally bottle-conditioned (or refermented in the bottle). Sometimes known as a Trappist Quadruple, most are simply known by their strength or color designation.", - "overall_impression": "A dark, complex, very strong Belgian ale with a delicious blend of malt richness, dark fruit flavors, and spicy elements. Complex, rich, smooth and dangerous.", - "history": "Most versions are unique in character reflecting characteristics of individual breweries, produced in limited quantities and often highly sought-after.", - "notes": "A dark, complex, very strong Belgian ale with a delicious blend of malt richness, dark fruit flavors, and spicy elements. Complex, rich, smooth and dangerous. Most versions are unique in character reflecting characteristics of individual breweries, produced in limited quantities and often highly sought-after.", - "ingredients": "Belgian yeast strains prone to production of higher alcohols, esters, and sometimes phenolics are commonly used. Impression of a complex grain bill, although many traditional versions are quite simple, with caramelized sugar syrup or unrefined sugars and yeast providing much of the complexity. Saazer-type, English-type or Styrian Goldings hops commonly used. Spices generally not used; if used, keep subtle and in the background.", - "comparison": "Like a larger dubbel, with a fuller body and increased malt richness. Not as bitter or hoppy as a tripel, but of similar strength.", - "examples": "Achel Extra Brune, Boulevard The Sixth Glass, Chimay Grande Réserve, Gouden Carolus Grand Cru of the Emperor, Rochefort 8 & 10, St. Bernardus Abt 12, Westvleteren 12", - "tags": "very-high-strength, amber-color, top-fermented, western-europe, traditional-style, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.075 - }, - "maximum": { - "unit": "sg", - "value": 1.11 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.024 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 12 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 8 - }, - "maximum": { - "unit": "%", - "value": 12 - } - } - }, - { - "name": "Gose", - "category": "Historical Beer", - "category_number": 27, - "category_id": "27", - "style_id": "27A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Light to moderately fruity aroma of pome fruit. Light sourness, slightly sharp. Noticeable coriander, which can have an aromatic lemony quality, and an intensity up to moderate. Light bready, doughy, yeasty character like uncooked sourdough bread. The acidity and coriander can give a bright, lively impression. The salt may be perceived as a very light, clean sea breeze character or just a general freshness, if noticeable at all.", - "appearance": "Unfiltered, with a moderate to full haze. Moderate to tall sized white head with tight bubbles and good retention. Effervescent. Medium yellow color.", - "flavor": "Moderate to restrained but noticeable sourness, like a squeeze of lemon in iced tea. Moderate bready/doughy malt flavor. Light to moderate fruity character of pome fruit, stone fruit, or lemons. Light to moderate salt character, up to the threshold of taste; the salt should be noticeable (particularly in the initial taste) but not taste overtly salty. Low bitterness, no hop flavor. Dry, fully-attenuated finish, with acidity not hops balancing the malt. Acidity can be more noticeable in the finish, and enhance the refreshing quality of the beer. The acidity should be balanced, not forward (although historical versions could be very sour).", - "mouthfeel": "High to very high carbonation, effervescent. Medium-light to medium-full body. Salt may give a slightly tingly, mouthwatering quality, if perceived at all. The yeast and wheat can give it a little body, but it shouldn't have a heavy feel.", - "comments": "Served in traditional cylindrical glasses. Historical versions may have been more sour than modern examples due to spontaneous fermentation, and may be blended with syrups as is done with Berliner Weisse, or Kümmel, a liqueur flavored with caraway, cumin, and fennel. Modern examples are inoculated with lactobacillus, and are more balanced and generally don't need sweetening. Pronounced GOH-zeh.", - "profile": "Light to moderately fruity aroma of pome fruit. Light sourness, slightly sharp. Noticeable coriander, which can have an aromatic lemony quality, and an intensity up to moderate. Light bready, doughy, yeasty character like uncooked sourdough bread. The acidity and coriander can give a bright, lively impression. The salt may be perceived as a very light, clean sea breeze character or just a general freshness, if noticeable at all. Unfiltered, with a moderate to full haze. Moderate to tall sized white head with tight bubbles and good retention. Effervescent. Medium yellow color.Moderate to restrained but noticeable sourness, like a squeeze of lemon in iced tea. Moderate bready/doughy malt flavor. Light to moderate fruity character of pome fruit, stone fruit, or lemons. Light to moderate salt character, up to the threshold of taste; the salt should be noticeable (particularly in the initial taste) but not taste overtly salty. Low bitterness, no hop flavor. Dry, fully-attenuated finish, with acidity not hops balancing the malt. Acidity can be more noticeable in the finish, and enhance the refreshing quality of the beer. The acidity should be balanced, not forward (although historical versions could be very sour). High to very high carbonation, effervescent. Medium-light to medium-full body. Salt may give a slightly tingly, mouthwatering quality, if perceived at all. The yeast and wheat can give it a little body, but it shouldn't have a heavy feel. Served in traditional cylindrical glasses. Historical versions may have been more sour than modern examples due to spontaneous fermentation, and may be blended with syrups as is done with Berliner Weisse, or Kümmel, a liqueur flavored with caraway, cumin, and fennel. Modern examples are inoculated with lactobacillus, and are more balanced and generally don't need sweetening. Pronounced GOH-zeh.", - "overall_impression": "A highly-carbonated, tart and fruity wheat ale with a restrained coriander and salt character and low bitterness. Very refreshing, with bright flavors and high attenuation.", - "history": "Minor style associated with Leipzig but originating in the Middle Ages in the town of Goslar on the Gose River. Documented to have been in Leipzig by 1740. Leipzig was said to have 80 Gose houses in 1900. Production declined significantly after WWII, and ceased entirely in 1966. Modern production was revived in the 1980s, but the beer is not widely available.", - "notes": "A highly-carbonated, tart and fruity wheat ale with a restrained coriander and salt character and low bitterness. Very refreshing, with bright flavors and high attenuation. Minor style associated with Leipzig but originating in the Middle Ages in the town of Goslar on the Gose River. Documented to have been in Leipzig by 1740. Leipzig was said to have 80 Gose houses in 1900. Production declined significantly after WWII, and ceased entirely in 1966. Modern production was revived in the 1980s, but the beer is not widely available.", - "ingredients": "Pilsner and wheat malt, restrained use of salt and coriander seed, lactobacillus. The coriander should have a fresh, citrusy (lemon or bitter orange), bright note, and not be vegetal, celery-like, or ham-like. The salt should have a sea salt or fresh salt character, not a metallic, iodine note.", - "comparison": "Perceived acidity is not as intense as Berliner Weisse or Gueuze. Restrained use of salt, coriander, and lactobacillus – should not taste overtly salty. Coriander aroma can be similar to a witbier. Haziness similar to a Weissbier.", - "examples": "Anderson Valley Gose, Bayerisch Bahnhof Leipziger Gose, Döllnitzer Ritterguts Gose", - "tags": "standard-strength, pale-color, top-fermented, central-europe, historical-style, wheat-beer-family, sour, spice", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.036 - }, - "maximum": { - "unit": "sg", - "value": 1.056 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.006 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 5 - }, - "maximum": { - "unit": "IBUs", - "value": 12 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 4 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.2 - }, - "maximum": { - "unit": "%", - "value": 4.8 - } - } - }, - { - "name": "Kentucky Common", - "category": "Historical Beer", - "category_number": 27, - "category_id": "27", - "style_id": "27B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to medium grainy, corn-like or sweet maltiness with a low toast, biscuity-grainy, bready, or caramel malt accent. Medium to moderately-low hop aroma, usually floral or spicy in character. Clean fermentation character, with possible faint berry ester. Low levels of DMS are acceptable. No sourness. Malt-forward in the balance.", - "appearance": "Amber-orange to light brown in color. Typically clear, but may have some light haze due to limited conditioning. Foam stand may not be long lasting, and is usually white to beige in color.", - "flavor": "Moderate grainy-sweet maltiness with low to medium-low caramel, toffee, bready, and/or biscuity notes. Generally light palate flavors typical of adjunct beers; a low grainy, corn-like sweetness is common. Medium to low floral or spicy hop flavor. Medium to low hop bitterness, which should neither be coarse nor have a harsh aftertaste. May exhibit light fruitiness. Balance in the finish is towards the malt. May have a lightly flinty or minerally-sulfate flavor in the finish. The finish is fairly dry, including the contributions of roasted grains and minerals. No sourness.", - "mouthfeel": "Medium to medium-light body with a relatively soft mouthfeel. Highly carbonated. Can have a creamy texture.", - "comments": "Modern characterizations of the style often mention a lactic sourness or sour mashing, but extensive brewing records from the larger breweries at the turn of the century have no indication of long acid rests, sour mashing, or extensive conditioning. This is likely a modern homebrewer invention, based on the supposition that since indigenous Bourbon distillers used a sour mash, beer brewers must also have used this process. No contemporaneous records indicate sour mashing or that the beer had a sour profile; rather the opposite, that the beer was brewed as an inexpensive, present-use ale. Enter soured versions in American Wild Ale.", - "profile": "Low to medium grainy, corn-like or sweet maltiness with a low toast, biscuity-grainy, bready, or caramel malt accent. Medium to moderately-low hop aroma, usually floral or spicy in character. Clean fermentation character, with possible faint berry ester. Low levels of DMS are acceptable. No sourness. Malt-forward in the balance. Amber-orange to light brown in color. Typically clear, but may have some light haze due to limited conditioning. Foam stand may not be long lasting, and is usually white to beige in color.Moderate grainy-sweet maltiness with low to medium-low caramel, toffee, bready, and/or biscuity notes. Generally light palate flavors typical of adjunct beers; a low grainy, corn-like sweetness is common. Medium to low floral or spicy hop flavor. Medium to low hop bitterness, which should neither be coarse nor have a harsh aftertaste. May exhibit light fruitiness. Balance in the finish is towards the malt. May have a lightly flinty or minerally-sulfate flavor in the finish. The finish is fairly dry, including the contributions of roasted grains and minerals. No sourness. Medium to medium-light body with a relatively soft mouthfeel. Highly carbonated. Can have a creamy texture. Modern characterizations of the style often mention a lactic sourness or sour mashing, but extensive brewing records from the larger breweries at the turn of the century have no indication of long acid rests, sour mashing, or extensive conditioning. This is likely a modern homebrewer invention, based on the supposition that since indigenous Bourbon distillers used a sour mash, beer brewers must also have used this process. No contemporaneous records indicate sour mashing or that the beer had a sour profile; rather the opposite, that the beer was brewed as an inexpensive, present-use ale. Enter soured versions in American Wild Ale.", - "overall_impression": "A darker-colored, light-flavored, malt-accented beer with a dry finish and interesting character malt flavors. Refreshing due to its high carbonation and mild flavors, and highly sessionable due to being served very fresh and with restrained alcohol levels.", - "history": "A true American original style, Kentucky Common was almost exclusively produced and sold around the Louisville Kentucky metropolitan area from some time after the Civil War up to Prohibition. Its hallmark was that it was inexpensive and quickly produced, typically 6 to 8 days from mash to delivery. The beer was racked into barrels while actively fermenting (1.020 – 1.022) and tightly bunged to allow carbonation in the saloon cellar. There is some speculation that it was a variant of the lighter common or cream ale produced throughout much of the East prior to the Civil War and that the darker grains were added by the mostly Germanic brewers to help acidify the typical carbonate water of the Louisville area, or that they had a preference for darker colored beers. Up until the late 19th century, Kentucky Common was not brewed in the summer months unless cellars, usually used for malting, were used for fermentation. With the advent of ice machines, the larger breweries were able to brew year round. In the period from 1900 to prohibition, about 75% of the beer sold in the Louisville area was Kentucky Common. With prohibition, the style died completely as the few larger breweries that survived were almost exclusively lager producers.", - "notes": "A darker-colored, light-flavored, malt-accented beer with a dry finish and interesting character malt flavors. Refreshing due to its high carbonation and mild flavors, and highly sessionable due to being served very fresh and with restrained alcohol levels. A true American original style, Kentucky Common was almost exclusively produced and sold around the Louisville Kentucky metropolitan area from some time after the Civil War up to Prohibition. Its hallmark was that it was inexpensive and quickly produced, typically 6 to 8 days from mash to delivery. The beer was racked into barrels while actively fermenting (1.020 – 1.022) and tightly bunged to allow carbonation in the saloon cellar. There is some speculation that it was a variant of the lighter common or cream ale produced throughout much of the East prior to the Civil War and that the darker grains were added by the mostly Germanic brewers to help acidify the typical carbonate water of the Louisville area, or that they had a preference for darker colored beers. Up until the late 19th century, Kentucky Common was not brewed in the summer months unless cellars, usually used for malting, were used for fermentation. With the advent of ice machines, the larger breweries were able to brew year round. In the period from 1900 to prohibition, about 75% of the beer sold in the Louisville area was Kentucky Common. With prohibition, the style died completely as the few larger breweries that survived were almost exclusively lager producers.", - "ingredients": "Six-row barley malt was used with 35% corn grits to dilute the excessive protein levels along with 1 to 2% each caramel and black malt. Native American hops, usually about .2 pounds per barrel of Western hops for bittering and a similar amount of New York hops (such as Clusters) for flavor (15 minutes prior to knock out). Imported continental Saazer-type hops (.1 pounds per barrel) were added at knock out for aroma. Water in the Louisville area was typically moderate to high in carbonates. Mash water was often pre-boiled to precipitate the carbonate and Gypsum was commonly added. Considering the time from mash in to kegging for delivery was typically 6 to 8 days, clearly aggressive top-fermenting yeasts was used.", - "comparison": "Like a darker-colored cream ale emphasizing corn, but with some light character malt flavor. Malt flavors and balance are probably closest to modern adjunct-driven international amber or dark lagers, Irish red ales, or Belgian pale ales.", - "examples": "Apocalypse Brew Works Ortel's 1912", - "tags": "standard-strength, amber-color, top-fermented, north-america, historical-style, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.055 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 11 - }, - "maximum": { - "unit": "SRM", - "value": 20 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - } - }, - { - "name": "Lichtenhainer", - "category": "Historical Beer", - "category_number": 27, - "category_id": "27", - "style_id": "27C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderately strong fresh smoky aroma, light hints of sourness, medium-low fruity esters, possibly apples or lemons, moderate bready-grainy malt. The smoke character is stronger than the bready notes, and the smoke has a ‘dry' character, like the remnants of an old fire, not a ‘greasy' smoke.", - "appearance": "Tall off-white head, rocky and persistent. Deep yellow to light gold color. Fair clarity, may be somewhat hazy.", - "flavor": "Moderately strong fruity flavor, possibly lemons or apples. Moderate intensity, clean lactic tartness (no funk). Similar smoky character as aroma (dry wood fire), medium strength. Dry finish, with acidity and smoke in the aftertaste. Low bitterness; the acidity is providing the balance, not hops. Fresh, clean palate and slightly puckery aftertaste. The wheat character is on the low side; the smoke and acidity are more prominent in the balance. The lemony-tart/green apple flavor is strongest in the finish, with smoke a close second. Complex.", - "mouthfeel": "Tingly acidity. High carbonation. Medium to medium-light body.", - "comments": "Served young. Smoke and sour is an unusual combination that is not for everyone.", - "profile": "Moderately strong fresh smoky aroma, light hints of sourness, medium-low fruity esters, possibly apples or lemons, moderate bready-grainy malt. The smoke character is stronger than the bready notes, and the smoke has a ‘dry' character, like the remnants of an old fire, not a ‘greasy' smoke. Tall off-white head, rocky and persistent. Deep yellow to light gold color. Fair clarity, may be somewhat hazy.Moderately strong fruity flavor, possibly lemons or apples. Moderate intensity, clean lactic tartness (no funk). Similar smoky character as aroma (dry wood fire), medium strength. Dry finish, with acidity and smoke in the aftertaste. Low bitterness; the acidity is providing the balance, not hops. Fresh, clean palate and slightly puckery aftertaste. The wheat character is on the low side; the smoke and acidity are more prominent in the balance. The lemony-tart/green apple flavor is strongest in the finish, with smoke a close second. Complex. Tingly acidity. High carbonation. Medium to medium-light body. Served young. Smoke and sour is an unusual combination that is not for everyone.", - "overall_impression": "A sour, smoked, lower-gravity historical German wheat beer. Complex yet refreshing character due to high attenuation and carbonation, along with low bitterness and moderate sourness.", - "history": "Originating in Lichtenhain, in Thüringen (central Germany). Height of popularity was towards the end of the 1800s, and was widely available throughout Thüringen. Like a pre-1840 Berliner Weisse.", - "notes": "A sour, smoked, lower-gravity historical German wheat beer. Complex yet refreshing character due to high attenuation and carbonation, along with low bitterness and moderate sourness. Originating in Lichtenhain, in Thüringen (central Germany). Height of popularity was towards the end of the 1800s, and was widely available throughout Thüringen. Like a pre-1840 Berliner Weisse.", - "ingredients": "Smoked barley malt, wheat malt, lactobacillus, top-fermenting yeast. Grists vary, but the wheat would typically be 30-50%.", - "comparison": "In the same general historical lower-alcohol top-fermenting central European wheat beer family as Gose, Grodziskie, and Berliner weisse, has elements of all of them but having its own unique balance – sour and smoke is not found in any of the other beers. Not as acidic as Berliner weisse, probably more like a smoked Gose without coriander and salt, or a Grodziskie with Gose-like acidity.", - "tags": "standard-strength, pale-color, top-fermented, central-europe, historical-style, wheat-beer-family, sour, smoke", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.032 - }, - "maximum": { - "unit": "sg", - "value": 1.04 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.004 - }, - "maximum": { - "unit": "sg", - "value": 1.008 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 5 - }, - "maximum": { - "unit": "IBUs", - "value": 12 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.5 - }, - "maximum": { - "unit": "%", - "value": 4.7 - } - } - }, - { - "name": "London Brown Ale", - "category": "Historical Beer", - "category_number": 27, - "category_id": "27", - "style_id": "27D", - "style_letter": "D", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Moderate malty-sweet aroma, often with a rich, caramel or toffee-like character. Low to medium fruity esters, often dark fruit like plums. Very low to no hop aroma, earthy or floral qualities.", - "appearance": "Medium to very dark brown color, but can be nearly black. Nearly opaque, although should be relatively clear if visible. Low to moderate off-white to tan head.", - "flavor": "Deep, caramel or toffee-like malty and sweet flavor on the palate and lasting into the finish. Hints of biscuit and coffee are common. Some fruity esters can be present (typically dark fruit); relatively clean fermentation profile for an English ale. Low hop bitterness. Hop flavor is low to non-existent, possibly earthy or floral in character. Moderately-low to no perceivable roasty or bitter black malt flavor. Moderately sweet finish with a smooth, malty aftertaste. May have a sugary-sweet flavor.", - "mouthfeel": "Medium body, but the residual sweetness may give a heavier impression. Medium-low to medium carbonation. Quite creamy and smooth in texture, particularly for its gravity.", - "comments": "Increasingly rare; Mann's has over 90% market share in Britain, but in an increasingly small segment. Always bottled. Frequently used as a sweet mixer with cask mild and bitter in pubs. Commercial versions can be pasteurized and back-sweetened, which gives more of a sugary-sweet flavor.", - "profile": "Moderate malty-sweet aroma, often with a rich, caramel or toffee-like character. Low to medium fruity esters, often dark fruit like plums. Very low to no hop aroma, earthy or floral qualities. Medium to very dark brown color, but can be nearly black. Nearly opaque, although should be relatively clear if visible. Low to moderate off-white to tan head.Deep, caramel or toffee-like malty and sweet flavor on the palate and lasting into the finish. Hints of biscuit and coffee are common. Some fruity esters can be present (typically dark fruit); relatively clean fermentation profile for an English ale. Low hop bitterness. Hop flavor is low to non-existent, possibly earthy or floral in character. Moderately-low to no perceivable roasty or bitter black malt flavor. Moderately sweet finish with a smooth, malty aftertaste. May have a sugary-sweet flavor. Medium body, but the residual sweetness may give a heavier impression. Medium-low to medium carbonation. Quite creamy and smooth in texture, particularly for its gravity. Increasingly rare; Mann's has over 90% market share in Britain, but in an increasingly small segment. Always bottled. Frequently used as a sweet mixer with cask mild and bitter in pubs. Commercial versions can be pasteurized and back-sweetened, which gives more of a sugary-sweet flavor.", - "overall_impression": "A luscious, sweet, malt-oriented dark brown ale, with caramel and toffee malt complexity and a sweet finish.", - "history": "Developed by Mann's as a bottled product in 1902. Claimed at the time to be \"the sweetest beer in London.\" Pre-WWI versions were around 5% ABV, but same general balance. Declined in popularity in second half of 20th century, and now nearly extinct.", - "notes": "A luscious, sweet, malt-oriented dark brown ale, with caramel and toffee malt complexity and a sweet finish. Developed by Mann's as a bottled product in 1902. Claimed at the time to be \"the sweetest beer in London.\" Pre-WWI versions were around 5% ABV, but same general balance. Declined in popularity in second half of 20th century, and now nearly extinct.", - "ingredients": "English pale ale malt as a base with a healthy proportion of darker caramel malts and often some roasted (black) malt and wheat malt (this is Mann's traditional grist – others can rely on dark sugars for color and flavor). Moderate to high carbonate water. English hop varieties are most authentic, though with low flavor and bitterness almost any type could be used. Post-fermentation sweetening with lactose or artificial sweeteners, or sucrose (if pasteurized).", - "comparison": "May seem somewhat like a less roasty version of a sweet stout (and lower-gravity, at least for US sweet stout examples) or a sweet version of a dark mild.", - "examples": "Harveys Bloomsbury Brown Ale, Mann's Brown Ale", - "tags": "session-strength, dark-color, top-fermented, british-isles, historical-style, brown-ale-family, malty, sweet", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.033 - }, - "maximum": { - "unit": "sg", - "value": 1.038 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.012 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 20 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 22 - }, - "maximum": { - "unit": "SRM", - "value": 35 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 2.8 - }, - "maximum": { - "unit": "%", - "value": 3.6 - } - } - }, - { - "name": "Piwo Grodziskie", - "category": "Historical Beer", - "category_number": 27, - "category_id": "27", - "style_id": "27E", - "style_letter": "E", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to moderate oak wood smoke is the most prominent aroma component, but can be subtle and hard to detect. A low spicy, herbal, or floral hop aroma is typically present, and should be lower than or equal to the smoke in intensity. Hints of grainy wheat are also detected in the best examples. The aroma is otherwise clean, although light pome fruit esters (especially ripe red apple or pear) are welcome. No acidity. Slight water-derived sulfury notes may be present.", - "appearance": "Pale yellow to medium gold in color with excellent clarity. A tall, billowy, white, tightly-knit head with excellent retention is distinctive. Murkiness is a fault.", - "flavor": "Moderately-low to medium oak smoke flavor up front which carries into the finish; the smoke can be stronger in flavor than in aroma. The smoke character is gentle, should not be acrid, and can lend an impression of sweetness. A moderate to strong bitterness is readily evident which lingers through the finish. The overall balance is toward bitterness. Low but perceptible spicy, herbal, or floral hop flavor. Low grainy wheat character in the background. Light pome fruit esters (red apple or pear) may be present. Dry, crisp finish. No sourness.", - "mouthfeel": "Light in body, with a crisp and dry finish. Carbonation is quite high and can add a slight carbonic bite or prickly sensation. No noticeable alcohol warmth.", - "comments": "Pronounced in English as \"pivo grow-JEES-kee-uh\" (meaning: Grodzisk beer). Known as Grätzer (pronounced \"GRATE-sir\") in German-speaking countries, and in some beer literature. Traditionally made using a multi-step mash, a long boil (~2 hours), and multiple strains of ale yeast. The beer is never filtered but Isinglass is used to clarify before bottle conditioning. Traditionally served in tall conical glassware to accommodate the vigorous foam stand.", - "profile": "Low to moderate oak wood smoke is the most prominent aroma component, but can be subtle and hard to detect. A low spicy, herbal, or floral hop aroma is typically present, and should be lower than or equal to the smoke in intensity. Hints of grainy wheat are also detected in the best examples. The aroma is otherwise clean, although light pome fruit esters (especially ripe red apple or pear) are welcome. No acidity. Slight water-derived sulfury notes may be present. Pale yellow to medium gold in color with excellent clarity. A tall, billowy, white, tightly-knit head with excellent retention is distinctive. Murkiness is a fault.Moderately-low to medium oak smoke flavor up front which carries into the finish; the smoke can be stronger in flavor than in aroma. The smoke character is gentle, should not be acrid, and can lend an impression of sweetness. A moderate to strong bitterness is readily evident which lingers through the finish. The overall balance is toward bitterness. Low but perceptible spicy, herbal, or floral hop flavor. Low grainy wheat character in the background. Light pome fruit esters (red apple or pear) may be present. Dry, crisp finish. No sourness. Light in body, with a crisp and dry finish. Carbonation is quite high and can add a slight carbonic bite or prickly sensation. No noticeable alcohol warmth. Pronounced in English as \"pivo grow-JEES-kee-uh\" (meaning: Grodzisk beer). Known as Grätzer (pronounced \"GRATE-sir\") in German-speaking countries, and in some beer literature. Traditionally made using a multi-step mash, a long boil (~2 hours), and multiple strains of ale yeast. The beer is never filtered but Isinglass is used to clarify before bottle conditioning. Traditionally served in tall conical glassware to accommodate the vigorous foam stand.", - "overall_impression": "A low-gravity, highly-carbonated, light-bodied ale combining an oak-smoked flavor with a clean hop bitterness. Highly sessionable.", - "history": "Developed as a unique style centuries ago in the Polish city of Grodzisk (known as Grätz when ruled by Prussia and Germany). Its fame and popularity rapidly extended to other parts of the world in the late 19th and early 20th century. Regular commercial production declined after WWII and ceased altogether in the early-mid 1990s. This style description describes the traditional version during its period of greatest popularity.", - "notes": "A low-gravity, highly-carbonated, light-bodied ale combining an oak-smoked flavor with a clean hop bitterness. Highly sessionable. Developed as a unique style centuries ago in the Polish city of Grodzisk (known as Grätz when ruled by Prussia and Germany). Its fame and popularity rapidly extended to other parts of the world in the late 19th and early 20th century. Regular commercial production declined after WWII and ceased altogether in the early-mid 1990s. This style description describes the traditional version during its period of greatest popularity.", - "ingredients": "Grain bill usually consists entirely of oak-smoked wheat malt. Oak-smoked wheat malt has a different (and less intense) smoke character than German beechwood-smoked barley malt; it has a drier, crisper, leaner quality – a bacon/ham smoke flavor is inappropriate. Saazer-type hops (Polish, Czech or German), moderate hardness sulfate water, and a relatively clean and attenuative continental ale yeast fermented at moderate ale temperatures are traditional. German hefeweizen yeast or other strains with a phenol or strong ester character are inappropriate.", - "comparison": "Similar in strength to a Berliner Weisse, but never sour. Has a smoked character but less intense than in a Rauchbier.", - "tags": "session-strength, pale-color, top-fermented, central-europe, historical-style, wheat-beer-family, bitter, smoke", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.028 - }, - "maximum": { - "unit": "sg", - "value": 1.032 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.006 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 2.5 - }, - "maximum": { - "unit": "%", - "value": 3.3 - } - } - }, - { - "name": "Pre-Prohibition Lager", - "category": "Historical Beer", - "category_number": 27, - "category_id": "27", - "style_id": "27F", - "style_letter": "F", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Low to medium grainy, corn-like or sweet maltiness may be evident (although rice-based beers are more neutral). Medium to moderately high hop aroma, with a range of character from rustic to floral to herbal/spicy; a fruity or citrusy modern hop character is inappropriate. Clean lager character. Low DMS is acceptable. May show some yeast character, as with modern American lagers; allow for a range of subtle supporting yeast notes.", - "appearance": "Yellow to deep gold color. Substantial, long lasting white head. Bright clarity.", - "flavor": "Medium to medium-high maltiness with a grainy flavor, and optionally a corn-like roundness and impression of sweetness. Substantial hop bitterness stands up to the malt and lingers through the dry finish. All malt and rice-based versions are often crisper, drier, and generally lack corn-like flavors. Medium to high hop flavor, with a rustic, floral, or herbal/spicy character. Medium to high hop bitterness, which should neither be overly coarse nor have a harsh aftertaste. Allow for a range of lager yeast character, as with modern American lagers, but generally fairly neutral.", - "mouthfeel": "Medium body with a moderately rich, creamy mouthfeel. Smooth and well-lagered. Medium to high carbonation levels.", - "comments": "The classic American Pilsner was brewed both pre-Prohibition and post-Prohibition with some differences. OGs of 1.050–1.060 would have been appropriate for pre-Prohibition beers while gravities dropped to 1.044–1.048 after Prohibition. Corresponding IBUs dropped from a pre-Prohibition level of 30–40 to 25–30 after Prohibition.", - "profile": "Low to medium grainy, corn-like or sweet maltiness may be evident (although rice-based beers are more neutral). Medium to moderately high hop aroma, with a range of character from rustic to floral to herbal/spicy; a fruity or citrusy modern hop character is inappropriate. Clean lager character. Low DMS is acceptable. May show some yeast character, as with modern American lagers; allow for a range of subtle supporting yeast notes. Yellow to deep gold color. Substantial, long lasting white head. Bright clarity.Medium to medium-high maltiness with a grainy flavor, and optionally a corn-like roundness and impression of sweetness. Substantial hop bitterness stands up to the malt and lingers through the dry finish. All malt and rice-based versions are often crisper, drier, and generally lack corn-like flavors. Medium to high hop flavor, with a rustic, floral, or herbal/spicy character. Medium to high hop bitterness, which should neither be overly coarse nor have a harsh aftertaste. Allow for a range of lager yeast character, as with modern American lagers, but generally fairly neutral. Medium body with a moderately rich, creamy mouthfeel. Smooth and well-lagered. Medium to high carbonation levels. The classic American Pilsner was brewed both pre-Prohibition and post-Prohibition with some differences. OGs of 1.050–1.060 would have been appropriate for pre-Prohibition beers while gravities dropped to 1.044–1.048 after Prohibition. Corresponding IBUs dropped from a pre-Prohibition level of 30–40 to 25–30 after Prohibition.", - "overall_impression": "A clean, refreshing, but bitter pale lager, often showcasing a grainy-sweet corn flavor. All malt or rice-based versions have a crisper, more neutral character. The higher bitterness level is the largest differentiator between this style and most modern mass-market pale lagers, but the more robust flavor profile also sets it apart.", - "history": "A version of Pilsner brewed in the USA by immigrant German brewers who brought the process and yeast with them, but who had to adapt their recipes to work with native hops and malt. This style died out after Prohibition but was resurrected by homebrewers in the 1990s. Few commercial versions are made, so the style still remains mostly a homebrew phenomenon.", - "notes": "A clean, refreshing, but bitter pale lager, often showcasing a grainy-sweet corn flavor. All malt or rice-based versions have a crisper, more neutral character. The higher bitterness level is the largest differentiator between this style and most modern mass-market pale lagers, but the more robust flavor profile also sets it apart. A version of Pilsner brewed in the USA by immigrant German brewers who brought the process and yeast with them, but who had to adapt their recipes to work with native hops and malt. This style died out after Prohibition but was resurrected by homebrewers in the 1990s. Few commercial versions are made, so the style still remains mostly a homebrew phenomenon.", - "ingredients": "Six-row barley with 20% to 30% flaked maize (corn) or rice to dilute the excessive protein levels; modern versions may be all malt. Native American hops such as Clusters, traditional continental hops, or modern noble-type crosses are also appropriate. Modern American hops such as Cascade are inappropriate. Water with a high mineral content can lead to an unpleasant coarseness in flavor and harshness in aftertaste. A wide range of lager yeast character can be exhibited, although modern versions tend to be fairly clean.", - "comparison": "Similar balance and bitterness as modern Czech Premium Pale Lagers, but exhibiting native American grains and hops from the era before US Prohibition. More robust, bitter, and flavorful than modern American pale lagers, and often with higher alcohol.", - "examples": "Anchor California Lager, Coors Batch 19, Little Harpeth Chicken Scratch", - "tags": "standard-strength, pale-color, bottom-fermented, lagered, north-america, historical-style, pilsner-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "Pre-Prohibition Porter", - "category": "Historical Beer", - "category_number": 27, - "category_id": "27", - "style_id": "27G", - "style_letter": "G", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Base grainy malt aroma with low levels of dark malt (slight burnt or chocolate notes). Low hop aroma. Low to moderate low levels of DMS acceptable. May show low levels of caramel and biscuit aroma. No to very low esters. Light adjunct (licorice, molasses) aroma acceptable. Diacetyl low to none. Clean lager profile acceptable.", - "appearance": "Medium to dark brown, though some examples can be nearly black in color, with ruby or mahogany highlights. Relatively clear. Light to medium tan head which will persist in the glass.", - "flavor": "Grainy base malt flavor, with low levels of chocolate or burnt black malt notes, along with low levels of caramel, biscuit, licorice, and toast notes. Corn/DMS flavor acceptable at low to moderate levels. American hop bitterness low to moderate and American hop flavor low to none. Balance is typically even between malt and hops, with a moderate dry finish.", - "mouthfeel": "Medium light to medium body, moderate carbonation, low to moderate creaminess. May have a slight astringency from the dark malts.", - "comments": "Also sometimes known as Pennsylvania Porter or East Coast Porter.", - "profile": "Base grainy malt aroma with low levels of dark malt (slight burnt or chocolate notes). Low hop aroma. Low to moderate low levels of DMS acceptable. May show low levels of caramel and biscuit aroma. No to very low esters. Light adjunct (licorice, molasses) aroma acceptable. Diacetyl low to none. Clean lager profile acceptable. Medium to dark brown, though some examples can be nearly black in color, with ruby or mahogany highlights. Relatively clear. Light to medium tan head which will persist in the glass.Grainy base malt flavor, with low levels of chocolate or burnt black malt notes, along with low levels of caramel, biscuit, licorice, and toast notes. Corn/DMS flavor acceptable at low to moderate levels. American hop bitterness low to moderate and American hop flavor low to none. Balance is typically even between malt and hops, with a moderate dry finish. Medium light to medium body, moderate carbonation, low to moderate creaminess. May have a slight astringency from the dark malts. Also sometimes known as Pennsylvania Porter or East Coast Porter.", - "overall_impression": "An American adaptation of English Porter using American ingredients, including adjuncts.", - "history": "Commercially brewed in Philadelphia during the revolutionary period, the beer gained wide acceptance in the newly formed mid-Atlantic states, and was endorsed by President George Washington.", - "notes": "An American adaptation of English Porter using American ingredients, including adjuncts. Commercially brewed in Philadelphia during the revolutionary period, the beer gained wide acceptance in the newly formed mid-Atlantic states, and was endorsed by President George Washington.", - "ingredients": "Two and six row malt (or a combination of both) are used, along with low percentages of dark malts including black, chocolate, and brown malt (roasted barley is not typically used). Adjuncts are acceptable, including corn, brewers licorice, molasses, and porterine. More historical versions will have up to twenty percent adjuncts. Lager or ale yeast. Emphasis on historical or traditional American bittering hops (Cluster, Willamette, Cascade), though finishing and flavor hops may vary.", - "comparison": "Smoother and less hoppy-bitter than a (modern) American Porter, less caramelly than an English Porter with more of an adjunct/lager character.", - "examples": "Stegmaier Porter, Yuengling Porter", - "tags": "standard-strength, dark-color, any-fermentation, north-america, historical-style, porter-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.046 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 18 - }, - "maximum": { - "unit": "SRM", - "value": 30 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "Roggenbier", - "category": "Historical Beer", - "category_number": 27, - "category_id": "27", - "style_id": "27H", - "style_letter": "H", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Light to moderate spicy rye aroma intermingled with light to moderate weizen yeast aromatics (spicy clove and fruity esters, either banana or citrus). Light spicy, floral, or herbal hops are acceptable.", - "appearance": "Light coppery-orange to very dark reddish or coppery-brown color. Large creamy off-white to tan head, quite dense and persistent (often thick and rocky). Cloudy, hazy appearance.", - "flavor": "Grainy, moderately-low to moderately-strong spicy rye flavor, often having a hearty flavor reminiscent of rye or pumpernickel bread. Medium to medium-low bitterness allows an initial malt sweetness (sometimes with a bit of caramel) to be tasted before yeast and rye character takes over. Low to moderate weizen yeast character (banana, clove), although the balance can vary. Medium-dry, grainy finish with a lightly bitter (from rye) aftertaste. Low to moderate spicy, herbal, or floral hop flavor acceptable, and can persist into aftertaste.", - "mouthfeel": "Medium to medium-full body. High carbonation. Moderately creamy.", - "comments": "Rye is a huskless grain and is difficult to mash, often resulting in a gummy mash texture that is prone to sticking. Rye has been characterized as having the most assertive flavor of all cereal grains. It is inappropriate to add caraway seeds to a roggenbier (as some American brewers do); the rye character is traditionally from the rye grain only.", - "profile": "Light to moderate spicy rye aroma intermingled with light to moderate weizen yeast aromatics (spicy clove and fruity esters, either banana or citrus). Light spicy, floral, or herbal hops are acceptable. Light coppery-orange to very dark reddish or coppery-brown color. Large creamy off-white to tan head, quite dense and persistent (often thick and rocky). Cloudy, hazy appearance.Grainy, moderately-low to moderately-strong spicy rye flavor, often having a hearty flavor reminiscent of rye or pumpernickel bread. Medium to medium-low bitterness allows an initial malt sweetness (sometimes with a bit of caramel) to be tasted before yeast and rye character takes over. Low to moderate weizen yeast character (banana, clove), although the balance can vary. Medium-dry, grainy finish with a lightly bitter (from rye) aftertaste. Low to moderate spicy, herbal, or floral hop flavor acceptable, and can persist into aftertaste. Medium to medium-full body. High carbonation. Moderately creamy. Rye is a huskless grain and is difficult to mash, often resulting in a gummy mash texture that is prone to sticking. Rye has been characterized as having the most assertive flavor of all cereal grains. It is inappropriate to add caraway seeds to a roggenbier (as some American brewers do); the rye character is traditionally from the rye grain only.", - "overall_impression": "A dunkelweizen made with rye rather than wheat, but with a greater body and light finishing hops.", - "history": "A specialty German rye beer originally brewed in Regensburg, Bavaria. Never a widely popular style, it has all but disappeared in modern times.", - "notes": "A dunkelweizen made with rye rather than wheat, but with a greater body and light finishing hops. A specialty German rye beer originally brewed in Regensburg, Bavaria. Never a widely popular style, it has all but disappeared in modern times.", - "ingredients": "Malted rye typically constitutes 50% or greater of the grist (some versions have 60-65% rye). Remainder of grist can include pale malt, Munich malt, wheat malt, crystal malt and/or small amounts of debittered dark malts for color adjustment. Weizen yeast provides distinctive banana esters and clove phenols. Light usage of Saazer-type hops in bitterness, flavor and aroma. Lower fermentation temperatures accentuate the clove character by suppressing ester formation. Decoction mash traditionally used (as with weissbiers).", - "comparison": "A more distinctive variant of a dunkelweizen using malted rye instead of malted wheat. American Rye Beers will not have the weizen yeast character, and likely more hops.", - "examples": "Thurn und Taxis Roggen", - "tags": "standard-strength, amber-color, top-fermenting, central-europe, historical-style, wheat-beer-family", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.046 - }, - "maximum": { - "unit": "sg", - "value": 1.056 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 10 - }, - "maximum": { - "unit": "IBUs", - "value": 20 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 14 - }, - "maximum": { - "unit": "SRM", - "value": 19 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "Sahti", - "category": "Historical Beer", - "category_number": 27, - "category_id": "27", - "style_id": "27I", - "style_letter": "I", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "High banana esters with moderate to moderately-high clove-like phenolics. Not sour. May have a low to moderate juniper character. Grainy malt, caramel, and rye in background. Light alcohol aroma. Sweet malt impression.", - "appearance": "Pale yellow to dark brown color; most are medium to dark amber. Generally quite cloudy (unfiltered). Little head, due to low carbonation.", - "flavor": "Strong banana and moderate to moderately-high clove yeast character. Moderate grainy rye flavor. Low bitterness. Fairly sweet finish. Juniper can add a pine-like flavor; juniper berries can add a gin-like flavor; both should be complementary, not dominant. No noticeable hop flavor. Moderate caramel flavor but no roast. Multi-layered and complex, with kind of a wortiness that is unusual in other beer styles. Not sour.", - "mouthfeel": "Thick, viscous, and heavy with protein (no boil means no hot break). Nearly still to medium-low carbonation. Strongly warming from the alcohol level and young age, but often masked by sweetness.", - "comments": "The use of rye doesn't mean that it should taste like caraway (a dominant flavor in rye bread). The use of juniper berries will give a flavor like gin (similarly flavored with juniper berries). The juniper acts a bit like hops in the balance and flavor, providing some counterpoint to the sweet malt.", - "profile": "High banana esters with moderate to moderately-high clove-like phenolics. Not sour. May have a low to moderate juniper character. Grainy malt, caramel, and rye in background. Light alcohol aroma. Sweet malt impression. Pale yellow to dark brown color; most are medium to dark amber. Generally quite cloudy (unfiltered). Little head, due to low carbonation.Strong banana and moderate to moderately-high clove yeast character. Moderate grainy rye flavor. Low bitterness. Fairly sweet finish. Juniper can add a pine-like flavor; juniper berries can add a gin-like flavor; both should be complementary, not dominant. No noticeable hop flavor. Moderate caramel flavor but no roast. Multi-layered and complex, with kind of a wortiness that is unusual in other beer styles. Not sour. Thick, viscous, and heavy with protein (no boil means no hot break). Nearly still to medium-low carbonation. Strongly warming from the alcohol level and young age, but often masked by sweetness. The use of rye doesn't mean that it should taste like caraway (a dominant flavor in rye bread). The use of juniper berries will give a flavor like gin (similarly flavored with juniper berries). The juniper acts a bit like hops in the balance and flavor, providing some counterpoint to the sweet malt.", - "overall_impression": "A sweet, heavy, strong traditional Finnish beer with a rye, juniper, and juniper berry flavor and a strong banana-clove yeast character.", - "history": "An indigenous traditional style from Finland; a farmhouse tradition for at least 500 years, often brewed for festive occasions like summer weddings, and consumed within a week or two of brewing. A similar tradition exists in Estonia, where the beer is known as koduolu.", - "notes": "A sweet, heavy, strong traditional Finnish beer with a rye, juniper, and juniper berry flavor and a strong banana-clove yeast character. An indigenous traditional style from Finland; a farmhouse tradition for at least 500 years, often brewed for festive occasions like summer weddings, and consumed within a week or two of brewing. A similar tradition exists in Estonia, where the beer is known as koduolu.", - "ingredients": "Malted barley along with malted and unmalted grains, often rye. Low hops. Juniper boughs used for lautering (traditionally in a hollowed-out log), but often producing a juniper/berry character. Often uses top-fermenting baker's yeast in a fast, warm fermentation (German Weizen yeast is a good substitute). Not boiled; a long mash steep is used, with a separately added hop tea.", - "comparison": "Strong resemblance to Weizenbocks, but sweet and thick with a rye and juniper character.", - "tags": "high-strength, amber-color, top-fermented, central-europe, historical-style, spic", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.076 - }, - "maximum": { - "unit": "sg", - "value": 1.12 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.016 - }, - "maximum": { - "unit": "sg", - "value": 1.02 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 7 - }, - "maximum": { - "unit": "IBUs", - "value": 15 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 4 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 7 - }, - "maximum": { - "unit": "%", - "value": 11 - } - } - }, - { - "name": "Brett Beer", - "category": "American Wild Ale", - "category_number": 28, - "category_id": "28", - "style_id": "28A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Variable by base style. Young Brett-fermented beers will possess more fruity notes (e.g., tropical fruit, stone fruit, or citrus), but this is variable by the strain(s) of Brett used. For 100% Brett beers heavily hopped with American hop varieties, the fermentation-derived flavors are often difficult to tease from the hop aromatics. Older 100% Brett beers may start to develop a little funk (e.g., barnyard, wet hay, or slightly earthy or smoky notes), but this character should not dominate. If the beer is fermented with a brewer's yeast in addition to Brett, some of the character of the primary yeast may remain. A faint sourness is acceptable but should not be a prominent character.", - "appearance": "Variable by base style. Clarity can be variable, and depends on the base style and ingredients used. Some haze is not necessarily a fault.", - "flavor": "Variable by base style. Brett character may range from minimal to aggressive. Can be quite fruity (e.g., tropical fruit, berry, stone fruit, citrus), or have some smoky, earthy, or barnyard character. Should not be unpleasantly funky, such as Band-Aid, fetid, nail polish remover, cheese, etc. Light sourness is acceptable with the beer being lightly tart, but should not be truly sour. Always fruitier when young, gaining more funk with age. May not be acetic or lactic. Malt flavors are often less pronounced than in the base style, leaving a beer most often dry and crisp due to high attenuation by the Brett.", - "mouthfeel": "Variable by base style. Generally a light body, lighter than what might be expected from the base style but an overly thin body is a fault. Generally moderate to high carbonation. Head retention is variable.", - "comments": "The base style describes most of the character of these beers, but the addition of Brett ensures a drier, thinner, and funkier product. Younger versions are brighter and fruitier, while older ones possess more depth of funk and may lose more of the base style character. Wood-aged versions should be entered in the Wild Specialty Beer style. The Brett character should always meld with the style; these beers should never be a ‘Brett bomb'. Note that Brett does not produce lactic acid.", - "profile": "Variable by base style. Young Brett-fermented beers will possess more fruity notes (e.g., tropical fruit, stone fruit, or citrus), but this is variable by the strain(s) of Brett used. For 100% Brett beers heavily hopped with American hop varieties, the fermentation-derived flavors are often difficult to tease from the hop aromatics. Older 100% Brett beers may start to develop a little funk (e.g., barnyard, wet hay, or slightly earthy or smoky notes), but this character should not dominate. If the beer is fermented with a brewer's yeast in addition to Brett, some of the character of the primary yeast may remain. A faint sourness is acceptable but should not be a prominent character. Variable by base style. Clarity can be variable, and depends on the base style and ingredients used. Some haze is not necessarily a fault.Variable by base style. Brett character may range from minimal to aggressive. Can be quite fruity (e.g., tropical fruit, berry, stone fruit, citrus), or have some smoky, earthy, or barnyard character. Should not be unpleasantly funky, such as Band-Aid, fetid, nail polish remover, cheese, etc. Light sourness is acceptable with the beer being lightly tart, but should not be truly sour. Always fruitier when young, gaining more funk with age. May not be acetic or lactic. Malt flavors are often less pronounced than in the base style, leaving a beer most often dry and crisp due to high attenuation by the Brett. Variable by base style. Generally a light body, lighter than what might be expected from the base style but an overly thin body is a fault. Generally moderate to high carbonation. Head retention is variable. The base style describes most of the character of these beers, but the addition of Brett ensures a drier, thinner, and funkier product. Younger versions are brighter and fruitier, while older ones possess more depth of funk and may lose more of the base style character. Wood-aged versions should be entered in the Wild Specialty Beer style. The Brett character should always meld with the style; these beers should never be a ‘Brett bomb'. Note that Brett does not produce lactic acid.", - "overall_impression": "Most often drier and fruitier than the base style suggests. Funky notes range from low to high, depending on the age of the beer and strain(s) of Brett used. Funkiness is generally restrained in younger 100% Brett examples, but tends to increase with age. May possess a light acidity, although this does not come from Brett.", - "history": "Modern American craft beer interpretations of Belgian wild ales, or experimentations inspired by Belgian wild ales or historical English beers with Brett. 100% Brett beers gained popularity after the year 2000; Port Brewing Mo Betta Bretta was one of the first celebrated examples.", - "notes": "Most often drier and fruitier than the base style suggests. Funky notes range from low to high, depending on the age of the beer and strain(s) of Brett used. Funkiness is generally restrained in younger 100% Brett examples, but tends to increase with age. May possess a light acidity, although this does not come from Brett. Modern American craft beer interpretations of Belgian wild ales, or experimentations inspired by Belgian wild ales or historical English beers with Brett. 100% Brett beers gained popularity after the year 2000; Port Brewing Mo Betta Bretta was one of the first celebrated examples.", - "ingredients": "Virtually any style of beer, fermented in any manner, then finished with one or more strains of Brett. Alternatively, a beer made with Brett as the sole fermentation strain.", - "comparison": "Compared to the same beer style without Brett, a Brett Beer will be drier, more highly attenuated, fruitier, lighter in body, and slightly funkier as it ages. Less sourness and depth than Belgian ‘wild' ales.", - "examples": "Boulevard Saison Brett, Hill Farmstead Arthur, Logsdon Seizoen Bretta, Russian River Sanctification, The Bruery Saison Rue, Victory Helios", - "tags": "wild-fermentation, north-america, craft-style, specialty-beer", - "entry_instructions": "The entrant must specify either a base beer style (Classic Style, or a generic style family) or provide a description of the ingredients/specs/desired character. The entrant must specify if a 100% Brett fermentation was conducted. The entrant may specify the strain(s) of Brettanomyces used." - }, - { - "name": "Mixed-Fermentation Sour Beer", - "category": "American Wild Ale", - "category_number": 28, - "category_id": "28", - "style_id": "28B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Variable by base style. The contribution of non-Saccharomyces microbes should be noticeable to strong, and often contribute a sour and/or funky, wild note. The best examples will display a range of aromatics, rather than a single dominant character. The aroma should be inviting, not harsh or unpleasant.", - "appearance": "Variable by base style. Clarity can be variable; some haze is not a fault. Head retention can be poor due to high levels of acid or anti-foam properties of some lactobacillus strains.", - "flavor": "Variable by base style. Look for an agreeable balance between the base beer and the fermentation character. A range of results is possible from fairly high acidity/funk to a subtle, pleasant, harmonious beer. The best examples are pleasurable to drink with the esters and phenols complementing the malt and/or hops. The wild character can be prominent, but does not need to be dominating in a style with an otherwise strong malt/hop profile. Acidity should be firm yet enjoyable, but should not be biting or vinegary; prominent or objectionable/offensive acetic acid is a fault. Bitterness tends to be low, especially as sourness increases.", - "mouthfeel": "Variable by base style. Generally a light body, almost always lighter than what might be expected from the base style. Generally moderate to high carbonation, although often lower in higher alcohol examples.", - "comments": "These beers may be aged in wood, but any wood character should not be a primary or dominant flavor. Sour beers are typically not bitter as these flavors clash. The base beer style becomes less relevant because the various yeast and bacteria tend to dominate the profile. Inappropriate characteristics include diacetyl, solvent, ropy/viscous texture, and heavy oxidation.", - "profile": "Variable by base style. The contribution of non-Saccharomyces microbes should be noticeable to strong, and often contribute a sour and/or funky, wild note. The best examples will display a range of aromatics, rather than a single dominant character. The aroma should be inviting, not harsh or unpleasant. Variable by base style. Clarity can be variable; some haze is not a fault. Head retention can be poor due to high levels of acid or anti-foam properties of some lactobacillus strains.Variable by base style. Look for an agreeable balance between the base beer and the fermentation character. A range of results is possible from fairly high acidity/funk to a subtle, pleasant, harmonious beer. The best examples are pleasurable to drink with the esters and phenols complementing the malt and/or hops. The wild character can be prominent, but does not need to be dominating in a style with an otherwise strong malt/hop profile. Acidity should be firm yet enjoyable, but should not be biting or vinegary; prominent or objectionable/offensive acetic acid is a fault. Bitterness tends to be low, especially as sourness increases. Variable by base style. Generally a light body, almost always lighter than what might be expected from the base style. Generally moderate to high carbonation, although often lower in higher alcohol examples. These beers may be aged in wood, but any wood character should not be a primary or dominant flavor. Sour beers are typically not bitter as these flavors clash. The base beer style becomes less relevant because the various yeast and bacteria tend to dominate the profile. Inappropriate characteristics include diacetyl, solvent, ropy/viscous texture, and heavy oxidation.", - "overall_impression": "A sour and/or funky version of a base style of beer.", - "history": "Modern American craft beer interpretations of Belgian sour ales, or experimentations inspired by Belgian sour ales.", - "notes": "A sour and/or funky version of a base style of beer. Modern American craft beer interpretations of Belgian sour ales, or experimentations inspired by Belgian sour ales.", - "ingredients": "Virtually any style of beer. Usually fermented by Lactobacillus and/or Pediococcus, often in conjunction with Saccharomyces and/or Brettanomyces. Can also be a blend of styles. Wood or barrel aging is very common, but not required.", - "comparison": "A sour and/or funky version of a base style.", - "examples": "Boulevard Love Child, Cascade Vlad the Imp Aler, Jester King Le Petit Prince, Jolly Pumpkin Calabaza Blanca, Russian River Temptation, The Bruery Rueuze, The Bruery Tart of Darkness", - "tags": "wild-fermentation, north-america, craft-style, specialty-beer, sour", - "entry_instructions": "The entrant must specify a description of the beer, identifying the yeast/bacteria used and either a base style or the ingredients/specs/target character of the beer." - }, - { - "name": "Wild Specialty Beer", - "category": "American Wild Ale", - "category_number": 28, - "category_id": "28", - "style_id": "28C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Variable by base style. Should show the fruit, sour and/or funk of a wild fermentation, as well as the characteristics of the special ingredients used. The best examples will blend the aromatics from the fermentation with the special ingredients, creating an aroma that may be difficult to attribute precisely.", - "appearance": "Variable by base style, generally showing a color, tint, or hue from any fruit (if used) in both the beer and the head. Clarity can be variable; some haze is not a fault. Head retention is often poor.", - "flavor": "Variable by base style. Should show the fruit, sour and/or funk of a wild fermentation, as well as the characteristics of the special ingredients used. Any fruit sweetness is generally gone, so only the esters typically remain from the fruit. The sour character from the fruit and wild fermentation could be prominent, but should not be overwhelming. The acidity and tannin from any fruit can both enhance the dryness of the beer, so care must be taken with the balance. The acidity should enhance the perception of the fruit flavor, not detract from it. Wood notes, if present, add flavor but should be balanced.", - "mouthfeel": "Variable by base style. Generally a light body, lighter than what might be expected from the base style. Generally moderate to high carbonation; carbonation should balance the base style if one is declared. The presence of tannin from some fruit or wood can provide a slight astringency, enhance the body, or make the beer seem drier than it is.", - "comments": "A wild beer featuring fruit, herbs, spices, or wood based on a style other than lambic. Could be another Classic Style (normally sour or not), or something more generic. These beers may be aged in wood, but any wood character should not be a primary or dominant flavor.", - "profile": "Variable by base style. Should show the fruit, sour and/or funk of a wild fermentation, as well as the characteristics of the special ingredients used. The best examples will blend the aromatics from the fermentation with the special ingredients, creating an aroma that may be difficult to attribute precisely. Variable by base style, generally showing a color, tint, or hue from any fruit (if used) in both the beer and the head. Clarity can be variable; some haze is not a fault. Head retention is often poor.Variable by base style. Should show the fruit, sour and/or funk of a wild fermentation, as well as the characteristics of the special ingredients used. Any fruit sweetness is generally gone, so only the esters typically remain from the fruit. The sour character from the fruit and wild fermentation could be prominent, but should not be overwhelming. The acidity and tannin from any fruit can both enhance the dryness of the beer, so care must be taken with the balance. The acidity should enhance the perception of the fruit flavor, not detract from it. Wood notes, if present, add flavor but should be balanced. Variable by base style. Generally a light body, lighter than what might be expected from the base style. Generally moderate to high carbonation; carbonation should balance the base style if one is declared. The presence of tannin from some fruit or wood can provide a slight astringency, enhance the body, or make the beer seem drier than it is. A wild beer featuring fruit, herbs, spices, or wood based on a style other than lambic. Could be another Classic Style (normally sour or not), or something more generic. These beers may be aged in wood, but any wood character should not be a primary or dominant flavor.", - "overall_impression": "A sour and/or funky version of a fruit, herb, or spice beer, or a wild beer aged in wood. If wood-aged, the wood should not be the primary or dominant character.", - "history": "Modern American craft beer interpretations of Belgian wild ales, or experimentations inspired by Belgian wild ales.", - "notes": "A sour and/or funky version of a fruit, herb, or spice beer, or a wild beer aged in wood. If wood-aged, the wood should not be the primary or dominant character. Modern American craft beer interpretations of Belgian wild ales, or experimentations inspired by Belgian wild ales.", - "ingredients": "Virtually any style of beer. Any combination of Saccharomyces, Brettanomyces, Lactobacillus, Pediococcus, or other similar fermenters. Can also be a blend of styles. While cherries, raspberries, and peaches are most common, other fruits can be used as well. Vegetables with fruit-like characteristics (chile, rhubarb, pumpkin, etc.) may also be used. Wood or barrel aging is very common, but not required.", - "comparison": "Like a fruit, herb, spice, or wood beer, but sour and/or funky.", - "examples": "Cascade Bourbonic Plague, Jester King Atrial Rubicite, New Belgium Eric's Ale, New Glarus Belgian Red, Russian River Supplication, The Lost Abbey Cuvee de Tomme", - "tags": "wild-fermentation, north-america, craft-style, specialty-beer, sour, fruit", - "entry_instructions": "Entrant must specify the type of fruit, spice, herb, or wood used. Entrant must specify a description of the beer, identifying the yeast/bacteria used and either a base style or the ingredients/specs/target character of the beer. A general description of the special nature of the beer can cover all the required items." - }, - { - "name": "Fruit Beer", - "category": "Fruit Beer", - "category_number": 29, - "category_id": "29", - "style_id": "29A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "The distinctive aromatics associated with the declared fruit should be noticeable in the aroma; however, note that some fruit (e.g., raspberries, cherries) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) – allow for a range of fruit character and intensity from subtle to aggressive. The additional aromatics should blend well with whatever aromatics are appropriate for the declared base beer style.", - "appearance": "Appearance should be appropriate for the declared base beer and declared fruit. For lighter-colored beers with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. Fruit beers may have some haze or be clear, although haze is a generally undesirable. The head may take on some of the color of the fruit.", - "flavor": "As with aroma, the distinctive flavor character associated with the declared fruit should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying beer is vital, and the fruit character should not be so artificial and/or inappropriately overpowering as to suggest a ‘fruit juice drink.' Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters, should be appropriate to the base beer and be harmonious and balanced with the distinctive fruit flavors present. Remember that fruit generally add flavor not sweetness to fruit beers. The sugar found in fruit is usually fully fermented and contributes to lighter flavors and a drier finish than might be expected for the declared base style. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality.", - "mouthfeel": "Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the declared base beer style. Fruit generally adds fermentables that tend to thin out the beer; the resulting beer may seem lighter than expected for the declared base style. Smaller and darker fruit have a tendency to add a tannic depth that should overwhelm the base beer.", - "comments": "Overall balance is the key to presenting a well-made fruit beer. The fruit should complement the original style and not overwhelm it. The key attributes of the underlying style will be different with the addition of fruit; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination.", - "profile": "The distinctive aromatics associated with the declared fruit should be noticeable in the aroma; however, note that some fruit (e.g., raspberries, cherries) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) – allow for a range of fruit character and intensity from subtle to aggressive. The additional aromatics should blend well with whatever aromatics are appropriate for the declared base beer style. Appearance should be appropriate for the declared base beer and declared fruit. For lighter-colored beers with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. Fruit beers may have some haze or be clear, although haze is a generally undesirable. The head may take on some of the color of the fruit.As with aroma, the distinctive flavor character associated with the declared fruit should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying beer is vital, and the fruit character should not be so artificial and/or inappropriately overpowering as to suggest a ‘fruit juice drink.' Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters, should be appropriate to the base beer and be harmonious and balanced with the distinctive fruit flavors present. Remember that fruit generally add flavor not sweetness to fruit beers. The sugar found in fruit is usually fully fermented and contributes to lighter flavors and a drier finish than might be expected for the declared base style. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality. Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the declared base beer style. Fruit generally adds fermentables that tend to thin out the beer; the resulting beer may seem lighter than expected for the declared base style. Smaller and darker fruit have a tendency to add a tannic depth that should overwhelm the base beer. Overall balance is the key to presenting a well-made fruit beer. The fruit should complement the original style and not overwhelm it. The key attributes of the underlying style will be different with the addition of fruit; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination.", - "overall_impression": "A harmonious marriage of fruit and beer, but still recognizable as a beer. The fruit character should be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "notes": "A harmonious marriage of fruit and beer, but still recognizable as a beer. The fruit character should be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "examples": "Bell's Cherry Stout, Dogfish Head Aprihop, Ebulum Elderberry Black Ale, Founders Rübæus", - "tags": "specialty-beer, fruit", - "entry_instructions": "The entrant must specify a base style, but the declared style does not have to be a Classic Style. The entrant must specify the type(s) of fruit used. Soured fruit beers that aren't lambics should be entered in the American Wild Ale category." - }, - { - "name": "Fruit and Spice Beer", - "category": "Fruit Beer", - "category_number": 29, - "category_id": "29", - "style_id": "29B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "The distinctive aromatics associated with the declared fruit and spices should be noticeable in the aroma; however, note that some fruit (e.g., raspberries, cherries) and some spices (e.g., cinnamon, ginger) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) – allow for a range of fruit and spice character and intensity from subtle to aggressive. The additional aromatics should blend well with whatever aromatics are appropriate for the declared base beer style. The hop aroma may be absent or balanced, depending on the declared base style.", - "appearance": "Appearance should be appropriate for the declared base beer and declared fruit and spices. For lighter-colored beers with fruits or spices that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. May have some haze or be clear, although haze is a generally undesirable. The head may take on some of the color of the fruit or spice.", - "flavor": "As with aroma, the distinctive flavor character associated with the declared fruits and spices should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit and spices with the underlying beer is vital, and the fruit character should not be so artificial and/or inappropriately overpowering as to suggest a spiced fruit juice drink. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters, should be appropriate to the base beer and be harmonious and balanced with the distinctive fruit and spice flavors present. Remember that fruit generally add flavor not sweetness. The sugar found in fruit is usually fully fermented and contributes to lighter flavors and a drier finish than might be expected for the declared base style. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality. Some SHV(s) are inherently bitter and may result in a beer more bitter than the declared base style.", - "mouthfeel": "Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the declared base beer style. Fruit generally adds fermentables that tend to thin out the beer; the resulting beer may seem lighter than expected for the declared base style. Some SHV(s) may add additional body, although fermentable additions may thin out the beer. Some SHV(s) may add a bit of astringency, although a \"raw\" spice character is undesirable.", - "comments": "Overall balance is the key to presenting a well-made fruit and spice beer. The fruit and spice should each complement the original style and not overwhelm it. The key attributes of the underlying style will be different with the addition of fruit and spice; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination. The brewer should recognize that some combinations of base beer styles and fruits/spices work well together while others do not make for harmonious combinations. Whenever fruits, spices, herbs or vegetables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical) – in other words, the beer should read as a spiced fruit beer but without having to tell that specific fruits and spices are present (even if declared).", - "profile": "The distinctive aromatics associated with the declared fruit and spices should be noticeable in the aroma; however, note that some fruit (e.g., raspberries, cherries) and some spices (e.g., cinnamon, ginger) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) – allow for a range of fruit and spice character and intensity from subtle to aggressive. The additional aromatics should blend well with whatever aromatics are appropriate for the declared base beer style. The hop aroma may be absent or balanced, depending on the declared base style. Appearance should be appropriate for the declared base beer and declared fruit and spices. For lighter-colored beers with fruits or spices that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. May have some haze or be clear, although haze is a generally undesirable. The head may take on some of the color of the fruit or spice.As with aroma, the distinctive flavor character associated with the declared fruits and spices should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit and spices with the underlying beer is vital, and the fruit character should not be so artificial and/or inappropriately overpowering as to suggest a spiced fruit juice drink. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters, should be appropriate to the base beer and be harmonious and balanced with the distinctive fruit and spice flavors present. Remember that fruit generally add flavor not sweetness. The sugar found in fruit is usually fully fermented and contributes to lighter flavors and a drier finish than might be expected for the declared base style. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality. Some SHV(s) are inherently bitter and may result in a beer more bitter than the declared base style. Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the declared base beer style. Fruit generally adds fermentables that tend to thin out the beer; the resulting beer may seem lighter than expected for the declared base style. Some SHV(s) may add additional body, although fermentable additions may thin out the beer. Some SHV(s) may add a bit of astringency, although a \"raw\" spice character is undesirable. Overall balance is the key to presenting a well-made fruit and spice beer. The fruit and spice should each complement the original style and not overwhelm it. The key attributes of the underlying style will be different with the addition of fruit and spice; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination. The brewer should recognize that some combinations of base beer styles and fruits/spices work well together while others do not make for harmonious combinations. Whenever fruits, spices, herbs or vegetables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical) – in other words, the beer should read as a spiced fruit beer but without having to tell that specific fruits and spices are present (even if declared).", - "overall_impression": "A harmonious marriage of fruit, spice, and beer, but still recognizable as a beer. The fruit and spice character should each be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "notes": "A harmonious marriage of fruit, spice, and beer, but still recognizable as a beer. The fruit and spice character should each be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "tags": "specialty-beer, fruit, spice", - "entry_instructions": "The entrant must specify a base style; the declared style does not have to be a Classic Style. The entrant must specify the type of fruit and spices, herbs, or vegetables (SHV) used; individual SHV ingredients do not need to be specified if a well-known blend of spices is used (e.g., apple pie spice)." - }, - { - "name": "Specialty Fruit Beer", - "category": "Fruit Beer", - "category_number": 29, - "category_id": "29", - "style_id": "29C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Same as fruit beer, except that some additional fermentables (honey, molasses, etc.) may add an aroma component. Whatever additional aroma component is present should be in balance with the fruit and the beer components, and be a pleasant combination.", - "appearance": "Same as fruit beer.", - "flavor": "Same as fruit beer, except that some additional fermentables (honey, molasses, etc.) may add a flavor component. Whatever additional flavor component is present should be in balance with the fruit and the beer components, and be a pleasant combination. Added sugars should not have a raw, unfermented flavor. Some added sugars will have unfermentable elements that may provide a fuller finish; fully fermentable sugars may thin out the finish.", - "mouthfeel": "Same as fruit beer, although depending on the type of sugar added, could increase or decrease the body.", - "comments": "If the additional fermentables or processes do not add a distinguishable character to the beer, enter it as a normal 29A Fruit Beer and omit a description of the extra ingredients or processes.", - "profile": "Same as fruit beer, except that some additional fermentables (honey, molasses, etc.) may add an aroma component. Whatever additional aroma component is present should be in balance with the fruit and the beer components, and be a pleasant combination. Same as fruit beer.Same as fruit beer, except that some additional fermentables (honey, molasses, etc.) may add a flavor component. Whatever additional flavor component is present should be in balance with the fruit and the beer components, and be a pleasant combination. Added sugars should not have a raw, unfermented flavor. Some added sugars will have unfermentable elements that may provide a fuller finish; fully fermentable sugars may thin out the finish. Same as fruit beer, although depending on the type of sugar added, could increase or decrease the body. If the additional fermentables or processes do not add a distinguishable character to the beer, enter it as a normal 29A Fruit Beer and omit a description of the extra ingredients or processes.", - "overall_impression": "A harmonious marriage of fruit, sugar, and beer, but still recognizable as a beer. The fruit and sugar character should both be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "notes": "A harmonious marriage of fruit, sugar, and beer, but still recognizable as a beer. The fruit and sugar character should both be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "examples": "New Planet Raspberry Ale", - "tags": "specialty-beer, fruit", - "entry_instructions": "The entrant must specify a base style; the declared style does not have to be a Classic Style. The entrant must specify the type of fruit used. The entrant must specify the type of additional fermentable sugar or special process employed." - }, - { - "name": "Spice, Herb, or Vegetable Beer", - "category": "Spiced Beer", - "category_number": 30, - "category_id": "30", - "style_id": "30A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "The character of the particular spices, herbs and/or vegetables (SHV) should be noticeable in the aroma; however, note that some SHV (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., some vegetables) – allow for a range of SHV character and intensity from subtle to aggressive. The individual character of each SHV(s) may not always be identifiable when used in combination. Hop aroma may be absent or balanced with SHV, depending on the style. The SHV(s) should add an extra complexity to the beer, but not be so prominent as to unbalance the resulting presentation.", - "appearance": "Appearance should be appropriate to the declared base beer and declared special ingredients. For lighter-colored beers with spices, herbs or vegetables that exhibit distinctive colors, the colors may be noticeable in the beer and possibly the head. May have some haze or be clear. Head formation may be adversely affected by some ingredients, such as chocolate.", - "flavor": "As with aroma, the distinctive flavor character associated with the particular SHV(s) should be noticeable, and may range in intensity from subtle to aggressive. The individual character of each SHV(s) may not always be identifiable when used in combination. The balance of SHV with the underlying beer is vital, and the SHV character should not be so artificial and/or overpowering as to overwhelm the beer. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters, should be appropriate to the base beer and be harmonious and balanced with the distinctive SHV flavors present. Some SHV(s) are inherently bitter and may result in a beer more bitter than the declared base style.", - "mouthfeel": "Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the base beer style being presented. Some SHV(s) may add additional body, although fermentable additions may thin out the beer. Some SHV(s) may add a bit of astringency, although a \"raw\" spice character is undesirable.", - "comments": "Overall balance is the key to presenting a well-made spice, herb or vegetable (SHV) beer. The SHV(s) should complement the original style and not overwhelm it. The key attributes of the declared base style will be different with the addition of spices, herbs and/or vegetables; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination. The individual character of each SHV may not always be individually identifiable when used in combination.", - "profile": "The character of the particular spices, herbs and/or vegetables (SHV) should be noticeable in the aroma; however, note that some SHV (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., some vegetables) – allow for a range of SHV character and intensity from subtle to aggressive. The individual character of each SHV(s) may not always be identifiable when used in combination. Hop aroma may be absent or balanced with SHV, depending on the style. The SHV(s) should add an extra complexity to the beer, but not be so prominent as to unbalance the resulting presentation. Appearance should be appropriate to the declared base beer and declared special ingredients. For lighter-colored beers with spices, herbs or vegetables that exhibit distinctive colors, the colors may be noticeable in the beer and possibly the head. May have some haze or be clear. Head formation may be adversely affected by some ingredients, such as chocolate.As with aroma, the distinctive flavor character associated with the particular SHV(s) should be noticeable, and may range in intensity from subtle to aggressive. The individual character of each SHV(s) may not always be identifiable when used in combination. The balance of SHV with the underlying beer is vital, and the SHV character should not be so artificial and/or overpowering as to overwhelm the beer. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters, should be appropriate to the base beer and be harmonious and balanced with the distinctive SHV flavors present. Some SHV(s) are inherently bitter and may result in a beer more bitter than the declared base style. Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the base beer style being presented. Some SHV(s) may add additional body, although fermentable additions may thin out the beer. Some SHV(s) may add a bit of astringency, although a \"raw\" spice character is undesirable. Overall balance is the key to presenting a well-made spice, herb or vegetable (SHV) beer. The SHV(s) should complement the original style and not overwhelm it. The key attributes of the declared base style will be different with the addition of spices, herbs and/or vegetables; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination. The individual character of each SHV may not always be individually identifiable when used in combination.", - "overall_impression": "A harmonious marriage of SHV and beer, but still recognizable as a beer. The SHV character should be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "notes": "A harmonious marriage of SHV and beer, but still recognizable as a beer. The SHV character should be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "examples": "Alesmith Speedway Stout, Bell's Java Stout, Elysian Avatar Jasmine IPA, Founders Breakfast Stout, Rogue Chipotle Ale, Traquair Jacobite Ale, Young's Double Chocolate Stout,", - "tags": "specialty-beer, spice", - "entry_instructions": "The entrant must specify a base style, but the declared style does not have to be a Classic Style. The entrant must specify the type of spices, herbs, or vegetables used, but individual ingredients do not need to be specified if a well-known spice blend is used (e.g., apple pie spice, curry powder, chili powder)." - }, - { - "name": "Autumn Seasonal Beer", - "category": "Spiced Beer", - "category_number": 30, - "category_id": "30", - "style_id": "30B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "A wide range of aromatics is possible, although many examples are reminiscent of pumpkin pie, candied yams, or similar harvest or (US) Thanksgiving themed dishes. Any combination of aromatics that suggests the fall season is welcome. The base beer style often has a malty profile that supports the balanced presentation of the aromatics from spices and possibly other special ingredients. Additional fermentables (e.g., brown sugar, honey, molasses, maple syrup, etc.) may lend their own unique aromatics. Hop aromatics are often absent, subdued, or slightly spicy. Alcohol aromatics may be found in some examples, but this character should be restrained. The overall aroma should be balanced and harmonious, and is often fairly complex and inviting.", - "appearance": "Generally medium amber to coppery-brown (lighter versions are more common). Usually clear, although darker versions may be virtually opaque. Some chill haze is acceptable. Generally has a well-formed head that is often off-white to tan. Some versions with squashes will take on an unusual hue for beer, with orange-like hints.", - "flavor": "Many interpretations are possible; allow for brewer creativity as long as the resulting product is balanced and provides some spice (and optionally, sugar and vegetable) presentation. Spices associated with the fall season are typical (as mentioned in the Aroma section). The spices and optional fermentables should be supportive and blend well with the base beer style. Rich, malty and/or sweet malt-based flavors are common, and may include caramel, toasty, biscuity, or nutty flavors (toasted bread crust or cooked pie crust flavors are welcome). May include distinctive flavors from specific fermentables (molasses, honey, brown sugar, etc.), although these elements are not required. Flavor derived from squash-based vegetables are often elusive. The wide range of special ingredients should be supportive and balanced, not so prominent as to overshadow the base beer. Bitterness and hop flavor are generally restrained so as to not interfere with the spices and special ingredients. Generally finishes rather full and satisfying, and often has some alcohol flavor. Roasted malt characteristics are typically absent.", - "mouthfeel": "A wide range of interpretations is possible. Body is generally medium to full, and a certain malty and/or vegetable-based chewiness is often present. Moderately low to moderately high carbonation is typical. Many examples will show some well-aged, warming alcohol content, but without being overly hot. The beers do not have to be overly strong to show some warming effects.", - "comments": "Overall balance is the key to presenting a well-made Autumn Seasonal beer. The special ingredients should complement the base beer and not overwhelm it. The brewer should recognize that some combinations of base beer styles and special ingredients work well together while others do not make for harmonious combinations. If the base beer is a classic style, the original style should come through in aroma and flavor. Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical) – in other words, the beer should read as a spiced beer but without having to tell that specific spices are present (even if declared).", - "profile": "A wide range of aromatics is possible, although many examples are reminiscent of pumpkin pie, candied yams, or similar harvest or (US) Thanksgiving themed dishes. Any combination of aromatics that suggests the fall season is welcome. The base beer style often has a malty profile that supports the balanced presentation of the aromatics from spices and possibly other special ingredients. Additional fermentables (e.g., brown sugar, honey, molasses, maple syrup, etc.) may lend their own unique aromatics. Hop aromatics are often absent, subdued, or slightly spicy. Alcohol aromatics may be found in some examples, but this character should be restrained. The overall aroma should be balanced and harmonious, and is often fairly complex and inviting. Generally medium amber to coppery-brown (lighter versions are more common). Usually clear, although darker versions may be virtually opaque. Some chill haze is acceptable. Generally has a well-formed head that is often off-white to tan. Some versions with squashes will take on an unusual hue for beer, with orange-like hints.Many interpretations are possible; allow for brewer creativity as long as the resulting product is balanced and provides some spice (and optionally, sugar and vegetable) presentation. Spices associated with the fall season are typical (as mentioned in the Aroma section). The spices and optional fermentables should be supportive and blend well with the base beer style. Rich, malty and/or sweet malt-based flavors are common, and may include caramel, toasty, biscuity, or nutty flavors (toasted bread crust or cooked pie crust flavors are welcome). May include distinctive flavors from specific fermentables (molasses, honey, brown sugar, etc.), although these elements are not required. Flavor derived from squash-based vegetables are often elusive. The wide range of special ingredients should be supportive and balanced, not so prominent as to overshadow the base beer. Bitterness and hop flavor are generally restrained so as to not interfere with the spices and special ingredients. Generally finishes rather full and satisfying, and often has some alcohol flavor. Roasted malt characteristics are typically absent. A wide range of interpretations is possible. Body is generally medium to full, and a certain malty and/or vegetable-based chewiness is often present. Moderately low to moderately high carbonation is typical. Many examples will show some well-aged, warming alcohol content, but without being overly hot. The beers do not have to be overly strong to show some warming effects. Overall balance is the key to presenting a well-made Autumn Seasonal beer. The special ingredients should complement the base beer and not overwhelm it. The brewer should recognize that some combinations of base beer styles and special ingredients work well together while others do not make for harmonious combinations. If the base beer is a classic style, the original style should come through in aroma and flavor. Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical) – in other words, the beer should read as a spiced beer but without having to tell that specific spices are present (even if declared).", - "overall_impression": "An amber to copper, spiced beer that often has a moderately rich body and slightly warming finish suggesting a good accompaniment for the cool fall season, and often evocative of Thanksgiving traditions.", - "notes": "An amber to copper, spiced beer that often has a moderately rich body and slightly warming finish suggesting a good accompaniment for the cool fall season, and often evocative of Thanksgiving traditions.", - "ingredients": "Spices are required, and often include those evocative of the fall or Thanksgiving season (e.g., allspice, nutmeg, cinnamon, cloves, ginger) but any combination is possible and creativity is encouraged. Flavorful adjuncts are often used (e.g., molasses, invert sugar, brown sugar, honey, maple syrup, etc.). Squash-type or gourd-type vegetables (most frequently pumpkin) are often used.", - "examples": "Dogfish Head Punkin Ale, Schlafly Pumpkin Ale, Southampton Pumpkin Ale", - "tags": "specialty-beer, spice", - "entry_instructions": "The entrant must specify a base style, but the declared style does not have to be a Classic Style. The entrant must specify the type of spices, herbs, or vegetables used; individual ingredients do not need to be specified if a well-known blend of spices is used (e.g., pumpkin pie spice). The beer must contain spices, and may contain vegetables and/or sugars." - }, - { - "name": "Winter Seasonal Beer", - "category": "Spiced Beer", - "category_number": 30, - "category_id": "30", - "style_id": "30C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "A wide range of aromatics is possible, although many examples are reminiscent of Christmas cookies, gingerbread, English-type Christmas pudding, evergreen trees, or mulling spices. Any combination of aromatics that suggests the holiday season is welcome. The base beer style often has a malty profile that supports the balanced presentation of the aromatics from spices and possibly other special ingredients. Additional fermentables (e.g., honey, molasses, maple syrup, etc.) may lend their own unique aromatics. Hop aromatics are often absent, subdued, or slightly spicy. Some fruit character (often of dried citrus peel, or dried fruit such as raisins or plums) is optional but acceptable. Alcohol aromatics may be found in some examples, but this character should be restrained. The overall aroma should be balanced and harmonious, and is often fairly complex and inviting.", - "appearance": "Generally medium amber to very dark brown (darker versions are more common). Usually clear, although darker versions may be virtually opaque. Some chill haze is acceptable. Generally has a well-formed head that is often off-white to tan.", - "flavor": "Many interpretations are possible; allow for brewer creativity as long as the resulting product is balanced and provides some spice presentation. Spices associated with the holiday season are typical (as mentioned in the Aroma section). The spices and optional fermentables should be supportive and blend well with the base beer style. Rich, malty and/or sweet malt-based flavors are common, and may include caramel, toast, nutty, or chocolate flavors. May include some dried fruit or dried fruit peel flavors such as raisin, plum, fig, orange peel or lemon peel. May include distinctive flavors from specific fermentables (molasses, honey, brown sugar, etc.), although these elements are not required. A light evergreen tree character is optional but found in some examples. The wide range of special ingredients should be supportive and balanced, not so prominent as to overshadow the base beer. Bitterness and hop flavor are generally restrained so as to not interfere with the spices and special ingredients. Generally finishes rather full and satisfying, and often has some alcohol flavor. Roasted malt characteristics are rare, and not usually stronger than chocolate.", - "mouthfeel": "A wide range of interpretations is possible. Body is generally medium to full, and a certain malty chewiness is often present. Moderately low to moderately high carbonation is typical. Many examples will show some well-aged, warming alcohol content, but without being overly hot. The beers do not have to be overly strong to show some warming effects.", - "comments": "Overall balance is the key to presenting a well-made Winter Seasonal Beer. The special ingredients should complement the base beer and not overwhelm it. The brewer should recognize that some combinations of base beer styles and special ingredients work well together while others do not make for harmonious combinations. If the base beer is a classic style, the original style should come through in aroma and flavor. Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical). Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical) – in other words, the beer should read as a spiced beer but without having to tell that specific spices are present (even if declared).", - "profile": "A wide range of aromatics is possible, although many examples are reminiscent of Christmas cookies, gingerbread, English-type Christmas pudding, evergreen trees, or mulling spices. Any combination of aromatics that suggests the holiday season is welcome. The base beer style often has a malty profile that supports the balanced presentation of the aromatics from spices and possibly other special ingredients. Additional fermentables (e.g., honey, molasses, maple syrup, etc.) may lend their own unique aromatics. Hop aromatics are often absent, subdued, or slightly spicy. Some fruit character (often of dried citrus peel, or dried fruit such as raisins or plums) is optional but acceptable. Alcohol aromatics may be found in some examples, but this character should be restrained. The overall aroma should be balanced and harmonious, and is often fairly complex and inviting. Generally medium amber to very dark brown (darker versions are more common). Usually clear, although darker versions may be virtually opaque. Some chill haze is acceptable. Generally has a well-formed head that is often off-white to tan.Many interpretations are possible; allow for brewer creativity as long as the resulting product is balanced and provides some spice presentation. Spices associated with the holiday season are typical (as mentioned in the Aroma section). The spices and optional fermentables should be supportive and blend well with the base beer style. Rich, malty and/or sweet malt-based flavors are common, and may include caramel, toast, nutty, or chocolate flavors. May include some dried fruit or dried fruit peel flavors such as raisin, plum, fig, orange peel or lemon peel. May include distinctive flavors from specific fermentables (molasses, honey, brown sugar, etc.), although these elements are not required. A light evergreen tree character is optional but found in some examples. The wide range of special ingredients should be supportive and balanced, not so prominent as to overshadow the base beer. Bitterness and hop flavor are generally restrained so as to not interfere with the spices and special ingredients. Generally finishes rather full and satisfying, and often has some alcohol flavor. Roasted malt characteristics are rare, and not usually stronger than chocolate. A wide range of interpretations is possible. Body is generally medium to full, and a certain malty chewiness is often present. Moderately low to moderately high carbonation is typical. Many examples will show some well-aged, warming alcohol content, but without being overly hot. The beers do not have to be overly strong to show some warming effects. Overall balance is the key to presenting a well-made Winter Seasonal Beer. The special ingredients should complement the base beer and not overwhelm it. The brewer should recognize that some combinations of base beer styles and special ingredients work well together while others do not make for harmonious combinations. If the base beer is a classic style, the original style should come through in aroma and flavor. Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical). Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical) – in other words, the beer should read as a spiced beer but without having to tell that specific spices are present (even if declared).", - "overall_impression": "A stronger, darker, spiced beer that often has a rich body and warming finish suggesting a good accompaniment for the cold winter season.", - "history": "Throughout history, beer of a somewhat higher alcohol content and richness has been enjoyed during the winter holidays, when old friends get together to enjoy the season. Many breweries produce unique seasonal offerings that may be darker, stronger, spiced, or otherwise more characterful than their normal beers. Spiced versions are an American or Belgian tradition, since English or German breweries traditionally do not use spices in their beer.", - "notes": "A stronger, darker, spiced beer that often has a rich body and warming finish suggesting a good accompaniment for the cold winter season. Throughout history, beer of a somewhat higher alcohol content and richness has been enjoyed during the winter holidays, when old friends get together to enjoy the season. Many breweries produce unique seasonal offerings that may be darker, stronger, spiced, or otherwise more characterful than their normal beers. Spiced versions are an American or Belgian tradition, since English or German breweries traditionally do not use spices in their beer.", - "ingredients": "Generally ales, although some dark strong lagers exist. Spices are required, and often include those evocative of the Christmas season (e.g., allspice, nutmeg, cinnamon, cloves, ginger) but any combination is possible and creativity is encouraged. Fruit peel (e.g., oranges, lemon) may be used, as may subtle additions of other fruits. Flavorful adjuncts are often used (e.g., molasses, treacle, invert sugar, brown sugar, honey, maple syrup, etc.).", - "examples": "Anchor Our Special Ale, Goose Island Christmas Ale, Great Lakes Christmas Ale, Harpoon Winter Warmer, Lakefront Holiday Spice Lager Beer, Weyerbacher Winter Ale", - "tags": "specialty-beer, spice", - "entry_instructions": "The entrant must specify a base style, but the declared style does not have to be a Classic Style. The entrant must specify the type of spices, sugars, fruits, or additional fermentables used; individual ingredients do not need to be specified if a well-known blend of spices is used (e.g., mulling spice)." - }, - { - "name": "Alternative Grain Beer", - "category": "Alternative Fermentables Beer", - "category_number": 31, - "category_id": "31", - "style_id": "31A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Same as base beer style. The added grain will lend a particular character, although with some grains the beer will simply seem a bit more grainy or nutty. The alternative grain should provide the major aroma profile for this beer.", - "appearance": "Same as base beer style, although some additional haze may be noticeable.", - "flavor": "Same as base beer style. The additional grain should be noticeable in flavor, although it may not be necessarily identifiable. However, the alternative grain should provide the major flavor profile for this beer. Different grains have different characters; the additional grain should enhance the flavor of the base beer. Many will add an additional grainy, bready, or nutty flavor.", - "mouthfeel": "Same as the base beer, although many additional grains will tend to increase the body (oats, rye) and increase the viscosity, while some may decrease the body (GF grains) resulting in thinness.", - "comments": "If the alternative grain does not provide a noticeable distinguishable character to the beer, enter it as the base style. This style should not be used for styles where the alternative grain is fundamental to the style definition (e.g., Rye IPA, Oatmeal Stout, Rice- or Corn-based International Lager). Note that sake is not beer, and is not intended for this category.", - "profile": "Same as base beer style. The added grain will lend a particular character, although with some grains the beer will simply seem a bit more grainy or nutty. The alternative grain should provide the major aroma profile for this beer. Same as base beer style, although some additional haze may be noticeable.Same as base beer style. The additional grain should be noticeable in flavor, although it may not be necessarily identifiable. However, the alternative grain should provide the major flavor profile for this beer. Different grains have different characters; the additional grain should enhance the flavor of the base beer. Many will add an additional grainy, bready, or nutty flavor. Same as the base beer, although many additional grains will tend to increase the body (oats, rye) and increase the viscosity, while some may decrease the body (GF grains) resulting in thinness. If the alternative grain does not provide a noticeable distinguishable character to the beer, enter it as the base style. This style should not be used for styles where the alternative grain is fundamental to the style definition (e.g., Rye IPA, Oatmeal Stout, Rice- or Corn-based International Lager). Note that sake is not beer, and is not intended for this category.", - "overall_impression": "A base beer enhanced by or featuring the character of additional grain or grains. The specific character depends greatly on the character of the added grains.", - "notes": "A base beer enhanced by or featuring the character of additional grain or grains. The specific character depends greatly on the character of the added grains.", - "examples": "Green's Indian Pale Ale, Lakefront New Grist, New Planet Pale Ale", - "tags": "specialty-beer", - "entry_instructions": "The entrant must specify a base style, but the declared style does not have to be a Classic Style. The entrant must specify the type of alternative grain used." - }, - { - "name": "Alternative Sugar Beer", - "category": "Alternative Fermentables Beer", - "category_number": 31, - "category_id": "31", - "style_id": "31B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Same as the base beer, except that some additional fermentables (honey, molasses, etc.) may add an aroma component. Whatever additional aroma component is present should be in balance with the beer components, and be a pleasant combination.", - "appearance": "Same as the base beer, although some sugars will bring additional colors.", - "flavor": "Same as the base beer, except that some additional fermentables (honey, molasses, etc.) may add a flavor component. Whatever additional flavor component is present should be in balance with the beer components, and be a pleasant combination. Added sugars should not have a raw, unfermented flavor. Some added sugars will have unfermentable elements that may provide a fuller finish; fully fermentable sugars may thin out the finish.", - "mouthfeel": "Same as the base beer, although depending on the type of sugar added, could increase or decrease the body.", - "comments": "If the additional fermentables do not add a distinguishable character to the beer, enter it in the base style category. A honey-based beer should not have so much honey that it reads more like a mead with beer (i.e., a braggot) than a honey beer. This style should not be used for styles where the alternative sugar is fundamental to the style definition, or where a small amount of neutral-flavored sugar is used simply to increase gravity, increase attenuation, or lighten flavor or body; those beers should be entered as the normal base style.", - "profile": "Same as the base beer, except that some additional fermentables (honey, molasses, etc.) may add an aroma component. Whatever additional aroma component is present should be in balance with the beer components, and be a pleasant combination. Same as the base beer, although some sugars will bring additional colors.Same as the base beer, except that some additional fermentables (honey, molasses, etc.) may add a flavor component. Whatever additional flavor component is present should be in balance with the beer components, and be a pleasant combination. Added sugars should not have a raw, unfermented flavor. Some added sugars will have unfermentable elements that may provide a fuller finish; fully fermentable sugars may thin out the finish. Same as the base beer, although depending on the type of sugar added, could increase or decrease the body. If the additional fermentables do not add a distinguishable character to the beer, enter it in the base style category. A honey-based beer should not have so much honey that it reads more like a mead with beer (i.e., a braggot) than a honey beer. This style should not be used for styles where the alternative sugar is fundamental to the style definition, or where a small amount of neutral-flavored sugar is used simply to increase gravity, increase attenuation, or lighten flavor or body; those beers should be entered as the normal base style.", - "overall_impression": "A harmonious marriage of sugar and beer, but still recognizable as a beer. The sugar character should both be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "notes": "A harmonious marriage of sugar and beer, but still recognizable as a beer. The sugar character should both be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "examples": "Bell's Hopslam, Fullers Honey Dew, Lagunitas Brown Shugga'", - "tags": "specialty-beer", - "entry_instructions": "The entrant must specify a base style, but the declared style does not have to be a Classic Style. The entrant must specify the type of sugar used." - }, - { - "name": "Classic Style Smoked Beer", - "category": "Smoked Beer", - "category_number": 32, - "category_id": "32", - "style_id": "32A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "The aroma should be a pleasant balance between the expected aroma of the base beer and the smokiness imparted by the use of smoked malts. The intensity and character of the smoke and base beer style can vary, with either being prominent in the balance. Smokiness may vary from low to assertive; however, balance in the overall presentation is the key to well-made examples. The quality and secondary characteristics of the smoke are reflective of the source of the smoke (e.g., alder, oak, beechwood). Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate.", - "appearance": "Variable. The appearance should reflect the base beer style, although the color of the beer is often a bit darker than the plain base style.", - "flavor": "As with aroma, there should be a balance between smokiness and the expected flavor characteristics of the base beer style. Smokiness may vary from low to assertive. Smoky flavors may range from woody to somewhat bacon-like depending on the type of malts used. The balance of underlying beer characteristics and smoke can vary, although the resulting blend should be somewhat balanced and enjoyable. Smoke can add some dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury, medicinal, or phenolic smoky characteristics are generally inappropriate (although some of these characteristics may be present in some base styles; however, the smoked malt shouldn't contribute these flavors).", - "mouthfeel": "Varies with the base beer style. Significant astringent, phenolic smoke-derived harshness is inappropriate.", - "comments": "This style is for any beer that exhibits smoke as a principal flavor and aroma characteristic other than the Bamberg-style Rauchbier (i.e., beechwood-smoked Märzen), which has its own style. Any style of beer can be smoked; the goal is to reach a pleasant balance between the smoke character and the base beer style. Entries should be judged on how well that style is represented, and how well it is balanced with the smoke character. Entries with a specific type or types of smoke cited will be judged on how well that type of smoke is recognizable and marries with the base style. Judges should evaluate the beers mostly on the overall balance, and how well the smoke character enhances the base beer.", - "profile": "The aroma should be a pleasant balance between the expected aroma of the base beer and the smokiness imparted by the use of smoked malts. The intensity and character of the smoke and base beer style can vary, with either being prominent in the balance. Smokiness may vary from low to assertive; however, balance in the overall presentation is the key to well-made examples. The quality and secondary characteristics of the smoke are reflective of the source of the smoke (e.g., alder, oak, beechwood). Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate. Variable. The appearance should reflect the base beer style, although the color of the beer is often a bit darker than the plain base style.As with aroma, there should be a balance between smokiness and the expected flavor characteristics of the base beer style. Smokiness may vary from low to assertive. Smoky flavors may range from woody to somewhat bacon-like depending on the type of malts used. The balance of underlying beer characteristics and smoke can vary, although the resulting blend should be somewhat balanced and enjoyable. Smoke can add some dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury, medicinal, or phenolic smoky characteristics are generally inappropriate (although some of these characteristics may be present in some base styles; however, the smoked malt shouldn't contribute these flavors). Varies with the base beer style. Significant astringent, phenolic smoke-derived harshness is inappropriate. This style is for any beer that exhibits smoke as a principal flavor and aroma characteristic other than the Bamberg-style Rauchbier (i.e., beechwood-smoked Märzen), which has its own style. Any style of beer can be smoked; the goal is to reach a pleasant balance between the smoke character and the base beer style. Entries should be judged on how well that style is represented, and how well it is balanced with the smoke character. Entries with a specific type or types of smoke cited will be judged on how well that type of smoke is recognizable and marries with the base style. Judges should evaluate the beers mostly on the overall balance, and how well the smoke character enhances the base beer.", - "overall_impression": "A smoke-enhanced beer showing good balance between the smoke and beer character, while remaining pleasant to drink. Balance in the use of smoke, hops and malt character is exhibited by the better examples.", - "history": "The process of using smoked malts has been adapted by craft brewers to many styles. German brewers have traditionally used smoked malts in bock, doppelbock, weissbier, dunkel, schwarzbier, helles, Pils, and other specialty styles.", - "notes": "A smoke-enhanced beer showing good balance between the smoke and beer character, while remaining pleasant to drink. Balance in the use of smoke, hops and malt character is exhibited by the better examples. The process of using smoked malts has been adapted by craft brewers to many styles. German brewers have traditionally used smoked malts in bock, doppelbock, weissbier, dunkel, schwarzbier, helles, Pils, and other specialty styles.", - "ingredients": "Different materials used to smoke malt result in unique flavor and aroma characteristics. Beechwood, or other hardwood (oak, maple, mesquite, alder, pecan, apple, cherry, other fruitwoods) smoked malts may be used. The various woods may remind one of certain smoked products due to their food association (e.g., hickory with ribs, maple with bacon or sausage, and alder with salmon). Evergreen wood should never be used since it adds a medicinal, piney flavor to the malt. Noticeable peat-smoked malt is universally undesirable due to its sharp, piercing phenolics and dirt-like earthiness. The remaining ingredients vary with the base style. If smoked malts are combined with other unusual ingredients (fruits, vegetables, spices, honey, etc.) in noticeable quantities, the resulting beer should be entered in the Specialty Smoked Beer.", - "examples": "Alaskan Smoked Porter, Schlenkerla Weizen Rauchbier and Ur-Bock Rauchbier, Spezial Lagerbier, Weissbier and Bockbier, Stone Smoked Porter", - "tags": "specialty-beer, smoke", - "entry_instructions": "The entrant must specify a Classic Style base beer. The entrant must specify the type of wood or smoke if a varietal smoke character is noticeable." - }, - { - "name": "Specialty Smoked Beer", - "category": "Smoked Beer", - "category_number": 32, - "category_id": "32", - "style_id": "32B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "The aroma should be a pleasant balance between the expected aroma of the base beer, the smokiness imparted by the use of smoked malts, and any additional ingredients. The intensity and character of the smoke, base beer style, and additional ingredients can vary, with any being more prominent in the balance. Smokiness may vary from low to assertive; however, balance in the overall presentation is the key to well-made examples. The quality and secondary characteristics of the smoke are reflective of the source of the smoke (e.g., alder, oak, beechwood). Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate.", - "appearance": "Variable. The appearance should reflect the base beer style, although the color of the beer is often a bit darker than the plain base style. The use of certain fruits and spices may affect the color and hue of the beer as well.", - "flavor": "As with aroma, there should be a balance between smokiness, the expected flavor characteristics of the base beer style, and the additional ingredients. Smokiness may vary from low to assertive. Smoky flavors may range from woody to somewhat bacon-like depending on the type of malts used. The balance of underlying beer characteristics and smoke can vary, although the resulting blend should be somewhat balanced and enjoyable. Smoke can add some dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury, medicinal, or phenolic smoky characteristics are generally inappropriate (although some of these characteristics may be present in some base styles; however, the smoked malt shouldn't contribute these flavors).", - "mouthfeel": "Varies with the base beer style. Significant astringent, phenolic smoke-derived harshness is inappropriate.", - "comments": "Any style of beer can be smoked; the goal is to reach a pleasant balance between the smoke character and the base beer style. Entries should be judged on how well that style is represented, and how well it is balanced with the smoke character. Entries with a specific type or types of smoke cited will be judged on how well that type of smoke is recognizable and marries with the base style and added ingredients. Judges should evaluate the beers mostly on the overall balance, and how well the smoke character and added ingredients enhances the base beer.", - "profile": "The aroma should be a pleasant balance between the expected aroma of the base beer, the smokiness imparted by the use of smoked malts, and any additional ingredients. The intensity and character of the smoke, base beer style, and additional ingredients can vary, with any being more prominent in the balance. Smokiness may vary from low to assertive; however, balance in the overall presentation is the key to well-made examples. The quality and secondary characteristics of the smoke are reflective of the source of the smoke (e.g., alder, oak, beechwood). Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate. Variable. The appearance should reflect the base beer style, although the color of the beer is often a bit darker than the plain base style. The use of certain fruits and spices may affect the color and hue of the beer as well.As with aroma, there should be a balance between smokiness, the expected flavor characteristics of the base beer style, and the additional ingredients. Smokiness may vary from low to assertive. Smoky flavors may range from woody to somewhat bacon-like depending on the type of malts used. The balance of underlying beer characteristics and smoke can vary, although the resulting blend should be somewhat balanced and enjoyable. Smoke can add some dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury, medicinal, or phenolic smoky characteristics are generally inappropriate (although some of these characteristics may be present in some base styles; however, the smoked malt shouldn't contribute these flavors). Varies with the base beer style. Significant astringent, phenolic smoke-derived harshness is inappropriate. Any style of beer can be smoked; the goal is to reach a pleasant balance between the smoke character and the base beer style. Entries should be judged on how well that style is represented, and how well it is balanced with the smoke character. Entries with a specific type or types of smoke cited will be judged on how well that type of smoke is recognizable and marries with the base style and added ingredients. Judges should evaluate the beers mostly on the overall balance, and how well the smoke character and added ingredients enhances the base beer.", - "overall_impression": "A smoke-enhanced beer showing good balance between the smoke, the beer character, and the added ingredients, while remaining pleasant to drink. Balance in the use of smoke, hops and malt character is exhibited by the better examples.", - "notes": "A smoke-enhanced beer showing good balance between the smoke, the beer character, and the added ingredients, while remaining pleasant to drink. Balance in the use of smoke, hops and malt character is exhibited by the better examples.", - "ingredients": "Different materials used to smoke malt result in unique flavor and aroma characteristics. Beechwood, or other hardwood (oak, maple, mesquite, alder, pecan, apple, cherry, other fruitwoods) smoked malts may be used. The various woods may remind one of certain smoked products due to their food association (e.g., hickory with ribs, maple with bacon or sausage, and alder with salmon). Evergreen wood should never be used since it adds a medicinal, piney flavor to the malt. Noticeable peat-smoked malt is universally undesirable due to its sharp, piercing phenolics and dirt-like earthiness. The beer ingredients vary with the base style. Other unusual ingredients (fruits, vegetables, spices, honey, etc.) used in noticeable quantities.", - "tags": "specialty-beer, smoke", - "entry_instructions": "The entrant must specify a base beer style; the base beer does not have to be a Classic Style. The entrant must specify the type of wood or smoke if a varietal smoke character is noticeable. The entrant must specify the additional ingredients or processes that make this a specialty smoked beer." - }, - { - "name": "Wood-Aged Beer", - "category": "Wood Beer", - "category_number": 33, - "category_id": "33", - "style_id": "33A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Varies with base style. A low to moderate wood- or oak-based aroma is usually present. Fresh wood can occasionally impart raw \"green\" aromatics, although this character should never be too strong. Other optional aromatics include a low to moderate vanilla, caramel, toffee, toast, or cocoa character from any char on the wood. Any alcohol character should be smooth and balanced, not hot. Some background oxidation character is optional, and can take on a pleasant, sherry-like character and not be papery or cardboard-like. Should not have added alcohol character.", - "appearance": "Varies with base style. Often darker than the unadulterated base beer style, particularly if toasted/charred barrels are used.", - "flavor": "Varies with base style. Wood usually contributes a woody or oaky flavor, which can occasionally take on a raw \"green\" flavor if new wood is used. Other flavors that may optionally be present include vanilla (from vanillin in the wood); caramel, butterscotch, toasted bread or almonds (from toasted wood); and coffee, chocolate, cocoa (from charred wood). The wood and/or other cask-derived flavors should be balanced, supportive and noticeable, but should not overpower the base beer style. Some background oxidation character is optional, although this should take on a pleasant, sherry-like character and not be papery or cardboard-like.", - "mouthfeel": "Varies with base style. Wood can add tannins to the beer, depending on age of the cask. The tannins can lead to additional astringency (which should never be high), or simply a fuller mouthfeel. Tart or acidic characteristics should be low to none, and never distracting.", - "comments": "The base beer style should be apparent. The wood-based character should be evident, but not so dominant as to unbalance the beer. The intensity of the wood-based flavors is based on the contact time with the wood; the age, condition, and origin and char level of the barrel; and the type of wood. THIS CATEGORY SHOULD NOT BE USED FOR BASE STYLES WHERE WOOD-AGING IS A FUNDAMENTAL REQUIREMENT FOR THE STYLE (e.g., Flanders Red, Lambic, etc.). Beers made using either limited wood aging or products that only provide a subtle background character may be entered in the base beer style categories as long as the wood character isn't prominently featured.", - "profile": "Varies with base style. A low to moderate wood- or oak-based aroma is usually present. Fresh wood can occasionally impart raw \"green\" aromatics, although this character should never be too strong. Other optional aromatics include a low to moderate vanilla, caramel, toffee, toast, or cocoa character from any char on the wood. Any alcohol character should be smooth and balanced, not hot. Some background oxidation character is optional, and can take on a pleasant, sherry-like character and not be papery or cardboard-like. Should not have added alcohol character. Varies with base style. Often darker than the unadulterated base beer style, particularly if toasted/charred barrels are used.Varies with base style. Wood usually contributes a woody or oaky flavor, which can occasionally take on a raw \"green\" flavor if new wood is used. Other flavors that may optionally be present include vanilla (from vanillin in the wood); caramel, butterscotch, toasted bread or almonds (from toasted wood); and coffee, chocolate, cocoa (from charred wood). The wood and/or other cask-derived flavors should be balanced, supportive and noticeable, but should not overpower the base beer style. Some background oxidation character is optional, although this should take on a pleasant, sherry-like character and not be papery or cardboard-like. Varies with base style. Wood can add tannins to the beer, depending on age of the cask. The tannins can lead to additional astringency (which should never be high), or simply a fuller mouthfeel. Tart or acidic characteristics should be low to none, and never distracting. The base beer style should be apparent. The wood-based character should be evident, but not so dominant as to unbalance the beer. The intensity of the wood-based flavors is based on the contact time with the wood; the age, condition, and origin and char level of the barrel; and the type of wood. THIS CATEGORY SHOULD NOT BE USED FOR BASE STYLES WHERE WOOD-AGING IS A FUNDAMENTAL REQUIREMENT FOR THE STYLE (e.g., Flanders Red, Lambic, etc.). Beers made using either limited wood aging or products that only provide a subtle background character may be entered in the base beer style categories as long as the wood character isn't prominently featured.", - "overall_impression": "A harmonious blend of the base beer style with characteristics from aging in contact with wood. The best examples will be smooth, flavorful, well-balanced and well-aged.", - "history": "A traditional production method that is rarely used by major breweries, and usually only with specialty products. More popular with modern American craft breweries looking for new, distinctive products. Oak cask and barrels are traditional, although other woods are becoming more popular.", - "notes": "A harmonious blend of the base beer style with characteristics from aging in contact with wood. The best examples will be smooth, flavorful, well-balanced and well-aged. A traditional production method that is rarely used by major breweries, and usually only with specialty products. More popular with modern American craft breweries looking for new, distinctive products. Oak cask and barrels are traditional, although other woods are becoming more popular.", - "ingredients": "Varies with base style. Aged in wooden casks or barrels, or using wood-based additives (wood chips, wood staves, oak essence). Fuller-bodied, higher-gravity base styles often are used since they can best stand up to the additional flavors, although experimentation is encouraged.", - "examples": "Bush Prestige, Cigar City Humidor India Pale Ale, Faust Holzfassgereifter Eisbock, Firestone Walker Double Barrel Ale, Great Divide Oak Aged Yeti Imperial Stout, Petrus Aged Pale, Samuel Smith Yorkshire Stingo", - "tags": "specialty-beer, wood", - "entry_instructions": "The entrant must specify the type of wood used and the char level (if charred). The entrant must specify the base style; the base style can be either a classic BJCP style (i.e., a named subcategory) or may be a generic type of beer (e.g., porter, brown ale). If an unusual wood has been used, the entrant must supply a brief description of the sensory aspects the wood adds to beer." - }, - { - "name": "Specialty Wood-Aged Beer", - "category": "Wood Beer", - "category_number": 33, - "category_id": "33", - "style_id": "33B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Varies with base style. A low to moderate wood- or oak-based aroma is usually present. Other aromatics often include a low to moderate vanilla, caramel, toffee, toast, or cocoa character, as well as any aromatics associated with alcohol (distilled spirits, wine, etc.) previously stored in the wood. The added alcohol character should be smooth and balanced, not hot. Some background oxidation character is optional, and can take on a pleasant, sherry-like character and not be papery or cardboard-like.", - "appearance": "Varies with base style. Often darker than the unadulterated base beer style, particularly if whiskey/bourbon barrels are used. Beers aged in wine barrels or other products with distinctive colors may also impart a color to the finished beer.", - "flavor": "Varies with base style. Wood usually contributes a woody or oaky flavor. Other flavors that are typically present include vanilla (from vanillin in the wood); caramel, butterscotch, toasted bread or almonds (from toasted wood); coffee, chocolate, cocoa (from charred wood or bourbon casks); and alcohol flavors from other products previously stored in the wood. The wood and/or other cask-derived flavors should be balanced, supportive and noticeable, but should not overpower the base beer style. Some background oxidation character is optional, although this should take on a pleasant, sherry-like character and not be papery or cardboard-like.", - "mouthfeel": "Varies with base style. Wood can add tannins to the beer, depending on age of the cask. The tannins can lead to additional astringency (which should never be high), or simply a fuller mouthfeel. Usually exhibits additional alcohol warming. Higher alcohol levels should not result in \"hot\" beers; aged, smooth flavors are most desirable. Tart or acidic characteristics should be low to none.", - "comments": "The base beer style should be apparent. The wood-based character should be evident, but not so dominant as to unbalance the beer. The intensity of the wood-based flavors is based on the contact time with the wood; the age, condition, previous usage of the barrel; and the type of wood. Alcoholic products previously stored in the wood should be evident, but should not be so dominant as to unbalance the beer. THIS CATEGORY SHOULD NOT BE USED FOR BASE STYLES WHERE BARREL-AGING IS A FUNDAMENTAL REQUIREMENT FOR THE STYLE (e.g., Flanders Red, Lambic, etc.). Special wood-aged wild ales should be entered in the Wild Specialty style.", - "profile": "Varies with base style. A low to moderate wood- or oak-based aroma is usually present. Other aromatics often include a low to moderate vanilla, caramel, toffee, toast, or cocoa character, as well as any aromatics associated with alcohol (distilled spirits, wine, etc.) previously stored in the wood. The added alcohol character should be smooth and balanced, not hot. Some background oxidation character is optional, and can take on a pleasant, sherry-like character and not be papery or cardboard-like. Varies with base style. Often darker than the unadulterated base beer style, particularly if whiskey/bourbon barrels are used. Beers aged in wine barrels or other products with distinctive colors may also impart a color to the finished beer.Varies with base style. Wood usually contributes a woody or oaky flavor. Other flavors that are typically present include vanilla (from vanillin in the wood); caramel, butterscotch, toasted bread or almonds (from toasted wood); coffee, chocolate, cocoa (from charred wood or bourbon casks); and alcohol flavors from other products previously stored in the wood. The wood and/or other cask-derived flavors should be balanced, supportive and noticeable, but should not overpower the base beer style. Some background oxidation character is optional, although this should take on a pleasant, sherry-like character and not be papery or cardboard-like. Varies with base style. Wood can add tannins to the beer, depending on age of the cask. The tannins can lead to additional astringency (which should never be high), or simply a fuller mouthfeel. Usually exhibits additional alcohol warming. Higher alcohol levels should not result in \"hot\" beers; aged, smooth flavors are most desirable. Tart or acidic characteristics should be low to none. The base beer style should be apparent. The wood-based character should be evident, but not so dominant as to unbalance the beer. The intensity of the wood-based flavors is based on the contact time with the wood; the age, condition, previous usage of the barrel; and the type of wood. Alcoholic products previously stored in the wood should be evident, but should not be so dominant as to unbalance the beer. THIS CATEGORY SHOULD NOT BE USED FOR BASE STYLES WHERE BARREL-AGING IS A FUNDAMENTAL REQUIREMENT FOR THE STYLE (e.g., Flanders Red, Lambic, etc.). Special wood-aged wild ales should be entered in the Wild Specialty style.", - "overall_impression": "A harmonious blend of the base beer style with characteristics from aging in contact with wood (including alcoholic products previously in contact with the wood). The best examples will be smooth, flavorful, well-balanced and well-aged.", - "history": "A traditional production method that is rarely used by major breweries, and usually only with specialty products. Quite popular with modern American craft breweries looking for new, distinctive products. Oak cask and barrels are traditional, although other woods can be used.", - "notes": "A harmonious blend of the base beer style with characteristics from aging in contact with wood (including alcoholic products previously in contact with the wood). The best examples will be smooth, flavorful, well-balanced and well-aged. A traditional production method that is rarely used by major breweries, and usually only with specialty products. Quite popular with modern American craft breweries looking for new, distinctive products. Oak cask and barrels are traditional, although other woods can be used.", - "ingredients": "Varies with base style. Aged in wooden casks or barrels previously used to store alcohol (e.g., whiskey, bourbon, port, sherry, Madeira, wine, etc). Fuller-bodied, higher-gravity base styles often are used since they can best stand up to the additional flavors, although experimentation is encouraged.", - "examples": "Founders Kentucky Breakfast Stout, Goose Island Bourbon County Stout, J.W. Lees Harvest Ale in Port, Sherry, Lagavulin Whisky or Calvados Casks, The Lost Abbey Angel's Share Ale; many microbreweries have specialty beers served only on premises often directly from the cask.", - "tags": "specialty-beer, wood", - "entry_instructions": "The entrant must specify the additional alcohol character, with information about the barrel if relevant to the finished flavor profile. The entrant must specify the base style; the base style can be either a classic BJCP style (i.e., a named subcategory) or may be a generic type of beer (e.g., porter, brown ale). If an unusual wood or ingredient has been used, the entrant must supply a brief description of the sensory aspects the ingredients adds to the beer." - }, - { - "name": "Clone Beer", - "category": "Specialty Beer", - "category_number": 34, - "category_id": "34", - "style_id": "34A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Based on declared clone beer.", - "appearance": "Based on declared clone beer.", - "flavor": "Based on declared clone beer.", - "mouthfeel": "Based on declared clone beer.", - "comments": "Intended as a catch-all location for specific beers that are based on unique commercial examples that don't fit existing styles.", - "profile": "Based on declared clone beer. Based on declared clone beer.Based on declared clone beer. Based on declared clone beer. Intended as a catch-all location for specific beers that are based on unique commercial examples that don't fit existing styles.", - "overall_impression": "Based on declared clone beer.", - "notes": "Based on declared clone beer.", - "tags": "specialty-beer", - "entry_instructions": "The entrant must specify the name of the commercial beer being cloned, specifications (vital statistics) for the beer, and either a brief sensory description or a list of ingredients used in making the beer. Without this information, judges who are unfamiliar with the beer will have no basis for comparison." - }, - { - "name": "Mixed-Style Beer", - "category": "Specialty Beer", - "category_number": 34, - "category_id": "34", - "style_id": "34B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Based on the declared base styles.", - "appearance": "Based on the declared base styles.", - "flavor": "Based on the declared base styles.", - "mouthfeel": "Based on the declared base styles.", - "comments": "Intended for Specialty-Type combinations of styles not described elsewhere as Specialty-Type Beers, or as hybrid or fusion beers between other existing styles.", - "profile": "Based on the declared base styles. Based on the declared base styles.Based on the declared base styles. Based on the declared base styles. Intended for Specialty-Type combinations of styles not described elsewhere as Specialty-Type Beers, or as hybrid or fusion beers between other existing styles.", - "overall_impression": "Based on the declared base styles. As with all Specialty-Type Beers, the resulting combination of beer styles needs to be harmonious and balanced, and be pleasant to drink.", - "notes": "Based on the declared base styles. As with all Specialty-Type Beers, the resulting combination of beer styles needs to be harmonious and balanced, and be pleasant to drink.", - "tags": "specialty-beer", - "entry_instructions": "The entrant must specify the styles being mixed. The entrant may provide an additional description of the sensory profile of the beer or the vital statistics of the resulting beer." - }, - { - "name": "Experimental Beer", - "category": "Specialty Beer", - "category_number": 34, - "category_id": "34", - "style_id": "34C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "beer", - "aroma": "Varies.", - "appearance": "Varies.", - "flavor": "Varies.", - "mouthfeel": "Varies.", - "comments": "This style is the ultimate in creativity, since it cannot represent a well-known commercial beer (otherwise it would be a clone beer) and cannot fit into any other existing Specialty-Type style (including those within this major category).", - "profile": "Varies. Varies.Varies. Varies. This style is the ultimate in creativity, since it cannot represent a well-known commercial beer (otherwise it would be a clone beer) and cannot fit into any other existing Specialty-Type style (including those within this major category).", - "overall_impression": "Varies, but should be a unique experience.", - "notes": "Varies, but should be a unique experience.", - "examples": "None", - "tags": "specialty-beer", - "entry_instructions": "The entrant must specify the special nature of the experimental beer, including the special ingredients or processes that make it not fit elsewhere in the guidelines. The entrant must provide vital statistics for the beer, and either a brief sensory description or a list of ingredients used in making the beer. Without this information, judges will have no basis for comparison." - }, - { - "name": "Dry Mead", - "category": "Traditional Mead", - "category_id": "M1", - "style_id": "M1A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "mead", - "aroma": "Honey aroma may be subtle, although not always identifiable. Sweetness or significant honey aromatics should not be expected. If a honey variety is declared, the variety should be distinctive (if noticeable). Different types of honey have different intensities and characters. Standard description applies for remainder of characteristics.", - "appearance": "Standard description applies.", - "flavor": "Subtle (if any) honey character, and may feature subtle to noticeable varietal character if a varietal honey is declared (different varieties have different intensities). Residual sweetness levels are minimal to none. Dry finish. May have more noticeable acidity due to low sweetness levels. Tannin levels may make a sweeter mead seem dry. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics.", - "mouthfeel": "Standard description applies, although the body is generally medium to light (but not watery). Note that stronger meads can have a fuller body. Sensations of body should not be accompanied by noticeable residual sweetness. Ingredients: Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. Show meads feature no additives, but this distinction is usually not obvious to judges.", - "profile": "Honey aroma may be subtle, although not always identifiable. Sweetness or significant honey aromatics should not be expected. If a honey variety is declared, the variety should be distinctive (if noticeable). Different types of honey have different intensities and characters. Standard description applies for remainder of characteristics. Standard description applies.Subtle (if any) honey character, and may feature subtle to noticeable varietal character if a varietal honey is declared (different varieties have different intensities). Residual sweetness levels are minimal to none. Dry finish. May have more noticeable acidity due to low sweetness levels. Tannin levels may make a sweeter mead seem dry. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics. Standard description applies, although the body is generally medium to light (but not watery). Note that stronger meads can have a fuller body. Sensations of body should not be accompanied by noticeable residual sweetness. Ingredients: Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. Show meads feature no additives, but this distinction is usually not obvious to judges.", - "overall_impression": "Similar in balance, body, finish and flavor intensity to a dry white wine, with a pleasant mixture of subtle honey character, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol, and honey character is the essential final measure of any mead.", - "notes": "Similar in balance, body, finish and flavor intensity to a dry white wine, with a pleasant mixture of subtle honey character, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol, and honey character is the essential final measure of any mead.", - "examples": "White Winter Dry Mead, Sky River Dry Mead, Intermiel Bouquet Printanier", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level and strength. Sweetness is assumed to be DRY in this category. Entrants MAY specify honey varieties." - }, - { - "name": "Semi-Sweet Mead", - "category": "Traditional Mead", - "category_id": "M1", - "style_id": "M1B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "mead", - "aroma": "Honey aroma should be noticeable, and can have a light sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). Standard description applies for remainder of characteristics.", - "appearance": "Standard description applies.", - "flavor": "Subtle to moderate honey character, and may feature subtle to noticeable varietal character if a varietal honey is declared (different varieties have different intensities). Residual sweetness levels are subtle to moderate. Medium-dry to lightly sweet finish. Tannin levels may make a sweet mead seem medium-dry. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics.", - "mouthfeel": "Standard description applies, although the body is generally medium-light to medium-full. Note that stronger meads can have a fuller body. Sensations of body should not be accompanied by a residual sweetness that is higher than moderate. Ingredients: Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. Show meads feature no additives, but this distinction is usually not obvious to judges.", - "profile": "Honey aroma should be noticeable, and can have a light sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). Standard description applies for remainder of characteristics. Standard description applies.Subtle to moderate honey character, and may feature subtle to noticeable varietal character if a varietal honey is declared (different varieties have different intensities). Residual sweetness levels are subtle to moderate. Medium-dry to lightly sweet finish. Tannin levels may make a sweet mead seem medium-dry. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics. Standard description applies, although the body is generally medium-light to medium-full. Note that stronger meads can have a fuller body. Sensations of body should not be accompanied by a residual sweetness that is higher than moderate. Ingredients: Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. Show meads feature no additives, but this distinction is usually not obvious to judges.", - "overall_impression": "Similar in balance, body, finish and flavor intensity to a semi-sweet (or medium-dry) white wine, with a pleasant mixture of honey character, light sweetness, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol, and honey character is the essential final measure of any mead.", - "notes": "Similar in balance, body, finish and flavor intensity to a semi-sweet (or medium-dry) white wine, with a pleasant mixture of honey character, light sweetness, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol, and honey character is the essential final measure of any mead.", - "examples": "Lurgashall English Mead, Redstone Traditional Mountain Honey Wine, Sky River Semi-Sweet Mead, Intermiel Verge d'Or and Mélilot", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level and strength. Sweetness is assumed to be SEMI-SWEET in this category. Entrants MAY specify honey varieties." - }, - { - "name": "Sweet Mead", - "category": "Traditional Mead", - "category_id": "M1", - "style_id": "M1C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "mead", - "aroma": "Honey aroma should dominate, and is often moderately to strongly sweet and usually expresses the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). Standard description applies for remainder of characteristics.", - "appearance": "Standard description applies.", - "flavor": "Moderate to significant honey character, and may feature moderate to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Residual sweetness levels are moderate to high. Sweet and full (but not cloying) finish. Balanced acidity and/or tannin helps keep the sweetness agreeable to the palate without being overwhelming. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics.", - "mouthfeel": "Standard description applies, although the body is generally medium-full to full. Note that stronger meads will have a fuller body. Many examples will seem like a dessert wine. Sensations of body should not be accompanied by cloying, raw (unfermented) residual sweetness. Ingredients: Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. Show meads feature no additives, but this distinction is usually not obvious to judges.", - "profile": "Honey aroma should dominate, and is often moderately to strongly sweet and usually expresses the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). Standard description applies for remainder of characteristics. Standard description applies.Moderate to significant honey character, and may feature moderate to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Residual sweetness levels are moderate to high. Sweet and full (but not cloying) finish. Balanced acidity and/or tannin helps keep the sweetness agreeable to the palate without being overwhelming. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics. Standard description applies, although the body is generally medium-full to full. Note that stronger meads will have a fuller body. Many examples will seem like a dessert wine. Sensations of body should not be accompanied by cloying, raw (unfermented) residual sweetness. Ingredients: Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. Show meads feature no additives, but this distinction is usually not obvious to judges.", - "overall_impression": "Similar in balance, body, finish and flavor intensity to a well-made dessert wine (such as Sauternes), with a pleasant mixture of honey character, residual sweetness, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol, and honey character is the essential final measure of any mead.", - "notes": "Similar in balance, body, finish and flavor intensity to a well-made dessert wine (such as Sauternes), with a pleasant mixture of honey character, residual sweetness, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol, and honey character is the essential final measure of any mead.", - "examples": "Moonlight Sensual, Lurgashall Christmas Mead, Chaucer's Mead, Rabbit's Foot Sweet Wildflower Honey Mead, Intermiel Benoîte", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level and strength. Sweetness is assumed to be SWEET in this category. Entrants MAY specify honey varieties." - }, - { - "name": "Cyser", - "category": "Fruit Mead", - "category_id": "M2", - "style_id": "M2A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "mead", - "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and apple/cider character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The apple/cider character should be clean and distinctive; it can express a range of apple-based character ranging from a subtle fruitiness to a single varietal apple character (if declared) to a complex blend of apple aromatics. Some spicy or earthy notes may be present, as may a slightly sulfury character. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Slight spicy phenolics from certain apple varieties are acceptable, as is a light diacetyl character from malolactic fermentation (both are optional). Standard description applies for remainder of characteristics.", - "appearance": "Standard description applies, except with regard to color. Color may range from pale straw to deep golden amber (most are yellow to gold), depending on the variety of honey and blend of apples or ciders used.", - "flavor": "The apple and honey flavor intensity may vary from none to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). Natural acidity and tannin in apples may give some tartness and astringency to balance the sweetness, honey flavor and alcohol. Tannin levels may make a cyser seem drier than the residual sugar levels might suggest. A cyser may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Slight spicy phenolics from certain apple varieties are acceptable, as are a light diacetyl character from malolactic fermentation and a slight sulfur character (all are optional). Standard description applies for remainder of characteristics.", - "mouthfeel": "Standard description applies. Often wine-like. Some natural acidity is usually present (from the blend of apples) and helps balance the overall impression. Some apples can provide natural astringency, but this character should not be excessive. Ingredients: Standard description applies. Cyser is a mead made with the addition of apples or apple juice. Traditionally, cysers are made by the addition of honey to apple juice without additional water.", - "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and apple/cider character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The apple/cider character should be clean and distinctive; it can express a range of apple-based character ranging from a subtle fruitiness to a single varietal apple character (if declared) to a complex blend of apple aromatics. Some spicy or earthy notes may be present, as may a slightly sulfury character. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Slight spicy phenolics from certain apple varieties are acceptable, as is a light diacetyl character from malolactic fermentation (both are optional). Standard description applies for remainder of characteristics. Standard description applies, except with regard to color. Color may range from pale straw to deep golden amber (most are yellow to gold), depending on the variety of honey and blend of apples or ciders used.The apple and honey flavor intensity may vary from none to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). Natural acidity and tannin in apples may give some tartness and astringency to balance the sweetness, honey flavor and alcohol. Tannin levels may make a cyser seem drier than the residual sugar levels might suggest. A cyser may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Slight spicy phenolics from certain apple varieties are acceptable, as are a light diacetyl character from malolactic fermentation and a slight sulfur character (all are optional). Standard description applies for remainder of characteristics. Standard description applies. Often wine-like. Some natural acidity is usually present (from the blend of apples) and helps balance the overall impression. Some apples can provide natural astringency, but this character should not be excessive. Ingredients: Standard description applies. Cyser is a mead made with the addition of apples or apple juice. Traditionally, cysers are made by the addition of honey to apple juice without additional water.", - "overall_impression": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Some of the best strong examples have the taste and aroma of an aged Calvados (apple brandy from northern France), while subtle, dry versions can taste similar to many fine white wines. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", - "notes": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Some of the best strong examples have the taste and aroma of an aged Calvados (apple brandy from northern France), while subtle, dry versions can taste similar to many fine white wines. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", - "examples": "Moonlight Blossom, White Winter Cyser, Rabbit's Foot Apple Cyser", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MAY specify the varieties of apple used; if specified, a varietal character will be expected. Products with a relatively low proportion of honey are better entered as a Specialty Cider. A spiced cyser should be entered as a Fruit and Spice Mead. A cyser with other fruit should be entered as a Melomel. A cyser with additional ingredients should be entered as an Experimental Mead." - }, - { - "name": "Pyment", - "category": "Fruit Mead", - "category_id": "M2", - "style_id": "M2B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "mead", - "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and grape/wine character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The grape/wine character should be clean and distinctive; it can express a range of grape-based character ranging from a subtle fruitiness to a single varietal grape character (if declared) to a complex blend of grape or wine aromatics. Some complex, spicy, grassy or earthy notes may be present (as in wine). The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Slight spicy phenolics from certain red grape varieties are acceptable, as is a light diacetyl character from malolactic fermentation in certain white grape varieties (both are optional). Standard description applies for remainder of characteristics.", - "appearance": "Standard description applies, except with regard to color. Color may range from pale straw to deep purple-red, depending on the variety of grapes and honey used. The color should be characteristic of the variety or type of grape used, although white grape varieties may also take on color derived from the honey variety.", - "flavor": "The grape/wine and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). Natural acidity and tannin in grapes may give some tartness and astringency to balance the sweetness, honey flavor and alcohol. A pyment may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Depending on the grape variety, some fruity, spicy, grassy, buttery, earthy, minerally, and/or floral flavors may be present. Some versions (particularly red pyments) may be oak-aged, with additional flavor complexity. Tannin levels may make the pyment seem drier than residual sugar levels might suggest. Standard description applies for remainder of characteristics.", - "mouthfeel": "Standard description applies. Wine-like. Some natural acidity is usually present (from grapes) and helps balance the overall impression. Grape tannin and/or grape skins can add body as well as some astringency, although this character should not be excessive. Use of oak can also add this character. Longer aging can smooth out tannin-based astringency. Ingredients: Standard description applies. A pyment is a mead made with the addition of grapes or grape juices. Alternatively, the pyment may be a homemade grape-based wine sweetened with honey, or a mead mixed with homemade grape-based wine after fermentation.", - "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and grape/wine character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The grape/wine character should be clean and distinctive; it can express a range of grape-based character ranging from a subtle fruitiness to a single varietal grape character (if declared) to a complex blend of grape or wine aromatics. Some complex, spicy, grassy or earthy notes may be present (as in wine). The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Slight spicy phenolics from certain red grape varieties are acceptable, as is a light diacetyl character from malolactic fermentation in certain white grape varieties (both are optional). Standard description applies for remainder of characteristics. Standard description applies, except with regard to color. Color may range from pale straw to deep purple-red, depending on the variety of grapes and honey used. The color should be characteristic of the variety or type of grape used, although white grape varieties may also take on color derived from the honey variety.The grape/wine and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). Natural acidity and tannin in grapes may give some tartness and astringency to balance the sweetness, honey flavor and alcohol. A pyment may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Depending on the grape variety, some fruity, spicy, grassy, buttery, earthy, minerally, and/or floral flavors may be present. Some versions (particularly red pyments) may be oak-aged, with additional flavor complexity. Tannin levels may make the pyment seem drier than residual sugar levels might suggest. Standard description applies for remainder of characteristics. Standard description applies. Wine-like. Some natural acidity is usually present (from grapes) and helps balance the overall impression. Grape tannin and/or grape skins can add body as well as some astringency, although this character should not be excessive. Use of oak can also add this character. Longer aging can smooth out tannin-based astringency. Ingredients: Standard description applies. A pyment is a mead made with the addition of grapes or grape juices. Alternatively, the pyment may be a homemade grape-based wine sweetened with honey, or a mead mixed with homemade grape-based wine after fermentation.", - "overall_impression": "In well-made examples of the style, the grape is both distinctively vinous and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. White and red versions can be quite different, and the overall impression should be characteristic of the type of grapes used and suggestive of a similar variety wine. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", - "notes": "In well-made examples of the style, the grape is both distinctively vinous and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. White and red versions can be quite different, and the overall impression should be characteristic of the type of grapes used and suggestive of a similar variety wine. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", - "examples": "Celestial Meads Que Syrah, Moonlight Slow Dance, Redstone Pinot Noir and White Pyment Mountain Honey Wines", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MAY specify the varieties of grape used; if specified, a varietal character will be expected. A spiced pyment (hippocras) should be entered as a Fruit and Spice Mead. A pyment made with other fruit should be entered as a Melomel. A pyment with other ingredients should be entered as an Experimental Mead." - }, - { - "name": "Berry Mead", - "category": "Fruit Mead", - "category_id": "M2", - "style_id": "M2C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "mead", - "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s); however, note that some fruit (e.g., raspberries) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw, and/or inappropriately overpowering (considering the character of the fruit). In a blended berry mead, not all fruit may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics.", - "appearance": "Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored meads with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well.", - "flavor": "The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The natural acidity and tannin levels from fruit and fruit skins will vary, and this character is expected to be present in the mead, although in balance with sweetness, honey flavor, and alcohol. Tannin levels may make some meads seem drier than the residual sweetness might suggest. A berry mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial, raw (unfermented), and/or inappropriately overpowering. In a blended berry mead, not all fruit may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics.", - "mouthfeel": "Standard description applies. Most will be wine-like. Some natural acidity and/or tannin are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and tannin levels should be somewhat reflective of the fruit used. Ingredients: Standard description applies. A berry mead is a mead made with the addition of other berries or berry juices, including a blend of berries. There should be an appealing blend of the fruit and honey character but not necessarily an even balance.", - "comments": "Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist. Some fruits, notably darker ones like blackberries, may contribute a tannin presence similar to a red wine.", - "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s); however, note that some fruit (e.g., raspberries) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw, and/or inappropriately overpowering (considering the character of the fruit). In a blended berry mead, not all fruit may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics. Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored meads with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well.The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The natural acidity and tannin levels from fruit and fruit skins will vary, and this character is expected to be present in the mead, although in balance with sweetness, honey flavor, and alcohol. Tannin levels may make some meads seem drier than the residual sweetness might suggest. A berry mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial, raw (unfermented), and/or inappropriately overpowering. In a blended berry mead, not all fruit may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics. Standard description applies. Most will be wine-like. Some natural acidity and/or tannin are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and tannin levels should be somewhat reflective of the fruit used. Ingredients: Standard description applies. A berry mead is a mead made with the addition of other berries or berry juices, including a blend of berries. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist. Some fruits, notably darker ones like blackberries, may contribute a tannin presence similar to a red wine.", - "overall_impression": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.", - "notes": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.", - "examples": "Moonlight Blissful, Wild, Caress, and Mischief, White Winter Blueberry, Raspberry and Strawberry Melomels, Celestial Meads Miel Noir, Redstone Black Raspberry Nectar, Bees Brothers Raspberry Mead, Intermiel Honey Wine and Raspberries, Honey Wine and Blueberries, and Honey Wine and Blackcurrants, Mountain Meadows Cranberry Mead", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the varieties of fruit used. A mead made with both berries and non-berry fruit (including apples and grapes) should be entered as a Melomel. A berry mead that is spiced should be entered as a Fruit and Spice Mead. A berry mead containing other ingredients should be entered as an Experimental Mead." - }, - { - "name": "Stone Fruit Mead", - "category": "Fruit Mead", - "category_id": "M2", - "style_id": "M2D", - "style_letter": "D", - "style_guide": "BJCP2015", - "type": "mead", - "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s); however, note that some fruit (e.g., cherries) have stronger aromas and are more distinctive than others (e.g., peaches) — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw and/or inappropriately overpowering (considering the character of the fruit). In a blended stone fruit mead, not all the fruits may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics.", - "appearance": "Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored meads with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well.", - "flavor": "The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The natural acidity and tannin levels from fruit and fruit skins will vary, and this character is expected to be present in the mead, although in balance with sweetness, honey flavor, and alcohol. Tannin levels may make some meads seem drier than the residual sweetness might suggest. A stone fruit mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial, raw (unfermented), and/or inappropriately overpowering. In a blended stone fruit mead, not all the fruits may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics.", - "mouthfeel": "Standard description applies. Most will be wine-like. Some natural acidity and/or tannin are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and tannin levels should be somewhat reflective of the fruit used. Ingredients: Standard description applies. A stone fruit mead is a mead made with the addition of other stone fruit or stone fruit juices. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. A stone fruit mead can be made with a blend of stone fruits, but not other fruit not allowable in this category.", - "comments": "Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", - "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s); however, note that some fruit (e.g., cherries) have stronger aromas and are more distinctive than others (e.g., peaches) — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw and/or inappropriately overpowering (considering the character of the fruit). In a blended stone fruit mead, not all the fruits may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics. Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored meads with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well.The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The natural acidity and tannin levels from fruit and fruit skins will vary, and this character is expected to be present in the mead, although in balance with sweetness, honey flavor, and alcohol. Tannin levels may make some meads seem drier than the residual sweetness might suggest. A stone fruit mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial, raw (unfermented), and/or inappropriately overpowering. In a blended stone fruit mead, not all the fruits may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics. Standard description applies. Most will be wine-like. Some natural acidity and/or tannin are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and tannin levels should be somewhat reflective of the fruit used. Ingredients: Standard description applies. A stone fruit mead is a mead made with the addition of other stone fruit or stone fruit juices. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. A stone fruit mead can be made with a blend of stone fruits, but not other fruit not allowable in this category. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", - "overall_impression": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.", - "notes": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.", - "examples": "Mountain Meadows Cherry Mead, Moonlight Entice, Sumptuous, Flirt, and Smitten, Redstone Sunshine Nectar", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the varieties of fruit used. A stone fruit mead that is spiced should be entered as a Fruit and Spice Mead. A stone fruit mead that contains non-stone fruit should be entered as a Melomel. A stone fruit mead that contains other ingredients should be entered as an Experimental Mead." - }, - { - "name": "Melomel", - "category": "Fruit Mead", - "category_id": "M2", - "style_id": "M2E", - "style_letter": "E", - "style_guide": "BJCP2015", - "type": "mead", - "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s); however, note that some fruit have stronger aromas and are more distinctive than others — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw (unfermented), and/or inappropriately overpowering (considering the character of the fruit). In a blended fruit melomel, not all the fruits may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics.", - "appearance": "Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored melomels with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well.", - "flavor": "The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The natural acidity and tannin levels from fruit and fruit skins will vary, and this character is expected to be present in the mead, although in balance with sweetness, honey flavor, and alcohol. Tannin levels may make some meads seem drier than the residual sweetness might suggest. A melomel may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial, raw (unfermented), and/or inappropriately overpowering. In a melomel made with a combination of fruits, not all the fruits may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics.", - "mouthfeel": "Standard description applies. Most will be wine-like. Some natural acidity and/or tannin are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and tannin levels should be somewhat reflective of the fruit used. Ingredients: Standard description applies. A melomel is a mead made with the addition of other fruit or fruit juices not specifically reserved for other entry subcategories. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. A melomel can be made with a blend of fruits from multiple Fruit Mead subcategories.", - "comments": "Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", - "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s); however, note that some fruit have stronger aromas and are more distinctive than others — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw (unfermented), and/or inappropriately overpowering (considering the character of the fruit). In a blended fruit melomel, not all the fruits may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics. Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored melomels with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well.The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The natural acidity and tannin levels from fruit and fruit skins will vary, and this character is expected to be present in the mead, although in balance with sweetness, honey flavor, and alcohol. Tannin levels may make some meads seem drier than the residual sweetness might suggest. A melomel may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial, raw (unfermented), and/or inappropriately overpowering. In a melomel made with a combination of fruits, not all the fruits may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics. Standard description applies. Most will be wine-like. Some natural acidity and/or tannin are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and tannin levels should be somewhat reflective of the fruit used. Ingredients: Standard description applies. A melomel is a mead made with the addition of other fruit or fruit juices not specifically reserved for other entry subcategories. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. A melomel can be made with a blend of fruits from multiple Fruit Mead subcategories. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", - "overall_impression": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.", - "notes": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.", - "examples": "Moonlight Desire, Paramour, and Iniquity", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the varieties of fruit used. A melomel that is spiced should be entered as a Fruit and Spice Mead. A melomel containing other ingredients should be entered as an Experimental Mead. Melomels made with either apples or grapes as the only fruit source should be entered as a Cyser or Pyment, respectively. Melomels with apples or grapes, plus other fruit should be entered in this category, not Experimental Mead." - }, - { - "name": "Fruit and Spice Mead", - "category": "Spiced Mead", - "category_id": "M3", - "style_id": "M3A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "mead", - "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey, fruit, and spice character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The spice character should display distinctive aromatics associated with the particular spices; however, note that some spices (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., chamomile, lavender) — allow for a range of spice character and intensity from subtle to aggressive. The spice character should be pleasant and supportive, not artificial and inappropriately overpowering (considering the character of the spice). The fruit character should display distinctive aromatics associated with the particular fruit; however, note that some fruits (e.g., raspberry, cherry) have stronger aromas and are more distinctive than others (e.g., peach) — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw (unfermented) and/or inappropriately overpowering (considering the character of the fruit). In a mead with more than one fruit and/or spice, not all fruits and spices may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some spices may produce spicy or peppery phenolics. Standard description applies for remainder of characteristics.", - "appearance": "Standard description applies, except perhaps to note that the color usually won't be affected by spices (although flowers, petals and peppers may provide subtle colors; tea blends may provide significant colors). The fruit may provide significant color, and is generally evocative of the fruit used (although it may be of a lighter shade than the fruit skin).", - "flavor": "The spice flavor intensity may vary from subtle to high; the fruit flavor intensity may vary from subtle to high; the honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The distinctive flavor character associated with the particular spices may range in intensity from subtle to aggressive (although some spices may not be individually recognizable, and can just serve to add a background complexity). Certain spices might add bitter, astringent, phenolic or spicy (hot) flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. The distinctive flavor character associated with the particular fruits may range in intensity from subtle to aggressive (although some fruits may not be individually recognizable, and can just serve to add a background complexity). Certain fruits might add acidic, bitter, astringent or flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. Meads containing more than one fruit or spice should have a pleasant balance of the different fruits and spices, but this does not mean that all fruits and spices need to be of equal intensity or even individual identifiable. The mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Standard description applies for remainder of characteristics.", - "mouthfeel": "Standard description applies. Some fruits and spices may contain tannins that add a bit of body and some astringency, but this character should not be excessive. Ingredients: Standard description applies. See the various Fruit Mead descriptions, as well as the Spice, Herb, or Vegetable Mead description for additional details.", - "comments": "Often, a blend of fruits and spices may give a character greater than the sum of its parts. The better examples of this style often use spices judiciously; when more than one spice are used, they are carefully selected so that they blend harmoniously with the fruit and with each other.", - "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey, fruit, and spice character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The spice character should display distinctive aromatics associated with the particular spices; however, note that some spices (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., chamomile, lavender) — allow for a range of spice character and intensity from subtle to aggressive. The spice character should be pleasant and supportive, not artificial and inappropriately overpowering (considering the character of the spice). The fruit character should display distinctive aromatics associated with the particular fruit; however, note that some fruits (e.g., raspberry, cherry) have stronger aromas and are more distinctive than others (e.g., peach) — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw (unfermented) and/or inappropriately overpowering (considering the character of the fruit). In a mead with more than one fruit and/or spice, not all fruits and spices may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some spices may produce spicy or peppery phenolics. Standard description applies for remainder of characteristics. Standard description applies, except perhaps to note that the color usually won't be affected by spices (although flowers, petals and peppers may provide subtle colors; tea blends may provide significant colors). The fruit may provide significant color, and is generally evocative of the fruit used (although it may be of a lighter shade than the fruit skin).The spice flavor intensity may vary from subtle to high; the fruit flavor intensity may vary from subtle to high; the honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The distinctive flavor character associated with the particular spices may range in intensity from subtle to aggressive (although some spices may not be individually recognizable, and can just serve to add a background complexity). Certain spices might add bitter, astringent, phenolic or spicy (hot) flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. The distinctive flavor character associated with the particular fruits may range in intensity from subtle to aggressive (although some fruits may not be individually recognizable, and can just serve to add a background complexity). Certain fruits might add acidic, bitter, astringent or flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. Meads containing more than one fruit or spice should have a pleasant balance of the different fruits and spices, but this does not mean that all fruits and spices need to be of equal intensity or even individual identifiable. The mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Standard description applies for remainder of characteristics. Standard description applies. Some fruits and spices may contain tannins that add a bit of body and some astringency, but this character should not be excessive. Ingredients: Standard description applies. See the various Fruit Mead descriptions, as well as the Spice, Herb, or Vegetable Mead description for additional details. Often, a blend of fruits and spices may give a character greater than the sum of its parts. The better examples of this style often use spices judiciously; when more than one spice are used, they are carefully selected so that they blend harmoniously with the fruit and with each other.", - "overall_impression": "In well-made examples of the style, the fruits and spices are both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruits and spices can result in widely different characteristics; allow for significant variation in the final product.", - "notes": "In well-made examples of the style, the fruits and spices are both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruits and spices can result in widely different characteristics; allow for significant variation in the final product.", - "examples": "Moonlight Kurt's Apple Pie, Mojo, Flame, Fling, and Deviant, Celestial Meads Scheherazade, Rabbit's Foot Private Reserve Pear Mead, Intermiel Rosée", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the types of spices used, (although well-known spice blends may be referred to by common name, such as apple pie spices). Entrants MUST specify the types of fruits used. If only combinations of spices are used, enter as a Spice, Herb, or Vegetable Mead. If only combinations of fruits are used, enter as a Melomel. If other types of ingredients are used, enter as an Experimental Mead." - }, - { - "name": "Spice, Herb or Vegetable Mead", - "category": "Spiced Mead", - "category_id": "M3", - "style_id": "M3B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "mead", - "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and spice character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The spice character should display distinctive aromatics associated with the particular spices; however, note that some spices (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., chamomile, lavender) — allow for a range of spice character and intensity from subtle to aggressive. The spice character should be pleasant and supportive, not artificial and inappropriately overpowering (considering the character of the spice). In a blended spice mead, not all spices may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some herbs and spices may produce spicy or peppery phenolics. Standard description applies for remainder of characteristics.", - "appearance": "Standard description applies, except perhaps to note that the color usually won't be affected by spices and herbs (although flowers, petals and peppers may provide subtle colors; tea blends may provide significant colors).", - "flavor": "The spice flavor intensity may vary from subtle to high; the honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The distinctive flavor character associated with the particular spices may range in intensity from subtle to aggressive (although some spices may not be individually recognizable, and can just serve to add a background complexity). Certain herbs and spices might add bitter, astringent, phenolic or spicy (hot) flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. Meads containing more than one spice should have a good balance among the different spices, though some spices will tend to dominate the flavor profile. The mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Standard description applies for remainder of characteristics.", - "mouthfeel": "Standard description applies. Some herbs or spices may contain tannins that add a bit of body and some astringency, but this character should not be excessive. Warming spices and hot peppers/chiles might impart a warming or numbing impression, but this character should not be extreme or make the mead undrinkable. Ingredients: Standard description applies. If spices are used in conjunction with other ingredients such as fruit, cider, or other fruit-based fermentables, then the mead should be entered as a Fruit and Spice Mead. If spices are used in combination with other ingredients, then the mead should be entered as an Experimental Mead.", - "comments": "Often, a blend of spices may give a character greater than the sum of its parts. The better examples of this style use spices subtly; when more than one spice are used, they are carefully selected so that they blend harmoniously. A mead containing only culinary spices or herbs is known as a metheglin.", - "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and spice character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The spice character should display distinctive aromatics associated with the particular spices; however, note that some spices (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., chamomile, lavender) — allow for a range of spice character and intensity from subtle to aggressive. The spice character should be pleasant and supportive, not artificial and inappropriately overpowering (considering the character of the spice). In a blended spice mead, not all spices may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some herbs and spices may produce spicy or peppery phenolics. Standard description applies for remainder of characteristics. Standard description applies, except perhaps to note that the color usually won't be affected by spices and herbs (although flowers, petals and peppers may provide subtle colors; tea blends may provide significant colors).The spice flavor intensity may vary from subtle to high; the honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The distinctive flavor character associated with the particular spices may range in intensity from subtle to aggressive (although some spices may not be individually recognizable, and can just serve to add a background complexity). Certain herbs and spices might add bitter, astringent, phenolic or spicy (hot) flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. Meads containing more than one spice should have a good balance among the different spices, though some spices will tend to dominate the flavor profile. The mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Standard description applies for remainder of characteristics. Standard description applies. Some herbs or spices may contain tannins that add a bit of body and some astringency, but this character should not be excessive. Warming spices and hot peppers/chiles might impart a warming or numbing impression, but this character should not be extreme or make the mead undrinkable. Ingredients: Standard description applies. If spices are used in conjunction with other ingredients such as fruit, cider, or other fruit-based fermentables, then the mead should be entered as a Fruit and Spice Mead. If spices are used in combination with other ingredients, then the mead should be entered as an Experimental Mead. Often, a blend of spices may give a character greater than the sum of its parts. The better examples of this style use spices subtly; when more than one spice are used, they are carefully selected so that they blend harmoniously. A mead containing only culinary spices or herbs is known as a metheglin.", - "overall_impression": "In well-made examples of the style, the spices are both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of spices can result in widely different characteristics; allow for a variation in the final product.", - "notes": "In well-made examples of the style, the spices are both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of spices can result in widely different characteristics; allow for a variation in the final product.", - "examples": "Moonlight Wicked, Breathless, Madagascar, and Seduction, Redstone Vanilla Beans and Cinnamon Sticks Mountain Honey Wine, Bonair Chili Mead, Redstone Juniper Mountain Honey Wine, iQhilika Africa Birds Eye Chili Mead, Mountain Meadows Spice Nectar", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the types of spices used (although well-known spice blends may be referred to by common name, such as apple pie spices)." - }, - { - "name": "Braggot", - "category": "Specialty Mead", - "category_id": "M4", - "style_id": "M4A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "mead", - "aroma": "Depending on the sweetness, strength and base style of beer, a subtle to distinctly identifiable honey and beer character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The honey and beer/malt character should be complementary and balanced, although not always evenly balanced. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). If a base style of beer or type of malt is declared, the aroma might have a subtle to very noticeable character reflective of the beer style (different styles and malts have different intensities and characters). A hop aroma (any variety or intensity) is optional; if present, it should blend harmoniously with the other elements. Standard description applies for remainder of characteristics.", - "appearance": "Standard description does not apply due to beer-like characteristics. Clarity may be good to brilliant, although many braggots are not as clear as other meads. A light to moderate head with some retention is expected if the mead is carbonated. Color may range from light straw to dark brown or black, depending on the variety of malt and honey used. The color should be characteristic of the declared beer style and/or honey used, if a variety is declared. Stronger versions may show signs of body (e.g., legs).", - "flavor": "Displays a balanced character identifiable as both a beer and a mead, although the relative intensity of flavors is greatly affected by the sweetness, strength, base style of beer, and variety of honey used. If a beer style is declared, the braggot should have some character traceable to the style although the flavors will be different due to the presence of honey. If a variety of honey is declared, the braggot should feature a subtle to prominent varietal character (different varieties have different intensities). Stronger and/or sweeter braggots should be expected to have a greater intensity of flavor than drier, lower gravity versions. The finish and aftertaste will vary based on the declared level of sweetness (dry to sweet), and may include both beer and mead components. A wide range of malt characteristics is allowable, from plain base malts to rich caramel and toast flavors to dark chocolate and roast flavors. Hop bitterness and flavor may be present, and may reflect any variety or intensity; however, this optional character should always be both suggestive of the base beer style and well blended with the other flavors. Standard description applies for remainder of characteristics.", - "mouthfeel": "Standard description does not apply due to beer-like characteristics. Smooth mouthfeel without astringency. Body may vary from moderately light to full, depending on sweetness, strength, and the base style of beer. Note that stronger meads will have a fuller body. A very thin or watery body is undesirable, as is a cloying, raw sweetness. A warming sense of well-aged alcohol may be present in stronger examples. Carbonation will vary as described in the standard description. A still braggot will usually have some level of carbonation (like a cask bitter) since a completely flat beer is unappetizing. However, just as an aged barleywine may be still, some braggots can be totally still. Ingredients: A braggot is a mead made with both honey and malt providing flavor and fermentable extract. Originally, and alternatively, a mixture of mead and ale. A braggot can be made with any type of honey, and any type of base beer style. The malt component may be derived from grain or malt extracts. The beer may be hopped or not. If any other ingredients than honey and beer are contained in the braggot, it should be entered as an Experimental Mead. Smoked braggots may be entered in this category if using smoked malt or a smoked beer as the base style; braggots made using other smoked ingredients (e.g., liquid smoke, chipotles) should be entered in the Experimental Mead style.", - "comments": "Sometimes known as bracket or brackett. The fermentable sugars come from a balance of malt or malt extract and honey, although the specific balance is open to creative interpretation by brewers.", - "profile": "Depending on the sweetness, strength and base style of beer, a subtle to distinctly identifiable honey and beer character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The honey and beer/malt character should be complementary and balanced, although not always evenly balanced. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). If a base style of beer or type of malt is declared, the aroma might have a subtle to very noticeable character reflective of the beer style (different styles and malts have different intensities and characters). A hop aroma (any variety or intensity) is optional; if present, it should blend harmoniously with the other elements. Standard description applies for remainder of characteristics. Standard description does not apply due to beer-like characteristics. Clarity may be good to brilliant, although many braggots are not as clear as other meads. A light to moderate head with some retention is expected if the mead is carbonated. Color may range from light straw to dark brown or black, depending on the variety of malt and honey used. The color should be characteristic of the declared beer style and/or honey used, if a variety is declared. Stronger versions may show signs of body (e.g., legs).Displays a balanced character identifiable as both a beer and a mead, although the relative intensity of flavors is greatly affected by the sweetness, strength, base style of beer, and variety of honey used. If a beer style is declared, the braggot should have some character traceable to the style although the flavors will be different due to the presence of honey. If a variety of honey is declared, the braggot should feature a subtle to prominent varietal character (different varieties have different intensities). Stronger and/or sweeter braggots should be expected to have a greater intensity of flavor than drier, lower gravity versions. The finish and aftertaste will vary based on the declared level of sweetness (dry to sweet), and may include both beer and mead components. A wide range of malt characteristics is allowable, from plain base malts to rich caramel and toast flavors to dark chocolate and roast flavors. Hop bitterness and flavor may be present, and may reflect any variety or intensity; however, this optional character should always be both suggestive of the base beer style and well blended with the other flavors. Standard description applies for remainder of characteristics. Standard description does not apply due to beer-like characteristics. Smooth mouthfeel without astringency. Body may vary from moderately light to full, depending on sweetness, strength, and the base style of beer. Note that stronger meads will have a fuller body. A very thin or watery body is undesirable, as is a cloying, raw sweetness. A warming sense of well-aged alcohol may be present in stronger examples. Carbonation will vary as described in the standard description. A still braggot will usually have some level of carbonation (like a cask bitter) since a completely flat beer is unappetizing. However, just as an aged barleywine may be still, some braggots can be totally still. Ingredients: A braggot is a mead made with both honey and malt providing flavor and fermentable extract. Originally, and alternatively, a mixture of mead and ale. A braggot can be made with any type of honey, and any type of base beer style. The malt component may be derived from grain or malt extracts. The beer may be hopped or not. If any other ingredients than honey and beer are contained in the braggot, it should be entered as an Experimental Mead. Smoked braggots may be entered in this category if using smoked malt or a smoked beer as the base style; braggots made using other smoked ingredients (e.g., liquid smoke, chipotles) should be entered in the Experimental Mead style. Sometimes known as bracket or brackett. The fermentable sugars come from a balance of malt or malt extract and honey, although the specific balance is open to creative interpretation by brewers.", - "overall_impression": "A harmonious blend of mead and beer, with the distinctive characteristics of both. A wide range of results are possible, depending on the base style of beer, variety of honey and overall sweetness and strength. Beer flavors tend to somewhat mask typical honey flavors found in other meads.", - "notes": "A harmonious blend of mead and beer, with the distinctive characteristics of both. A wide range of results are possible, depending on the base style of beer, variety of honey and overall sweetness and strength. Beer flavors tend to somewhat mask typical honey flavors found in other meads.", - "examples": "Rabbit's Foot Diabhal and Bière de Miele, Magic Hat Braggot, Brother Adams Braggot Barleywine Ale, White Winter Traditional Brackett", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MAY specify the base style or beer or types of malt used. Products with a relatively low proportion of honey should be entered as an Alternative Sugar Beer." - }, - { - "name": "Historical Mead", - "category": "Specialty Mead", - "category_id": "M4", - "style_id": "M4B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "mead", - "profile": "", - "overall_impression": "This mead should exhibit the character of all of the ingredients in varying degrees, and should show a good blending or balance between the various flavor elements. Whatever ingredients are included, the result should be identifiable as a honey-based fermented beverage. Aroma, appearance, flavor, mouthfeel generally follow the standard descriptions, yet note that all the characteristics may vary. Since a wide range of entries are possible, note that the characteristics may reflect combinations of the respective elements of the various sub-categories used in this style. Refer to Category M1 for a detailed description of the character of dry, semi-sweet and sweet mead. If the entered mead is a combination of other existing mead categories, refer to the constituent categories for a detailed description of the character of the component styles.", - "notes": "This mead should exhibit the character of all of the ingredients in varying degrees, and should show a good blending or balance between the various flavor elements. Whatever ingredients are included, the result should be identifiable as a honey-based fermented beverage. Aroma, appearance, flavor, mouthfeel generally follow the standard descriptions, yet note that all the characteristics may vary. Since a wide range of entries are possible, note that the characteristics may reflect combinations of the respective elements of the various sub-categories used in this style. Refer to Category M1 for a detailed description of the character of dry, semi-sweet and sweet mead. If the entered mead is a combination of other existing mead categories, refer to the constituent categories for a detailed description of the character of the component styles.", - "examples": "Jadwiga, Saba Tej", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the special nature of the mead, providing a description of the mead for judges if no such description is available from the BJCP." - }, - { - "name": "Experimental Mead", - "category": "Specialty Mead", - "category_id": "M4", - "style_id": "M4C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "mead", - "profile": "", - "overall_impression": "This mead should exhibit the character of all of the ingredients in varying degrees, and should show a good blending or balance between the various flavor elements. Whatever ingredients are included, the result should be identifiable as a honey-based fermented beverage. Aroma, appearance, flavor, mouthfeel generally follow the standard descriptions, yet note that all the characteristics may vary. Since a wide range of entries are possible, note that the characteristics may reflect combinations of the respective elements of the various sub-categories used in this style. Refer to Category M1 for a detailed description of the character of dry, semi-sweet and sweet mead. If the entered mead is a combination of other existing mead categories, refer to the constituent categories for a detailed description of the character of the component styles.", - "notes": "This mead should exhibit the character of all of the ingredients in varying degrees, and should show a good blending or balance between the various flavor elements. Whatever ingredients are included, the result should be identifiable as a honey-based fermented beverage. Aroma, appearance, flavor, mouthfeel generally follow the standard descriptions, yet note that all the characteristics may vary. Since a wide range of entries are possible, note that the characteristics may reflect combinations of the respective elements of the various sub-categories used in this style. Refer to Category M1 for a detailed description of the character of dry, semi-sweet and sweet mead. If the entered mead is a combination of other existing mead categories, refer to the constituent categories for a detailed description of the character of the component styles.", - "examples": "Moonlight Utopian, Hanssens/Lurgashall Mead the Gueuze, White Winter Cherry Bracket, Mountain Meadows Trickster's Treat Agave Mead", - "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the special nature of the mead, whether it is a combination of existing styles, an experimental mead, or some other creation. Any special ingredients that impart an identifiable character MAY be declared." - }, - { - "name": "New World Cider", - "category": "Standard Cider And Perry", - "category_id": "C1", - "style_id": "C1A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "cider", - "appearance": "Clear to brilliant, pale to medium gold in color.", - "flavor": "Sweet or low-alcohol ciders may have apple aroma and flavor. Dry ciders will be more wine-like with some esters. Sugar and acidity should combine to give a refreshing character. Acidity is medium to high, refreshing, but must not be harsh or biting.", - "mouthfeel": "Medium body. Some tannin should be present for slight to moderate astringency, but little bitterness.", - "comments": "An ideal cider serves well as a \"session\" drink, and suitably accompanies a wide variety of food.", - "profile": "Clear to brilliant, pale to medium gold in color.Sweet or low-alcohol ciders may have apple aroma and flavor. Dry ciders will be more wine-like with some esters. Sugar and acidity should combine to give a refreshing character. Acidity is medium to high, refreshing, but must not be harsh or biting. Medium body. Some tannin should be present for slight to moderate astringency, but little bitterness. An ideal cider serves well as a \"session\" drink, and suitably accompanies a wide variety of food.", - "overall_impression": "A refreshing drink of some substance – not bland or watery. Sweet ciders must not be cloying. Dry ciders must not be too austere.", - "notes": "A refreshing drink of some substance – not bland or watery. Sweet ciders must not be cloying. Dry ciders must not be too austere.", - "examples": "[US] Uncle John's Fruit House Winery Apple Hard Cider, Tandem Ciders Pretty Penny (MI), Bellwether Spyglass (NY), West County Pippin (MA), White Winter Hard Apple Cider (WI), Wandering Aengus Ciderworks Bloom (OR), Æppeltreow Appely Brut and Doux (WI).", - "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 categories). If OG is substantially above typical range, entrant should explain, e.g., particular variety of apple giving high-gravity juice. Varieties: Common (Winesap, Macintosh, Golden Delicious, Braeburn, Jonathan), multi-use (Northern Spy, Russets, Baldwin), crabapples, any suitable wildings.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.065 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 0.995 - }, - "maximum": { - "unit": "sg", - "value": 1.02 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 8 - } - } - }, - { - "name": "English Cider", - "category": "Standard Cider And Perry", - "category_id": "C1", - "style_id": "C1B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "cider", - "appearance": "Barely cloudy to brilliant. Medium yellow to amber color.", - "flavor": "No overt apple character, but various flavors and esters that suggest apples, particularly tannic varieties. English-style ciders commonly go through MLF (see Introduction/Aroma-and-Flavor) which produces desirable spicy/smoky, phenolic, and farmyard/old-horse characters. These flavor notes are positive but not required. If present, they must not dominate; in particular, the phenolic and farmyard notes should not be heavy. A strong farmyard character without spicy/smoky or phenolic suggests a Brettanomyces contamination, which is a fault. Mousiness is a serious fault.", - "mouthfeel": "Full. Moderate to high tannin, perceived as astringency and some bitterness. Carbonation still to moderate. Bottle-fermented or -conditioned ciders may have high carbonation, up to champagne levels, but not gushing or foaming.", - "comments": "Sweet examples exist, but dry is most traditional, particularly when considering the drying contributions of tannin.", - "profile": "Barely cloudy to brilliant. Medium yellow to amber color.No overt apple character, but various flavors and esters that suggest apples, particularly tannic varieties. English-style ciders commonly go through MLF (see Introduction/Aroma-and-Flavor) which produces desirable spicy/smoky, phenolic, and farmyard/old-horse characters. These flavor notes are positive but not required. If present, they must not dominate; in particular, the phenolic and farmyard notes should not be heavy. A strong farmyard character without spicy/smoky or phenolic suggests a Brettanomyces contamination, which is a fault. Mousiness is a serious fault. Full. Moderate to high tannin, perceived as astringency and some bitterness. Carbonation still to moderate. Bottle-fermented or -conditioned ciders may have high carbonation, up to champagne levels, but not gushing or foaming. Sweet examples exist, but dry is most traditional, particularly when considering the drying contributions of tannin.", - "overall_impression": "Generally dry, full-bodied, austere. Complex flavor profile, long finish.", - "notes": "Generally dry, full-bodied, austere. Complex flavor profile, long finish.", - "examples": "[US] Westcott Bay Traditional Very Dry, Dry and Medium Sweet (WA), Farnum Hill Extra-Dry, Dry, and Farmhouse (NH), Wandering Aengus Oaked Dry (OR), Montana CiderWorks North Fork (MT), Bellwether Heritage (NY). [UK] Oliver's Traditional Dry, Hogan's Dry and Medium Dry, Henney's Dry and Vintage Still, Burrow Hill Medium, Aspall English Imperial.", - "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (dry through medium-sweet, 4 levels). Entrants MAY specify variety of apple for a single varietal cider; if specified, varietal character will be expected. Varieties: Kingston Black, Stoke Red, Dabinett, Porter's Perfection, Nehou, Yarlington Mill, Major, various Jerseys, etc.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 0.995 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6 - }, - "maximum": { - "unit": "%", - "value": 9 - } - } - }, - { - "name": "French Cider", - "category": "Standard Cider And Perry", - "category_id": "C1", - "style_id": "C1C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "cider", - "appearance": "Clear to brilliant, medium yellow to amber color.", - "flavor": "Fruity character/aroma. This may come from slow or arrested fermentation (in the French technique of défécation) or approximated by back-sweetening with juice. Tends to a rich fullness. MLF notes of spicy-smoky, phenolic, and farmyard are common but not required (just as with English style), and must not be pronounced. The French expect more subtle MLF character than do the English.", - "mouthfeel": "Medium to full, mouth-filling. Moderate tannin, perceived mainly as astringency. Carbonation moderate to champagne-like, but at higher levels it must not gush or foam.", - "comments": "Typically made sweet to balance the tannin levels from the traditional apple varieties.", - "profile": "Clear to brilliant, medium yellow to amber color.Fruity character/aroma. This may come from slow or arrested fermentation (in the French technique of défécation) or approximated by back-sweetening with juice. Tends to a rich fullness. MLF notes of spicy-smoky, phenolic, and farmyard are common but not required (just as with English style), and must not be pronounced. The French expect more subtle MLF character than do the English. Medium to full, mouth-filling. Moderate tannin, perceived mainly as astringency. Carbonation moderate to champagne-like, but at higher levels it must not gush or foam. Typically made sweet to balance the tannin levels from the traditional apple varieties.", - "overall_impression": "Medium to sweet, full-bodied, rich.", - "notes": "Medium to sweet, full-bodied, rich.", - "examples": "[US] West County Reine de Pomme (MA), [France] Eric Bordelet (various), Etienne Dupont, Etienne Dupont Organic, Bellot", - "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (medium to sweet only, 3 levels). Entrants MAY specify variety of apple for a single varietal cider; if specified, varietal character will be expected. Varieties: Nehou, Muscadet de Dieppe, Reine des Pommes, Michelin, etc.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.065 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.02 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3 - }, - "maximum": { - "unit": "%", - "value": 6 - } - } - }, - { - "name": "New World Perry", - "category": "Standard Cider And Perry", - "category_id": "C1", - "style_id": "C1D", - "style_letter": "D", - "style_guide": "BJCP2015", - "type": "cider", - "appearance": "Slightly cloudy to clear. Generally quite pale.", - "flavor": "There is a pear character, but not obviously fruity. It tends toward that of a young white wine. No bitterness.", - "mouthfeel": "Relatively full, low to moderate tannin apparent as astringency.", - "comments": "Some table pears may contain significant amounts of sorbitol, in which case a dry perry may give an impression of sweetness due to sorbitol in the pears. Perception of sorbitol as sweet is highly variable from one person to the next. Hence, entrants should specify sweetness according to actual residual sugar amount, and judges must be aware that they might perceive more sweetness than how the perry was entered.", - "profile": "Slightly cloudy to clear. Generally quite pale.There is a pear character, but not obviously fruity. It tends toward that of a young white wine. No bitterness. Relatively full, low to moderate tannin apparent as astringency. Some table pears may contain significant amounts of sorbitol, in which case a dry perry may give an impression of sweetness due to sorbitol in the pears. Perception of sorbitol as sweet is highly variable from one person to the next. Hence, entrants should specify sweetness according to actual residual sugar amount, and judges must be aware that they might perceive more sweetness than how the perry was entered.", - "overall_impression": "Mild. Medium to medium-sweet. Still to lightly sparkling. Only very slight acetification is acceptable. Mousiness, ropy/oily characters are serious faults.", - "notes": "Mild. Medium to medium-sweet. Still to lightly sparkling. Only very slight acetification is acceptable. Mousiness, ropy/oily characters are serious faults.", - "examples": "[US] White Winter Paarynat (WI), Uncle John's Fruit House Winery Perry (MI)", - "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 categories). Varieties: Bartlett, Kiefer, Comice, Conference, etc.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1 - }, - "maximum": { - "unit": "sg", - "value": 1.02 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 7 - } - } - }, - { - "name": "Traditional Perry", - "category": "Standard Cider And Perry", - "category_id": "C1", - "style_id": "C1E", - "style_letter": "E", - "style_guide": "BJCP2015", - "type": "cider", - "appearance": "Slightly cloudy to clear. Generally quite pale.", - "flavor": "There is a pear character, but not obviously fruity. It tends toward that of a young white wine. Some slight bitterness.", - "mouthfeel": "Relatively full, moderate to high tannin apparent as astringency.", - "comments": "Note that a dry perry may give an impression of sweetness due to sorbitol in the pears, and perception of sorbitol as sweet is highly variable from one person to the next. Hence entrants should specify sweetness according to actual residual sugar amount, and judges must be aware that they might perceive more sweetness than how the perry was entered.", - "profile": "Slightly cloudy to clear. Generally quite pale.There is a pear character, but not obviously fruity. It tends toward that of a young white wine. Some slight bitterness. Relatively full, moderate to high tannin apparent as astringency. Note that a dry perry may give an impression of sweetness due to sorbitol in the pears, and perception of sorbitol as sweet is highly variable from one person to the next. Hence entrants should specify sweetness according to actual residual sugar amount, and judges must be aware that they might perceive more sweetness than how the perry was entered.", - "overall_impression": "Tannic. Medium to medium-sweet. Still to lightly sparkling. Only very slight acetification is acceptable. Mousiness and ropy/oily characters are serious faults.", - "notes": "Tannic. Medium to medium-sweet. Still to lightly sparkling. Only very slight acetification is acceptable. Mousiness and ropy/oily characters are serious faults.", - "examples": "[US] Æppeltreow Orchard Oriole Perry (WI); [France] Bordelet Poire Authentique and Poire Granit, Christian Drouin Poire, [UK] Oliver's Classic, Blakeney Red, and Herefordshire Dry; Hogan's Vintage Perry.", - "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 categories). Entrants MUST state variety of pear(s) used. Varieties: Butt, Gin, Brandy, Barland, Blakeney Red, Thorn, Moorcroft, etc.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.07 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1 - }, - "maximum": { - "unit": "sg", - "value": 1.02 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 9 - } - } - }, - { - "name": "New England Cider", - "category": "Specialty Cider And Perry", - "category_id": "C2", - "style_id": "C2A", - "style_letter": "A", - "style_guide": "BJCP2015", - "type": "cider", - "appearance": "Clear to brilliant, pale to medium yellow.", - "flavor": "A flavorful cider with robust apple character, strong alcohol, and derivative flavors from sugar additives; traditionally dry.", - "mouthfeel": "Substantial, alcoholic. Moderate tannin.", - "comments": "Additives may include white and brown sugars, molasses, small amounts of honey, and raisins. Additives are intended to raise OG well above that which would be achieved by apples alone. This style is sometimes barrel-aged, in which case there will be oak character as with a barrel-aged wine. If the barrel was formerly used to age spirits, some flavor notes from the spirit (e.g., whisky or rum) may also be present, but must be subtle.", - "profile": "Clear to brilliant, pale to medium yellow.A flavorful cider with robust apple character, strong alcohol, and derivative flavors from sugar additives; traditionally dry. Substantial, alcoholic. Moderate tannin. Additives may include white and brown sugars, molasses, small amounts of honey, and raisins. Additives are intended to raise OG well above that which would be achieved by apples alone. This style is sometimes barrel-aged, in which case there will be oak character as with a barrel-aged wine. If the barrel was formerly used to age spirits, some flavor notes from the spirit (e.g., whisky or rum) may also be present, but must be subtle.", - "notes": "", - "examples": "[US] Snowdrift Semi-Dry (WA), Blackbird Cider Works New England Style (NY).", - "entry_instructions": "Entrants MUST specify if the cider was barrel-fermented or aged. Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 levels). Varieties: Northern Spy, Roxbury Russet, Golden Russet, Baldwin, etc.; many traditional New England apples.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.06 - }, - "maximum": { - "unit": "sg", - "value": 1.1 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 0.995 - }, - "maximum": { - "unit": "sg", - "value": 1.02 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 7 - }, - "maximum": { - "unit": "%", - "value": 13 - } - } - }, - { - "name": "Cider with Other Fruit", - "category": "Specialty Cider And Perry", - "category_id": "C2", - "style_id": "C2B", - "style_letter": "B", - "style_guide": "BJCP2015", - "type": "cider", - "appearance": "Clear to brilliant. Color appropriate to added fruit, but should not show oxidation characteristics. (For example, red berries should give red-to-purple color, not orange.)", - "flavor": "The cider character must be present and must fit with the other fruits. It is a fault if the added fruit(s) completely dominate; a judge might ask, Would this be different if neutral spirits replaced the cider? A fruit cider should not be like an alco-pop. Oxidation is a fault.", - "mouthfeel": "Substantial. May be significantly tannic, depending on fruit added.", - "profile": "Clear to brilliant. Color appropriate to added fruit, but should not show oxidation characteristics. (For example, red berries should give red-to-purple color, not orange.)The cider character must be present and must fit with the other fruits. It is a fault if the added fruit(s) completely dominate; a judge might ask, Would this be different if neutral spirits replaced the cider? A fruit cider should not be like an alco-pop. Oxidation is a fault. Substantial. May be significantly tannic, depending on fruit added.", - "overall_impression": "Like a white wine with complex flavors. The apple character must marry with the added fruit so that neither one dominates the other.", - "notes": "Like a white wine with complex flavors. The apple character must marry with the added fruit so that neither one dominates the other.", - "examples": "[US] West County Blueberry-Apple Wine (MA), Bellwether Cherry Street (NY), Uncle John's Fruit Farm Winery Apple Cherry, Apple Blueberry, and Apricot Apple Hard Cider (MI)", - "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 categories). Entrants MUST specify all fruit(s) and/or fruit juice(s) added.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.07 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 0.995 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 9 - } - } - }, - { - "name": "Applewine", - "category": "Specialty Cider And Perry", - "category_id": "C2", - "style_id": "C2C", - "style_letter": "C", - "style_guide": "BJCP2015", - "type": "cider", - "appearance": "Clear to brilliant, pale to medium-gold. Cloudiness or hazes are inappropriate.", - "flavor": "Comparable to a New World Cider. Cider character must be distinctive. Very dry to sweet, although often dry.", - "mouthfeel": "Lighter than other ciders, because higher alcohol is derived from addition of sugar rather than juice. Carbonation may range from still to champagne-like.", - "profile": "Clear to brilliant, pale to medium-gold. Cloudiness or hazes are inappropriate.Comparable to a New World Cider. Cider character must be distinctive. Very dry to sweet, although often dry. Lighter than other ciders, because higher alcohol is derived from addition of sugar rather than juice. Carbonation may range from still to champagne-like.", - "overall_impression": "Typically like a dry white wine, balanced, and with low astringency and bitterness.", - "notes": "Typically like a dry white wine, balanced, and with low astringency and bitterness.", - "examples": "[US] Uncle John's Fruit House Winery Fruit House Apple (MI), McClure's Sweet Apple Wine (IN).", - "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 levels).", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.07 - }, - "maximum": { - "unit": "sg", - "value": 1.1 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 0.995 - }, - "maximum": { - "unit": "sg", - "value": 1.02 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 9 - }, - "maximum": { - "unit": "%", - "value": 12 - } - } - }, - { - "name": "Ice Cider", - "category": "Specialty Cider And Perry", - "category_id": "C2", - "style_id": "C2D", - "style_letter": "D", - "style_guide": "BJCP2015", - "type": "cider", - "appearance": "Brilliant. Color is deeper than a standard cider, gold to amber.", - "flavor": "Fruity, smooth, sweet-tart. Acidity must be enough to prevent it being cloying.", - "mouthfeel": "Full body. May be tannic (astringent and/or bitter) but this should be slight, to moderate at most.", - "profile": "Brilliant. Color is deeper than a standard cider, gold to amber.Fruity, smooth, sweet-tart. Acidity must be enough to prevent it being cloying. Full body. May be tannic (astringent and/or bitter) but this should be slight, to moderate at most.", - "notes": "", - "examples": "[US] various from Eden Ice Cider Company and Champlain Orchards. [Canada] Domaine Pinnacle, Les Vergers de la Colline, and Cidrerie St-Nicolas (Quebec).", - "entry_instructions": "Entrants MUST specify starting gravity, final gravity or residual sugar, and alcohol level. Entrants MUST specify carbonation level (3 levels). Varieties: Usually North American classic table fruit such as McIntosh or Cortland.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.13 - }, - "maximum": { - "unit": "sg", - "value": 1.18 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.06 - }, - "maximum": { - "unit": "sg", - "value": 1.085 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 7 - }, - "maximum": { - "unit": "%", - "value": 13 - } - } - }, - { - "name": "Cider with Herbs/Spices", - "category": "Specialty Cider And Perry", - "category_id": "C2", - "style_id": "C2E", - "style_letter": "E", - "style_guide": "BJCP2015", - "type": "cider", - "appearance": "Clear to brilliant. Color appropriate to added botanicals.", - "flavor": "The cider character must be present and must fit with the botanicals. As with a fruit cider, it is a fault if the botanicals dominate; a judge might ask, Would this be different if neutral spirits replaced the cider? Oxidation of either the base cider or the additions is a fault.", - "mouthfeel": "Average or more. Cider may be tannic from effect of botanicals but must not be bitter from over-extraction.", - "profile": "Clear to brilliant. Color appropriate to added botanicals.The cider character must be present and must fit with the botanicals. As with a fruit cider, it is a fault if the botanicals dominate; a judge might ask, Would this be different if neutral spirits replaced the cider? Oxidation of either the base cider or the additions is a fault. Average or more. Cider may be tannic from effect of botanicals but must not be bitter from over-extraction.", - "overall_impression": "Like a white wine with complex flavors. The apple character must marry with the botanicals and give a balanced result.", - "notes": "Like a white wine with complex flavors. The apple character must marry with the botanicals and give a balanced result.", - "examples": "[US] Colorado Cider Grasshop-ah (CO), Wandering Aengus Anthem Hops (OR).", - "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 categories). Entrants MUST specify all botanicals added. If hops are used, entrant must specify variety/varieties used.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.07 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 0.995 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 9 - } - } - }, - { - "name": "Specialty Cider/Perry", - "category": "Specialty Cider And Perry", - "category_id": "C2", - "style_id": "C2F", - "style_letter": "F", - "style_guide": "BJCP2015", - "type": "cider", - "appearance": "Clear to brilliant. Color should be that of a standard cider unless other ingredients are expected to contribute color.", - "flavor": "The cider character must always be present, and must fit with added ingredients. If a spirit barrel was used, the character of the spirit (rum, whiskey, etc.) must be no more than just recognizable; it must not be a substantial element of the flavor.", - "mouthfeel": "Average body, may show tannic (astringent) or heavy body as determined by other ingredients.", - "profile": "Clear to brilliant. Color should be that of a standard cider unless other ingredients are expected to contribute color.The cider character must always be present, and must fit with added ingredients. If a spirit barrel was used, the character of the spirit (rum, whiskey, etc.) must be no more than just recognizable; it must not be a substantial element of the flavor. Average body, may show tannic (astringent) or heavy body as determined by other ingredients.", - "notes": "", - "examples": "[US] Finn River Fire Barrel (WA)", - "entry_instructions": "Entrants MUST specify all ingredients. Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 categories).", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.1 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 0.995 - }, - "maximum": { - "unit": "sg", - "value": 1.02 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 12 - } - } - } - ] - } -} diff --git a/beer/static/bjcp/2021.json b/beer/static/bjcp/2021.json deleted file mode 100644 index 9f01872..0000000 --- a/beer/static/bjcp/2021.json +++ /dev/null @@ -1,6885 +0,0 @@ -{ - "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", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.026 - }, - "maximum": { - "unit": "sg", - "value": 1.034 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 28 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.006 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 2.4 - }, - "maximum": { - "unit": "%", - "value": 3.6 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 1.5 - }, - "maximum": { - "unit": "SRM", - "value": 4 - } - }, - "ingredients": "Continental Pils malt. German lager yeast.Traditional German hops.", - "examples": "Autenrieder Schlossbräu Leicht, Greif Bräu Leicht, Hohenthanner Tannen Hell Leicht, Müllerbrau Heimer Leicht, Schönramer Surtaler Schankbier, Waldhaus Sommer Bier", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Kölsch", - "category": "Pale Bitter European Beer", - "category_id": "5", - "style_id": "5B", - "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 subtle, brilliantly clear, pale beer with a delicate balance of malt, fruit, and hop character, moderate bitterness, and a well-attenuated but soft finish. Freshness makes a huge difference with this beer, as the delicate character can fade quickly with age.", - "aroma": "Low to very low grainy-sweet malt aroma. A subtle fruit aroma (apple, pear, or sometimes cherry) is optional, but welcome. Low floral, spicy, or herbal hop aroma optional. The intensity of aromatics is fairly subtle but generally balanced, clean, fresh, and pleasant.", - "appearance": "Medium yellow to light gold. Brilliant clarity. Has a delicate white head that may not persist.", - "flavor": "A delicate flavor balance between malt, fruitiness, bitterness, and hops, with a clean, well-attenuated finish. The medium to medium-low grainy maltiness may have very light bready or honey notes. The fruitiness can have an almost imperceptible sweetness.Medium-low to medium bitterness. Low to moderately-high floral, spicy, or herbal hop flavor; most are medium-low to medium. May have a neutral-grainy to light malty sweet impression at the start. Soft, rounded palate. Finish is soft, dry, and slightly crisp, not sharp or biting. No noticeable residual sweetness. While the balance between the flavor components can vary, none are ever strong.", - "mouthfeel": "Medium-light to medium body; most are medium-light. Medium to medium-high carbonation. Smooth and soft, but well-attenuated and not heavy. Not harsh.", - "comments": "A traditional top-fermented, lagered beer from Cologne, Germany (Köln). Köln breweriesdifferentiate themselves throughbalance, so allow for a range of variation within the style when judging. Drier versions may seem hoppier or more bitter than the IBU levels might suggest. The delicate flavor profile does not age well, so be alert for oxidation defects. Served in Köln in a tall, narrow 20cl glass called a Stange.", - "history": "Köln has a top-fermenting brewing tradition since the Middle Ages, but the beer now known as Kölsch was developed in the late 1800s as an alternative to pale lagers. Bottom fermentation was actually prohibited in Cologne. Kölsch is an appellation protected by the Kölsch Konvention (1986), and is restricted to breweries in and around Köln. The Konvention simply defines the beer as a “light, highly attenuated, hop-accentuated, clear, top-fermenting Vollbier.”", - "style_comparison": "Can be mistaken for a Cream Ale or somewhat subtle German Pils.", - "tags": "standard-strength, pale-color, top-fermented, lagered, central-europe, traditional-style, pale-ale-family, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.05 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.007 - }, - "maximum": { - "unit": "sg", - "value": 1.011 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.4 - }, - "maximum": { - "unit": "%", - "value": 5.2 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3.5 - }, - "maximum": { - "unit": "SRM", - "value": 5 - } - }, - "ingredients": "Traditional German hops. German Pils, Pale, or Vienna malt. Attenuative, clean German ale yeast. Occasional small use of wheat malt. Current commercial practice is to ferment around 15 °C, cold condition near freezing for up to a month, and serve fresh.", - "examples": "Früh Kölsch, Gaffel Kölsch, Mühlen Kölsch, Päffgen Kolsch, Reissdorf Kölsch, Sion Kölsch, Sünner Kölsch", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "German Helles Exportbier", - "category": "Pale Bitter European Beer", - "category_id": "5", - "style_id": "5C", - "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 goldenGerman lager balancing a smooth malty profile with a bitter, hoppy character in a slightly above-average body and strength beer.", - "aroma": "Medium-low to medium floral, spicy, or herbal hop aroma. Moderate grainy-sweet malt aroma, possibly with light toasty, bready, or doughy notes. Clean fermentation profile. Hops and malt both noticeable, and generally balanced.", - "appearance": "Medium yellow to deep gold. Clear. Persistent white head.", - "flavor": "Moderate, balanced malt and hops with supporting bitterness. Malt and hop flavors similar to aroma (same descriptors and intensities). Medium, noticeable bitterness, full on the palate, with a medium-dry finish. Clean fermentation character. Aftertaste of both malt and hops, generally in balance. Mineral character typically perceived more as a roundness and fullness of flavor, and a dry, flinty sharpness in the finish rather than overt mineral flavors. Backgroundsulfate optional.", - "mouthfeel": "Medium to medium-full body.Medium carbonation. Smooth and mellow on the palate. Very slight warmth may be noted in stronger versions.", - "comments": "Also known Dortmunder Export, Dortmunder, Export, or simply a Dort. Called Export within Germany, and often Dortmunder elsewhere, Export is also a beer strength descriptor under German brewing tradition, and could be applied to other styles. Splits the difference between a German Pils and a Munich Helles in several aspects: color, hop-malt balance, finish, bitterness.", - "history": "Developed in Dortmund in the Ruhr industrial region in the 1870s in response to pale Pilsner-type beers.It became very popular after World War II but declined in the 1970s. Other Export-class beers developed independently, and reflected a slightly stronger version of existing beers.", - "style_comparison": "Less finishing hops and more body than a German Pils. More bitter and drier than a Munich Helles. Stronger, drier,but less hoppy than a Czech Premium Pale Lager.", - "tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.058 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 6 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 4 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "ingredients": "Minerally water with high levels of sulfates, carbonates, and chlorides.Traditional German or Czech hops. Pilsner malt. German lager yeast. Decoction mash traditional.", - "examples": "Chuckanut Export Dortmunder Lager, DAB Dortmunder Export, Dortmunder Kronen, Landshuter Edel Hell, Müllerbräu Export Gold, Schönramer Gold", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "German Pils", - "category": "Pale Bitter European Beer", - "category_id": "5", - "style_id": "5D", - "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, dry, bitter German lagerfeaturing a prominent hop aroma. Crisp, clean, and refreshing, showing a brilliant gold color with excellent head retention.", - "aroma": "Moderately to moderately-high flowery, spicy, or herbal hops. Low to medium grainy, sweet, or doughy malt character, often with a light honey and toasted cracker quality. Clean fermentation profile. The hops should be forward, but not totally dominate the malt in the balance.", - "appearance": "Straw to deep yellow, brilliant to very clear, with a creamy, long-lasting white head.", - "flavor": "Initial malt flavor quickly overcome with hop flavor and bitterness, leading into a dry, crisp finish. Malt and hop flavors similar to aroma (same descriptors and intensities). Medium to high bitterness, lingering into the aftertaste along with a touch of malt and hops. Clean fermentation profile. Minerally water can accentuate and lengthen the dry finish. Hops and malt can fade with age, but the beer should always have a bitter balance.", - "mouthfeel": "Medium-light body. Medium to high carbonation. Should not feel heavy. Not harsh, but may have a flinty, minerally, sharpness in some examples.", - "comments": "Modern examples of Pils tend to become paler in color, drier and sharper in finish, and more bitter moving from South to North in Germany, often mirroring increasing sulfates in the water. Pils found in Bavaria tend to be a bit softer in bitterness with more malt flavor and late hop character, yet still with sufficient hops and crispness of finish to differentiate itself from Munich Helles. The use of the term ‘Pils’ is more common in Germany than ‘Pilsner’ to differentiate it from the Czech style, and (some say) to show respect.", - "history": "Adapted from Czech Pilsner to suit brewing conditions in Germany, particularly water with higher mineral content and domestic hop varieties. First brewed in Germany in the early 1870s. Became more popular after WWII as German brewing schools emphasized modern techniques. Along with its cousin Czech Pilsner, it is the ancestor of the most widely produced beer styles today.", - "style_comparison": "Lighter in body and color, drier, crisper, more fully attenuated, more lingering bitterness, and higher carbonation than a Czech Premium Pale Lager. More hop character, malt flavor, and bitterness than International Pale Lager. More hop character and bitterness with a drier, crisper finish than a Munich Helles; the Helles has more malt intensity, but of the same character as the German Pils.", - "tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pilsner-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.05 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 22 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.4 - }, - "maximum": { - "unit": "%", - "value": 5.2 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 4 - } - }, - "ingredients": "Continental Pilsner malt.Traditional German hops.Clean German lager yeast.", - "examples": "ABK Pils Anno 1907, Jever Pilsener, König Pilsener, Paulaner Pils, Bierstadt Slow-Pour Pils, Rothaus Pils, Schönramer Pils, Trumer Pils", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Märzen", - "category": "Amber Malty European Lager", - "category_id": "6", - "style_id": "6A", - "category_description": "This category groups amber-colored, German-origin, bottom-fermented lagerbiers that have a malty balance and are vollbier to starkbier in strength.", - "overall_impression": "An amber,malty German lager with a clean, rich, toasty, bready malt flavor, restrained bitterness, and a well-attenuated finish. The overall malt impression is soft, elegant, and complex, with a rich malty aftertaste that is never cloying or heavy.", - "aroma": "Moderate malty aroma, typically rich, bready, somewhat toasty, with light bread crust notes. Clean lager fermentation character. Very lowfloral, herbal, or spicy hop aroma optional. Caramel-sweet, biscuity-dry, or roasted malt aromas are inappropriate. Very light alcohol might be detected, but should never be sharp. Clean, elegant malt richness should be the primary aroma.", - "appearance": "Amber-orange to deep reddish-copper color; should not be golden. Bright clarity, with persistent, off-white foam stand.", - "flavor": "Moderate to highrich malt flavor often initially suggests sweetness, but the finish is moderately-dry to dry. Distinctive and complex maltiness often includes a bready, toasty aspect. Hop bitterness is moderate, and the floral, herbal, or spicy hop flavor is low to none. Hops provide sufficient balance that the malty palate and finish do not seem sweet. The aftertaste is malty, with the same elegant, rich malt flavors lingering. Noticeable sweet caramel, dry biscuit, or roasted flavors are inappropriate. Clean fermentation profile.", - "mouthfeel": "Medium body, with a smooth, creamy texture that often suggests a fuller mouthfeel. Medium carbonation. Fully attenuated, without a sweet or cloying impression. May be slightly warming, but the strength should be relatively hidden.", - "comments": "Modern domestic German Oktoberfest versions are golden – see the Festbier style for this version. Export German versions (to the United States, at least) are typically orange-amber in color, have a distinctive toasty malt character, and are often labeled Oktoberfest. Many craft versions of Oktoberfest are based on this style. Historic versions of the beer tended to be darker, towards the brown color range, but there have been many ‘shades’ of Märzen (when the name is used as a strength); this style description specifically refers to the stronger amber lager version. The modern Festbier can be thought of as a lighter-bodied, pale Märzen by these terms.", - "history": "As the name suggests, brewed as a stronger “March beer” in March and lagered in cold caves over the summer. Modern versions trace back to the lager developed by Spaten in 1841, contemporaneous to the development of Vienna lager. However, the Märzen name is much older than 1841 – theearly ones were dark brown, and the name implied a strength band (14 °P) rather than a style. The amber lager style served at Oktoberfest from 1872 until 1990 when the golden Festbier was adopted as the standard festival beer.", - "style_comparison": "Not as strong and rich as a Dunkles Bock. More malt depth and richness than a Festbier, with a heavier body and slightly less hops. Less hoppy but equally malty as a Czech Amber Lager, but with a different malt profile.", - "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.054 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 24 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.6 - }, - "maximum": { - "unit": "%", - "value": 6.3 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 17 - } - }, - "ingredients": "Grist varies, although traditional German versions emphasized Munich malt. The notion of elegance is derived from the finest quality ingredients, particularly the base malts. A decoction mash is traditional, andenhances the rich malt profile.", - "examples": "Hacker-Pschorr Oktoberfest Märzen, Hofmark Märzen, Paulaner Oktoberfest, Saalfelder Ur-Saalfelder, Weltenburger Kloster Anno 1050", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Rauchbier", - "category": "Amber Malty European Lager", - "category_id": "6", - "style_id": "6B", - "category_description": "This category groups amber-colored, German-origin, bottom-fermented lagerbiers that have a malty balance and are vollbier to starkbier in strength.", - "overall_impression": "Abeechwood-smoked,malty,amber German lager. The expected Märzen profile of toasty-rich malt, restrained bitterness, clean fermentation, and a relatively dry finish is enhanced by anoticeable to intense smoke character.", - "aroma": "Blend of smoke and malt, varying in balance and intensity. The beechwood smoke character can range from subtle to fairly strong, and can seem smoky, woody, or bacon-like. The malt character can be low to moderate, and be somewhat rich, toasty, or malty-sweet. The malt and smoke components are often inversely proportional (i.e., when smoke increases, malt decreases, and vice versa). Low floral or spicy hop aroma optional. Clean fermentation profile.", - "appearance": "Very clear, with a large, creamy, rich, tan- to cream-colored head. Deep amber to coppery-brown in color, often a little darker than the underlying Märzen style.", - "flavor": "Generally follows the aroma profile, with a blend of smoke and malt in varying balance and intensity, yet always mutually supportive. Märzen-like qualities should be evident, particularly a malty, toasty richness, but the beechwood smoke flavor can be low to high. The palate can be somewhat malty, rich, and sweet, yet the finish tends to be medium-dry to dry with the smoke character sometimes enhancing the dryness of the finish. The aftertaste can reflect both malt richness and smoke flavors, with a balanced presentation desirable. Moderate, balanced, hop bitterness. Can have up to a moderate hop flavor with spicy, floral, or herbal notes. Clean lager fermentation character. The quality and character of the smoke is important; it should be cleanly smoky. At higher levels, the smoke can take on a ham- or bacon-like character, which is acceptable as long as it doesn’t veer into the greasy range. Harsh, bitter, burnt, acrid, charred, rubbery, sulfury,or creosote-like smoky-phenolic flavors are inappropriate.", - "mouthfeel": "Medium body. Medium to medium-high carbonation. Smooth lager character. Significant astringent, phenolic harshness is inappropriate.", - "comments": "Literally smoke beerin German. The smoke character and intensity varies by maltster and brewery, so allow for variation in the style when judging – not all examples are highly smoked.Many other traditional German styles are smoked; those should be entered in the 32A Classic Style Smoked Beer style. This style is only for the more common Märzen-based beer.", - "history": "A historical specialty of the city of Bamberg, in the Franconian region of Bavaria in Germany. While smoked beers certainly were made long ago, the origins of this specific style are unclear but must have been developed after Märzen was created.", - "style_comparison": "Like a Märzen with but with a balanced, sweet, smoky aroma and flavor and a somewhat darker color.", - "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, malty, smoke", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.057 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.012 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.8 - }, - "maximum": { - "unit": "%", - "value": 6 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 12 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "ingredients": "Märzen-type grist, with the addition of a sizeable quantity of German Rauchmalz (beechwood-smoked Vienna-type malt). Some breweries smoke their own malt. German lager yeast. Traditional German or Czech hops.", - "examples": "Cervejaria Bamberg Rauchbier, Göller Rauchbier, Rittmayer Rauchbier, Schlenkerla Rauchbier Märzen, Spezial Rauchbier Märzen", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Dunkles Bock", - "category": "Amber Malty European Lager", - "category_id": "6", - "style_id": "6C", - "category_description": "This category groups amber-colored, German-origin, bottom-fermented lagerbiers that have a malty balance and are vollbier to starkbier in strength.", - "overall_impression": "A strong,dark, malty German lager beer that emphasizes the malty-rich and somewhat toasty qualities of continental malts without being sweet in the finish.", - "aroma": "Medium to medium-high rich bready-malty aroma, often with moderate amounts of rich Maillard products or toasty overtones. Virtually no hop aroma. Some alcohol may be noticeable. Clean lager character, although a slight dark fruit character is allowable.", - "appearance": "Light copper to brown color, often with attractive garnet highlights. Good clarity despite the dark color. Large, creamy, persistent, off-white head.", - "flavor": "Medium to medium-high complex, rich maltiness is dominated by toasty-rich Maillard products. Some dark caramel notes may be present. Hop bitterness is generally only high enough to support the malt flavors, allowing a bit of malty sweetness to linger into the finish. Well-attenuated, not cloying. Clean fermentation profile, although the malt can provide a slight dark fruit character. No hop flavor. No roasted, burnt, or dry biscuity character.", - "mouthfeel": "Medium to medium-full bodied. Moderate to moderately low carbonation. Some alcohol warmth may be found, but should never be hot. Smooth, without harshness or astringency.", - "comments": "Decoction mashing plays an important part of flavor development, as it enhances the caramel and Maillard flavor aspects of the malt.", - "history": "Originated in the Northern German city of Einbeck, which was a brewing center and popular exporter in the days of the Hanseatic League (14th to 17th century). Recreated in Munich starting in the 17th century. “Bock” translates to “Ram” in German, which is why the animal is often used in logos and advertisements.", - "style_comparison": "Darker, with a richer malty flavor and less apparent bitterness than a Helles Bock. Less alcohol and malty richness than a Doppelbock. Stronger malt flavors and higher alcohol than a Märzen. Richer, less attenuated, and less hoppy than a Czech Amber Lager.", - "tags": "high-strength, amber-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": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 27 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.013 - }, - "maximum": { - "unit": "sg", - "value": 1.019 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.3 - }, - "maximum": { - "unit": "%", - "value": 7.2 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 14 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "ingredients": "Munich and Vienna malts, rarely a tiny bit of dark roasted malts for color adjustment, never any non-malt adjuncts. Continental European hop varieties are used. Clean German lager yeast.", - "examples": "Aass Bock, Einbecker Ur-Bock Dunkel, Kneitinger Bock, Lindeboom Bock, Schell’s Bock, Penn Brewery St. Nikolaus Bock", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Vienna Lager", - "category": "Amber Bitter European Beer", - "category_id": "7", - "style_id": "7A", - "category_description": "This category groups amber-colored, evenly balanced to bitter balanced beers of German or Austrian origin.", - "overall_impression": "A moderate-strength continental amber lager with a soft, smooth maltiness and a balanced, moderate bitterness, yet finishing relatively dry. The malt flavor is clean, bready-rich, and somewhat toasty, with an elegant impression derived from quality base malts and process, not specialty malts or adjuncts.", - "aroma": "Moderately-intense malt aroma, with toasty and malty-rich accents. Floral, spicy hop aroma may be low to none. Clean lager character. A significant caramel, biscuity, or roasted aroma is inappropriate.", - "appearance": "Light reddish amber to copper color. Bright clarity. Large, off-white, persistent head.", - "flavor": "Soft, elegant malt complexity is in the forefront, with a firm enough hop bitterness to provide a balanced finish. The malt flavor tends towards a rich, toasty character, without significant caramel, biscuity, or roast flavors. Fairly dry, soft finish, with both rich malt and hop bitterness present in the aftertaste. Floral, spicy, or herbal hop flavor may be low to none. Clean fermentation profile.", - "mouthfeel": "Medium-light to medium body, with a gentle creaminess. Moderate carbonation. Smooth.", - "comments": "A standard-strength everyday beer, not a beer brewed for festivals. Many traditional examples have become sweeter and more adjunct-laden, now seeming more like International Amber or Dark Lagers.", - "history": "Developed by Anton Dreher in Vienna in 1841, became popular in the mid-late 1800s. The style was brought to Mexico by Santiago Graf and other Austrian immigrant brewers in the late 1800s. Seems to be embraced as a modern craft style in other countries.", - "style_comparison": "Similar malt flavor as a Märzen, but lighter in intensity, and body, with a touch more bitterness and dryness in the balance. Lower in alcohol than Märzen or Festbier. Less rich, malty, and hoppythan Czech Amber Lager.", - "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.055 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.7 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 9 - }, - "maximum": { - "unit": "SRM", - "value": 15 - } - }, - "ingredients": "Traditionally, best-quality Vienna malt,but can also use Pils and Munich malts. Traditional continental hops. Clean German lager yeast. May use small amounts of specialty malts for color and sweetness.", - "examples": "Chuckanut Vienna Lager, Devils Backbone Vienna Lager, Figueroa Mountain Red Lager, Heavy Seas Cutlass, Ottakringer Wiener Original, Schell’s Firebrick, Theresianer Vienna", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Altbier", - "category": "Amber Bitter European Beer", - "category_id": "7", - "style_id": "7B", - "category_description": "This category groups amber-colored, evenly balanced to bitter balanced beers of German or Austrian origin.", - "notes": "Malt profile similar to the aroma, with an assertive, medium to high hop bitterness balancing the rich malty flavors. The beer finishes medium-dry to dry with a grainy, bitter, malty-rich aftertaste.The finish is long-lasting, sometimes with a nutty or bittersweet impression. The apparent bitterness level is sometimes masked by the malt character if the beer is not very dry, but the bitterness tends to scale with the malt richness to maintain balance. No roast. No harshness. Clean fermentation profile. Light fruity esters, especially dark fruit, may be present. Medium to low spicy, peppery, or floral hop flavor. Light minerally character optional.", - "overall_impression": "A moderately colored, well-attenuated, bitter beer with a rich maltiness balancing a strong bitterness. Light and spicy hop character complements the malt. A dry beer with a firm body and smooth palate.", - "aroma": "Malty and rich with grainy characteristics like baked bread or nutty, toasted bread crusts. Should not have darker roasted or chocolate notes. Malt intensity is moderate to moderately-high. Moderate to low hops complement but do not dominate the malt, and often have a spicy, peppery, or floral character. Fermentation character is very clean. Low to medium-low esters optional.", - "appearance": "The color ranges from amber to deep copper, stopping short of brown; bronze-orange is most common. Brilliant clarity. Thick, creamy, long-lasting off-white head.Flavor", - "mouthfeel": "Medium body. Smooth. Medium to medium-high carbonation. Astringency low to none.", - "comments": "Classic, traditional examples in the Altstadt (“old town”) section of Düsseldorf are served from casks.Most examples have a balanced (25-35 IBU) bitterness, not the aggressive hop character of the well-known Zum Uerige.Stronger sticke and doppelsticke beers should be entered in the 27 Historical Beer style instead.", - "history": "Developed in the late 19th century in Düsseldorf to use lager techniques to compete with lager. Older German styles were brewed in the area but there is no linkage to modern Altbier.", - "style_comparison": "More bitter and malty than International Amber Lagers. Somewhat similar to California Common, both in production technique and finished flavor and color, though not in ingredients. Less alcohol, less malty richness, and more bitterness than a Dunkles Bock. Drier, richer, and more bitter than a Vienna Lager.", - "tags": "standard-strength, amber-color, top-fermented, lagered, central-europe, traditional-style, amber-ale-family, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.052 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 50 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.3 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 9 - }, - "maximum": { - "unit": "SRM", - "value": 17 - } - }, - "ingredients": "Grists vary, but usually consist of German base malts (usually Pils, sometimes Munich) with small amounts of crystal, chocolate, or black malts.May include some wheat, including roasted wheat. Spalt hops are traditional, but other traditional German or Czech hops can be used. Clean, highly attenuative ale yeast. A step mash program is traditional. Fermented at cool ale temperatures, then cold conditioned.", - "examples": "Bolten Alt, Diebels Alt, Füchschen Alt, Original Schlüssel Alt, Schlösser Alt, Schumacher Alt, Uerige Altbier", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Munich Dunkel", - "category": "Dark European Lager", - "category_id": "8", - "style_id": "8A", - "category_description": "This category contains German vollbier lagers darker than amber-brown color.", - "overall_impression": "A traditional malty brown lager from Bavaria. Deeply toasted, bready malt flavors without any roasty or burnt flavors. Smooth and rich, with a restrained bitterness and a relatively dry finish that allows for drinking in quantity.", - "aroma": "Moderate to high malt richness, like toasted bread crusts with hints of chocolate, nuts, caramel, or toffee. Fresh traditional versions often show higher levels of chocolate. The malt character is more malty-rich than sugary or caramelly sweet.Clean fermentation profile. A light spicy, floral, or herbal hop aroma is optional.", - "appearance": "Deep copper to dark brown, often with a red or garnet tint. Creamy, light to medium tan head. Usually clear.", - "flavor": "Rich malt flavors similar to aroma (same malt descriptors apply), medium to high. Restrained bitterness, medium-low to medium, giving an overall malty balance. Malty and soft on the palate without being overly sweet, and medium-dry in the finish with a malty aftertaste. No roast, burnt, or bitter malt flavors, toasted flavors shouldn’t have a harsh grainy dryness, and caramel flavors should not be sweet. Low spicy, herbal, or floral hop flavor optional. Clean fermentation profile.", - "mouthfeel": "Medium to medium-full body, providing a soft and dextrinous mouthfeel without being heavy or cloying. Moderate carbonation. Smooth lager character. No harsh or biting astringency. Not warming.", - "comments": "A traditional Munich style, the dark companion to Helles. Franconian versions are more bitter than ones from Munich.", - "history": "Developed at Spaten in the 1830s after the development of Munich malt, and seen as a successor to dark regional beers of the time. While originating in Munich, the style became popular throughout Bavaria (especially Franconia).", - "style_comparison": "Not as intense in maltiness or as strong as a Dunkles Bock. Lacking the more roasted flavors and often the hop bitterness of a Schwarzbier. Richer, more malt-centric, and less hoppy than a Czech Dark Lager.", - "tags": "standard-strength, dark-color, bottom-fermented, lagered, central-europe, traditional-style, malty, dark-lager-family", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.056 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 28 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 5.6 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 17 - }, - "maximum": { - "unit": "SRM", - "value": 28 - } - }, - "ingredients": "Traditionally, Munich malts, but Pils and Vienna can be used too. Light use of specialty malts for color and depth. Decoction mash traditional. German hops and lager yeast.", - "examples": "Ayinger Altbairisch Dunkel, Ettaler Kloster-Dunkel, Eittinger Urtyp Dunkel, Hacker-Pschorr Münchner Dunkel, Hofbräuhaus Dunkel, Weltenburger Kloster Barock-Dunkel", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Schwarzbier", - "category": "Dark European Lager", - "category_id": "8", - "style_id": "8B", - "category_description": "This category contains German vollbier lagers darker than amber-brown color.", - "overall_impression": "A dark German lager that balances roasted yet smooth malt flavors with moderate hop bitterness. The lighter body, dryness, and lack of a harsh, burnt, or heavy aftertaste helps make this beer quite drinkable.", - "aroma": "Low to moderate malt, with low aromatic malty sweetness and hints of roast malt often apparent. The malt can be clean and neutral or moderately rich and bready, and may have a hint of dark caramel. The roast character can be somewhat dark chocolate- or coffee-like but should never be burnt. A moderately low spicy, floral, or herbal hop aroma is optional. Clean lager yeast character.", - "appearance": "Medium to very dark brown in color, often with deep ruby to garnet highlights, yet almost never truly black. Very clear. Large, persistent, tan-colored head.", - "flavor": "Light to moderate malt flavor, which can have a clean, neutral character to a moderately rich, bread-malty quality. Light to moderate roasted malt flavors can give a bitter-chocolate palate that is never burnt. Medium-low to medium bitterness. Light to moderate spicy, floral, or herbal hop flavor. Clean lager character. Dry finish. Some residual sweetness is acceptable but not traditional.Aftertaste of hop bitterness with a complementary but subtle roastiness in the background.", - "mouthfeel": "Medium-light to medium body. Moderate to moderately-high carbonation. Smooth. No harshness or astringency, despite the use of dark, roasted malts.", - "comments": "Literally means black beer in German. While sometimes called a “black Pils,” the beer is rarely as dark as black or as hop-forward and bitter as a Pils. Strongly roasted, Porter-like flavors are a flaw.", - "history": "A regional specialty from Thuringia, Saxony, and Franconia in Germany. Served as the inspiration for black lagers brewed in Japan.Popularity grew after German reunification in 1990.", - "style_comparison": "In comparison with a Munich Dunkel, usually darker in color, drier on the palate, lighter in body, and with a noticeable (but not high) roasted malt edge to balance the malt base. Should not taste like an American Porter made with lager yeast. Drier, less malty, with less hop character than a Czech Dark Lager.", - "tags": "standard-strength, dark-color, bottom-fermented, lagered, central-europe, traditional-style, balanced, dark-lager-family", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.046 - }, - "maximum": { - "unit": "sg", - "value": 1.052 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.4 - }, - "maximum": { - "unit": "%", - "value": 5.4 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 19 - }, - "maximum": { - "unit": "SRM", - "value": 30 - } - }, - "ingredients": "German Munich malt and Pilsner malts for the base, withhuskless dark roasted malts that add roast flavors without burnt flavors. German hop varieties and clean German lager yeasts are traditional.", - "examples": "Chuckanut Schwarz Lager,Devils Backbone Schwartz Bier, Köstritzer Schwarzbier, Kulmbacher Mönchshof Schwarzbier, Nuezeller Original Badebier, pFriem Schwarzbier", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Doppelbock", - "category": "Strong European Beer", - "category_id": "9", - "style_id": "9A", - "category_description": "This category contains more strongly flavored and higher alcohol lagers from Germany and the Baltic region. Most are dark, but some pale versions are known.", - "overall_impression": "A strong, rich, and very malty German lager that can have both pale and dark variants. The darker versions have more richly-developed, deeper malt flavors, while the paler versions have slightly more hops and dryness.", - "aroma": "Very strong maltiness, possibly with light caramel notes, and up to a moderate alcohol aroma. Virtually no hop aroma. Dark versions have significant, rich Maillard products, deeply toasted malt, and possibly a slight chocolate-like aroma that should never be roasted or burnt. Moderately-low dark fruit, like plums,dark grapes, or fruit leather, is allowable. Pale versions have a rich and strong, often toasty, malt presence, possibly with a light floral, spicy, or herbal hop accent.", - "appearance": "Good clarity, with a large, creamy, persistent head.Dark versions are copper to dark brown in color, often with ruby highlights, and an off-white head.Pale versions are deep gold to light amber in color, with a white head.", - "flavor": "Very rich and malty. Hop bitterness varies from moderate to moderately low but always allows malt to dominate the flavor. Faint hop flavor optional. Most examples are fairly malty-sweet on the palate, but should have an impression of attenuation in the finish. The impression of sweetness comes from low hopping, not from incomplete fermentation. Clean fermentation profile.Dark versions have malt and ester flavors similar to the aroma (same descriptors and intensities).Pale versions have a strong bready and toasty malt flavor, a light floral, spicy, or herbal hop flavor, and a drier finish.", - "mouthfeel": "Medium-full to full body. Moderate to moderately-low carbonation. Very smooth without harshness, astringency. A light alcohol warmth may be noted, but it should never burn.", - "comments": "Doppelbock means double bock. Most versions are dark colored and may display the caramelizing and Maillard products of decoction mashing, but excellent pale versions also exist. The pale versions will not have the same richness and darker malt and fruit flavors of the dark versions, and may be a bit drier, hoppier, and more bitter. While most traditional examples are in the lower end of the ranges cited, the style can be considered to have no upper limit for gravity and alcohol,provided the balance remains the same.", - "history": "A Bavarian specialty originating in Munich, first made by the monks of St. Francis of Paulaby the 1700s. Historical versions were less well-attenuated than modern interpretations, thus with higher sweetness and lower alcohol levels. Was called “liquid bread” by monks, and consumed during the Lenten fast. Breweries adopted beer names ending in “-ator” after a 19th century court ruling that no one but Paulaner was allowed to use the name Salvator. Traditionally dark brown in color; paler examples are a more recent development.", - "style_comparison": "A stronger, richer, more full-bodied version of either a Dunkles Bock or a Helles Bock. Pale versions will show higher attenuation and less dark fruity character than the darker versions.", - "entry_instructions": "The entrant will specify whether the entry is a pale or a dark variant.", - "tags": "high-strength, amber-color, pale-color, bottom-fermented, lagered, central-europe, traditional-style, bock-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.072 - }, - "maximum": { - "unit": "sg", - "value": 1.112 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 16 - }, - "maximum": { - "unit": "IBUs", - "value": 26 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.016 - }, - "maximum": { - "unit": "sg", - "value": 1.024 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 7 - }, - "maximum": { - "unit": "%", - "value": 10 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 25 - } - }, - "ingredients": "Pils, Vienna, Munich malts. Occasionally dark malt for color adjustment. Traditional German hops. Clean German lager yeast. Decoction mashing is traditional.", - "examples": "Dark Versions –Andechs Doppelbock Dunkel,Ayinger Celebrator, Paulaner Salvator, Spaten Optimator, Tröegs Troegenator,Weihenstephaner Korbinian; Pale Versions – Eggenberg Urbock 23º, Meinel Doppelbock Hell, Plank Bavarian Heller Doppelbock, Riegele Auris 19, Schönbuch Doppelbock Hell, Staffelberg-Bräu Zwergator", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Eisbock", - "category": "Strong European Beer", - "category_id": "9", - "style_id": "9B", - "category_description": "This category contains more strongly flavored and higher alcohol lagers from Germany and the Baltic region. Most are dark, but some pale versions are known.", - "overall_impression": "A strong, full-bodied, rich, and malty dark German lager often with a viscous quality and strong flavors. Even though flavors are concentrated, the alcohol should be smooth and warming, not burning.", - "aroma": "Dominated by rich, intense malt and a definite alcohol presence. The malt can have bready, toasty, qualities, with some caramel or faint chocolate, often with dark fruit notes like plums or grapes. No hop aroma. Alcohol aromas should not be harsh or solventy. Clean fermentation profile.", - "appearance": "Deep copper to dark brown in color, often with attractive ruby highlights. Good clarity. Head retention may be moderate to poor. Off-white to deep ivory colored head. Pronounced legs are often evident.", - "flavor": "Rich, sweet malt balanced by a significant alcohol presence. The malt can have Maillard products, toasty qualities, some caramel, and occasionally a slight chocolate flavor. May have significant malt-derived dark fruit esters. Hop bitterness just offsets the malt sweetness enough to avoid a cloying character. No hop flavor. Alcohol helps balance the strong malt presence. The finish should be of rich malt with a certain dryness from the alcohol. It should not be sticky, syrupy, or cloyingly sweet. Clean fermentationprofile.", - "mouthfeel": "Full to very full-bodied. Low carbonation. Significant alcohol warmth without sharp hotness. Very smooth and silky without harsh edges from alcohol, bitterness, fusels, or other concentrated flavors.", - "comments": "Extended lagering is often needed post-freezing to smooth the alcohol and enhance the malt and alcohol balance. Pronounced “ICE-bock.”", - "history": "Originating in Kulmbach in Franconiain the late 1800s, although exact origins are not known. Fables describe it as coming from beer accidentally freezing at a brewery.", - "style_comparison": "Eisbocks are not simply stronger Doppelbocks; the name refers to the process of freezing and concentrating the beer, and is not a statement on alcohol; some Doppelbocks are stronger than Eisbocks. Not as thick, rich, or sweet as a Wheatwine.", - "tags": "very-high-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, bock-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.078 - }, - "maximum": { - "unit": "sg", - "value": 1.12 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.02 - }, - "maximum": { - "unit": "sg", - "value": 1.035 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 9 - }, - "maximum": { - "unit": "%", - "value": 14 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 17 - }, - "maximum": { - "unit": "SRM", - "value": 30 - } - }, - "ingredients": "Same as Doppelbock. Produced by freezing a doppelbock-like beer and removing ice (“freeze distillation”), thus concentrating flavor and alcohol, as well as any defects present. Commercial eisbocks are generally concentrated anywhere from 7% to 33% by volume.", - "examples": "Kulmbacher Eisbock", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Baltic Porter", - "category": "Strong European Beer", - "category_id": "9", - "style_id": "9C", - "category_description": "This category contains more strongly flavored and higher alcohol lagers from Germany and the Baltic region. Most are dark, but some pale versions are known.", - "overall_impression": "A strong, dark, malty beer with differentinterpretationswithin the Baltic region. Smooth, warming, and richly malty, with complex dark fruit flavors and a roasted flavor without burnt notes.", - "aroma": "Rich maltiness often containing caramel, toffee, nuts, deep toast, or licorice notes. Complex alcohol and ester profile of moderate strength, and reminiscent of plums, prunes, raisins, cherries, or currants, occasionally with a vinous Port-like quality. Deep malt accents ofdark chocolate, coffee, or molasses, but never burnt. No hops. No sourness. Smooth, not sharp, impression.", - "appearance": "Dark reddish-copper to opaque dark brown color, but not black. Thick, persistent tan-colored head. Clear, although darker versions can be opaque.", - "flavor": "As with aroma, has a rich maltiness with a complex blend of deep malt, dried fruit esters, and alcohol. The malt can have a caramel, toffee, nutty, molasses,or licorice complexity. Prominent yet smooth Schwarzbier-like roasted flavor that stops short of burnt. Light hints of black currants and dark dried fruits. Smooth palate and full finish. Starts malty-sweet but darker malt flavors quickly dominate and persist through the dryish finish, leaving a hint of roast coffee or licorice and dried fruit in the aftertaste. Medium-low to medium bitterness, just to provide balance and prevent it from seeming cloying. Hop flavor from slightly spicy hops ranges from none to medium-low.Clean fermentation profile.", - "mouthfeel": "Generally quite full-bodied and smooth, with a well-aged alcohol warmth that can be deceptive. Medium to medium-high carbonation, making it seem even more mouth-filling. Not heavy on the tongue due to carbonation level.", - "comments": "Most commercial versions are in the 7–8.5% ABV range. The best examples have a deceptive strength that makes them dangerously easy to drink. The character of these beers varies by country of origin, so be careful about generalizing based on a single example. Some beers are truer to their English roots, while others are more of the style first popularized in Poland.", - "history": "Developed indigenously (and independently) in several countries bordering the Baltic Sea after import of popular English porters and stouts was interrupted in the early 1800s. Historically top-fermented, many breweries adapted the recipes for bottom-fermenting yeast along with the rest of their production. The name Baltic Porter is recent (since the 1990s) and describes the modern collection of beers with a somewhat similar profile from these countries, not historical versions.", - "style_comparison": "Combines the body, maltiness, richness, and smoothness of a Doppelbock, the darker malt character of an English Porter, the roast flavors of a Schwarzbier, and alcohol and fruitiness of and Old Ale. Much less roasted and often lower in alcoholthan an Imperial Stout.", - "tags": "high-strength, dark-color, any-fermentation, lagered, eastern-europe, traditional-style, porter-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.06 - }, - "maximum": { - "unit": "sg", - "value": 1.09 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.016 - }, - "maximum": { - "unit": "sg", - "value": 1.024 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.5 - }, - "maximum": { - "unit": "%", - "value": 9.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 17 - }, - "maximum": { - "unit": "SRM", - "value": 30 - } - }, - "ingredients": "Generally lager yeast (cold fermented if using ale yeast, as is required when brewed in Russia). Debittered dark malt. Munich or Vienna base malt. Continental hops. May contain crystal malts or adjuncts. Brown or amber malt common in historical recipes.As a collection of regional beers, different formulations are expected.", - "examples": "Aldaris Mežpils Porteris, Baltika 6 Porter, Devils Backbone Danzig, Okocim Mistrzowski Porter, Sinebrychoff Porter, Zywiec Porter", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Weissbier", - "category": "German Wheat Beer", - "category_id": "10", - "style_id": "10A", - "category_description": "This category contains vollbier- and starkbier-strength German wheat beers without sourness, in light and dark colors.", - "overall_impression": "A pale, refreshing, lightly-hopped German wheat beer with high carbonation, dry finish, fluffy mouthfeel, and a distinctive banana-and-clove weizen yeast fermentation profile.", - "aroma": "Moderate to strong esters and phenols, typically banana and clove, often well balanced and typically stronger than the malt. Light to moderate bready, doughy, or grainy wheat aroma. Light vanilla optional. Light floral, spicy, or herbal hops optional. Bubblegum (strawberry with banana), sourness, or smoke are faults.", - "appearance": "Pale straw to gold in color. Very thick, moussy, long-lasting white head. Can be hazy and have a shine from wheat and yeast, although this can settle out in bottles.", - "flavor": "Low to moderately strong banana and clove flavor, often well balanced. Low to moderate soft, somewhat bready, doughy, or grainy wheat flavor supported by the slight Pils malt grainysweetness. Very low to moderately low bitterness. Well-rounded, flavorful palate with a relatively dry finish. Light vanilla optional.Very low floral, spicy, or herbal hop flavor optional. Anyimpression of sweetness is due more to low bitterness than any residual sweetness; a sweet or heavy finish impairs drinkability.Bubblegum, sourness, or smoke are faults. While the banana-and-clove profile is important, it should not be so strong as to be extreme and unbalanced.", - "mouthfeel": "Medium-light to medium body; never heavy. Fluffy, creamy fullness progressing to a light, spritzy finish aided by high to very high carbonation. Effervescent.", - "comments": "Also known as hefeweizen or weizenbier, particularly outside Bavaria. These beers are best enjoyed while young and fresh, as they often don’t age well. In Germany, lower-alcohol light (leicht) and non-alcoholic versions are popular. Kristall versions are filtered for brilliant clarity.", - "history": "While Bavaria has a wheat beer tradition dating back before the 1500s, brewing wheat beer used to be a monopoly reserved for Bavarian royalty. Modern Weissbier dates from 1872 when Schneider began production of its amber version. However, pale Weissbier only became popular since the 1960s (although the name historically could be used in Germany to describe beer made from air-dried malt, a different tradition). It is quite popular today, particularly in southern Germany.", - "style_comparison": "Compared to American Wheat, has a banana and clove yeast character and less bitterness. Compared to a Dunkles Weissbier, has a paler color and less malt richness and flavor.", - "entry_instructions": "The entrant may specify whether the yeast should be roused before serving.", - "tags": "standard-strength, pale-color, top-fermented, central-europe, traditional-style, wheat-beer-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.053 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 8 - }, - "maximum": { - "unit": "IBUs", - "value": 15 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.3 - }, - "maximum": { - "unit": "%", - "value": 5.6 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "ingredients": "Malted wheat, at least half the grist. Pilsner malt. Decoction mash traditional. Weizen yeast, cool fermentation temperatures.", - "examples": "Ayinger Bräuweisse, Distelhäuser Hell Weizen, Hacker-Pschorr Hefeweißbier, Hofbräuhaus Münchner Weisse, Schneider Weisse Original Weissbier, Weihenstephaner Hefeweißbier", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Dunkles Weissbier", - "category": "German Wheat Beer", - "category_id": "10", - "style_id": "10B", - "category_description": "This category contains vollbier- and starkbier-strength German wheat beers without sourness, in light and dark colors.", - "overall_impression": "A moderatelydark German wheat beer with a distinctive banana-and-clove weizen yeast fermentation profile, supported by a toasted bread or caramel malt flavor. Highly carbonated and refreshing, with a creamy, fluffy texture and light finish.", - "aroma": "Moderate esters and phenols, typically banana and clove, often well balanced with each other and with the malt. Light to moderate bready, doughy, or grainy wheat aroma, often accompanied by caramel, bread crust, or richer malt notes. Low to moderate vanilla optional. Light floral, spicy, or herbal hops optional. Bubblegum (strawberry with banana), sourness, or smoke are faults.", - "appearance": "Light copper to dark, mahogany brown in color. Very thick, moussy, long-lasting off-white head. Can be hazy and have a shine from wheat and yeast, although this can settle out in bottled versions.", - "flavor": "Low to moderately strong banana and clove flavor, often well balanced with each other and with the malt, although the malt may sometimes mask the clove impression. Low to medium-high soft, somewhat bready, doughy, or grainy wheat flavor with richer caramel, toast, or bread crust flavors. No strongly roasted flavors, but a touch of roasty dryness is allowable. Very low to low bitterness. Well-rounded, flavorful, often somewhat malty palate with a relatively dry finish.Very light to moderate vanilla optional. Low spicy, herbal, or floral hop flavor optional. Bubblegum, sourness, or smoke are faults.", - "mouthfeel": "Medium-light to medium-full body. Fluffy, creamy fullness progressing to a lighter finish, aided by moderate to high carbonation. Effervescent.", - "comments": "Often known as dunkelweizen, particularly in the United States.Increasingly rare and often being replaced by Kristall and non-alcoholic versions in Germany.", - "history": "Bavaria has a wheat beer brewing traditional hundreds of years old, but the brewing right was reserved for Bavarian royalty until the late 1700s. Old-fashioned Bavarian wheat beer was often dark, as were most beers of the time. Pale Weissbier started to become popular in the 1960s, but traditional dark wheat beer remained somewhat of an old person’s drink.", - "style_comparison": "Combines the yeast and wheat character of Weissbier with the malty richness of a Munich Dunkel. The banana-and-clove character is often less apparent than in a Weissbier due to the increased maltiness.Has a similar yeast character as Roggenbier, but without the rye flavor and increased body.", - "tags": "standard-strength, amber-color, top-fermented, central-europe, traditional-style, wheat-beer-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.057 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 10 - }, - "maximum": { - "unit": "IBUs", - "value": 18 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.3 - }, - "maximum": { - "unit": "%", - "value": 5.6 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 14 - }, - "maximum": { - "unit": "SRM", - "value": 23 - } - }, - "ingredients": "Malted wheat, at least half the grist. Munich, Vienna, or Pilsner malt. Dark wheat, caramel wheat, or color malt. Decoction mash traditional. Weizen yeast, cool fermentation temperatures.", - "examples": "Ayinger Urweisse, Ettaler Benediktiner Weißbier Dunkel, Franziskaner Hefe-Weisse Dunkel, Hirsch Dunkel Weisse, Tucher Dunkles Hefe Weizen, Weihenstephaner Hefeweißbier Dunkel", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Weizenbock", - "category": "German Wheat Beer", - "category_id": "10", - "style_id": "10C", - "category_description": "This category contains vollbier- and starkbier-strength German wheat beers without sourness, in light and dark colors.", - "overall_impression": "A strong and malty Germanwheat beer combining the best wheat and yeast flavors of a Weissbier with the rich maltiness, strength, and body of a Bock. The style range includes Bock and Doppelbock strength, with variations for pale and dark color.", - "aroma": "Medium-high to high maltyrichness with a significant bready, grainy wheatcharacter. Medium-low to medium-high weizen yeast character, typically banana and clove. Vanilla accents optional. No hops. Low to moderate alcohol, not hot or solventy. The malt, yeast, and alcohol are well balanced, complex, and inviting.Bubblegum (strawberry with banana), sourness, or smoke are faults.Dark versions have a deeper, highly toasted, bready malt richness with significant Maillard products, similar to a Dunkles Bock or dark Doppelbock.They can also have caramel and dark fruit esters, like plums, prunes, dark grapes, fruit leather, and raisins, particularly as they age. Pale versions have a grainy-sweet, bready, toasty malty richness, similar to a Helles Bock or pale Doppelbock.", - "appearance": "Very thick, moussy, long-lasting head.Can be hazy and have a shine from wheat and yeast, although this can settle out with age.Dark versions are dark amber to dark ruby-brown in color, with a light tan head.Pale versions are gold to amber in color, with a very white to off-white head.", - "flavor": "Medium-high to high malty richness with significant bready, grainywheat flavor. Low to moderate banana and spice (clove, vanilla) yeast character.No hop flavor. Low to medium-low bitterness can give a slightly sweet palate impression, but the beer typically finishes dry. Light alcohol can enhance this character. The interplay between the malt, yeast, and alcohol adds complexity and interest, which is often enhanced with age. Bubblegum, sourness, or smoke are faults.Dark versions have deeper, richly bready or toasty malt flavors with significant Maillard products, optionallywith caramel or light chocolate but not roast. Can have some dark fruit esters like plums, prunes, dark grapes, fruit leather, or raisins, particularly as they age.Pale versions have a bready, toasty, grainy-sweet malt richness.", - "mouthfeel": "Medium-full to full body. Soft, smooth, fluffy or creamy texture.Mild alcohol warmth. Moderate to high carbonation.", - "comments": "A Weissbier brewed to bock or doppelbock strength, although Schneider also produces an Eisbock version. Pale and dark versions exist, but dark is most common. Lightly oxidized Maillard products can produce some rich, intense flavors and aromas that are often seen in aged imported commercial products; fresher versions will not have this character. Well-aged examples might also take on a slight sherry-like complexity.Pale versions, like their doppelbock cousins, have less rich malt complexity and often more hop-forward. However, versions that have significant late hops or are dry-hopped should be entered in 34B Mixed-Style Beer.", - "history": "Dopplebock-strength Aventinuswas created in 1907 at the Schneider Weisse Brauhaus in Munich. Pale versions are a much more recent invention.", - "style_comparison": "Stronger and richer than a Weissbier or Dunkles Weissbier, but with similar yeast character. More directly comparable to the Doppelbock style, with the pale and dark variations. Can vary widely in strength, but most are in the Bock to Doppelbock range.", - "entry_instructions": "The entrant will specify whether the entry is a pale(SRM 6-9) or a dark(SRM 10-25) version.", - "tags": "high-strength, amber-color, pale-color, top-fermented, central-europe, traditional-style, wheat-beer-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.064 - }, - "maximum": { - "unit": "sg", - "value": 1.09 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.015 - }, - "maximum": { - "unit": "sg", - "value": 1.022 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.5 - }, - "maximum": { - "unit": "%", - "value": 9 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 25 - } - }, - "ingredients": "Malted wheat, at least half the grist. Munich, Vienna, or Pilsner malt. Color malts may be used sparingly. Decoction mash traditional. Weizen yeast, cool fermentation temperatures.", - "examples": "Dark – Plank Bavarian Dunkler Weizenbock, Penn Weizenbock,Schalchner Weisser Bock, Schneider Weisse Aventinus; Pale –Ayinger Weizenbock, Distelhäuser Weizen Bock, Ladenburger Weizenbock Hell,Weihenstephaner Vitus", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Ordinary Bitter", - "category": "British Bitter", - "category_id": "11", - "style_id": "11A", - "category_description": "The family of British bitters grew out of English pale ales as a draught product after the late 1800s. The use of crystal malts in bitters became more widespread after WWI. Traditionally served very fresh under no pressure (gravity or hand pump only) at cellar temperatures (i.e., “real ale”). Most bottled or kegged versions of UK-produced bitters are often higher-alcohol and more highly carbonated versions of cask products produced for export, and have a different character and balance than their draught counterparts in Britain (often being sweeter and less hoppy than the cask versions). These guidelines reflect the “real ale” version of the style, not the export formulations of commercial products.", - "overall_impression": "Low gravity, alcohol, and carbonation make this an easy-drinking session beer. The malt profile can vary in flavor and intensity, but should never override the overall bitter impression. Drinkability is a critical component of the style.", - "aroma": "Low to moderate malt aroma, often (but not always) with a light caramel quality. Bready, biscuity, or lightly toasty malt complexity is common. Mild to moderate fruitiness. Hop aroma can range from moderate to none, typically with a floral, earthy, resiny, or fruity character. Generally no diacetyl, although very low levels are allowed.", - "appearance": "Pale amber to light copper color. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.", - "flavor": "Medium to moderately high bitterness. Moderately low to moderately high fruity esters. Moderate to low hop flavor, typically with an earthy, resiny, fruity, or floral character. Low to medium maltiness with a dry finish. The malt profile is typically bready, biscuity, or lightly toasty. Low to moderate caramel or toffee flavors are optional. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters, and hop flavor. Generally no diacetyl, although very low levels are allowed.", - "mouthfeel": "Light to medium-light body. Low carbonation, although bottled examples can have moderate carbonation.", - "comments": "The lowest gravity member of the British Bitter family, typically known to consumers simply as “bitter” (although brewers tend to refer to it as Ordinary Bitter to distinguish it from other members of the family).", - "history": "See comments in category introduction.", - "style_comparison": "Some modern variants are brewed exclusively with pale malt and are known as golden ales, summer ales, or golden bitters. Emphasis is on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales.", - "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.03 - }, - "maximum": { - "unit": "sg", - "value": 1.039 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.007 - }, - "maximum": { - "unit": "sg", - "value": 1.011 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.2 - }, - "maximum": { - "unit": "%", - "value": 3.8 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "ingredients": "Pale ale, amber, or crystal malts. May use a touch of dark malt for color adjustment. May use sugar adjuncts, corn, or wheat. English finishing hops are most traditional, but any hops are fair game; if American hops are used, a light touch is required. Characterful British yeast.", - "examples": "Bateman’s XB, Brains Bitter, Brakspear Gravity, Fuller's Chiswick Bitter, Greene King IPA, Tetley’s Original Bitter", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Best Bitter", - "category": "British Bitter", - "category_id": "11", - "style_id": "11B", - "category_description": "The family of British bitters grew out of English pale ales as a draught product after the late 1800s. The use of crystal malts in bitters became more widespread after WWI. Traditionally served very fresh under no pressure (gravity or hand pump only) at cellar temperatures (i.e., “real ale”). Most bottled or kegged versions of UK-produced bitters are often higher-alcohol and more highly carbonated versions of cask products produced for export, and have a different character and balance than their draught counterparts in Britain (often being sweeter and less hoppy than the cask versions). These guidelines reflect the “real ale” version of the style, not the export formulations of commercial products.", - "overall_impression": "A flavorful, yet refreshing, session beer. Some examples can be more malt balanced, but this should not override the overall bitter impression. Drinkability is a critical component of the style.", - "aroma": "Low to moderate malt aroma, often (but not always) with a low to medium-low caramel quality. Bready, biscuit, or lightly toasty malt complexity is common. Mild to moderate fruitiness. Hop aroma can range from moderate to none, typically with a floral, earthy, resiny, or fruity character. Generally no diacetyl, although very low levels are allowed.", - "appearance": "Pale amber to medium copper color. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.", - "flavor": "Medium to moderately high bitterness. Moderately low to moderately high fruity esters. Moderate to low hop flavor, typically with an earthy, resiny, fruity, or floral character. Low to medium maltiness with a dry finish. The malt profile is typically bready, biscuity, or lightly toasty. Low to moderate caramel or toffee flavors are optional. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters and hop flavor. Generally no diacetyl, although very low levels are allowed.", - "mouthfeel": "Medium-light to medium body. Low carbonation, although bottled examples can have moderate carbonation.", - "comments": "More evident malt flavor than in an ordinary bitter; this is a stronger, session-strength ale.", - "history": "See comments in category introduction.", - "style_comparison": "More alcohol than an ordinary bitter, and often using higher-quality ingredients. Less alcohol than a strong bitter. More caramel or base malt character and color than a British Golden Ale. Emphasis is on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales.", - "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.048 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.8 - }, - "maximum": { - "unit": "%", - "value": 4.6 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 16 - } - }, - "ingredients": "Pale ale, amber, or crystal malts. Most contain sugar. May use a touch of caramel or dark malt for color adjustment. May use corn or wheat. English finishing hops are most traditional, but any hops are fair game; if American hops are used, a light touch is required. Characterful British yeast.", - "examples": "Adnams Southwold Bitter, Fuller's London Pride, Harvey’s Sussex Best Bitter, Salopian Darwin’s Origin, Surrey Hills Shere Drop, Timothy Taylor Landlord", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Strong Bitter", - "category": "British Bitter", - "category_id": "11", - "style_id": "11C", - "category_description": "The family of British bitters grew out of English pale ales as a draught product after the late 1800s. The use of crystal malts in bitters became more widespread after WWI. Traditionally served very fresh under no pressure (gravity or hand pump only) at cellar temperatures (i.e., “real ale”). Most bottled or kegged versions of UK-produced bitters are often higher-alcohol and more highly carbonated versions of cask products produced for export, and have a different character and balance than their draught counterparts in Britain (often being sweeter and less hoppy than the cask versions). These guidelines reflect the “real ale” version of the style, not the export formulations of commercial products.", - "overall_impression": "An average-strength to moderately-strong British bitter ale. The balance may vary between fairly even between malt and hops to somewhat bitter. Drinkability is a critical component of the style. A rather broad style that allows for considerable interpretation by the brewer.", - "aroma": "Hop aroma moderately-high to moderately-low, typically with a floral, earthy, resiny, or fruity character. Medium to medium-high malt aroma, optionally with a low to moderate caramel component. Medium-low to medium-high fruity esters. Generally no diacetyl, although very low levels are allowed.", - "appearance": "Light amber to deep copper color. Good to brilliant clarity. Low to moderate white to off-white head. A low head is acceptable when carbonation is also low.", - "flavor": "Medium to medium-high bitterness with supporting malt flavors evident. The malt profile is typically bready, biscuity, nutty, or lightly toasty, and optionally has a moderately low to moderate caramel or toffee flavor. Hop flavor moderate to moderately high, typically with a floral, earthy, resiny, or fruity character. Hop bitterness and flavor should be noticeable, but should not totally dominate malt flavors. Moderately-low to high fruity esters. Optionally may have low amounts of alcohol. Medium-dry to dry finish. Generally no diacetyl, although very low levels are allowed.", - "mouthfeel": "Medium-light to medium-full body. Low to moderate carbonation, although bottled versions will be higher. Stronger versions may have a slight alcohol warmth but this character should not be too high.", - "comments": "In England today, “ESB” is a Fullers trademark, and no one thinks of it as a generic class of beer. It is a unique (but very well-known) beer that has a very strong, complex malt profile not found in other examples, often leading judges to overly penalize traditional English strong bitters. In America, ESB has been co-opted to describe a malty, bitter, reddish, standard-strength (for the US) British-type ale, and is a popular craft beer style. This may cause some judges to think of US brewpub ESBs as representative of this style.", - "history": "See comments in category introduction. Strong bitters can be seen as a higher-gravity version of best bitters (although not necessarily “more premium” since best bitters are traditionally the brewer’s finest product). British pale ales are generally considered a premium, export-strength pale, bitter beer that roughly approximates a strong bitter, although reformulated for bottling (including increasing carbonation levels). While modern British pale ale is considered a bottled bitter, historically the styles were different.", - "style_comparison": "More evident malt and hop flavors than in a special or best bitter, as well as more alcohol. Stronger versions may overlap somewhat with British Strong Ales, although Strong Bitters will tend to be paler and more bitter. More malt flavor (particularly caramel) and esters than an American Pale Ale, with different finishing hop character.", - "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 50 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.6 - }, - "maximum": { - "unit": "%", - "value": 6.2 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 18 - } - }, - "ingredients": "Pale ale, amber, or crystal malts, may use a touch of black malt for color adjustment. May use sugar adjuncts, corn or wheat. English finishing hops are most traditional, but any hops are fair game; if American hops are used, a light touch is required. Characterful British yeast. Burton versions use medium to high sulfate water, which can increase the perception of dryness and add a minerally or sulfury aroma and flavor.", - "examples": "Bass Ale, Bateman’s Triple XB, Robinsons Trooper, Samuel Smith’s Organic Pale Ale, Shepherd Neame Bishop's Finger, Summit Extra Pale Ale", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "British Golden Ale", - "category": "Pale Commonwealth Beer", - "category_id": "12", - "style_id": "12A", - "category_description": "This category contains pale, moderately-strong, hop-forward, bitter ales from countries within the former British Empire.", - "overall_impression": "A hop-forward, average-strength to moderately-strong pale bitter. Drinkability and a refreshing quality are critical components of the style, as it was initially a summer seasonal beer.", - "aroma": "Hop aroma is moderately low to moderately high, and can use any variety of hops – floral, herbal, or earthy English hops and citrusy American hops are most common. Frequently a single hop varietal will be showcased. Lowbready malt aroma with no caramel. Medium-low to low fruity aroma from the hops rather than esters. Low diacetyl optional.", - "appearance": "Straw to golden in color. Good to brilliant clarity. Low to moderate white head. A low head is acceptable when carbonation is also low.", - "flavor": "Medium to medium-high bitterness. Hop flavor is moderate to moderately high of any hop variety, although citrus flavors are increasingly common. Medium-low to low malt character, generally bready with perhaps a little biscuity flavor. Caramel flavors are typically absent. Hop bitterness and flavor should be pronounced. Moderately-low to low esters. Medium-dry to dry finish. Bitterness increases with alcohol level, but is always balanced.Low diacetyl optional.", - "mouthfeel": "Light to medium body. Low to moderate carbonation on draught, although bottled commercial versions will be higher. Stronger versions may have a slight alcohol warmth, but this character should not be too high.", - "comments": "Well-hopped, quenching beer with an emphasis on showcasing hops. Served colder than traditional bitters, this style was originally positioned as a refreshing summer beer, but is now often brewed year-round. Once brewed with English hops, increasingly American citrus-flavored hops are used. Golden Ales are also called Golden Bitters, Summer Ales, or British Blonde Ales. Can be found in cask, keg, and bottle.", - "history": "Modern golden ales were developed in England to take on strongly-marketed lagers. While it is difficult to identify the first, Hop Back's Summer Lightning, first brewed in 1986, is thought by many to have got the style off the ground.", - "style_comparison": "More similar to an American Pale Ale than anything else, although it is often lower in alcohol and usually features British ingredients. Has no caramel and fewer esters compared to British Bitters and pale ales. Dry as Bitters but with less malt character to support the hops, giving a different balance. Often uses (and features) American hops, more so than most other modern British styles. Balance of hoppiness between a Blonde Ale and an American Pale Ale.", - "tags": "standard-strength, pale-color, top-fermented, british-isles, craft-style, pale-ale-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.038 - }, - "maximum": { - "unit": "sg", - "value": 1.053 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 45 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.006 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.8 - }, - "maximum": { - "unit": "%", - "value": 5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 5 - } - }, - "ingredients": "Low-color pale or lager malt acting as a blank canvas for the hop character. May use sugar adjuncts, corn, or wheat. English hops frequently used, although citrusy American varietals are becoming more common. Somewhat clean-fermenting British yeast.", - "examples": "Adnams Explorer, Crouch Vale Brewers Gold, Golden Hill Exmoor Gold, Hop Back Summer Lightning, Oakham JHB, Spitfire Golden Ale", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Australian Sparkling Ale", - "category": "Pale Commonwealth Beer", - "category_id": "12", - "style_id": "12B", - "category_description": "This category contains pale, moderately-strong, hop-forward, bitter ales from countries within the former British Empire.", - "overall_impression": "A well-balanced, pale, highly-carbonated, and refreshing ale suitable for drinking in a hot climate. Fairly bitter, with a moderate herbal-spicy hop and pome fruit ester profile. Smooth, neutral malt flavors with a fuller body but a crisp, highly-attenuated finish.", - "aroma": "Fairly soft, clean aroma with a balanced mix of esters, hops, malt, and yeast – all moderate to low in intensity. The esters are frequently pears and apples, optionally with a very light touch of banana. The hops are earthy, herbaceous, or might show the characteristic iron-like Pride of Ringwood nose. The malt can range from neutral grainy to moderately sweet to lightly bready; no caramel should be evident. Very fresh examples can have a lightly yeasty, sulfury nose.", - "appearance": "Deep yellow to light amber in color, often medium gold. Tall, frothy, persistent white head with tiny bubbles. Noticeable effervescence due to high carbonation. Brilliant clarity if decanted, but typically poured with yeast to have a cloudy appearance. Not typically cloudy unless yeast roused during the pour.", - "flavor": "Medium to low rounded, grainy to bready malt flavor, initially mild to malty-sweet but a medium to medium-high bitterness rises mid-palate to balance the malt. Caramel flavors typically absent. Highly attenuated, giving a dry, crisp finish with lingering bitterness, although the body gives an impression of fullness. Medium to medium-high hop flavor, somewhat earthy and possibly herbal, resinous, peppery, or iron-like but not floral, lasting into aftertaste. Medium-high to medium-low esters, often pears and apples. Banana is optional, but should never dominate. May be lightly minerally or sulfury, especially if yeast is present. Should not be bland.", - "mouthfeel": "High to very high carbonation, giving mouth-filling bubbles and a crisp, spritzy carbonic bite. Medium to medium-full body, tending to the higher side if poured with yeast. Smooth but gassy. Stronger versions may have a light alcohol warmth, but lower alcohol versions will not. Very well-attenuated; should not have any residual sweetness.", - "comments": "Coopers has been making their flagship Sparkling Ale since 1862, although the formulation has changed over the years. Presently the beer will have brilliant clarity if decanted, but publicans often pour most of the beer into a glass then swirl the bottle and dump in all the yeast. In some bars, the bottle is rolled along the bar. When served on draught, the brewery instructs publicans to invert the keg to rouse the yeast. A cloudy appearance for the style seems to be a modern consumer preference. Always naturally carbonated, even in the keg. A present-use ale, best enjoyed fresh.", - "history": "Brewing records show that the majority of Australian beer brewed in the 19th century was draught XXX (Mild) and porter. Ale in bottle was originally developed to compete with imported bottled pale ales from British breweries, such as Bass and Wm Younger’ Monk. By the early 20th century, bottled pale ale went out of fashion and “lighter” lager beers were in vogue. Many Australian Sparkling and Pale Ales were labeled as ales, but were actually bottom-fermented lagers with very similar grists to the ales that they replaced. Coopers of Adelaide, South Australia is the only surviving brewer producing the Sparkling Ale style.", - "style_comparison": "Superficially similar to English Pale Ales, although much more highly carbonated, with less caramel, less late hops, and showcasing the signature yeast strain and hop variety. More bitter than IBUs might suggest due to high attenuation, low final gravity, and somewhat coarse hops.", - "tags": "standard-strength, pale-color, top-fermented, pacific, traditional-style, pale-ale-family, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.038 - }, - "maximum": { - "unit": "sg", - "value": 1.05 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.004 - }, - "maximum": { - "unit": "sg", - "value": 1.006 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 6 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 4 - }, - "maximum": { - "unit": "SRM", - "value": 7 - } - }, - "ingredients": "Lightly kilned Australian 2-row pale malt, lager varieties may be used. Small amounts of crystal malt for color adjustment only. Modern examples use no adjuncts, cane sugar for priming only. Historical examples using 45% 2 row, 30% higher protein malt (6 row) would use around 25% sugar to dilute the nitrogen content. Traditionally used Australian hops, Cluster, and Goldings until replaced from mid-1960s by Pride of Ringwood. Highly attenuative Burton-type yeast (Australian-type strain typical). Variable water profile, typically with low carbonate and moderate sulfate.", - "examples": "Coopers Sparkling Ale", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "English IPA", - "category": "Pale Commonwealth Beer", - "category_id": "12", - "style_id": "12C", - "category_description": "This category contains pale, moderately-strong, hop-forward, bitter ales from countries within the former British Empire.", - "overall_impression": "A bitter, moderately-strong, very well-attenuated pale British ale with a dry finish and a hoppy aroma and flavor. Classic British ingredients provide the most authentic flavor profile.", - "aroma": "A moderate to moderately-high hop aroma, typically floral, spicy-peppery, or citrus-orange in nature. A slight dry-hop aroma is acceptable, but not required. Medium-low to medium bready or biscuity malt, optionally with a moderately-low caramel-like or toasty malt presence. Low to moderate fruitiness is acceptable. Optional light sulfury note.", - "appearance": "Color ranges from golden to deep amber, but most are fairly pale. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Moderate-sized, persistent head stand with off-white color.", - "flavor": "Hop flavor is medium to high, with a moderate to assertive hop bitterness. The hop flavor should be similar to the aroma (floral, spicy-peppery, or citrus-orange). Malt flavor should be medium-low to medium, and be somewhat bready, optionally with light to medium-light biscuit, toast, toffee,or caramel aspects. Medium-low to medium fruitiness. Finish is medium-dry to very dry, and the bitterness may linger into the aftertaste but should not be harsh. The balance is toward the hops, but the malt should still be noticeable in support. If high sulfate water is used, a distinctively minerally, dry finish, some sulfur flavor, and a lingering bitterness are usually present. Some clean alcohol flavor can be noted in stronger versions.", - "mouthfeel": "Smooth, medium-light to medium body without hop-derived astringency.Medium to medium-high carbonation can give an overall dry sensation despite a supportive malt presence. A low, smooth alcohol warming can be sensed in stronger versions.", - "comments": "The attributes of IPA that were important to its arrival in good condition in India were that it was very well-attenuated, and heavily hopped. Simply because this is how IPA was shipped, doesn’t mean that other beers such as Porter weren’t also sent to India, that IPA was invented to be sent to India, that IPA was more heavily hopped than other keeping beers, or that the alcohol level was unusual for the time.Many modern examples labeled IPA are quite weak in strength. According to CAMRA, “so-called IPAs with strengths of around 3.5% are not true to style.” English beer historian Martyn Cornell has commented that beers like this are “not really distinguishable from an ordinary bitter.” So we choose to agree with these sources for our guidelines rather than what some modern British breweries are calling an IPA; just be aware of these two main types of IPAs in the British market today.The beers were shipped in well-used oak casks, so the style shouldn’t have an oak or Brett character.", - "history": "Originally a pale stock ale from London that was first shipped to India in the late 1700s. George Hodgson of the Bow Brewery did not create the style, but was the first well known brewer to dominate the market. After a trade dispute, the East India Company had Samuel Allsopp recreate (and reformulate) the beer in 1823 using Burton’s sulfate-rich water. The name India Pale Ale wasn’t used until around 1830. Strength and popularity declined over time, and the style virtually disappeared in the second half of the 20th century. While the stronger Burton-type IPA remained, the name was also applied to hoppy, lower-gravity, often bottled products (a trend that continues in some modern British examples). The style underwent a craft beer rediscovery in the 1980s, and is what is described in these guidelines. Modern examples are inspired by classic versions, but shouldn’t be assumed to have an unbroken lineage with the exact same profile. White Shield is probably the example with the longest lineage, tracing to the strong Burton IPAs of old and first brewed in 1829.", - "style_comparison": "Generally will have more late hops and less fruitiness and caramel than British pale ales and Bitters. Has less hop intensity and a more pronounced malt flavor than typical American IPAs.", - "tags": "high-strength, pale-color, top-fermented, british-isles, traditional-style, ipa-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.07 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 40 - }, - "maximum": { - "unit": "IBUs", - "value": 60 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 7.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "ingredients": "Pale ale malt. English hops, particularly as finishing hops. Attenuative British ale yeast. Refined sugar may be used in some versions. Optional sulfate character from Burton-type water.", - "examples": "Berkshire Lost Sailor IPA, Fuller's Bengal Lancer, Marston’s Old Empire IPA, Meantime London IPA, Thornbridge Jaipur, Worthington White Shield", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Dark Mild", - "category": "Brown British Beer", - "category_id": "13", - "style_id": "13A", - "category_description": "While Dark Mild, Brown Ale, and English Porter may have long and storied histories, these guidelines describe the modern versions. They are grouped together for judging purposes only since they often have similar flavors and balance, not because of any implied common ancestry. The similar characteristics are low to moderate strength, dark color, generally malty balance, and British ancestry. These styles have no historic relationship to each other; especially, none of these styles evolved into any of the others, or was ever a component of another. The category name was never used historically to describe this grouping of beers; it is our name for the judging category. “Brown Beer” was a distinct and important historical product, and is not related to this category name.", - "overall_impression": "A dark, low-gravity, malt-focused British session ale readily suited to drinking in quantity. Refreshing, yet flavorful for its strength, with a wide range of dark malt or dark sugar expression.", - "aroma": "Low to moderate malt aroma, and may have some fruitiness. The malt expression can take on a wide range of character, which can include caramel, toffee, grainy, toasted, nutty, chocolate, or lightly roasted. Low earthy or floral hop aroma optional. Very low diacetyl optional.", - "appearance": "Copper to dark brown or mahogany color. Generally clear, although is traditionally unfiltered. Low to moderate off-white to tan head; retention may be poor.", - "flavor": "Generally a malty beer, although may have a very wide range of malt- and yeast-based flavors (e.g., malty, sweet, caramel, toffee, toast, nutty, chocolate, coffee, roast, fruit, licorice, plum, raisin) over a bready, biscuity, or toasty base. Can finish sweet to dry. Versions with darker malts may have a dry, roasted finish. Low to moderate bitterness, enough to provide some balance but not enough to overpower the malt in the balance. Moderate fruity esters optional. Low hop flavor optional. Low diacetyl optional.", - "mouthfeel": "Light to medium body. Generally low to medium-low carbonation. Roast-based versions may have a light astringency. Sweeter versions may seem to have a rather full mouthfeel for the gravity. Should not be flat, watery, or thin.", - "comments": "Most are low-gravity session beers around 3.2%, although some versions may be made in the stronger (4%+) range for export, festivals, seasonal or special occasions. Generally served on cask; session-strength bottled versions don’t often travel well. A wide range of interpretations are possible. Pale (medium amber to light brown) versions exist, but these are even more rare than dark milds; these guidelines only describe the modern dark version.", - "history": "Historically, ‘mild’ was simply an unaged beer, and could be used as an adjective to distinguish between aged or more highly hopped keeping beers. Modern milds trace their roots to the weaker X-type ales of the 1800s, which started to get darker in the 1880s, but only after WWI did they become dark brown. In current usage, the term implies a lower-strength beer with less hop bitterness than bitters. The guidelines describe the modern British version. The term ‘mild’ is currently somewhat out of favor with consumers, and many breweries no longer use it. Increasingly rare. There is no historic connection or relationship between Mild and Porter.", - "style_comparison": "Some versions may seem like lower-gravity modern English Porters. Much less sweet than London Brown Ale.", - "tags": "session-strength, dark-color, top-fermented, british-isles, traditional-style, brown-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.03 - }, - "maximum": { - "unit": "sg", - "value": 1.038 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 10 - }, - "maximum": { - "unit": "IBUs", - "value": 25 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3 - }, - "maximum": { - "unit": "%", - "value": 3.8 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 14 - }, - "maximum": { - "unit": "SRM", - "value": 25 - } - }, - "ingredients": "Pale British base malts (often fairly dextrinous), crystal malt, dark malts or dark sugar adjuncts, may also include adjuncts such as flaked maize, and may be colored with brewer’s caramel. Characterful British ale yeast. Any type of hops, since their character is muted and rarely is noticeable.", - "examples": "Brain’s Dark,Greene King XX Mild, Hobson’s Champion Mild, Mighty Oak Oscar Wilde, Moorhouse Black Cat, Theakston Traditional Mild", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "British Brown Ale", - "category": "Brown British Beer", - "category_id": "13", - "style_id": "13B", - "category_description": "While Dark Mild, Brown Ale, and English Porter may have long and storied histories, these guidelines describe the modern versions. They are grouped together for judging purposes only since they often have similar flavors and balance, not because of any implied common ancestry. The similar characteristics are low to moderate strength, dark color, generally malty balance, and British ancestry. These styles have no historic relationship to each other; especially, none of these styles evolved into any of the others, or was ever a component of another. The category name was never used historically to describe this grouping of beers; it is our name for the judging category. “Brown Beer” was a distinct and important historical product, and is not related to this category name.", - "overall_impression": "A malty, caramelly,brown British ale without the roasted flavors of a Porter. Balanced and flavorful, but usually a little stronger than most average UK beers.", - "aroma": "Light, sweet malt aroma with toffee, nutty, or light chocolate notes, and a light to heavy caramel quality. A light but appealing floral or earthy hop aroma may also be noticed. A light fruity aroma may be evident, but should not dominate.", - "appearance": "Dark amber to dark reddish-brown color. Clear. Low to moderate off-white to light tan head.", - "flavor": "Gentle to moderate malt sweetness, with a light to heavy caramel character, and a medium to dry finish. Malt may also have a nutty, toasted, biscuity, toffee, or light chocolate character. Medium to medium-low bitterness. Malt-hop balance ranges from even to malt-focused.Low floral or earthy hop flavor optional. Low to moderate fruity esters optional.", - "mouthfeel": "Medium-light to medium body. Medium to medium-high carbonation.", - "comments": "A wide-ranging category with different interpretations possible, ranging from lighter-colored to hoppy to deeper, darker, and caramel-focused; however, none of the versions have strongly roasted flavors. A stronger Double Brown Ale was more popular in the past, but is very hard to find now. While London Brown Ales are marketed using the name Brown Ale, we list those as a different judging style due to the significant difference in balance (especially sweetness) and alcohol strength; that doesn’t mean that they aren’t in the same family, though.", - "history": "Brown ale has a long history in Great Britain, although different products used that name at various times. Modern brown ale is a 20th century creation; it is not the same as historical products with the same name. A wide range of gravities were brewed, but modern brown ales are generally of the stronger (by current UK standards) interpretation. This style is based on the modern stronger British brown ales, not historical versions or the sweeter London Brown Ale described in the Historical Beer category. Predominantly but not exclusively a bottled product currently.", - "style_comparison": "More malty balance than British Bitters, with more malt flavors from darker grains. Stronger than a Dark Mild. Less roast than an English Porter. Stronger and much less sweet than London Brown Ale.", - "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, brown-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.052 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "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.2 - }, - "maximum": { - "unit": "%", - "value": 5.9 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 12 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "ingredients": "British mild ale or pale ale malt base with caramel malts. May also have small amounts darker malts (e.g., chocolate) to provide color and the nutty character. English hop varieties are most authentic.", - "examples": "AleSmith Nut Brown Ale, Cigar City Maduro Brown Ale, Maxim Double Maxim, Newcastle Brown Ale, Riggwelter Yorkshire Ale, Samuel Smith’s Nut Brown Ale", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "English Porter", - "category": "Brown British Beer", - "category_id": "13", - "style_id": "13C", - "category_description": "While Dark Mild, Brown Ale, and English Porter may have long and storied histories, these guidelines describe the modern versions. They are grouped together for judging purposes only since they often have similar flavors and balance, not because of any implied common ancestry. The similar characteristics are low to moderate strength, dark color, generally malty balance, and British ancestry. These styles have no historic relationship to each other; especially, none of these styles evolved into any of the others, or was ever a component of another. The category name was never used historically to describe this grouping of beers; it is our name for the judging category. “Brown Beer” was a distinct and important historical product, and is not related to this category name.", - "notes": "Simply called “Porter” in Britain, the name “English Porter” is used to differentiate it from other derivative porters described in these guidelines.", - "overall_impression": "A moderate-strength dark brown English ale with a restrained roasty, bitter character. May have a range of roasted flavors, generally without burnt qualities, and often has a malty chocolate and caramelprofile.", - "aroma": "Moderate to moderately low bready, biscuity, and toasty malt aroma with mild roastiness, often like chocolate. Additional malt complexity may be present as caramel, nuts, toffee sweetness. May have up to a moderate level of floral or earthy hops. Moderate fruity esters optional, but desirable. Low diacetyl optional.", - "appearance": "Brown to dark brown in color, often with ruby highlights. Good clarity, although may be opaque. Moderate off-white to light tan head with good to fair retention.", - "flavor": "Moderate bready, biscuity, and toasty malt flavor with a mild to moderate chocolate roastiness,and often a significant caramel, nutty, or toffee character, possibly with lower levels ofdarker flavors like coffee or licorice. Should not be burnt or harshly roasted, although small amounts may contribute a bitter chocolate complexity. Up to moderate earthy or floral hop flavor optional. Low to moderate fruity esters.Medium-low to medium bitterness varies the balance from slightly malty to slightly bitter, with a fairly dry to slightly sweet finish. Moderately-low diacetyl optional.", - "mouthfeel": "Medium-light to medium body. Moderately-low to moderately-high carbonation. Light to moderate creamy texture.", - "comments": "This style description describes the modern version of English Porter, not every possible variation over time in every region where it existed. Historical re-creations should be entered in the 27 Historical Beer category, with an appropriate description describing the profile of the beer. Modern craft examples in the UK are bigger and hoppier.", - "history": "Originating in London in the early 1700s, porter evolved as a more heavily hopped and aged (keeping) version of the Brown Beer popular at the time. It evolved many times based on various technological and ingredient developments (such as the invention of black malt in 1817, and large-scale industrial brewing), as well as consumer preferences, wars, and tax policy. It became a highly-popular, widely-exported style in the early 1800s before declining by the 1870s as it changed to a lower gravity, unaged beer. As gravities continued to decline in all UK beers in the first half of the 1900s, styles stopped being made (including porter, gone by the 1950s). The craft beer era led to its re-introduction in 1978.The name is said to have been derived from its popularity with the London working class performing various load-carrying tasks of the day. Parent of various regional interpretations over time, and a predecessor to all stouts (which were originally called “stout porters”).There is no historic connection or relationship between Mild and Porter.", - "style_comparison": "Differs from American Porter in that it usually has softer, sweeter, and more caramelly flavors, lower gravities, and usually less alcohol; American Porter also usuallyhas more hop character. More substance and roast than a British Brown Ale. Higher in gravity than a Dark Mild.", - "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, porter-family, malty, roasty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.052 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "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": 4 - }, - "maximum": { - "unit": "%", - "value": 5.4 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 20 - }, - "maximum": { - "unit": "SRM", - "value": 30 - } - }, - "ingredients": "Grists vary, but something producing a dark color is always involved. Chocolate or other roasted malts, caramel malt, brewing sugars, and the like are common. London-type porters often use brown malt as a characteristic flavor.", - "examples": "Bateman’s Salem Porter, Burton Bridge Burton Porter, Fuller's London Porter, Nethergate Old Growler Porter, RCH Old Slug Porter, Samuel Smith Taddy Porter", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Scottish Light", - "category": "Scottish Ale", - "category_id": "14", - "style_id": "14A", - "category_description": "There are really only three traditional beer styles broadly available today in Scotland: the 70/- Scottish Heavy, the 80/- Scottish Export, and the Strong Scotch Ale (Wee Heavy, Style 17C). The 60/- Scottish Light is rare and often cask-only, but it does seem to be having a bit of a renaissance currently. All these styles took modern form after World War II, regardless of prior use of the same names. Currently, the 60/- is similar to a dark mild, the 70/- is similar to an ordinary bitter, and the 80/- similar to a best or strong bitter. The Scottish beers have a different balance and flavor profile, but fill a similar market position as those English beers.The Light, Heavy, and Export beers have similar flavor profiles, and are often produced through the parti-gyling process. As gravity increases, so does the character of the beer. Traditional ingredients were dextrinous pale ale malt, corn, dark brewing sugars, and brewers caramel for coloring. Modern (post-WWII) recipes often add small amounts of dark malt and lower percentages of crystal malt, along with other ingredients like amber malt and wheat. Scottish brewers traditionally used single infusion mashes, often with underlet mashes and multiple sparges.In general, these Scottish beers are weaker, sweeter, darker, lower in attenuation, and less highly hopped compared to equivalent modern English beers. They are produced using slightly cooler fermentation temperatures than their counterparts. Many of these differences have been exaggerated in popular lore; they are noticeable, but not huge, yet enough to affect the balance of the beer, and to perhaps indicate a national flavor preference. The balance remains malty and somewhat sweet due to higher finishing gravity, lower alcohol, and lower hopping rates. Many of these divergences from English beer took place between the late 1800s and the mid-1900s.Production methods championed by homebrewers, such as kettle caramelization or grists heavy in a variety of crystal malts, are not commonly used in traditional products but can approximate those flavors when traditional ingredients aren’t available. The use of peat-smoked malt is not only completely inauthentic, it produces a dirty, phenolic flavor inappropriate in any of these styles. Smoked versions (using any type smoke) should be entered in 32A Classic Style Smoked Beer. The use of ‘shilling’ (/-) designations is a Scottish curiosity. Originally it referred to the price of beer in hogshead casks, which in no way could be constant over time. Shillings aren’t even used a currency now in Scotland. But the name stuck as a shorthand for a type of beer, even if the original meaning stopped being the real price during WWI. About all it means now is that larger numbers mean stronger beers, at least within the same brewery. Between the world wars, some breweries used the price per pint rather than shillings (e.g., Maclay 6d for 60/-, 7d for 70/-, 8d for 80/-). Confusingly, during this time 90/- pale ale was a low-gravity bottled beer. Curious, indeed.", - "overall_impression": "A low-alcohol, maltybeer with lightcaramel, toast, toffee, and fruit flavors. A slight roast dryness offsets the residual sweetness in the finish, with the bitterness perceived only to keep the beer from being cloying.", - "aroma": "Low to medium maltiness with caramel and toffee notes, and light toasty and sugary qualities that might be reminiscent of toasted breadcrumbs, ladyfingers, English biscuits, graham crackers, or butterscotch. Light pome fruitiness and light English hop aroma (earthy, floral, orange-citrus, spicy, etc.) allowable.", - "appearance": "Deep copper to dark brown. Clear. Low to moderate, creamy off-white.", - "flavor": "Medium toasty-bready malt with caramel and toffee overtones, finishing with a slightly roasty dryness. A wide range of caramelized sugar and toasted bread type of flavors are possible, using similar descriptors as the aroma. Clean maltiness and fermentation profile. Light esters and hop flavor allowable (similar descriptors as aroma). Sufficient bitterness to not be cloying, but with a malty balance and aftertaste.", - "mouthfeel": "Medium-low to medium body. Low to moderate carbonation. Maybe be moderately creamy.", - "comments": "See category introduction for detailed comments. May not seem as bitter as specifications indicate due to higher finishing gravity and residual sweetness.Typically a draught product, but somewhat rare.Do not mis-perceive the light roasty dryness as smoke; smoke is not present in these beers.", - "history": "See category introduction. The Shilling ale names were used for mild (unaged) beer before World War I, but the styles took modern form only after World War II.", - "style_comparison": "See category introduction. Similar to other Scottish Ales but lower in alcohol, and darker in color. Similar in strength to the low end of Dark Mild, but with a different flavor profile and balance.", - "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.03 - }, - "maximum": { - "unit": "sg", - "value": 1.035 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 10 - }, - "maximum": { - "unit": "IBUs", - "value": 20 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 2.5 - }, - "maximum": { - "unit": "%", - "value": 3.3 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 17 - }, - "maximum": { - "unit": "SRM", - "value": 25 - } - }, - "ingredients": "At its simplest, pale ale malt, but can also use colored malt, sugars, corn, wheat, crystal malts, colorants, and a variety of other grains. Clean yeast. Soft water. No peat-smoked malt.", - "examples": "Belhaven Best, McEwan's 60/-", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Scottish Heavy", - "category": "Scottish Ale", - "category_id": "14", - "style_id": "14B", - "category_description": "There are really only three traditional beer styles broadly available today in Scotland: the 70/- Scottish Heavy, the 80/- Scottish Export, and the Strong Scotch Ale (Wee Heavy, Style 17C). The 60/- Scottish Light is rare and often cask-only, but it does seem to be having a bit of a renaissance currently. All these styles took modern form after World War II, regardless of prior use of the same names. Currently, the 60/- is similar to a dark mild, the 70/- is similar to an ordinary bitter, and the 80/- similar to a best or strong bitter. The Scottish beers have a different balance and flavor profile, but fill a similar market position as those English beers.The Light, Heavy, and Export beers have similar flavor profiles, and are often produced through the parti-gyling process. As gravity increases, so does the character of the beer. Traditional ingredients were dextrinous pale ale malt, corn, dark brewing sugars, and brewers caramel for coloring. Modern (post-WWII) recipes often add small amounts of dark malt and lower percentages of crystal malt, along with other ingredients like amber malt and wheat. Scottish brewers traditionally used single infusion mashes, often with underlet mashes and multiple sparges.In general, these Scottish beers are weaker, sweeter, darker, lower in attenuation, and less highly hopped compared to equivalent modern English beers. They are produced using slightly cooler fermentation temperatures than their counterparts. Many of these differences have been exaggerated in popular lore; they are noticeable, but not huge, yet enough to affect the balance of the beer, and to perhaps indicate a national flavor preference. The balance remains malty and somewhat sweet due to higher finishing gravity, lower alcohol, and lower hopping rates. Many of these divergences from English beer took place between the late 1800s and the mid-1900s.Production methods championed by homebrewers, such as kettle caramelization or grists heavy in a variety of crystal malts, are not commonly used in traditional products but can approximate those flavors when traditional ingredients aren’t available. The use of peat-smoked malt is not only completely inauthentic, it produces a dirty, phenolic flavor inappropriate in any of these styles. Smoked versions (using any type smoke) should be entered in 32A Classic Style Smoked Beer. The use of ‘shilling’ (/-) designations is a Scottish curiosity. Originally it referred to the price of beer in hogshead casks, which in no way could be constant over time. Shillings aren’t even used a currency now in Scotland. But the name stuck as a shorthand for a type of beer, even if the original meaning stopped being the real price during WWI. About all it means now is that larger numbers mean stronger beers, at least within the same brewery. Between the world wars, some breweries used the price per pint rather than shillings (e.g., Maclay 6d for 60/-, 7d for 70/-, 8d for 80/-). Confusingly, during this time 90/- pale ale was a low-gravity bottled beer. Curious, indeed.", - "overall_impression": "A lower-alcohol, maltybeer with lightcaramel, toast, toffee, and fruity flavors. A slight roast dryness offsets the residual sweetness in the finish, with the bitterness perceived only to keep the beer from being cloying.", - "aroma": "Medium-low to medium maltiness with caramel and toffee notes, and light toasty and sugary qualities that might be reminiscent of toasted breadcrumbs, ladyfingers, English biscuits, graham crackers, or butterscotch. Light pome fruitiness and light English hop aroma (earthy, floral, orange-citrus, spicy, etc.) allowable.", - "appearance": "Pale copper to brown. Clear. Low to moderate, creamy off-white.", - "flavor": "Medium toasty-bready malt with caramel and toffee overtones, finishing with a slightly roasty dryness. A wide range of caramelized sugar and toasted bread type of flavors are possible, using similar descriptors as the aroma. Clean maltiness and fermentation profile. Light esters and hop flavor allowable (similar descriptors as aroma). Sufficient bitterness to not be cloying, but with a malty balance and aftertaste.", - "mouthfeel": "Medium-low to medium body. Low to moderate carbonation. Maybe be moderately creamy.", - "comments": "See category introduction for detailed comments. May not seem as bitter as specifications indicate due to higher finishing gravity and residual sweetness.Do not mis-perceive the light roasty dryness as smoke; smoke is not present in these beers.", - "history": "See category introduction. The Shilling ale names were used for mild (unaged) beer before World War I, but the styles took modern form only after World War II.", - "style_comparison": "See category introduction. Similar to other Scottish Ales in flavor profile, lighter in color and stronger than a Scottish Light. Similar in strength to Ordinary Bitter, but with a different flavor profile and balance.", - "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.035 - }, - "maximum": { - "unit": "sg", - "value": 1.04 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 10 - }, - "maximum": { - "unit": "IBUs", - "value": 20 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.3 - }, - "maximum": { - "unit": "%", - "value": 3.9 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 12 - }, - "maximum": { - "unit": "SRM", - "value": 20 - } - }, - "ingredients": "At its simplest, pale ale malt and colored malt, but can also use sugars, corn, wheat, crystal malts, colorants, and a variety of other grains. Clean yeast. Soft water. No peat-smoked malt.", - "examples": "McEwan's 70/-, Orkney Raven Ale", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Scottish Export", - "category": "Scottish Ale", - "category_id": "14", - "style_id": "14C", - "category_description": "There are really only three traditional beer styles broadly available today in Scotland: the 70/- Scottish Heavy, the 80/- Scottish Export, and the Strong Scotch Ale (Wee Heavy, Style 17C). The 60/- Scottish Light is rare and often cask-only, but it does seem to be having a bit of a renaissance currently. All these styles took modern form after World War II, regardless of prior use of the same names. Currently, the 60/- is similar to a dark mild, the 70/- is similar to an ordinary bitter, and the 80/- similar to a best or strong bitter. The Scottish beers have a different balance and flavor profile, but fill a similar market position as those English beers.The Light, Heavy, and Export beers have similar flavor profiles, and are often produced through the parti-gyling process. As gravity increases, so does the character of the beer. Traditional ingredients were dextrinous pale ale malt, corn, dark brewing sugars, and brewers caramel for coloring. Modern (post-WWII) recipes often add small amounts of dark malt and lower percentages of crystal malt, along with other ingredients like amber malt and wheat. Scottish brewers traditionally used single infusion mashes, often with underlet mashes and multiple sparges.In general, these Scottish beers are weaker, sweeter, darker, lower in attenuation, and less highly hopped compared to equivalent modern English beers. They are produced using slightly cooler fermentation temperatures than their counterparts. Many of these differences have been exaggerated in popular lore; they are noticeable, but not huge, yet enough to affect the balance of the beer, and to perhaps indicate a national flavor preference. The balance remains malty and somewhat sweet due to higher finishing gravity, lower alcohol, and lower hopping rates. Many of these divergences from English beer took place between the late 1800s and the mid-1900s.Production methods championed by homebrewers, such as kettle caramelization or grists heavy in a variety of crystal malts, are not commonly used in traditional products but can approximate those flavors when traditional ingredients aren’t available. The use of peat-smoked malt is not only completely inauthentic, it produces a dirty, phenolic flavor inappropriate in any of these styles. Smoked versions (using any type smoke) should be entered in 32A Classic Style Smoked Beer. The use of ‘shilling’ (/-) designations is a Scottish curiosity. Originally it referred to the price of beer in hogshead casks, which in no way could be constant over time. Shillings aren’t even used a currency now in Scotland. But the name stuck as a shorthand for a type of beer, even if the original meaning stopped being the real price during WWI. About all it means now is that larger numbers mean stronger beers, at least within the same brewery. Between the world wars, some breweries used the price per pint rather than shillings (e.g., Maclay 6d for 60/-, 7d for 70/-, 8d for 80/-). Confusingly, during this time 90/- pale ale was a low-gravity bottled beer. Curious, indeed.", - "overall_impression": "A moderate-strength, maltybeer with light caramel, toast, toffee, and fruit flavors. A slight roast dryness offsets the residual sweetness in the finish, with the bitterness perceived only to keep the beer from being cloying.", - "aroma": "Medium maltiness with caramel and toffee notes, and light toasty and sugary qualities that might be reminiscent of toasted breadcrumbs, ladyfingers, English biscuits, graham crackers, or butterscotch. Light pome fruitiness and light English hop aroma (earthy, floral, orange-citrus, spicy, etc.) allowable.", - "appearance": "Pale copper to brown. Clear. Low to moderate, creamy off-white.", - "flavor": "Medium toasty-bready malt with caramel and toffee overtones, finishing with a slightly roastydryness. A wide range of caramelized sugar and toasted bread type of flavors are possible, using similar descriptors as the aroma. Clean maltiness and fermentation profile. Light esters and hop flavor allowable (similar descriptors as aroma). Sufficient bitterness to not be cloying, but with a malty balance and aftertaste.", - "mouthfeel": "Medium body. Medium-low to medium carbonation. Maybe be moderately creamy.", - "comments": "See category introduction for detailed comments. May not seem as bitter as specifications indicate due to higher finishing gravity and residual sweetness. Do not mis-perceive the light roasty dryness as smoke; smoke is not present in these beers. Americanized versions are often greater in strength (similar to American treatment of Irish Red Ales).", - "history": "See category introduction. The Shilling ale names were used for mild (unaged) beer before World War I, but the styles took modern form only after World War II.", - "style_comparison": "See category introduction. Stronger than other Scottish Ales, but with a similar flavor profile. Similar in strength to Best Bitter and Strong Bitter, but with a different flavor profile and balance.", - "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.9 - }, - "maximum": { - "unit": "%", - "value": 6 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 12 - }, - "maximum": { - "unit": "SRM", - "value": 20 - } - }, - "ingredients": "At its simplest, pale ale malt and colored malt, but can also use sugars, corn, wheat, crystal malts, colorants, and a variety of other grains. Clean yeast. Soft water. No peat-smoked malt.", - "examples": "Belhaven Scottish Ale, Broughton Wee Jock 80 Shilling, Caledonian Edinburgh Castle, McEwan’s 80/-, McEwan’s Export, Traquair Bear Ale", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Irish Red Ale", - "category": "Irish Beer", - "category_id": "15", - "style_id": "15A", - "category_description": "The traditional beers of Ireland contained in this category are amber to dark, top-fermented beers of moderate to slightly strong strength, and are often widely misunderstood due to differences in export versions, or overly focusing on the specific attributes of beer produced by high-volume, well-known breweries. Each of the styles in this grouping has a wider range than is commonly believed.", - "overall_impression": "An easy-drinking pint, often with subtle flavors. Slightly malty in the balance sometimes with an initial soft toffee or caramel sweetness, a slightly grainy-biscuity palate, and a touch of roasted dryness in the finish. Some versions can emphasize the caramel and sweetness more, while others will favor the grainy palate and roasted dryness.", - "aroma": "Low to moderate malt aroma, either neutral-grainy or with a lightly caramel, toast, or toffee character. Very light buttery character optional. Low earthy or floral hop aroma optional. Quite clean.", - "appearance": "Medium amber to medium reddish-copper color. Clear. Low off-white to tan colored head, average persistence.", - "flavor": "Moderate to very little caramel malt flavor and sweetness, rarely with a light buttered toast or toffee-like quality. The palate often is fairly neutral and grainy, or can take on a lightly toasty or biscuity note as it finishes with a light taste of roasted grain, which lends a characteristic dryness to the finish. A light earthy or floral hop flavor is optional. Medium to medium-low bitterness. Medium-dry to dry finish. Clean and smooth. Low esters optional. The balance tends to be slightly towards the malt, although light use of roasted grains may increase the perception of bitterness slightly.", - "mouthfeel": "Medium-light to medium body, although examples containing low levels of diacetyl may have a slightly slick mouthfeel (not required). Moderate carbonation. Smooth.", - "comments": "The style is fairly broad to allow for examples beyond the traditional ones from Ireland. Irish examples tend to be lower alcohol, grainier, and drier in the finish, while non-Irish versions are often higher in alcohol, sweeter, perhaps more caramelly and estery, and are often seasonal offerings.", - "history": "While Ireland has a long ale brewing heritage, the modern Irish Red Ale style is essentially an adaptation or interpretation of the popular English Bitter style with less hopping and a bit of roast to add color and dryness, although some suggest a longer history. Rediscovered as a craft beer style in Ireland, today it is an essential part of most brewery lineups, along with a pale ale and a stout.", - "style_comparison": "A less-bitter and hoppy Irish equivalent to an English Bitter, with a dryish finish due to roasted barley. More attenuated with less caramel flavor and body than equivalent-strength Scottish Ales.", - "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.036 - }, - "maximum": { - "unit": "sg", - "value": 1.046 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 28 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.8 - }, - "maximum": { - "unit": "%", - "value": 5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 9 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "ingredients": "Generally has a bit of roasted barley or black malt to provide reddish color and dry roasted finish. Pale base malt. Caramel malts were historically imported and more expensive, so not all brewers would use them.", - "examples": "Franciscan Well Rebel Red, Kilkenny Irish Beer, Murphy’s Irish Red, O’Hara’s Irish Red Ale, Porterhouse Nitro Red Ale, Smithwick’s Irish Ale", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Irish Stout", - "category": "Irish Beer", - "category_id": "15", - "style_id": "15B", - "category_description": "The traditional beers of Ireland contained in this category are amber to dark, top-fermented beers of moderate to slightly strong strength, and are often widely misunderstood due to differences in export versions, or overly focusing on the specific attributes of beer produced by high-volume, well-known breweries. Each of the styles in this grouping has a wider range than is commonly believed.", - "overall_impression": "A black beer with a pronounced roasted flavor, often similar to coffee. The balance can range from fairly even to quite bitter, with the more balanced versions having a little malty sweetness and the bitter versions being quite dry. Draught versions typically are creamy from a nitro pour, but bottled versions will not have this dispense-derived character. The roasted flavor can range from dry and coffee-like to somewhat chocolaty.", - "aroma": "Moderate coffee-like aroma typically dominates; may have slight dark chocolate, cocoa,or roasted grain secondary notes. Medium-low esters optional. Low earthy or floral hop aroma optional.", - "appearance": "Jet black to deep brown with garnet highlights in color. According to Guinness, “Guinness beer may appear black, but it is actually a very dark shade of ruby.” Opaque. A thick, creamy, long-lasting, tan- to brown-colored head is characteristic when served on nitro, but don’t expect a tight, creamy head on a bottled beer.", - "flavor": "Moderate roasted grain or malt flavor with a medium to high bitterness. The finish can be dry and coffee-like to moderately balanced with a touch of caramel or malty sweetness. Typically has coffee-like flavors, but also may have a bittersweet or unsweetened chocolate character in the palate, lasting into the finish. Balancing factors may include some creaminess, medium-low fruitiness, or medium earthy hop flavor. The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers.", - "mouthfeel": "Medium-light to medium-full body, with a somewhat creamy character – especially when served by nitro pour. Low to moderate carbonation. For the high hop bitterness and significant proportion of dark grains present, this beer is remarkably smooth. May have a light astringency from the roasted grains, although harshness is undesirable.", - "comments": "Traditionally a draught product. Modern examples are almost always associated with a nitro pour. Do not expect bottled beers to have the full, creamy texture or very long-lasting head associated with mixed-gas dispense. Regional differences exist in Ireland, similar to variability in English Bitters. Dublin-type stouts use roasted barley, are more bitter, and are drier. Cork-type stouts are sweeter, less bitter, and have flavors from chocolate and specialty malts.", - "history": "The style evolved from London porters, but reflecting a fuller, creamier, more “stout” body and strength. Guinness began brewing only porter in 1799, and a “stouter kind of porter” around 1810. Irish stout diverged from London single stout (or simply porter) in the late 1800s, with an emphasis on darker malts and roast barley. Guinness began using flaked barley after WWII, and Guinness Draught was launched as a brand in 1959. Draught (“widget”) cans and bottles were developed in the late 1980s and 1990s.", - "style_comparison": "Lower strength than an Irish Extra Stout. Darker in color (black) than an English Porter (brown).", - "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, bitter, roasty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.036 - }, - "maximum": { - "unit": "sg", - "value": 1.044 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 45 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.007 - }, - "maximum": { - "unit": "sg", - "value": 1.011 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.8 - }, - "maximum": { - "unit": "%", - "value": 5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 25 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "ingredients": "Dark roasted malts or grains, enough to make the beer black in color. Pale malt. May use unmalted grains for body.", - "examples": "Beamish Irish Stout, Belhaven Black Stout, Guinness Draught, Murphy's Irish Stout, O’Hara’s Irish Stout, Porterhouse Irish Stout", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Irish Extra Stout", - "category": "Irish Beer", - "category_id": "15", - "style_id": "15C", - "category_description": "The traditional beers of Ireland contained in this category are amber to dark, top-fermented beers of moderate to slightly strong strength, and are often widely misunderstood due to differences in export versions, or overly focusing on the specific attributes of beer produced by high-volume, well-known breweries. Each of the styles in this grouping has a wider range than is commonly believed.", - "overall_impression": "A fuller-bodied black beer with a pronounced roasted flavor, often similar to coffee and dark chocolate with some malty complexity. The balance can range from moderately bittersweet to bitter, with the more balanced versions having up to moderate malty richness and the bitter versions being quite dry.", - "aroma": "Moderate to moderately high coffee-like aroma, often with slight dark chocolate, cocoa, biscuit, vanilla,or roasted grain secondary notes. Medium-low esters optional. Hop aroma low to none, may be lightly earthy or spicy, but is typically absent. Malt and roast dominate the aroma.", - "appearance": "Jet black. Opaque. A thick, creamy, persistent tan head is characteristic.", - "flavor": "Moderate to moderately high dark-roasted grain or malt flavor with a medium to medium-high bitterness. The finish can be dry and coffee-like to moderately balanced with up to moderate caramel or malty sweetness. Typically has roasted coffee-like flavors, but also often has a dark chocolate character in the palate, lasting into the finish. Background mocha or biscuit flavors are often present and add complexity. Medium-low fruitiness optional. Medium earthy or spicy hop flavor optional. The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers.", - "mouthfeel": "Medium-full to full body, with a somewhat creamy character. Moderate carbonation. Very smooth. May have a light astringency from the roasted grains, although harshness is undesirable. A slightly warming character may be detected.", - "comments": "Traditionally a stronger, bottled product with a range of equally valid possible interpretations, varying most frequentlyin roast flavor and sweetness. Most traditional Irish commercial examples are in the 5.6 to 6.0% ABV range.", - "history": "Same roots as Irish Stout, but as a stronger product. Guinness Extra Stout (Extra Superior Porter, later Double Stout) was first brewed in 1821, and was primarily a bottled product.", - "style_comparison": "Midway between an Irish Stout and a Foreign Extra Stout in strength and flavor intensity, although with a similar balance. More body, richness, and often malt complexity than an Irish Stout. Black in color, not brown like an EnglishPorter.", - "tags": "high-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, bitter, roasty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.052 - }, - "maximum": { - "unit": "sg", - "value": 1.062 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 35 - }, - "maximum": { - "unit": "IBUs", - "value": 50 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 6.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 30 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "ingredients": "Similar to Irish Stout. May have additional dark crystal malts or dark sugars.", - "examples": "Guinness Extra Stout, O’Hara’s Leann Folláin, Porterhouse XXXX, Sheaf Stout", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Sweet Stout", - "category": "Dark British Beer", - "category_id": "16", - "style_id": "16A", - "category_description": "This category contains average to strong, bitter to sweet, modern British and Irish stouts that originated in England even if some are now more widely associated with Ireland. In this case, “British” means the broader British Isles not Great Britain.", - "overall_impression": "A very dark, sweet, full-bodied, slightly roasty stout that can suggest coffee-and-cream, or sweetened espresso.", - "aroma": "Mild roasted grain aroma, sometimes with coffee or chocolate notes. An impression of cream-like sweetness often exists. Fruitiness can be low to moderately high. Low diacetyl optional. Low floral or earthy hop aroma optional.", - "appearance": "Very dark brown to black in color. Clear, if not opaque. Creamy tan to brown head.", - "flavor": "Dark, roasted, coffee or chocolate flavors dominate the palate. Low to moderate fruity esters. Moderate bitterness. Medium to high sweetness provides a counterpoint to the roasted character and bitterness, lasting into the finish. The balance between dark grains or malts and sweetness can vary, from quite sweet to moderately dry and somewhat roasty.Low diacetyl optional.Low floral or earthy hop flavoroptional.", - "mouthfeel": "Medium-full to full-bodied and creamy. Low to moderate carbonation. High residual sweetness from unfermented sugars enhances the full-tasting mouthfeel.", - "comments": "Gravities are low in Britain (sometimes lower than the statistics below), higher in exported and US products. Variations exist, with the level of residual sweetness, the intensity of the roast character, and the balance between the two being the variables most subject to interpretation.", - "history": "An English style of stout developed in the early 1900s. Historically known as “Milk” or “Cream” stouts, legally this designation is no longer permitted in Englandbut may be acceptable elsewhere. The “milk” name is derived from the use of the milk sugar lactoseas a sweetener. Originally marketed as a tonic for invalids and nursing mothers.", - "style_comparison": "Much sweeter and less bitter-tasting than other stouts, except the stronger Tropical Stout. The roast character is mild, not burnt like other stouts. Can be similar in balance to Oatmeal Stout, albeit with more sweetness.", - "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, malty, roasty, sweet", - "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": 40 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.012 - }, - "maximum": { - "unit": "sg", - "value": 1.024 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4 - }, - "maximum": { - "unit": "%", - "value": 6 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 30 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "ingredients": "Base of pale malt with dark malts or grains. May use grain or sugar adjuncts.Lactoseis frequently added to provide additional residual sweetness.", - "examples": "Bristol Beer Factory Milk Stout, Firestone Nitro Merlin Milk Stout, Left Hand Milk Stout, Lancaster Milk Stout, Mackeson's XXX Stout, Marston’s Pearl Jet Stout", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Oatmeal Stout", - "category": "Dark British Beer", - "category_id": "16", - "style_id": "16B", - "category_description": "This category contains average to strong, bitter to sweet, modern British and Irish stouts that originated in England even if some are now more widely associated with Ireland. In this case, “British” means the broader British Isles not Great Britain.", - "overall_impression": "A dark, roasty, full-bodied stout with enough sweetness to support the oat backbone.The sweetness, balance, and oatmeal impression can vary considerably.", - "aroma": "Mild grainy, roasty, coffee-like character with a light malty sweetness that can give a coffee-and-cream impression. Low to medium-high fruitiness. Medium-low earthy or floral hop aroma optional. A light grainy-nutty oatmeal aroma is optional.Medium-low diacetyl optional but typically absent.", - "appearance": "Brown to black in color. Thick, creamy, persistent tan- to brown-colored head. Clear, if not opaque.", - "flavor": "Similar to the aroma, with a mild roasted coffee, milk chocolate, or coffee-and-cream flavor, and low to moderately-high fruitiness. Oats can add a toasty-nutty, grainy, or earthy flavor. Medium bitterness. Medium-sweet to medium-dry finish, which affects the perception of balance. Malty, roasty, nutty aftertaste.Medium-low earthy or floral hop flavor optional.Medium-low diacetyl optional but typically absent.", - "mouthfeel": "Medium-full to full body, with a smooth, silky, velvety, sometimes an almost oily slickness from the oatmeal. Creamy. Medium to medium-high carbonation. Stronger versions may be lightly warming.", - "comments": "When judging, allow for differences in balance and interpretation.American versions tend to be more hoppy, less sweet, and less fruity than English examples. Bitterness, sweetness,and oatmeal impression varies. Light use of oatmeal may give a certain silkiness of body and richness of flavor, while heavy use of oatmeal can be fairly intense in flavor with an almost oily mouthfeel and dryish finish.", - "history": "A variant of nourishing or invalid stouts around 1900 using oatmeal in the grist, similar to but independent of the development of sweet stout using lactose. An original Scottish version used a significant amount of oat malt. Later went through a shady phase where some English brewers would throw a handful of oats into their parti-gyled stouts in order to legally produce a ‘healthy’ Oatmeal Stout for marketing purposes. Most popular in England between the World Wars, was revived in the craft beer era for export, which helped lead to its adoption as a popular modern American craft beer style that uses a noticeable (not symbolic) quantity of oats.", - "style_comparison": "Most are like a cross between an Irish Extra Stout and a Sweet Stout with oatmeal added. Several variations exist, with the sweeter versions more like a Sweet Stout with oatmeal instead of lactose, and the drier versions more like a more nutty, flavorful Irish Extra Stout. Both tend to emphasize the body and mouthfeel.", - "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, balanced, roasty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.065 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.2 - }, - "maximum": { - "unit": "%", - "value": 5.9 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 22 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "ingredients": "Pale, caramel, and dark roasted malts (often chocolate) and grains. Oatmeal or malted oats (5-20% or more). Hops primarily for bittering. Can use brewing sugars or syrups. English ale yeast.", - "examples": "Anderson Valley Barney Flats Oatmeal Stout, Broughton Stout Jock, St-Ambroise Oatmeal Stout, Samuel Smith Oatmeal Stout, Summit Oatmeal Stout, Young's London Stout", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Tropical Stout", - "category": "Dark British Beer", - "category_id": "16", - "style_id": "16C", - "category_description": "This category contains average to strong, bitter to sweet, modern British and Irish stouts that originated in England even if some are now more widely associated with Ireland. In this case, “British” means the broader British Isles not Great Britain.", - "overall_impression": "A very dark, sweet, fruity, moderately strong stout with smooth, roasty flavors,yet no burnt harshness.", - "aroma": "Moderate to high intensity sweetness is prominent. Moderate to high coffee or chocolate roasty aroma, but not burnt. Medium to high fruitiness. May have a molasses, licorice, burnt sugar, dried fruit, or vinous aromatics. Stronger versions can have a subtle, clean aroma of alcohol. Low hop aroma optional. Low diacetyl optional.", - "appearance": "Very deep brown to black in color. Clarity usually obscured by deep color. Clear, if not opaque. Large tan to brown head with good retention.", - "flavor": "Quite sweet with a smooth dark grain flavors, and restrained, medium-low to medium bitterness. Smooth, roasty flavor, often like coffee or chocolate, although moderated in the balance by the sweet finish. No burnt malt flavor or harsh bite in the finish. Moderate to high fruity esters. Can have a sweet, dark rum, molasses, or burnt sugar-like quality. Low hop flavor optional. Medium-low diacetyl optional.", - "mouthfeel": "Medium-full to full body, often with a smooth, creamy character. May have a warming but not hot alcohol presence. Moderate to moderately-high carbonation.", - "comments": "Surprisingly refreshing in a hot climate.Sweetness levels can vary significantly. Tropicalimplies that the beeroriginated in and is popular in the tropics, not that it has characteristics of tropical fruit from hops or fruit.", - "history": "A local adaptation of Foreign Extra Stouts brewed with indigenous ingredients and methods in the Caribbean and other tropical markets. Bitterness lower than export-type stouts since these beers do not have to be shipped abroad, and to suit local palate preferences.", - "style_comparison": "Tastes like a scaled-up Sweet Stout with higher fruitiness. Similar to some Imperial Stouts without the high bitterness, strong or burnt roastiness, and late hops, and with lower alcohol. Much sweeter and less hoppy than American Stouts. Much sweeter and less bitter than the similar-gravity Foreign Extra Stouts.", - "tags": "high-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, malty, roasty, sweet", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.056 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 50 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.5 - }, - "maximum": { - "unit": "%", - "value": 8 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 30 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "ingredients": "Similar to a Sweet Stout, but higher gravity. Pale and dark roasted malts and grains. Hops mostly for bitterness. May use adjuncts and sugar to boost gravity. Typically made with warm-fermented lager yeast.", - "examples": "ABC Extra Stout, Bahamian Strong Back Stout, Dragon Stout, Jamaica Stout, Lion Stout, Royal ExtraStout", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Foreign Extra Stout", - "category": "Dark British Beer", - "category_id": "16", - "style_id": "16D", - "category_description": "This category contains average to strong, bitter to sweet, modern British and Irish stouts that originated in England even if some are now more widely associated with Ireland. In this case, “British” means the broader British Isles not Great Britain.", - "overall_impression": "A very dark, rich, moderately strong, fairly dry stout with prominent roast flavors.", - "aroma": "Moderate to high roast, like coffee, dark chocolate, or lightly burnt grain. Low to medium fruitiness. May have a sweet aroma, or molasses, licorice, dried fruit, or vinous aromatics. Stronger versions can have a subtle, clean aroma of alcohol. Low earthy, herbal, or floral hop aroma optional. Low diacetyl optional.", - "appearance": "Very deep brown to black in color. Clarity usually obscured by deep color. Clear, if not opaque. Large tan to brown head with good retention.", - "flavor": "Moderate to high roast, like coffee, dark chocolate, or lightly burnt grain, although without a sharp bite. Low to medium esters. Medium to high bitterness. Moderately dry finish. Moderate earthy, herbal, or floral hop flavor optional. Medium-low diacetyl optional.", - "mouthfeel": "Medium-full to full body, often with a smooth, sometimes creamy character. May have a warming but not hot alcohol presence. Moderate to moderately-high carbonation.", - "comments": "Also known as Foreign Stout, Export Stout, and Foreign Export Stout. Historic versions (before WWI, at least) had the same OG as domestic Extra Stouts, but depending on the brewery could have had a higher ABV because it had a long secondary with Brett chewing away at it. The difference between domestic and foreign versions were the hopping and length of maturation.", - "history": "Stronger stouts brewed for the export market today, but with a history stretching back to the 18th and 19th centuries when they were more heavily-hopped versions of stronger export stouts. Vatted originally, but Guinness stopped this practice in the 1950s. Guinness Foreign Extra Stout (originally, West India Porter, later Foreign Extra Double Stout) was first brewed in 1801 according to Guinness with “extra hops to give it a distinctive taste and a longer shelf life in hot weather.”", - "style_comparison": "Similar in balance to an Irish Extra Stout, but with more alcohol. Not as big or intense as an Imperial Stout. Lacking the strong bitterness and high late hops of American Stout. Similar gravity as Tropical Stout, but with a drier finish andhigher bitterness.", - "tags": "high-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, balanced, roasty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.056 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 50 - }, - "maximum": { - "unit": "IBUs", - "value": 70 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.3 - }, - "maximum": { - "unit": "%", - "value": 8 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 30 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "ingredients": "Pale and dark roasted malts and grains, historically also could have used brown and amber malts. Hops mostly for bitterness, typically English varieties. May use adjuncts and sugar to boost gravity.", - "examples": "Coopers Best Extra Stout, Guinness Foreign Extra Stout, The Kernel Export Stout London 1890, La Cumbre Malpais Stout, Pelican Tsunami Export Stout, Ridgeway Foreign Export Stout", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "British Strong Ale", - "category": "Strong British Ale", - "category_id": "17", - "style_id": "17A", - "category_description": "This category contains stronger, non-roasty ales of the British Isles. Covers the style space above bitters, milds, and brown ales while excluding porters and stouts.", - "overall_impression": "An ale of respectable alcoholic strength, traditionally bottled-conditioned and cellared. Can have a wide range of interpretations, but most will have varying degrees of malty richness, late hops and bitterness, fruity esters, and alcohol warmth. The malt and adjunct flavors and intensity can vary widely, but any combination should result in an agreeable palate experience.", - "aroma": "Malty-sweet with fruity esters, often with a complex blend of dried-fruit, caramel, nuts, toffee, or other specialty malt aromas. Some alcohol notes are acceptable, but shouldn’t be hot or solventy. Hop aromas can vary widely, but typically have earthy, resiny, fruity, or floral notes. The balance can vary widely, but most examples will have a blend of malt, fruit, hops, and alcohol in varying intensities.", - "appearance": "Amber to dark reddish-brown color; many are fairly dark. Generally clear, although darker versions may be almost opaque. Moderate to low cream- to light tan-colored head with average retention.", - "flavor": "Medium to high malt character often rich with nutty, toffee, or caramel flavors. Light chocolate notes are sometimes found in darker beers. May have interesting flavor complexity from brewing sugars. Balance is often malty, but may be well hopped, which affects the impression of maltiness. Moderate fruity esters are common, often with a dark fruit or dried fruit character. The finish may vary from medium dry to somewhat sweet. Alcoholic strength should be evident, not overwhelming. Low diacetyl optional, but generally not desirable.", - "mouthfeel": "Medium to full, chewy body. Alcohol warmth is often evident and always welcome. Low to moderate carbonation. Smooth texture.", - "comments": "An entry category more than a style; the strength and character of examples can vary widely. Fits in the style space between normal gravity beers and Barley Wines. Can include pale malty-hoppy beers, English winter warmers, strong dark milds, smaller Burton ales, and other unique beers in the general gravity range that don’t fit other categories. Judges should allow for a significant range in character, as long as the beer is within the alcohol strength range and has an interesting ‘British’ character, it likely fits the style.", - "history": "A collection of unrelated minor styles, each of which has its own heritage. Do not use this category grouping to infer a historical relationship between examples – none is intended. This is a modern British specialty judging category where the ‘special’ attribute is alcohol level.", - "style_comparison": "Significant overlap in gravity with Old Ale, but not having an aged character. A wide range of interpretations is possible. Should not be as rich or strong as an English Barley Wine. Stronger than the stronger everyday Strong Bitter, British Brown Ale, and English Porter. More specialty malt or sugar character than American Strong Ale.", - "tags": "high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.055 - }, - "maximum": { - "unit": "sg", - "value": 1.08 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 60 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.015 - }, - "maximum": { - "unit": "sg", - "value": 1.022 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.5 - }, - "maximum": { - "unit": "%", - "value": 8 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "ingredients": "Grists vary, often based on pale malt with caramel and specialty malts. Some darker examples suggest a light use of dark malts (e.g., chocolate, black malt). Sugary and starchy adjuncts (e.g., maize, flaked barley, wheat) are common. Finishing hops are traditionally English.", - "examples": "Fuller’s 1845, Harvey’s Elizabethan Ale, J.W. Lees Moonraker, McEwan’s Champion, Samuel Smith’s Winter Welcome, Shepherd Neame 1698", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Old Ale", - "category": "Strong British Ale", - "category_id": "17", - "style_id": "17B", - "category_description": "This category contains stronger, non-roasty ales of the British Isles. Covers the style space above bitters, milds, and brown ales while excluding porters and stouts.", - "overall_impression": "A stronger-than-averageEnglish ale, though usually not as strong or rich as an English Barley Wine, but usually malty. Warming. Shows positive maturation effects of a well-kept, aged beer.", - "aroma": "Malty-sweet with fruity esters, often with a complex blend of driedfruit, vinous, caramel, molasses, toffee, light treacle, or other specialty malt aromas. Some alcohol and nutty oxidative notes are acceptable, akin to those found in Sherry, Port, or Madeira. Hop aroma not usually present.", - "appearance": "Deep amber to very dark reddish-brown color, but most are fairly dark. Age and oxidation may darken the beer further. Clear, but can be almost opaque. Moderate to low cream- to light tan-colored head; retention average to poor.", - "flavor": "Medium to high malt character with a luscious malt complexity, often with nut, caramel,or molasses-like flavors. Light chocolate or roasted malt flavors are optional, but should never be prominent. Balance is often malty-sweet, but may be well hopped; the impression of bitterness often depends on amount of aging. Moderate to high fruity esters are common, and may take on a dried-fruit or vinous character. The finish may vary from dry to somewhat sweet. Extended aging may contribute oxidative flavors similar to a fine old Sherry, Port, or Madeira. Alcoholic strength should be evident, though not overwhelming. Low diacetyl optional.", - "mouthfeel": "Medium to full, chewy body, although older examples may be lower in body due to continued attenuation during conditioning. Alcohol warmth is often evident and always welcome. Low to moderate carbonation, depending on age and conditioning. Light acidity may be present, as well as some tannin if wood-aged; both are optional.", - "comments": "Strength and character vary widely. The predominant defining quality for this style is the impression of age, which can manifest itself in different ways (complexity, oxidation, leather, vinous qualities, etc.). Many of these qualities are otherwise faults, but if the resulting character of the beer is pleasantly drinkable and complex, then those characteristics are acceptable. In no way should those allowable characteristics be interpreted as making an undrinkably off-flavored beer as somehow in style. Old Peculier is a well-known but fairly unique beer that is quite different than other Old Ales.", - "history": "Historically, an aged ale used as stock ales for blending or enjoyed at full strength (stale or stock refers to beers that were aged or stored for a significant period of time). There are at least two definite types in Britain today, weaker, unaged draught ones that are similar to milds of around 4.5%, and stronger aged ones that are often 6-8% or more.", - "style_comparison": "Roughly overlapping the British Strong Ale and the lower end of the English Barley Wine styles, but always having an aged quality. The distinction between an Old Ale and a Barley Wine is somewhat arbitrary above 7% ABV, and generally means having a more significant aged quality.", - "tags": "high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty, aged", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.055 - }, - "maximum": { - "unit": "sg", - "value": 1.088 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 60 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.015 - }, - "maximum": { - "unit": "sg", - "value": 1.022 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.5 - }, - "maximum": { - "unit": "%", - "value": 9 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 10 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "ingredients": "Composition varies, although generally similar to British Strong Ales. The age character is the biggest driver of the final style profile, which is more handling than brewing.", - "examples": "Avery Old Jubilation, Berlina Old Ale, Greene King Strong Suffolk Ale, Marston Owd Roger, Theakston Old Peculier", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Wee Heavy", - "category": "Strong British Ale", - "category_id": "17", - "style_id": "17C", - "category_description": "This category contains stronger, non-roasty ales of the British Isles. Covers the style space above bitters, milds, and brown ales while excluding porters and stouts.", - "notes": "See Category 14 Scottish Ale introduction for general characteristics of Scottish beer.", - "overall_impression": "Rich, sweet malt depth with caramel, toffee, and fruity flavors. Full-bodied and chewy, with warming alcohol. Restrained bitterness, but not cloying or syrupy.", - "aroma": "Strong bready-toasty malt, with a high caramel and toffee aspect. A wide range of supportive caramelized sugar and toasty bread type aromas are possible (toasted breadcrumbs, ladyfingers, English biscuits, graham crackers, nougat, butterscotch, etc.). Faint hint of roast is sometimes noted. Low to moderate dark or dried fruit esters and alcohol. Very low earthy, floral, orange-citrus, or spicy hops optional.", - "appearance": "Light copper to dark brown color, often with deep ruby highlights. Clear. Usually has a large tan head, which may not persist. Legs may be evident in stronger versions.", - "flavor": "Rich, bready-toasty malt that is often full and sweet on the palate with caramel and toffee flavors, but balanced by alcohol and a hint of grainy roast in the finish. The malt often has caramelized sugar and toasty flavors of the same type as described in the aroma. Medium to low alcohol and esters (plums, raisins, dried fruit, etc.). Bitterness low in the balance, giving a sweet to medium-dry finish. Medium-low hop flavor optional, with similar descriptors as the aroma.", - "mouthfeel": "Medium-full to full-bodied, sometimes with a thick, chewy, sometimes creamy, viscosity. A smooth alcohol warmth is usually present and is desirable since it balances the malty sweetness. Moderate carbonation.", - "comments": "A range of strengths is allowable; not all versions are very strong. Also known as “Strong Scotch Ale,” the term “wee heavy” means “small strong” and traces to the beer that made the term famous, Fowler’s Wee Heavy, a 12 Guinea Ale.", - "history": "Descended from Edinburgh Ales, a stronger malty beer brewed in a range of strengths, similar to Burton Ale (although at half the hopping rate). Modern versions have two main variants, a more modest 5% ABV beer and the more widely known 8-9% ABV beer. As gravities decreased over times, some of the variations ceased to be produced.", - "style_comparison": "Somewhat similar to an English Barley Wine, but often darker and more caramelly.", - "tags": "high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.07 - }, - "maximum": { - "unit": "sg", - "value": 1.13 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 17 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.018 - }, - "maximum": { - "unit": "sg", - "value": 1.04 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.5 - }, - "maximum": { - "unit": "%", - "value": 10 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 14 - }, - "maximum": { - "unit": "SRM", - "value": 25 - } - }, - "ingredients": "Scottish pale ale malt, a wide range of other ingredients are possible, including adjuncts. Some may use crystal malt or darker grains for color. No peat-smoked malt.", - "examples": "Belhaven Wee Heavy, Broughton Old Jock, McEwan’s Scotch Ale, Orkney Skull Splitter, Traquair House Ale, The Duck-Rabbit Wee Heavy Scotch-Style Ale", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "English Barley Wine", - "category": "Strong British Ale", - "category_id": "17", - "style_id": "17D", - "category_description": "This category contains stronger, non-roasty ales of the British Isles. Covers the style space above bitters, milds, and brown ales while excluding porters and stouts.", - "overall_impression": "A strong and richly malty ale witha pleasant fruity or hoppy depth. A wintertime sipper with a full, chewy body and warming alcohol.", - "aroma": "Very rich, strongly malty, often with a caramel-like aroma in darker versions or a light toffee character in paler versions. May have a rich character including bready, toasty, or toffee notes.May have moderate to strong fruitiness, often with a dark- or dried-fruit character, particularly in dark versions. The hop aroma may range from mild to assertive, and is typically floral, earthy, tea-like, or marmalade-like. Alcohol may be low to moderate, but are soft and rounded. Aromatic intensity subsides with age, and can develop aquality like sherry, wine, or port.", - "appearance": "Color ranging from golden amber to dark brown, often with ruby highlights and significant depth of color. Should not be black or opaque. Low to moderate off-white head.May have low head retention. Brilliant clarity, particularly when aged, although younger versions can have a little haze. High alcohol and viscosity may be visible aslegs.", - "flavor": "Medium to high rich, malty sweetness, often complex and multi-layered, with bread, biscuit, and caramel malt flavors (more toffee-like in paler versions) and having a medium to highfruitiness (often with dark or dried fruit aspects). When aged, these fruity components come out more, and darker versions will have a higher level than paler ones. The hop aroma, flavor, and bitterness can vary wildly. Light to strong hops, with an English character (floral, earthy, tea, or marmalade-like) are common. Bitterness can be light to fairly strong, fading with time, so the balance can be malty to somewhat bitter. Stronger versions will have a little alcohol character. The finish and aftertaste can be moderately dry to moderately sweet, often depending on age.Some oxidative or vinous flavors may be present, and often complex alcohol flavors should be evident. Pale versions typically seem more bitter, better attenuated, and more hop-forward than darker versions.", - "mouthfeel": "Full-bodied and chewy, with a velvety, luscious texture, declining with age. A smooth warmth from aged alcohol should be present, but shouldn’t burn. Carbonation may be low to moderate, depending on age and conditioning.", - "comments": "The richest and strongest of modern English Ales. Their character can change significantly over time; both young and old versions should be appreciated for what they are. The malt profile can vary widely; not all examples will have all possible flavors or aromas. Paler varieties won’t have the caramel and richer malt flavors, nor will they typically have the darker dried fruits – don’t expect flavors and aromatics that are impossible from a beer of that color. Typically written as “Barley Wine” in the UK, and “Barleywine” in the US.", - "history": "A modern descendent of the strongest Burton Ales. Bass No. 1 was first called a barleywine in 1872. Traditionally a darker beer until Tennant (now Whitbread) first produced Gold Label, a gold-colored version in 1951. The original style that inspired derivative variations in Belgium, the United States, and elsewhere in the world.", - "style_comparison": "Less hoppy and bitter, maltier and fruitier than American Barleywine. Can overlap Old Ale on the lower end of the range, but without heavier signs of age. Not as caramelly and often not as sweet as a Wee Heavy.", - "tags": "very-high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.08 - }, - "maximum": { - "unit": "sg", - "value": 1.12 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 35 - }, - "maximum": { - "unit": "IBUs", - "value": 70 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.018 - }, - "maximum": { - "unit": "sg", - "value": 1.03 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 8 - }, - "maximum": { - "unit": "%", - "value": 12 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "ingredients": "British pale ale andcrystal malts. Limited use of dark malts. Often uses brewing sugars. English hops. British yeast.", - "examples": "Burton Bridge Thomas Sykes Old Ale, Coniston No. 9 Barley Wine, Fuller’s Golden Pride, Hogs Back A over T, J.W. Lee’s Vintage Harvest Ale, Robinson’s Old Tom", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Blonde Ale", - "category": "Pale American Ale", - "category_id": "18", - "style_id": "18A", - "category_description": "This category contains modern American ales of average strength and light color that are moderately malty to moderately bitter.", - "overall_impression": "Easy-drinking, approachable, malt-oriented American craft beer, often with interesting fruit, hop, or character malt notes. Well-balanced and clean, is a refreshing pint without aggressive flavors.", - "aroma": "Light to moderate malty aroma, generally neutral or grainy, possibly with a light bread or caramel note. Low to moderate fruitiness is optional, but acceptable. May have a low to medium hop aroma, and can reflect almost any hop variety although citrusy, floral, fruity, and spicy notes are common. Clean fermentation profile.", - "appearance": "Light yellow to deep gold in color. Clear to brilliant. Low to medium white head with fair to good retention.", - "flavor": "Initial soft maltiness, but can also have light character malt flavor (e.g., bread, toast, biscuit, wheat). Caramel flavors usually absent; if present, they are typically low-color caramel or honey notes. Low to medium fruity esters optional, but are welcome. Light to moderate hop flavor (any variety), but shouldn’t be overly aggressive. Medium-low to medium bitterness, but the balance is normally towards the malt or even between malt and hops. Finishes medium-dry to slightly malty; an impression of sweetness is often an expression of lower bitterness than actual residual sweetness. Clean fermentation profile.", - "mouthfeel": "Medium-light to medium body. Medium to high carbonation. Smooth without being heavy.", - "comments": "Oxidized versions can develop caramel or honey notes, which should not be mistaken for similar malt-derived flavors. Sometimes known as Golden Ale or simply a Gold.", - "history": "An American craft beer style produced as a faster-produced alternative to standard American lagers. First believed to be produced in 1987 at Catamount. Often positioned as an entry-level house ale.", - "style_comparison": "Typically has more flavor than American Lager and Cream Ale. Less bitterness than an American Pale Ale. Perhaps similar to some maltier examples of Kölsch.", - "tags": "standard-strength, pale-color, any-fermentation, north-america, craft-style, pale-ale-family, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.038 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 28 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 3.8 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "ingredients": "Generally all-malt, but can include wheat malt or sugar adjuncts. Any hop variety can be used. Clean American, lightly fruity English, or Kölsch yeast. May also be made with lager yeast, or cold-conditioned.", - "examples": "Firestone Walker 805, Kona Big Wave Golden Ale, Real Ale Firemans #4 Blonde Ale, Russian River Aud Blonde, Victory Summer Love, Widmer Citra Summer Blonde Brew", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "American Pale Ale", - "category": "Pale American Ale", - "category_id": "18", - "style_id": "18B", - "category_description": "This category contains modern American ales of average strength and light color that are moderately malty to moderately bitter.", - "overall_impression": "An average-strength, hop-forward, pale American craft beer with sufficient supporting malt to make the beer balanced and drinkable. The clean hop presence can reflect classic or modern American or New World hop varieties with a wide range of characteristics.", - "aroma": "Moderate to moderately-high hop aroma from American or New World hop varieties with a wide range of possible characteristics, including citrus, floral, pine, resin, spice, tropical fruit, stone fruit, berry, or melon. None of these specific characteristics are required, but a hoppy aroma should be apparent. Low to moderate neutral to grainy maltiness supports the hop presentation, and can show low amounts of specialty malt character (e.g., bread, toast, biscuit, caramel). Fruity esters optional, up to moderate in strength. Fresh dry-hop aroma optional.", - "appearance": "Pale golden to amber. Moderately large white to off-white head with good retention. Generally quite clear.", - "flavor": "Hop and malt character similar to aroma (same intensities and descriptors apply).Caramel flavors are often absent or fairly restrained, but are acceptable as long as they don’t clash with the hops.Moderate to high bitterness. Clean fermentation profile. Fruity yeast esters can be moderate to none, although many hop varieties are quite fruity.Medium to dry finish.The balance is typically towards the late hops and bitterness; the malt presence should be supportive, not distracting. Hop flavor and bitterness often linger into the finish, but the aftertaste should generally be clean and not harsh. Fresh dry-hop flavor optional.", - "mouthfeel": "Medium-light to medium body. Moderate to high carbonation. Overall smooth finish without astringency or harshness.", - "comments": "Modern American versions are often just lower gravity IPAs. Traditionally was a style that allowed for experimentation with hop varieties and usage methods, which can now often be found as international adaptations in countries with an emerging craft beer market. Judges should allow for characteristics of modern American or New World hops as they are developed and released.", - "history": "A modern American craft beer era adaptation of English pale ale, reflecting indigenous ingredients. Sierra Nevada Pale Ale was first made in 1980 and helped popularize the style. Prior to the explosion in popularity of IPAs, this style was the most well-known and popular of American craft beers.", - "style_comparison": "Typically lighter in color, cleaner in fermentation profile, and having fewer caramel flavors than English counterparts. There can be some overlap in color between American Pale Ale and American Amber Ale. The American Pale Ale will generally be cleaner, have a less caramelly malt profile, less body, and often more finishing hops. Less bitterness in the balance and alcohol strength than an American IPA. Maltier, more balanced and drinkable, and less intensely hop-focused and bitter than session-strength American IPAs (aka Session IPAs). More bitter and hoppy than a Blonde Ale.", - "tags": "standard-strength, pale-color, top-fermented, north-america, craft-style, pale-ale-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 50 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 6.2 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 5 - }, - "maximum": { - "unit": "SRM", - "value": 10 - } - }, - "ingredients": "Neutralpale malt. American or New World hops. Neutral to lightly fruity American or English ale yeast. Small amounts of various specialty malts.", - "examples": "Deschutes Mirror Pond Pale Ale, Half Acre Daisy Cutter Pale Ale, Great Lakes Burning River, La Cumbre Acclimated APA, Sierra Nevada Pale Ale, Stone Pale Ale 2.0", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "American Amber Ale", - "category": "Amber and Brown American Beer", - "category_id": "19", - "style_id": "19A", - "category_description": "This category contains modern American amber and brown top-fermented ales and warm-fermented lagers of standard strength that can be balanced to bitter.", - "overall_impression": "An amber, hoppy, moderate-strength American craft beer with a malty caramel flavor. The balance can vary quite a bit, with some versions being fairly malty and others being aggressively hoppy. Hoppy and bitter versions should not have clashing flavors with the caramel malt profile.", - "aroma": "Low to moderate hop aroma reflective of American or New World hop varieties (citrus, floral, pine, resin, spice, tropical fruit, stone fruit, berry, or melon). A citrusy hop character is common, but not required. Moderately-low to moderately-high maltiness, usually with a moderate caramel character, that can either support, balance, or sometimes mask the hop presentation. Esters vary from moderate to none.", - "appearance": "Deep amber to coppery-brown in color, sometimes with a reddish hue. Moderately large off-white head with good retention. Generally quite clear.", - "flavor": "Moderate to high hop flavor with similar characteristics as the aroma. Malt flavors are moderate to strong, and usually show an initial malty sweetness followed by a moderate caramel flavorand sometimes toasty or biscuity malt flavors in lesser amounts. Dark or roasted malt flavors absent. Moderate to moderately-high bitterness. Balance can vary from somewhat malty to somewhat bitter. Fruity esters can be moderate to none. Caramel sweetness, hop flavor, and bitterness can linger somewhat into the medium to full yet dry finish.", - "mouthfeel": "Medium to medium-full body. Medium to high carbonation. Overall smooth finish without astringency. Stronger versions may have a slight alcohol warmth.", - "comments": "Can overlap in color with darker American pale ales, but with a different malt flavor and balance. A range of balance exists in this style, from balanced and malty to more aggressively hopped.", - "history": "A modern American craft beer style developed as a variation from American Pale Ales. Mendocino Red Tail Ale was first made in 1983, and was known regionally as a Red Ale. This served as the progenitor of Double Reds (American Strong Ale), Red IPAs, and other hoppy, caramelly beers.", - "style_comparison": "Darker, more caramelly, more body, and generally less bitter in the balance than American Pale Ales. Less alcohol, bitterness, and hop character than Red IPAs. Less strength, malt, and hop character than American Strong Ales. Less chocolate and dark caramel than an American Brown Ale.", - "tags": "standard-strength, amber-color, top-fermented, north-america, craft-style, amber-ale-family, balanced, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 6.2 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 10 - }, - "maximum": { - "unit": "SRM", - "value": 17 - } - }, - "ingredients": "Neutral pale ale malt. Medium to dark crystal malts. American or New World hops, often with citrusy flavors, are common but others may also be used. Neutral to lightly estery yeast.", - "examples": "Anderson Valley Boont Amber Ale, Bell’s Amber Ale, Full Sail Amber, North Coast Red Seal Ale, Saint Arnold Amber Ale, Tröegs Hopback Amber Ale", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "California Common", - "category": "Amber and Brown American Beer", - "category_id": "19", - "style_id": "19B", - "category_description": "This category contains modern American amber and brown top-fermented ales and warm-fermented lagers of standard strength that can be balanced to bitter.", - "overall_impression": "A toasty and caramelly, fairly bitter, standard-strength beer with an interesting fruitiness and rustic, woody hop character. Smooth and well carbonated.", - "aroma": "Moderate to high herbal, resinous, floral, or minty hops. Light fruitiness acceptable. Low to moderate caramel or toasty malt supports the hops.", - "appearance": "Medium amber to light copper color. Generally clear. Moderate off-white head with good retention.", - "flavor": "Moderately malty with a pronounced hop bitterness. The malt character usually has toast (not roast) and caramel flavors. Low to moderately high hop flavor, usually showing rustic, traditional American hop qualities (often herbal, resinous, floral, minty). Finish fairly dry and crisp, with a lingering hop bitterness and a firm, grainy malt flavor. Light fruity esters are acceptable, but otherwise clean.", - "mouthfeel": "Medium-bodied. Medium to medium-high carbonation.", - "comments": "This style is narrowly defined around the prototypical Anchor Steam example, although allowing other typical ingredients of the era. Northern Brewer hops are not a strict requirement for the style.Modern American and New World-type hops (especially citrusy ones) are inappropriate.", - "history": "American West Coast original, brewed originally as Steam Beer during the Gold Rush era. Large shallow open fermenters (coolships) were used to compensate for the lack of refrigeration and to take advantage of the cool temperatures in the San Francisco Bay area. Modern versions are based on Anchor Brewing re-launching the style in the 1970s.", - "style_comparison": "Superficially similar to an American Amber Ale, but with specific choices for malt and hopping – the hop flavor and aroma is traditional (not modern) American hops, malt flavors are toastier, the hopping is always assertive, and a warm-fermented lager yeast is used. Less attenuated, less carbonated and less fruity than Australian Sparkling ale.", - "tags": "standard-strength, amber-color, bottom-fermented, north-america, traditional-style, amber-lager-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 45 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.011 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 9 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "ingredients": "Pale ale malt, non-citrusy hops (often Northern Brewer), small amounts of toasted malt or crystal malts. Lager yeast; however, some strains (often with the mention of “California” in the name) work better than others at the warmer fermentation temperatures (55 to 60 °F) typically used. Note that some German yeast strains produce inappropriate sulfury character.", - "examples": "Anchor Steam, Steamworks Steam Engine Lager", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "American Brown Ale", - "category": "Amber and Brown American Beer", - "category_id": "19", - "style_id": "19C", - "category_description": "This category contains modern American amber and brown top-fermented ales and warm-fermented lagers of standard strength that can be balanced to bitter.", - "overall_impression": "A malty but hoppy standard-strength American ale frequently with chocolate and caramel flavors. The hop flavor and aroma complement and enhance the malt rather than clashing with it.", - "aroma": "Moderate malty-sweet to malty-rich aroma with chocolate, caramel, nutty, or toasty qualities. Hop aroma is typically low to moderate, of almost any type that complements the malt. Some interpretations of the style may optionally feature a stronger hop aroma, an American or New World hop character (citrusy, fruity, tropical, etc.), or a dry-hopped aroma. Fruity esters are moderate to very low. The dark malt character is more robust than other brown ales, yet stops short of being overly Porter-like.", - "appearance": "Light to very dark brown color. Clear. Low to moderate off-white to light tan head.", - "flavor": "Medium to moderately-high malty-sweet or malty-rich flavor with chocolate, caramel, nutty, or toasty malt complexity, with medium to medium-high bitterness. Medium to medium-dry finish with an aftertaste of both malt and hops. Light to moderate hop flavor, sometimes citrusy, fruity, or tropical, although any hop flavor that complements the malt is acceptable. Very low to moderate fruity esters. The malt and hops are generally equal in intensity, but the balance can vary in either direction. Should not have a roasted character suggestive of a Porter or Stout.", - "mouthfeel": "Medium to medium-full body. More bitter versions may have a dry, resiny impression. Moderate to moderately-high carbonation. Stronger versions may be lightly warming.", - "comments": "Most commercial American Browns are not as aggressive as the original homebrewed versions, and some modern craft-brewed examples. This style reflects the current commercial offerings typically marketed as American Brown Ales rather than the hoppier, stronger homebrew versions from the early days of homebrewing. These IPA-strength brown ales should be entered as 21BSpecialty IPA", - "notes": "Brown IPA.", - "history": "An American style from the early modern craft beer era. Derived from English Brown Ales, but with more hops. Pete’s Wicked Ale (1986) defined the style, which was first judged at the Great American Beer Festival in 1992.", - "style_comparison": "More chocolate and caramel flavors than American Pale or Amber Ales, typically with less prominent bitterness in the balance. Less bitterness, alcohol, and hop character than Brown IPAs. More bitter and generally hoppier than English Brown Ales, with a richer malt presence, usually higher alcohol, and American or New World hop character.", - "tags": "standard-strength, dark-color, top-fermented, north-america, craft-style, brown-ale-family, balanced, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.3 - }, - "maximum": { - "unit": "%", - "value": 6.2 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 18 - }, - "maximum": { - "unit": "SRM", - "value": 35 - } - }, - "ingredients": "Pale malt, plus crystal and darker malts (typically chocolate). American hops are typical, but continental or New World hops can also be used.", - "examples": "Avery Ellie’s Brown Ale, Big Sky Moose Drool Brown Ale, Brooklyn Brown Ale, Bell’s Best Brown, Smuttynose Old Brown Dog Ale, Telluride Face Down Brown", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "American Porter", - "category": "American Porter and Stout", - "category_id": "20", - "style_id": "20A", - "category_description": "These beers all evolved from their English namesakes to be wholly transformed by American craft brewers. Generally, these styles are bigger, stronger, more roast-forward, and more hop-centric than their traditional Anglo cousins. These styles are grouped together due to a similar shared history and flavor profile.", - "overall_impression": "A malty, bitter, and often somewhat hoppydark beer with a balanced,roasted, and frequently chocolatey character.", - "aroma": "Medium-light to medium-strong roast aroma, often with a chocolate, light coffee,or lightly burnt character, sometimes with a background caramel or toffee sweetness, or a malty richness. The resiny, earthy, or floral hop character can vary from low to high. Moderate fruity esters optional. Should not seem sharp, acrid, or acidic. The malt-hop balance can vary, but it should always have a roasted malt aroma.", - "appearance": "Medium brown to very dark brown, often with ruby- or garnet-like highlights. Can approach black in color. Clear, if not opaque. Full, tan-colored head with moderately good head retention.", - "flavor": "Moderately strong roasted flavor, often with a chocolate and lightly burnt character, sometimes with a sweet caramel or malty richness in support. Medium to high bitterness, and a dry to medium-sweet finish. Dark malts may sharpen this impression, but should not add an acrid, burnt, or harsh flavor. Low to high resiny, earthy, or floral hop flavor, which should not clash with the dark malt. Dry-hopped versions may have a fresh hop or resiny flavor. Moderate fruity esters optional. Should not have an acidic bite.", - "mouthfeel": "Medium to medium-full body. Moderately low to moderately high carbonation. Stronger versions may have a slight alcohol warmth. May have a slight dark malt astringency, but this character should not be strong.", - "comments": "Sometimes called Robust Porter, becoming increasingly hard to find. A rather broad style open to interpretation by the brewer. Dark malt intensity and flavor can vary significantly. May or may not have a strong hop character, or significant fermentation byproducts; thus may seem to have an “American” or “British” character.", - "history": "A stronger, more aggressive version of earlier Pre-Prohibition Porters or English Porters, first brewed in the modern craft beer era (introduced in 1974). This style describes the modern craft version; see Historical Beer", - "notes": "Pre-Prohibition Porter for the older US version.", - "style_comparison": "More bitter and often stronger with more dark malt qualities and dryness than English Porters or Pre-Prohibition Porters. Less strong and assertive than American Stouts.", - "tags": "standard-strength, dark-color, top-fermented, north-america, craft-style, porter-family, bitter, roasty, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.07 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 50 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.012 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.8 - }, - "maximum": { - "unit": "%", - "value": 6.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 22 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "ingredients": "Pale base malt, frequently crystal malt. Dark malts, often black malt or chocolate malt. American hops typically used for bittering, but US or UK finishing hops can be used. Ale yeast can either be clean US versions or characterful English varieties.", - "examples": "Anchor Porter, Bell’s Porter, Deschutes Black Butte Porter, Great Lakes Edmund Fitzgerald Porter, Sierra Nevada Porter, Smuttynose Robust Porter", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "American Stout", - "category": "American Porter and Stout", - "category_id": "20", - "style_id": "20B", - "category_description": "These beers all evolved from their English namesakes to be wholly transformed by American craft brewers. Generally, these styles are bigger, stronger, more roast-forward, and more hop-centric than their traditional Anglo cousins. These styles are grouped together due to a similar shared history and flavor profile.", - "overall_impression": "A fairly strong, highly roasted, bitter, hoppy dark stout. The body and dark flavors typical of stouts with a more aggressive American hop character and bitterness.", - "aroma": "Moderate to strong roast aroma, often with a roasted coffee or dark chocolate quality. Burnt or charcoal aromas are acceptable at low levels. Medium to very low hop aroma, often with a citrusy or resiny character. Medium esters optional. Light alcohol optional. Should not seem sharp, acrid, or acidic.", - "appearance": "Generally a jet black color, although some may appear very dark brown. Large, persistent head of light tan to light brown in color. Usually opaque.", - "flavor": "Moderate to very high roasted flavors, often tasting of coffee, dark or bittersweet chocolate, orroasted coffee beans. May taste of slightly burnt coffee grounds, but this character should not be prominent. Low to medium malt sweetness, often with rich chocolate or caramel flavors. Medium to high bitterness. Low to high hop flavor, generally citrusy or resiny. Medium to dry finish, occasionally with a lightly burnt quality. Low esters optional. Light but smooth alcohol flavor optional.", - "mouthfeel": "Medium to full body. Can be somewhat creamy. Can have a bit of roast-derived astringency, but this character should not be excessive. Medium-high to high carbonation. Light to moderately strong alcohol warmth, but smooth and not excessively hot.", - "comments": "Breweries express individuality through varying the roasted malt profile, malt sweetness and flavor, and the amount of finishing hops used. Generally has bolder roasted malt flavors and hopping than other traditional stouts (except Imperial Stouts). Becoming increasingly hard to find.", - "history": "A modern craft beer and homebrew style that applied a more aggressive American hopping regime to a strong traditional English or Irish Stout. The homebrew version was once known as West Coast Stout, a common naming scheme for a more highly-hopped beer.", - "style_comparison": "Like a hoppy, bitter, strongly roasted Irish Extra Stout. Much more roast and body than a Black IPA. Bigger, stronger versions belong in the Imperial Stout style. Stronger and more assertive, particularly in the dark malt or grain additions and hop character, than American Porter.", - "tags": "high-strength, dark-color, top-fermented, north-america, craft-style, stout-family, bitter, roasty, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 35 - }, - "maximum": { - "unit": "IBUs", - "value": 75 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.022 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 7 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 30 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "ingredients": "Common American base malts, yeast, and hops. Varied use of dark and roasted malts, as well as caramel-type malts. Adjuncts or additives may be present in low quantities to add complexity.", - "examples": "Avery Out of Bounds Stout, Bell’s Kalamazoo Stout, Deschutes Obsidian Stout, Sierra Nevada Stout, Trillium Secret Stairs", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Imperial Stout", - "category": "American Porter and Stout", - "category_id": "20", - "style_id": "20C", - "category_description": "These beers all evolved from their English namesakes to be wholly transformed by American craft brewers. Generally, these styles are bigger, stronger, more roast-forward, and more hop-centric than their traditional Anglo cousins. These styles are grouped together due to a similar shared history and flavor profile.", - "notes": "Traditionally an English style, but it is currently much more popular and widely available in America and internationally, where it is a craft beer favorite, not a historical curiosity.", - "overall_impression": "An intensely-flavored, very strong, very dark stout with a broad range of interpretations. Roasty-burnt malt with a depth of dark or dried fruit flavors, and a warming, bittersweet finish. Despite the intense flavors, the components need to meld together to create a complex, harmonious beer, not a hot mess – sometimes only accomplished with age.", - "aroma": "Rich, deep, complex, and often quite intense, with a pleasant blend of roast, fruit, hops, and alcohol. Light to moderately strong roast can have a coffee, bittersweet or dark chocolate, cocoa, black licorice, tar, or slightly burnt grain quality, sometimes with a light caramel sweetness or toasty maltiness. Low to moderately strong esters often perceived as dark or dried fruits like plums, prunes, figs, black currants, or raisins. Very low to fairly aggressive hops, often English or American in character. Alcohol flavor optional, but should not be sharp, hot, or solventy. The balance between these main four components can vary greatly; not all need to be noticeable, but those present should have a smooth interplay. Age can add another dimension, including a vinous or port-like impression, but not sourness. Age can decrease aroma intensity.", - "appearance": "Color ranges from very dark reddish-brown to jet black. Opaque. Deep tan to dark brown head. Generally has a well-formed head, although head retention may be low to moderate. High alcohol and viscosity may be visible as legs.", - "flavor": "Like the aroma, a complex mix of roast, fruit, hops, and alcohol (same descriptors apply). The flavors can be quite intense, often greater than in the aroma, but the same warning about the balance varying greatly still applies. Medium to aggressively high bitterness. The maltiness balances and supports the other flavors, and may have qualities of bread, toast, or caramel. The palate and finish can be fairly dry to moderately sweet, an impression that often changes with age. Should not by syrupy or cloying. Aftertaste of roast, bitterness, and warmth. Same age effects as in the aroma apply.", - "mouthfeel": "Full to very full-bodied and chewy, with a velvety, luscious texture. The body and texture may decline with age. Gentle, smooth warmth should be present and noticeable, but as a background character. Low to moderate carbonation.", - "comments": "Sometimes known as Russian Imperial Stout or RIS. Varying interpretations exist with American versions having greater bitterness, and more roasted character and late hops, while English varieties often reflect a more complex specialty malt character with a more forward ester profile. Not all Imperial Stouts have a clearly ‘English’ or ‘American’ character; anything in betweenis allowable as well, which is why it is counter-productive to define strict sub-types. Judges must be aware of the broad range of the style, and not try to judge all examples as clones of a specific commercial beer.", - "history": "A style with a long, although not necessarily continuous, heritage. Traces roots to strong English porters brewed for export in the 1700s, and said to have been popular with the Russian Imperial Court. After the Napoleonic wars interrupted trade, these beers were increasingly sold in England. The style eventually all but died out, until being popularly embraced in the modern craft beer era in England as a revival export and in the United States as anadaptation by extending the style with American characteristics.", - "style_comparison": "Darker and more roasty than Barleywines, but with similar alcohol. More complex, with a broader range of possible flavors, than lower-gravity stouts.", - "tags": "very-high-strength, dark-color, top-fermented, british-isles, north-america, traditional-style, craft-style, stout-family, malty, bitter, roasty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.075 - }, - "maximum": { - "unit": "sg", - "value": 1.115 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 50 - }, - "maximum": { - "unit": "IBUs", - "value": 90 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.018 - }, - "maximum": { - "unit": "sg", - "value": 1.03 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 8 - }, - "maximum": { - "unit": "%", - "value": 12 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 30 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "ingredients": "Pale malt with significant roasted malts or grain. Flaked adjuncts common. American or English ale yeast and hops are typical. Ages very well.Increasingly used as the base beer for many specialty styles.", - "examples": "American –Bell’s Expedition Stout, Great Divide Yeti Imperial Stout, North Coast Old Rasputin Imperial Stout, Oskar Blues Ten Fidy, Sierra Nevada Narwhal Imperial Stout; English – 2SP Brewing Co The Russian, Courage Imperial Russian Stout, Le Coq Imperial Extra Double Stout, Samuel Smith Imperial Stout, Thornbridge Saint Petersburg", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "American IPA", - "category": "IPA", - "category_id": "21", - "style_id": "21A", - "category_description": "The IPA category is for modern American IPAs and their derivatives. This does not imply that English IPAs aren’t proper IPAs or that there isn’t a relationship between them. This is simply a method of grouping similar styles for competition purposes. English IPAs are grouped with other English-derived beers, and the stronger Double IPA is grouped with stronger American beers. The term “IPA” is intentionally not spelled out as “India Pale Ale” since none of these beers historically went to India, and many aren’t pale. However, the term IPA has come to be a balance-defined style in modern craft beer.", - "overall_impression": "A decidedly hoppy and bitter, moderately strong,pale American ale. The balance is hop-forward, with a clean fermentation profile, dryish finish, and clean, supporting malt allowing a creative range of hop character to shine through.", - "aroma": "A prominent to intense hop aroma often featuring American or New World hop characteristics, such as citrus, floral, pine, resin, spice, tropical fruit, stone fruit, berry, or melon. Low to medium-low clean, grainy maltiness supports the hop presentation. Generally clean fermentation profile, but light fruitiness acceptable. Restrained alcohol optional.", - "appearance": "Color ranging from medium gold to light reddish-amber. Clear, butlight haze allowable. Medium-sized, white to off-white head with good persistence.", - "flavor": "Medium to very high hop flavor (same descriptors as aroma). Low to medium-low clean and grainy maltiness, possibly with light caramel and toast flavors. Medium-high to very high bitterness.Dry to medium-dry finish. Hoppy, bitter aftertaste with supportive malt. Low esters optional. Background clean alcohol flavor optional.", - "mouthfeel": "Medium-light to medium body, with a smooth texture. Medium to medium-high carbonation. No harshness. Very light, smooth warmth optional.", - "comments": "The basis for many modern variations, including the stronger Double IPA as well as IPAs with various other ingredients. Those other IPAs should generally be entered in the 21B Specialty IPA style. An India Pale Lager (IPL) can be entered as an American IPA if it has a similar character, otherwise 34B Mixed-Style Beer. Oak is inappropriate in this style; if noticeably oaked, enter in 33A Wood-Aged Beer. Dry, sharply bitter, clear examples are sometimes known as West Coast IPA, which is really just a type of American IPA.", - "history": "The first modern American craft beer adaptation of this traditional English style is generally believed to be Anchor Liberty Ale, first brewed in 1975 and using whole Cascade hops; the style has evolved beyond that original beer, which now tastes more like an American Pale Ale in comparison. American-made IPAs from earlier eras were not unknown (particularly the well-regarded Ballantine’s IPA, an oak-aged beer using an old English recipe). This style is based on the modern craft beer examples.", - "style_comparison": "Stronger and more highly hopped than American Pale Ale. Compared to English IPA, has less caramel, bread, and toast; often more American or New World hops; fewer yeast-derived esters; less body and often a more hoppy balance; and is slightly stronger than most examples. Less alcohol than a Double IPA, but with a similar balance.", - "tags": "high-strength, pale-color, top-fermented, north-america, craft-style, ipa-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.056 - }, - "maximum": { - "unit": "sg", - "value": 1.07 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 40 - }, - "maximum": { - "unit": "IBUs", - "value": 70 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.5 - }, - "maximum": { - "unit": "%", - "value": 7.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "ingredients": "Pale base malt. American or English yeast with a clean or slightly fruity profile. Generally all-malt, but sugar additions are acceptable. Restrained use of crystal malts.Often uses American or New World hops but any arevarieties are acceptable; new hop varieties continue to be released and may be used even if they do not have the sensory profiles listed as examples.", - "examples": "Bell’s Two-Hearted Ale, Cigar City Jai Alai, Fat Heads Head Hunter IPA, Firestone Walker Union Jack, Maine Lunch, Russian River Blind Pig IPA", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Specialty IPA", - "category": "IPA", - "category_id": "21", - "style_id": "21B", - "category_description": "The IPA category is for modern American IPAs and their derivatives. This does not imply that English IPAs aren’t proper IPAs or that there isn’t a relationship between them. This is simply a method of grouping similar styles for competition purposes. English IPAs are grouped with other English-derived beers, and the stronger Double IPA is grouped with stronger American beers. The term “IPA” is intentionally not spelled out as “India Pale Ale” since none of these beers historically went to India, and many aren’t pale. However, the term IPA has come to be a balance-defined style in modern craft beer.", - "notes": "Specialty IPAis a competition entry category, not a distinct style. Beers entered here are not experimental beers; they are a collection of currently-produced types of beer that may or may not have any market longevity. This category also allows for expansion, so potential future IPA variants (St. Patrick’s Day Green IPA, Romulan Blue IPA, Zima Clear IPA, etc.) have a place to be entered without rewriting the style guidelines. The only common element is that they have the balance and overall impression of an IPA (typically, an American IPA) but with some minor tweak.The term ‘IPA’ is used as a singular descriptor of a type of hoppy, bitter beer. It is not meant to be spelled out as ‘India Pale Ale’ when used in the context of a Specialty IPA. None of these beers ever historically went to India, and many aren’t pale. But the craft beer market knows what to expect in balance when a beer is described as an ‘IPA’ – so the modifiers used to differentiate them are based on that concept alone.The Specialty IPA category is not intended for Classic-style IPAs with added ingredients (such as fruit, spice, wood, smoke, grains, or sugars) – these should be entered in the appropriate Specialty-Type beer category (Fruit Beer, SHV Beer, etc.). The Specialty IPA styles are considered Classic Styles for entering in Specialty-Type category purposes. Classic-style IPAs with unique or special hops should still be entered in the appropriate Classic-style IPA style.", - "overall_impression": "A beer with the dryness, hop-forward balance, and flavor characteristics of an American IPA, but darker in color. Darker malts add a gentle and supportive flavor, not a strongly roasted or burnt character.", - "aroma": "Moderate to high hop aroma, often with a stone fruit, tropical, citrusy, resinous, pine, berry, or melon character. Very low to moderate malt, possibly with light chocolate, coffee, or toast notes, as well as a background caramel sweetness. Clean fermentation profile, but light esters acceptable.", - "appearance": "Dark brown to black color. Clear, if not opaque. Light haze allowable, but should not be murky. Light tan to tan head, moderate size, persistent.", - "flavor": "Medium-low to high hop flavor, same descriptors as aroma. Low to medium malt flavor, with restrained chocolate or coffee notes, but not burnt or ashy. The roasted notes should not clash with the hops. Light caramel or toffee optional. Medium-high to very high bitterness. Dry to slightly off-dry finish, with a bitter but not harsh aftertaste, often with a light roast flavor that can contribute to the dry impression. Low to moderate esters optional. Background alcohol flavor optional.", - "mouthfeel": "Smooth.Medium-light to medium body. Medium carbonation. Light creaminess optional. Light warmth optional.", - "comments": "Most examples are standard strength. Strong examples can sometimes seem like big, hoppy porters if made too extreme, which hurts their drinkability.", - "entry_instructions": "Entrant must specify a strength (session, standard, double); if no strength is specified, standard will be assumed. Entrant must specify specific type of Specialty IPA from the list of Currently Defined Typesidentified in the Style Guidelines, or as amended by Provisional Styles on the BJCP website; OR the entrant must describe the type of Specialty IPA and its key characteristics in comment form so judges will know what to expect. Entrants may specify specific hop varieties used, if entrants feel that judges may not recognize the varietal characteristics of newer hops. Entrants may specify a combination of defined IPA types (e.g., Black Rye IPA) without providing additional descriptions.", - "currently_defined_types": "Belgian IPA, Black IPA, Brown IPA, Red IPA, Rye IPA, White IPA, Brut IPA", - "strength_classifications": "Session – ABV: 3.0 – 5.0%Standard – ABV: 5.0 – 7.5%Double – ABV: 7.5 – 10.0%Specialty IPA: Belgian IPA", - "history": "An American IPA variantfirst commercially produced by Greg Noonan as Blackwatch IPA around 1990. Popularized in the Pacific Northwest and Southern California of the US starting in the early-mid 2000s, and was a popular fad in the early 2010s before fading into obscurity in the US.", - "style_comparison": "Balance and overall impression of an American or Double IPA with restrained roast similar to the type found in Schwarzbier. Not as rich and roasty as American Stout and Porter, and with less body and increased smoothness and drinkability.", - "tags": "high-strength, dark-color, top-fermented, north-america, craft-style, ipa-family, specialty-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.05 - }, - "maximum": { - "unit": "sg", - "value": 1.085 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 50 - }, - "maximum": { - "unit": "IBUs", - "value": 90 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5.5 - }, - "maximum": { - "unit": "%", - "value": 9 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 25 - }, - "maximum": { - "unit": "SRM", - "value": 40 - } - }, - "ingredients": "Debittered roast malts. Any American or New World hop character is acceptable; new hop varieties continue to be released and should not constrain this style to the example hop characteristics listed.", - "examples": "21st Amendment Back in Black, Duck-Rabbit Hoppy Bunny ABA, Stone Sublimely Self-Righteous Black IPA", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Hazy IPA", - "category": "IPA", - "category_id": "21", - "style_id": "21C", - "category_description": "The IPA category is for modern American IPAs and their derivatives. This does not imply that English IPAs aren’t proper IPAs or that there isn’t a relationship between them. This is simply a method of grouping similar styles for competition purposes. English IPAs are grouped with other English-derived beers, and the stronger Double IPA is grouped with stronger American beers. The term “IPA” is intentionally not spelled out as “India Pale Ale” since none of these beers historically went to India, and many aren’t pale. However, the term IPA has come to be a balance-defined style in modern craft beer.", - "overall_impression": "An American IPA with intense fruit flavors and aromas, a soft body, smooth mouthfeel, and often opaque with substantial haze. Less perceived bitterness than traditional IPAs but always massively hop-forward.", - "aroma": "Intense hop aroma, with stone fruit, tropical fruit, citrus, or other fruity qualities; not grassy or herbal. Clean, neutral, grainy,or lightly bready malt in the background; no caramel or toast. Absence of any malt character is a fault. Neutral to fruity fermentation character. Esters from yeast and hops should not clash. A creamy, buttery, or acidic aroma is inappropriate. Light alcohol aroma optional.", - "appearance": "Color ranging from straw to very light amber, sometimes with an orange hue. Hazy, often opaque, clarity; should not be cloudy or murky. The opacity can add a ‘shine’ to the beer and make the color seem darker. Any visible floating hop matter, yeast clumps, or other particulates is a fault. Medium to rocky, meringue-like white head with high to very high retention.", - "flavor": "High to very high fruity hop flavor, same descriptors as aroma. Low to medium malt flavor, same descriptors as aroma. Low to medium-high perceived bitterness, often masked by the fuller body and soft, off-dry to medium finish. The hop character in the aftertaste should not be sharp or harsh. Neutral to fruity fermentation profile, supportive of the hops. Should not be sweet, although high ester levels and lower bitterness may sometimes give that impression. Background alcohol flavor optional.", - "mouthfeel": "Medium to medium-full body. Medium carbonation. Smooth. No harshness. Lightwarmth optional.The beer should not have a creamy or viscous mouthfeel, an acidic twang, or a raw starch texture.", - "comments": "Also known as New England IPA or NEIPA. An emphasis on late hopping, especially dry-hopping, with hops with tropical fruit qualities lends the ‘juicy’ character for which this style is known.Heavy examples suggestive of milkshakes, creamsicles, or fruit smoothies are outside this style; IPAs should always be drinkable. Haziness comes from dry-hopping, not suspended yeast, starch haze, or other techniques; a hazy shine is desirable, not a cloudy, murky mess.", - "history": "A modern craft beer style originating in the New England region of the United States as an American IPA variant. Alchemist Heady Topper is believed to be the original inspiration as the style grew in popularity during the 2010s. The style continues to evolve, including a trend towards lower bitterness and using the style as the base for other additions.", - "style_comparison": "Has a fuller, softer mouthfeel, a more fruit-forward late hop expression, a more restrained perceived bitterness balance, and a hazier appearance than American IPA. Many modern American IPAs are fruity and somewhat hazy; examples with a dry, crisp finish, at most medium body, and high perceived bitternessshould be entered as 21A American IPA. Noticeable additions of fruit, lactose, vanilla, etc. to increase the fruity, smooth character should be entered in a specialty category defined by the additives (e.g., 29A Fruit Beer, 29C Specialty Fruit Beer, 30D Specialty Spice Beer).", - "tags": "high-strength, pale-color, top-fermented, north-america, craft-style, ipa-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.06 - }, - "maximum": { - "unit": "sg", - "value": 1.085 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 60 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6 - }, - "maximum": { - "unit": "%", - "value": 9 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 7 - } - }, - "ingredients": "Grist like an American IPA, but with more flakedgrains and less caramel or specialty malts. American or New World hops with fruity characteristics. Neutral to estery yeast. Balanced to chloride-rich water. Heavily dry-hopped, partly during active fermentation, using a variety of hopping doses and temperatures to emphasis depth of hop aroma and flavor over bitterness. Biotransformation of hop oils during fermentation adds to the depth and fruit complexity.", - "examples": "Belching Beaver Hazers Gonna Haze, Hill Farmstead Susan, Other Half Green Diamonds Double IPA, Pinthouse Electric Jellyfish, Tree House Julius, Trillium Congress Street, WeldWerks Juicy Bits", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Double IPA", - "category": "Strong American Ale", - "category_id": "22", - "style_id": "22A", - "category_description": "This category includes modern American strong ales with a varying balance of malt and hops. The category is defined mostly by higher alcohol strength and a lack of roast.", - "overall_impression": "An intensely hoppy, fairly strong, bitter pale ale without the big, rich, complex maltiness, residual sweetness, and body of an American Barleywine. Strongly hopped, but clean, dry, and lacking harshness. Despite showing its strength, drinkability is an important consideration.", - "aroma": "A prominent to intense hop aroma typically featuringmodern American or New World hop characteristics such as citrus, floral, pine, resin, spice, tropical fruit, stone fruit, berry, or melon. A supportive, clean, neutral to grainy maltiness may be found in the background. Neutral to lightly fruity fermentation profile. Alcohol may be noted, but should not be solventy.", - "appearance": "Gold to light orange-copper color, but most modern versions are fairly pale. Good clarity, although a little haze is acceptable. Moderate-sized, persistent, white to off-white head.", - "flavor": "Strong and complex hop flavor (same descriptors as aroma). Moderately high to very high bitterness, but should not be harsh. Low to medium supportive, clean, soft, unobtrusivemalt character; may have light caramel or toast flavors. Dry to medium-dry finish, not sweet or heavy, with a lingering hoppy, bitter aftertaste. Low to moderate fruitiness optional. A light, clean, smooth alcohol flavor is allowable.", - "mouthfeel": "Medium-light to medium body, with a smooth texture. Medium to medium-high carbonation. No harsh hop-derived astringency. Restrained, smooth alcohol warmth acceptable.", - "comments": "Rarely called Imperial IPA. Many modern versions have multiple dry-hop additions.", - "history": "An American craft beer innovation first developed in the mid-late 1990s as more intense version of American IPA. Became more mainstream and popular throughout the 2000s, and inspired additional IPA creativity. Russian River Pliny the Elder, first brewed in 2000, helped popularize the style.", - "style_comparison": "Bigger than English and American IPAs in alcohol strength, bitterness, and hoppiness. Less malty-rich, less body, drier, and with a greater overall hop balance than American Barleywine.", - "tags": "very-high-strength, pale-color, top-fermented, north-america, craft-style, ipa-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.065 - }, - "maximum": { - "unit": "sg", - "value": 1.085 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 60 - }, - "maximum": { - "unit": "IBUs", - "value": 100 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 7.5 - }, - "maximum": { - "unit": "%", - "value": 10 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "ingredients": "Neutral base malt. Sugar adjuncts common. Crystal malts rare. American or New World hops. Neutral or lightly fruity yeast. No oak.", - "examples": "Columbus Brewing Bohdi, Fat Head’s Hop Juju, Port Brewing Hop-15, Russian River Pliny the Elder, Stone Ruination Double IPA 2.0, Wicked Weed Freak of Nature", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "American Strong Ale", - "category": "Strong American Ale", - "category_id": "22", - "style_id": "22B", - "category_description": "This category includes modern American strong ales with a varying balance of malt and hops. The category is defined mostly by higher alcohol strength and a lack of roast.", - "notes": "A grouping of beers with similar balance and profile rather than a distinct style. A category for a variety of stronger, bitter-and-malty beers that aren’t quite Barleywines.", - "overall_impression": "A malty, bitter, and strong American Ale fitting in the space between American Barleywine, Double IPA, and Red IPA. The malty and hoppy flavors can be quite strong, but are generally in balance.", - "aroma": "Medium to high hop aroma typically featuring modern American or New World hop characteristics such as citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon. Moderate to bold maltiness supporting the hop profile, with medium to dark caramel common, toasty or bready possible, and background notes of light roast or chocolate allowable. Neutral to moderately fruity fermentation profile. Alcohol may be noted, but should not be solventy.", - "appearance": "Medium amber to deep copper or light brown. Moderate-low to medium-sized off-white to light tan head; may have low head retention. Good clarity. Legs possible.", - "flavor": "Medium to high malt, with a caramel, toffee, or dark fruit quality. Malt complexity can include additional toasty, bready, or rich flavors in support. Light chocolate or roast allowable, but should not be burnt or sharp. Medium-high to high bitterness. Moderate to high hop flavor, same descriptors as aroma. Low to moderate esters. May have a noticeable alcohol flavor, but should not be sharp. Medium to high malty sweetness on the palate, finishing somewhat dry to somewhat sweet. Should not be syrupy, sweet, or cloying. Bitter to bittersweet aftertaste, with hops, malt, and alcohol noticeable.", - "mouthfeel": "Medium to full body. An alcohol warmth may be present, but should not be excessively hot. Light hop astringency allowable. Medium-low to medium carbonation.", - "comments": "A fairly broad style describing beers labeled in various ways, including modern Double Red Ales and other strong, malty-but-hoppy beers that aren’t quite in the Barleywine class. Diverse enough to include what may be viewed as a strong American Amber Ale with room for stronger versions of other American Ale styles.", - "history": "While modern craft versions were developed as “imperial” strength versions of American amber or red ales, the style has much in common with historic American Stock Ales. Strong, malty beers were highly hopped to keep as provision beers prior to Prohibition. There is no continuous legacy of brewing stock ales in this manner, but the resemblance is considerable (albeit without the age character).", - "style_comparison": "Generally not as strong and as rich as an American Barleywine. More malt balanced than an American or Double IPA. More American hop intensity than a British Strong Ale. Maltier and fuller-bodied than a Red IPA.", - "tags": "high-strength, amber-color, top-fermented, north-america, craft-style, strong-ale-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.062 - }, - "maximum": { - "unit": "sg", - "value": 1.09 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 50 - }, - "maximum": { - "unit": "IBUs", - "value": 100 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.014 - }, - "maximum": { - "unit": "sg", - "value": 1.024 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6.3 - }, - "maximum": { - "unit": "%", - "value": 10 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 7 - }, - "maximum": { - "unit": "SRM", - "value": 18 - } - }, - "ingredients": "Pale base malt. Medium to dark crystal malts common. American or New World hops. Neutral or lightly fruity yeast.", - "examples": "Arrogant Bastard Ale, Fat Head’s Bone Head, Great Lakes Nosferatu, Oskar Blues G’Knight, Port Brewing Shark Attack Double Red Ale", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "American Barleywine", - "category": "Strong American Ale", - "category_id": "22", - "style_id": "22C", - "category_description": "This category includes modern American strong ales with a varying balance of malt and hops. The category is defined mostly by higher alcohol strength and a lack of roast.", - "overall_impression": "A very strong, malty, hoppy, bitter American ale with a rich palate, full mouthfeel, and warming aftertaste, suitable for contemplative sipping.", - "aroma": "Strong malt and hop aroma dominates. Hops are moderate to assertive, showing a range of American, New World, or English characteristics. Citrusy, fruity, or resiny are classic attributes, but others are possible, including those from modern hops. Strong grainy, bready, toasty, light caramel, or neutral malt richness, but typically not with darker caramel, roast, or deep fruit aspects. Low to moderately strong esters and alcohol, lower in the balance than the malt and hops. Intensities fade with age.", - "appearance": "Color ranges from amber to medium copper, rarely up to light brown. Ruby highlights common. Moderately-low to large off-white to light tan head; may have low head retention. Good to brilliant clarity but may have some chill haze. The color may appear to have great depth, as if viewed through a thick glass lens. Legs possible.", - "flavor": "Similar malt and hop flavors as the aroma (same descriptors apply). Moderately strong to aggressive bitterness, tempered by a rich, malty palate. Moderate to high hop flavor. Low to moderate esters. Noticeable alcohol, but not solventy. Moderately low to moderately high malty sweetness on the palate, with a somewhat malty to dry but full finish. Age will often dry out the beer, and smooth out the flavors. The balance is malty, but always bitter.", - "mouthfeel": "Full-bodied and chewy, with a velvety, luscious texture, declining with age. A smooth alcohol warmth should be noticeable, but shouldn’t burn. Carbonation may be low to moderate, depending on age and conditioning.", - "comments": "Sometimes labeled as “Barley Wine” or “Barleywine-style ale”. Recently many US breweries seem to have discontinued their Barleywines, made them barrel-aged, or rebranded them as some form of IPA.", - "history": "Traditionally the strongest ale offered by a brewery, often associated with the winter season and vintage-dated. As with many American craft beer styles, an adaptation of an English style using American ingredients and balance. One of the first American craft beer versions was Anchor Old Foghorn, first brewed in 1975. Sierra Nevada Bigfoot, first brewed in 1983, set the standard for the hop-forward style of today. The story goes that when Sierra Nevada first sent Bigfoot out for lab analysis, the lab called and said, “your Barleywine is too bitter” – to which Sierra Nevada replied, “thank you.”", - "style_comparison": "Greater emphasis on hop bitterness, flavor, and aroma than English Barley Wine, often featuring American hop varieties. Typically paler than the darker English Barley Winesand lacking their deeper malt flavors, but darker than the golden English Barley Wines. Differs from a Double IPA in that the hops are not extreme, the malt is more forward, and the body is fuller and often richer. American Barleywine typically has more residual sweetness than Double IPA, which affects the overall drinkability (sipping vs. drinking).", - "tags": "very-high-strength, amber-color, top-fermented, north-america, craft-style, strong-ale-family, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.08 - }, - "maximum": { - "unit": "sg", - "value": 1.12 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 50 - }, - "maximum": { - "unit": "IBUs", - "value": 100 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.016 - }, - "maximum": { - "unit": "sg", - "value": 1.03 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 8 - }, - "maximum": { - "unit": "%", - "value": 12 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 9 - }, - "maximum": { - "unit": "SRM", - "value": 18 - } - }, - "ingredients": "Pale malt with some specialty malts. Dark malts used with great restraint. Many varieties of hops can be used, but typically includes American hops. American or English ale yeast.", - "examples": "Anchor Old Foghorn, Bell’s Third Coast Old Ale,East End Gratitude, Hair of the Dog Doggie Claws, Sierra Nevada Bigfoot", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Wheatwine", - "category": "Strong American Ale", - "category_id": "22", - "style_id": "22D", - "category_description": "This category includes modern American strong ales with a varying balance of malt and hops. The category is defined mostly by higher alcohol strength and a lack of roast.", - "overall_impression": "A richly textured, high alcohol sipping beer with a significant grainy, bready flavor, and a sleek body. The emphasis is first on the bready, wheaty flavors with malt, hops, fruity yeast, and alcohol complexity.", - "aroma": "Hop aroma is mild and can represent just about any hop variety. Moderate to moderately-strong bready, wheaty malt character, often with additional malt complexity such as honey and caramel. A light, clean, alcohol aroma may be noted. Low to medium fruity notes may be apparent. Very low diacetyl optional. Banana-and-clove Weizen yeast character is inappropriate.", - "appearance": "Color ranging from gold to deep amber, often with garnet or ruby highlights. Low to medium off-white head. The head may have creamy texture, and good retention. Chill haze is allowable, but usually clears up as the beer gets warmer. High alcohol and viscosity may be visible aslegs.", - "flavor": "Moderate to moderately-high bready wheat malt flavor, dominant in the flavor balance over any hop character. Low to moderate toasty, caramel, biscuity, or honey malt notes can add a welcome complexity, but are not required. Low to medium hop flavor, reflecting any variety. Moderate to moderately-high fruitiness, often with a dried-fruit character. Low to moderate bitterness, creating a malty to even balance. Should not be syrupy or under-attenuated.", - "mouthfeel": "Medium-full to full body. Chewy, often with a luscious, velvety texture. Low to moderate carbonation. Light to moderate smooth alcohol warmthoptional.", - "comments": "Much of the color arises from a lengthy boil. Some commercial examples may be stronger than the Vital Statistics.", - "history": "An American craft beer style that was first brewed at the Rubicon Brewing Company in 1988. Usually a winter seasonal, vintage, or one-off release.", - "style_comparison": "More than simply a wheat-based Barleywine, many versions have very expressive fruity and hoppy notes, while others develop complexity through oak aging. Less emphasis on the hops than American Barleywine. Has roots in American Wheat Beer rather than any German wheat style, so should not have any Weizen yeast character.", - "tags": "very-high-strength, amber-color, top-fermented, north-america, craft-style, strong-ale-family, wheat-beer-family, balanced, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.08 - }, - "maximum": { - "unit": "sg", - "value": 1.12 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 30 - }, - "maximum": { - "unit": "IBUs", - "value": 60 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.016 - }, - "maximum": { - "unit": "sg", - "value": 1.03 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 8 - }, - "maximum": { - "unit": "%", - "value": 12 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "ingredients": "Typically brewed with a combination of American two-row and American wheat. Style commonly uses 50% or more wheat malt. Restrained use of dark malts. Any variety of hops may be used. May be oak-aged.", - "examples": "The Bruery White Oak, Castelain Winter Ale, Perennial Heart of Gold, Two Brothers Bare Tree", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Berliner Weisse", - "category": "European Sour Ale", - "category_id": "23", - "style_id": "23A", - "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", - "overall_impression": "A very pale, refreshing, low-alcohol German wheat beer with a clean lactic sourness and a very high carbonation level. A light bread dough malt flavor supports the sourness, which shouldn’t seem artificial. A gentle fruitiness is found in the best examples.", - "aroma": "A moderate to moderately-high sharply sour character is dominant. Can have up to a moderately fruitiness, often lemon, tart apple, peach, or apricot, and a light floral note. No hop aroma. The wheat may be perceived as raw bread dough in fresher versions; combined with the acidity, may suggest sourdough bread.", - "appearance": "Straw in color, can be very pale. Clarity ranges from clear to somewhat hazy. Large, dense, white head with poor retention. Highly effervescent.", - "flavor": "Clean lactic sourness dominates and can be quite strong. A complementary doughy, bready, or grainy wheat flavor is generally noticeable. Hop bitterness is undetectable; sourness provides the balance rather than hops. Never vinegary. Bright yet restrained fruitiness may be detected asapricot-peach,citrus-lemon, or tart apple. Very dry finish. Balance dominated by sourness, but some malt flavor should be present. No hop flavor. No THP.", - "mouthfeel": "Light body, but never thin. Very high carbonation. No sensation of alcohol. Crisp acidity.", - "comments": "Any Brettcharacter is restrained, and is typically expressed as fruity and floralnotes, not funky.Aged examples can show a cider, honey, hay, or gentle wildflower character, and sometimes increased acidity.In Germany, it is classified as a Schankbier denoting a small beer of starting gravity in the range 7-8 °P. Fruited or Spiced versions should be entered as 29A Fruit Beer, as 30A Spice, Herb, or Vegetable Beer, or as 29B Fruit and Spice Beer.", - "history": "A regional specialty of Berlin.Referred to by Napoleon's troops in 1809 as “the Champagne of the North” due to its lively and elegant character. At one point, it was smoked and there used to be Märzen-strength (14 °P) version. Increasingly rare in Germany, but now produced in several other countries.", - "style_comparison": "Compared to Lambic, has a clean lactic sourness with restrained to below sensory threshold Brett. Also lower in alcohol content.Compared to Straight Sour Beer and Catharina Sour, is lower gravity and may contain Brett.", - "tags": "session-strength, pale-color, top-fermented, central-europe, traditional-style, wheat-beer-family, sour", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.028 - }, - "maximum": { - "unit": "sg", - "value": 1.032 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 3 - }, - "maximum": { - "unit": "IBUs", - "value": 8 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.003 - }, - "maximum": { - "unit": "sg", - "value": 1.006 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 2.8 - }, - "maximum": { - "unit": "%", - "value": 3.8 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 3 - } - }, - "ingredients": "Pilsner malt. Usually wheat malt, often at least half the grist. A symbiotic co-fermentation with top-fermenting yeast and LAB provides the sharp sourness, which may be enhanced by blending of beers of different ages during fermentation and by cool aging. Decoction mashing with mash hopping is traditional. German brewing scientists believe that Brett is essential to get the correct, fruity-floral flavor profile.", - "examples": "Bayerischer Bahnhof Berliner Style Weisse, Berliner Berg Berliner Weisse, Brauerei Meierei Weiße, Lemke Berlin Budike Weisse, Schell's Brewing Company Schelltheiss, Urban Chestnut Ku’damm", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Flanders Red Ale", - "category": "European Sour Ale", - "category_id": "23", - "style_id": "23B", - "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", - "overall_impression": "A sour and fruityoak-aged reddish-brown Belgian-style ale with supportive toasty malt flavors and fruit complexity. The dry, tannic finish supports the suggestion of a vintage red wine.", - "aroma": "Complex fruity-sour profile with supporting malt. Fruitiness is high, and reminiscent of black cherries, oranges, plums, red currants, or fruit leather. Low to medium-low vanilla, chocolate,or peppery phenolcan be present for complexity. The sour aroma ranges from moderate to high. A dominant vinegary character is inappropriate, although low to moderate levels of acetic acid are acceptable if balanced with the malt. No hop aroma.", - "appearance": "Deep red, burgundy to reddish-brown in color. Good clarity. White to very pale tan head. Average to good head retention.", - "flavor": "Moderate to moderately-high malty flavors often have a soft toasty-rich quality. Intense fruit flavors, same descriptors as aroma. Complex, moderate to high sourness, accentuated by the esters; should not be a simple lactic sourness. A dominant vinegary character is inappropriate, although low to moderate acetic acid is acceptable if balanced with the malt. Generally as the sour character increases, the malt character fades to more of a background flavor (and vice versa). Lowto medium-low vanilla, chocolate, or peppery phenolsoptional. No hop flavor. Restrained bitterness; balanced to the malt side. Acids and tannins can enhance the perception of bitterness, and provide balance and structure. Some versions are sweetened, or blended to be sweet; allow for a wide range of sweetness levels, which can soften the acidic bite and acetic perception.", - "mouthfeel": "Medium body, often enhanced by tannins. Low to medium carbonation. Low to medium astringency, often with a prickly acidity. Deceivingly light and crisp on the palate although a somewhat sweet finish is not uncommon.", - "comments": "The “wine-like” observation should not be taken too literally; it may suggest a high-acid French Burgundy to some, but it is clearly not identical. Produced by long aging (up to two years) in large wooden vats (foeders), blending of young and well-aged beer, and variable amounts of sweetening of the final product.A wide range of products are possible depending on the actual blend and whether any sweetening takes place. Acetic flavors may be noted, but not all acidity in this beer is from acetic acid; vinegar is over six times greater in total acidity than this style. Fruited versions should be entered as a 29A Fruit Beer.", - "history": "An indigenous beer of West Flanders, typified by the products of the Rodenbach brewery, established in 1821. Aging in wooden vats and blending of old and young beers borrowed from the English tradition. Belgian brewers consider Flanders Red and Oud Bruin to be of the same style family, but the distinction was first made when Michael Jackson first defined beer styles, since the flavor profiles are distinctly different.Many modern examples are influenced by the popularity of Rodenbach Grand Cru.Characteristic Ingredients: Vienna or Munich malts, a variety of caramel malts, maize. Low alpha acid continental hops. Sacch, Lacto, and Brett. Aged in oak. Sometimes blended and sweetened (natural or artificial).", - "style_comparison": "Less malty-rich than an Oud Bruin, often with more of a fruity-tart and acetic profile.", - "tags": "standard-strength, amber-color, top-fermented, western-europe, traditional-style, balanced, sour, wood", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.057 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 10 - }, - "maximum": { - "unit": "IBUs", - "value": 25 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.002 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.6 - }, - "maximum": { - "unit": "%", - "value": 6.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 10 - }, - "maximum": { - "unit": "SRM", - "value": 17 - } - }, - "examples": "Cuvée des Jacobins, Duchesse de Bourgogne, New Belgium La Folie,Rodenbach Classic, Rodenbach Grand Cru, Vichtenaar Flemish Ale", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Oud Bruin", - "category": "European Sour Ale", - "category_id": "23", - "style_id": "23C", - "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", - "overall_impression": "A malty, fruity, aged, somewhat sour Belgian-style brown ale with a caramel-chocolate malt flavor, and often substantial alcohol.", - "aroma": "Richly malty with fruity esters and an aged sourness. Medium to medium-high esters commonly reminiscent of raisins, plums, figs, dates, oranges, black cherries, or prunes. Medium-low to medium-high malt with caramel, toffee, treacle, or chocolatecharacter. Low spicy-peppery phenols optional. A low sour aroma may be present, and can modestly increase with age but should not grow to a strongly acetic, vinegary character. Hop aroma absent.Aged examples can show a lightly nutty, sherry-like oxidation character.", - "appearance": "Dark reddish-brown to brown in color. Good clarity. Average to good head retention. Ivory to light tan head color.", - "flavor": "Malty with fruity complexity and typically some dark caramel or burnt sugar flavor. Medium-low to medium-high malt, same descriptors as aroma.Medium to medium-high fruitiness, same descriptors as aroma. Low spicy-peppery phenols optional. A slight sourness often becomes more pronounced in well-aged examples, along with some sherry-like character, producing a “sweet-and-sour” profile and aftertaste. The sourness should not grow to a strongly acetic, vinegary character. Hop flavor absent. Restrained hop bitterness. Balance is malty, but with fruitiness and sourness present. Blending and sweetening may produce a range of finishes, and balances.", - "mouthfeel": "Medium to medium-full body. Low to moderate carbonation. No astringency. Stronger versions can be noticeably warming.", - "comments": "Long aging and blending of young and aged beer may occur, adding smoothness and complexity and balancing any harsh, sour character. Traditionally, this style was designed to lay down so examples with a moderate aged character are considered superior to younger examples. Fruited versions should be entered as a29A Fruit Beer.", - "history": "An indigenous beer of East Flanders, typified by the products of the Liefman brewery with roots back to the 1600s. Belgian brewers consider Flanders Red and Oud Bruin to be of the same style family, but the distinction was first made when Michael Jackson first defined beer styles, since the flavor profiles are distinctly different.Many modern examples are influenced by the popularity of Liefmans Goudenband. Unrelated to the dark, sweet Dutch lager of the same name.", - "style_comparison": "A deeper malt character with more caramel, toffee, and chocolate flavorsand darker color distinguishes these beers from Flanders Red Ale. The Oud Bruin is less acetic and maltier than a Flanders Red, and the fruity flavors are more malt-oriented. In modern times, Oud Bruin also tends to be higher in alcohol than is typically seen in Flanders Red Ales. Differs from Lambic in that they are not spontaneously fermented, and don’t contain wheat.", - "tags": "standard-strength, dark-color, top-fermented, western-europe, traditional-style, malty, sour", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.074 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "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 - }, - "maximum": { - "unit": "%", - "value": 8 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 17 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "ingredients": "Pils malt, dark crystal malts,maize, small amounts ofcolor malt. Low alpha acid continental hops. Sacch and Lacto. Aged. Water with carbonates and magnesium typical of its home region.", - "examples": "Ichtegem Oud Bruin, Liefmans Goudenband, Liefmans Oud Bruin, Petrus Roodbruin, pFriem Oud Bruin, VanderGhinste Roodbruin", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Lambic", - "category": "European Sour Ale", - "category_id": "23", - "style_id": "23D", - "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", - "overall_impression": "A fairly sour, often moderately funky, wild Belgian wheat beer with sourness taking the place of hop bitterness in the balance. Traditionally served uncarbonated as a café drink.", - "aroma": "Young versions can be quite sour and fruity, but can develop barnyard, earthy, goaty, hay, horsey, or horse blanket funkiness with age. The fruit character can take on a light citrus fruit, citrus rind, pome fruit, or rhubarb quality, getting more complex with age. Malt can have a light bready, grainy, honey, or wheat-like quality, if noticeable. Should not have enteric, smoky, cigar-like, or cheesy faults. No hops.", - "appearance": "Pale yellow to deep golden in color; age tends to darken the beer. Clarity is hazy to good. Younger versions are often cloudy, while older ones are generally clear. White colored head generally has poor retention.", - "flavor": "Young versions often have a strong lactic sourness with fruity flavors (same descriptors as aroma), while aged versions are more balanced and complex. Funky notes can develop over time, same descriptors as aroma. Low bready, grainy malt. Bitterness generally below sensory threshold; sourness provides the balance. No hop flavor. Dry finish, increasing with age.Should not have enteric, smoky, cigar-like, or cheesy faults.", - "mouthfeel": "Light to medium-light body; should not be watery. Has a medium to high tart, puckering quality without being sharply astringent. Traditional versions are virtually to completely uncarbonated, but bottled examples can pick up moderate carbonation with age.", - "comments": "A single-batch, unblended beer, reflecting the house character of the brewery. Generally served young (6 months) from the cask. Younger versions tend to be one-dimensionally sour since a complex Brett character takes a year or more to develop. A noticeable vinegary or cidery character is considered a fault by Belgian brewers. Typically bottled only when completely fermented. Lambic sweetened with raw sugar at service time is known as Faro.", - "history": "Spontaneously-fermented ‘wild’ ales from the area in and around Brussels (also known as the Senne Valley and thePajottenland) stem from a farmhouse brewing tradition several centuries old. The number of producers is constantly dwindling.", - "style_comparison": "Often has a simpler sourness and less complexity than a Gueuze, but more variability from batch to batch. Traditionally served uncarbonated from pitchers, while Gueuze is bottled and very highly carbonated.", - "tags": "standard-strength, pale-color, wild-fermented, western-europe, traditional-style, wheat-beer-family, sour", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 0 - }, - "maximum": { - "unit": "IBUs", - "value": 10 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.001 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 6.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "ingredients": "Pilsner malt, unmalted wheat. Aged hops (3+ years) used more as a preservative than for bitterness. Spontaneously fermented with naturally occurring yeast and bacteria in well-used, neutral oak barrels.", - "examples": "Cantillon Grand Cru Bruocsella. In the Brussels area, many specialty cafés have draught lambic from Boon, De Cam, Cantillon, Drie Fonteinen, Lindemans, Timmermans, Girardin and others.", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Gueuze", - "category": "European Sour Ale", - "category_id": "23", - "style_id": "23E", - "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", - "overall_impression": "A very refreshing, highly carbonated, pleasantly sour but balanced wild Belgian wheat beer. The wild beer character can be complex and varied, combining sour, funky, and fruity flavors.", - "aroma": "Moderately sour with complex but balanced funkiness accented by fruity notes. The funkiness can be moderate to strong, and can be described as barnyard, leather, earthy, goaty, hay, horsey, or horse blanket. Fruitiness is light to moderate, with a citrus fruit, citrus rind, pome fruit, or rhubarb quality. Malt is supportive, and can be lightly bready, grainy, honey, or wheat-like, if noticeable. Should not have enteric, smoky, cigar-like, or cheesy faults. No hops. Light oak acceptable. Complexity of aroma is valued more than intensity, but a balanced sour presentation is desirable.", - "appearance": "Golden color, with excellent clarity and a thick, rocky, mousse-like, white head that seems to last forever. Effervescent.", - "flavor": "Sour and funky on the palate, with a similar character as the aroma (same descriptors and intensities apply for funk and fruit). Low bready, grainy malt. Bitterness low to none; sourness provides most of the balance. No hop flavor. Crisp, dry finish, with a tart and funky aftertaste.Light oak, vanilla, and honey are acceptable. Should not have enteric, smoky, cigar-like, or cheesy faults. The beer should not be one dimensionally sour; a balanced, moderately sour presentation is classic, with the funky and fruity notes providing complexity. May be aged.", - "mouthfeel": "Light to medium-light body; should not be watery. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a very light warming character. Highly carbonated.", - "comments": "Blending young and aged lambic creates a more complex product, and often reflects the personal taste of the blender.A noticeable vinegary or cidery character is considered a fault by Belgian brewers. A good Gueuze is not the most pungent, but possesses a full and tantalizing bouquet, a sharp aroma, and a soft, velvety texture. Lambic is served uncarbonated, while Gueuze is served sparkling. Products marked oude or vieille(“old”) are considered most traditional.", - "history": "Same basic history as Lambic, but involves blending, which may be performed outside the brewery. Some of the best examples are produced by blenders, who ferment, age, blend, and package the final product. Some modern producers are sweetening their products post-fermentation to make them more palatable to a wider audience. These guidelines describe the traditional dry product.", - "style_comparison": "More complex and carbonated than a Lambic. The sourness isn’t necessarily stronger, but it tends to have more of a well-developed wild character.", - "tags": "high-strength, pale-color, wild-fermented, western-europe, traditional-style, wheat-beer-family, aged, sour", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 0 - }, - "maximum": { - "unit": "IBUs", - "value": 10 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1 - }, - "maximum": { - "unit": "sg", - "value": 1.006 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 8 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 5 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "ingredients": "Same as Lambic, except that one-, two-, and three-year old Lambics are blended, then cellared.", - "examples": "3 Fonteinen Oud Gueuze, Cantillon Classic Gueuze 100% Lambic, Girardin Gueuze 1882 (Black label), Hanssens Oude Gueuze, Lindemans Gueuze Cuvée René,Oude Gueuze Boon", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Fruit Lambic", - "category": "European Sour Ale", - "category_id": "23", - "style_id": "23F", - "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", - "overall_impression": "A complex, refreshing, pleasantly sour Belgian wheat beerblending a complementary fermented fruit character with a sour, funky Gueuze.", - "aroma": "The specified fruit should be the dominant aroma, blending well with similar aromatics as Gueuze (same description applies, but with the addition of a fermented fruit character).", - "appearance": "Like Gueuze, but modified by the color of the fruit used, fading in intensity with age.Clarity is often good, although some fruit will not drop bright. If highly carbonated in the traditional manner, will have a thick rocky, generally long-lasting,mousse-like head, sometimes with a hue reflecting the added fruit.", - "flavor": "Combines the flavor profile of a Gueuze (same description applies) with noticeable flavor contributions from the added fruit. Traditional versions are dry and tart, with an added fermented fruit flavor. Modern versions may have a variable sweetness, which can offset the acidity. Fruit flavors also fade with age, and lose their vibrancy, so can be low to high in intensity.", - "mouthfeel": "Light to medium-light body; should not be watery. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a light warming character. Carbonation can vary from sparkling to nearly still.", - "comments": "Produced like Gueuze, with the fruit commonly added halfway through aging,so the yeast and bacteria can ferment all sugars from the fruit; or less commonly by adding fruit to aLambic. The variety of fruit can sometimes be hard to identify since fermented and aged fruit is often perceived differently than the more recognizable fresh fruit. Fruit can bring acidity and tannins, in addition to flavor and aroma; understanding the fermented character of added fruit helps with judging the style.", - "history": "Same basic history as Gueuze, including the recent sweetening trend but with fruit in addition to sugar. Fruit was traditionally added by the blender or publican to increase the variety of beers available in local cafés.", - "style_comparison": "A Gueuze with fruit, not just a sour Fruit Beer; the wild character must be evident.", - "entry_instructions": "The type of fruit used must be specified. The brewer must declare a carbonation level (low, medium, high) and a sweetness level (low/none, medium, high).", - "tags": "standard-strength, pale-color, wild-fermented, western-europe, traditional-style, wheat-beer-family, sour, fruit", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.04 - }, - "maximum": { - "unit": "sg", - "value": 1.06 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 0 - }, - "maximum": { - "unit": "IBUs", - "value": 10 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 7 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 7 - } - }, - "ingredients": "Same base as Gueuze. Fruit added to barrels during fermentation and blending. Traditional fruit include tart cherries, raspberries; modern fruit include peaches, apricots, grapes, and others.May use natural or artificial sweeteners.", - "examples": "3 Fonteinen Schaerbeekse Kriek, Cantillon Fou’ Foune, Cantillon Lou Pepe Framboise, Cantillon Vigneronne, Hanssens Oude Kriek,Oude KriekBoon", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Gose", - "category": "European Sour Ale", - "category_id": "23", - "style_id": "23G", - "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", - "overall_impression": "A tart, lightly-bittered historical central European wheat beer with a distinctive but restrained salt and coriander character. Very refreshing, with a dry finish,high carbonation, and bright flavors.Aroma", - "notes": "Light to moderately fruity aroma of pome fruit. Light sourness, slightly sharp. Noticeable coriander, which can have an aromatic lemony quality, and an intensity up to moderate. Light bready, doughy, yeasty character like uncooked sourdough bread. The acidity and coriander can give a bright, lively impression. The salt may be perceived as a very light, clean sea breeze character or just a general freshness, if noticeable at all.", - "appearance": "Unfiltered, with a moderate to full haze. Moderate to tall white head with tight bubbles and good retention. Effervescent. Yellow color.", - "flavor": "Noticeable sourness, medium-low to medium-high. Moderate bready or doughy malt flavor. Light to moderate fruity character of pome fruit, stone fruit, or lemons. Light to moderate salt character, up to the threshold of taste; the salt should be noticeable (particularly in the initial taste) but not taste overtly salty. Very low bitterness.No hop flavor. Dry, fully-attenuated finish, with acidity not hops balancing the malt. Acidity can be more noticeable in the finish, and enhance the refreshing quality of the beer. The acidity should be balanced, not forward (although historical versions could be very sour). No THP.", - "mouthfeel": "High to very high carbonation.Effervescent. Medium-light to medium-full body. Salt may give a slightly tingly, mouthwatering quality and a rounder, thicker mouthfeel. Yeast and wheat can alsoadd a little body, but shouldn’t feel heavy due to the thinning effects of acidity.", - "comments": "Historical versions may have been more sour than modern examples due to spontaneous fermentation, and may be blended with syrups as is done with Berliner Weisse, or with caraway liqueur. Modern examples are inoculated with Lacto, and are more balanced and generally don’t need sweetening. Pronounced GOH-zeh.", - "history": "Minor style associated with Leipzig but originating in the Middle Ages in the town of Goslar on the Gose River. Documented to have been in Leipzig by 1740. Leipzig was said to have 80 Gose houses in 1900. Production declined significantly after WWII, and ceased entirely in 1966. Modern production was revived in the 1980s in Germany, but the beer was not widely available. Became popular outside of Germany recently as a revival style, and is often used as a base style for fruited sour beers and other Specialty-Type beers.", - "style_comparison": "Perceived acidity is not as intense as Berliner Weisse or Gueuze. Restrained use of salt, coriander, and Lacto – should not taste overtly salty. Coriander aroma can be similar to a Witbier. Haziness similar to a Weissbier.", - "tags": "standard-strength, pale-color, top-fermented, central-europe, historical-style, wheat-beer-family, sour, spice", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.036 - }, - "maximum": { - "unit": "sg", - "value": 1.056 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 5 - }, - "maximum": { - "unit": "IBUs", - "value": 12 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.006 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.2 - }, - "maximum": { - "unit": "%", - "value": 4.8 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 4 - } - }, - "ingredients": "Pilsner and wheat malt, restrained use of salt and coriander seed, Lacto. The coriander should have a fresh, citrusy (lemon or bitter orange), bright note, and not be vegetal, celery-like, or ham-like. The salt should have a sea salt or fresh salt character, not a metallic, iodine note.", - "examples": "Anderson Valley Gose, Bayerisch Bahnhof Leipziger Gose, Original Ritterguts Gose, Westbrook Gose", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Witbier", - "category": "Belgian Ale", - "category_id": "24", - "style_id": "24A", - "category_description": "This category contains the maltier to balanced, more highly flavored Belgian and French ales.", - "overall_impression": "A pale, hazy Belgian wheat beer with spices accentuating the yeast character. Adelicate, lightly spiced, moderate-strength ale that is a refreshing summer drink with its high carbonation, dry finish, and light hopping.", - "aroma": "Moderate bready maltiness, often with light notes of honey or vanilla.Light grainy, spicy wheat aromatics. Moderate perfumy-lemony coriander, often with a complex herbal, spicy, or peppery note in the background. Moderate zesty, citrusy-orangey fruitiness. A low spicy-herbal hop aroma is optional, but typically absent. Spices should blend in with fruity, floral, and sweet aromas and should not be overly strong.", - "appearance": "Very pale straw to deep yellow in color. The beer will be very cloudy from starch haze or yeast, which gives it a milky, whitish-yellow shine. Dense, white, moussy head. Head retention should be quite good.", - "flavor": "Pleasant bready, grainy malt flavor, often with a honey or vanilla character. Moderate zesty, orange-citrusy fruitiness. Herbal-spicy flavors, which may include lemony coriander and other spices, are common should be subtle and balanced, not overpowering. A spicy-earthy hop flavor can be low to none, and never overshadows the spices. Hop bitterness is low to medium-low, and supports the refreshing flavors of fruit and spice. Refreshingly crisp with a dryfinish, and no bitter or harsh aftertaste.", - "mouthfeel": "Medium-light to medium body, often having a smoothness and light creaminess. Effervescent character from high carbonation. Refreshing, from carbonation, dryness, and lack of bitterness in finish. No harshness or astringency. Should not be overly dry and thin, nor should it be thick and heavy.", - "comments": "Historical versions may have had some lactic sourness but this is absent in fresh modern versions. Spicing has some variety, but should not be overdone. Coriander of certain origin or age might give an inappropriate ham or celery character. The beer tends to be perishable, so younger, fresher, properly-handled examples are most desirable. An impression of sweetness is often due to low bitterness, not residual sugar. Most examples seem to be approximately 5% ABV.", - "history": "One of a group of medieval Belgian white beers from the Leuven area, it died out in 1957 and was later revived in 1966 by Pierre Celis at what became Hoegaarden.After Hoegaarden was acquired by Interbrew, the style grew rapidly and inspired many similar products that are traceable to the Celis recreation of the style, not those from past centuries.", - "style_comparison": "Low bitterness level with a balance similar to a Weissbier, but with spice and citrus character coming from additions more so than the yeast.", - "tags": "standard-strength, pale-color, top-fermented, western-europe, traditional-style, wheat-beer-family, spice", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.052 - } - }, - "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.5 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 4 - } - }, - "ingredients": "Unmalted wheat (30-60%), the remainderlow color barley malt. Some versions use up to 5-10% raw oats or other unmalted cereal grains. Traditionally uses coriander seed and dried Curaçao orange peel. Other secret spices are rumored to be used in some versions, as are sweet orange peels.Mild fruity-spicy Belgian ale yeast.", - "examples": "Allagash White, Blanche de Bruxelles, Celis White, Hoegaarden White, Ommegang Witte,St. Bernardus Wit", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Belgian Pale Ale", - "category": "Belgian Ale", - "category_id": "24", - "style_id": "24B", - "category_description": "This category contains the maltier to balanced, more highly flavored Belgian and French ales.", - "overall_impression": "A top-fermented, all malt, average strength Belgian ale that is moderately bitter, not dry-hopped, and without strong flavors. The copper-colored beer lacks the aggressive yeast character or sourness of many Belgian beers, buthas a well-balanced, malty, fruity, and often bready and toasty profile.", - "aroma": "Moderate bready malt aroma, which can include toasty, biscuity, or nutty notes, possibly with a touch of light caramel or honey. Moderate to moderately high fruitiness complements the malt, and is suggestive of pear, orange, apple, or lemon, and sometimes of darker stone fruit like plums. Low to moderate spicy, herbal, or floral hop character. Low peppery, spicy phenols optional. The hop character is lower in balance than the malt and fruitiness.", - "appearance": "Amber to copper in color. Clarity is very good. Creamy, rocky, white head. Well carbonated.", - "flavor": "Has an initial soft, smooth, moderately malty flavor with a variable profile of toasty, biscuity, nutty, light caramel, or honey notes. Moderate to moderately high fruitiness, with a pear, orange, apple, or lemon character. Medium-low to low spicy, herbal, or floral hop character. Medium-high to medium-low bitterness, enhanced by optionallow to very low peppery phenols. Dry to balanced finish, with hops becoming more pronounced in the aftertaste of those with a drier finish. Fairly wellbalanced overall, with no single component being high in intensity; malt and fruitiness are more forward initially with a supportive bitterness and drying character coming on late.", - "mouthfeel": "Medium to medium-light body. Smooth palate. Alcohol level is restrained, and any warming character should be low if present. Medium to medium-high carbonation.", - "comments": "Most commonly found in the Flemish provinces of Antwerp, Brabant, Hainaut, and East Flanders. A Spéciale Belge Ale (Belgian Special Ale) in Belgium.", - "history": "Created after a competition in 1904 to create a regional specialty beer to compete with imported British ales and continental lagers. De Koninck of Antwerp is the best-known modern example, making the beer since 1913.", - "style_comparison": "Fairly similar to pale ales from England (11C Strong Bitter), typically with a slightly different yeast character and a more varied malt profile. Less yeast character than many other Belgian beers, though.", - "tags": "standard-strength, amber-color, top-fermented, western-europe, traditional-style, pale-ale-family, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.8 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 8 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "ingredients": "Variable grist with pale, character, and caramel malts. No adjuncts. English or continental hops. Fruity yeast with low phenols.", - "examples": "De Koninck Bolleke, De Ryck Special, Palm,Palm Dobble", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Bière de Garde", - "category": "Belgian Ale", - "category_id": "24", - "style_id": "24C", - "category_description": "This category contains the maltier to balanced, more highly flavored Belgian and French ales.", - "notes": "Three main variations are included in the style: the blond (blonde), the brown (brune), and the most traditionalamber (ambrée).", - "overall_impression": "A family of smooth, fairly strong, malty, lagered artisanal French beer with a range of malt flavors appropriate for the blond, amber, or brown color. All are malty yet dry, with clean flavors.Darker versions have more malt character, while paler versions can have more hops while still remaining malt-focused beers.", - "aroma": "Prominent malty richness, often with a complex, light-to-moderate intensity, toasty and bready character. Low to moderate esters. Low spicy, peppery, or herbal hops optional. Generally quite clean, although stronger versions may have a light, spicy alcohol note as it warms.Paler versions are still malty but lack richer, deeper aromatics and may have a bit more hops.", - "appearance": "Blond, amber, and brown variations exist, with the color varying", - "accordingly": "golden-blonde to reddish-bronze to chestnut brown. Clarity is brilliant to fair, but some haze is allowable. Well-formed head, generally white to off-white (varyingwith beer color), average persistence.", - "flavor": "Medium to high malty richness, often with a toasty, biscuity, toffee, or light caramel character. Low to moderate esters and alcohol flavors. Medium-low hop bitterness, giving a malty balance to the palate and aftertaste. Medium-dry to dry finish, not sweet, cloying, or heavy.Low spicy, peppery, or herbal hop flavor optional.Malt flavor, depth, richness,intensity, and complexity increases with beer color. Darker versions will have more of an initial rich malty impression than paler versions but should not seem roasted. Paler versions can have slightly greater hop flavor.", - "mouthfeel": "Medium to medium-light body, often with a smooth, creamy-silky character. Moderate to high carbonation. Moderate alcohol warming, but should never be hot.", - "comments": "Cellar, musty, moldy, or rustic character often mentioned in literature are signs of mishandled imports, not fresh, authentic products. Age and oxidation can also increase fruitiness and caramel flavors, but increase harshness. While caramel and fruit can be part of the style, do not confuse the oxidation character for the proper base beer.", - "history": "Name roughly means beer for keeping. A traditional farmhouse artisanal ale from the area around Lille in Northern France,historically brewed in early spring and kept in cold cellars for consumption in warmer weather. Although documented to exist in the 1800s, Jenlain is the prototypical modern amber lager version first bottled in the 1940s.", - "style_comparison": "Calling this a farmhouse beer invites comparisons to Saison, which has a completely different balance – Bière de Garde is malty and smooth, while Saison is hoppy and bitter. Actually has more of a similarity in malt profile to a Bock.", - "entry_instructions": "Entrant must specify blond, amber, or brownBière de Garde. If no color is specified, the judge should attempt to judge based on initial observation, expecting a malt flavor and balance that matches the color.", - "tags": "high-strength, pale-color, amber-color, any-fermentation, lagered, western-europe, traditional-style, amber-ale-family, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.06 - }, - "maximum": { - "unit": "sg", - "value": 1.08 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 18 - }, - "maximum": { - "unit": "IBUs", - "value": 28 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6 - }, - "maximum": { - "unit": "%", - "value": 8.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 19 - } - }, - "ingredients": "Base malts vary by beer color, but usually include pale, Vienna, and Munich types. Crystal-type malts of varying color. Sugar adjuncts may be used. Lager or ale yeast fermented at cool ale temperatures, followed by long cold conditioning. Continental hops.", - "examples": "Ch’Ti Blonde, Jenlain Ambrée, La Choulette Brune, Russian River Perdition,Saint Sylvestre 3 Monts Blonde, Two Brothers Domaine Dupage", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Belgian Blond Ale", - "category": "Strong Belgian Ale", - "category_id": "25", - "style_id": "25A", - "category_description": "This category contains the pale, well-attenuated, balanced to bitter beers, often more driven by yeast character than malt flavors, with generally higher alcohol (although a range exists within styles).", - "overall_impression": "A golden,moderately-strong Belgian ale with a pleasantly subtlecitrusy-spicy yeast complexity, smooth malty palate, and dry, soft finish.", - "aroma": "Light to moderate grainy-sweet, slightly toasty, or crackerymalt. Subtle to moderate yeast profile featuring fruity-citrusy esters (like oranges or lemons), and background spicy-peppery phenols. Light earthy or spicy hop notes optional. Light perfumy alcohol and suggestions of a light malty sweetness can givea slight honey- or sugar-like character. Subtle yet complex.", - "appearance": "Deep yellow to deep gold color. Generally very clear. Large, dense, and creamy white to off-white head. Good head retention with Belgian lace.", - "flavor": "Similar to the aroma, with the light to moderate grainy-sweet malt flavor being perceived first. Faint, lightly caramelized sugar or honey-like sweetness on palate.Medium bitterness, with the malt slightly more prominent in the balance. Moderate to low yeast profile with orange or lemon esters, and slight spicy-peppery phenols. Can have a light perfumy character. Light hop flavor, can be spicy or earthy, complementing yeast. Finishes medium-dry to dry, smooth, and soft, with light alcohol and malt in the aftertaste.", - "mouthfeel": "Medium-high to high carbonation, can give mouth-filling bubbly sensation. Medium body. Light to moderate alcohol warmth, but smooth. Can be somewhat creamy.", - "comments": "Most commercial examples are in the 6.5 – 7% ABV range. Often has an almost lager-like character, which gives it a cleaner profile in comparison to many other Belgian styles. Flemish-speaking Belgians use the term Blond, while the French speakers spell it Blonde. Many monastic or artisanal Belgian beers are called Blond but those are notrepresentative of this style.", - "history": "Relatively recent development to further appeal to European Pils drinkers, becoming more popular as it is heavily marketed and widely distributed. Despite claims of links back to 1200, the beer style was created after World War II and first popularized by Leffe.", - "style_comparison": "Similar strength and balance as a Belgian Dubbel but gold in color and without the darker malt flavors. Similar character as a Belgian Strong Golden Ale or Belgian Tripel, although a bit maltier, not as bitter, and lower in alcohol.", - "tags": "high-strength, pale-color, top-fermented, western-europe, traditional-style, balanced", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.062 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "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.018 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6 - }, - "maximum": { - "unit": "%", - "value": 7.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 4 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "ingredients": "Belgian Pils malt, aromatic malts, sugar or other adjuncts, Belgian Abbey-type yeast strains, continental hops. Spices are not traditionally used;if present, should be a background character only.", - "examples": "Affligem Blond, Corsendonk Blond, Grimbergen Blonde, La Trappe Blond, Leffe Blond, Val-Dieu Blonde", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Saison", - "category": "Strong Belgian Ale", - "category_id": "25", - "style_id": "25B", - "category_description": "This category contains the pale, well-attenuated, balanced to bitter beers, often more driven by yeast character than malt flavors, with generally higher alcohol (although a range exists within styles).", - "overall_impression": "A family of refreshing, highly attenuated, hoppy, and fairly bitter Belgian ales with a very dry finish and high carbonation. Characterized by a fruity, spicy, sometimes phenolic fermentation profile,and the use of cereal grains and sometimes spices for complexity. Several variations in strength and color exist.", - "aroma": "A pleasantly aromatic mix of fruity-spicy yeast and hops. The fruity esters are moderate to high, and often have a citrus fruit, pome fruit, or stone fruit character. Low to moderately-high spicy notes are often like black pepper, not clove. Hops are low to moderate and have a continental character (spicy, floral, earthy, or fruity). The malt is often overshadowed, but if detected is lightly grainy. Spices and herbs optional, but must not dominate. Sourness optional (see Comments).Strong versions have more aromatic intensity, and can add a light alcohol and moderate malt character. Table versions have less intensity and not have an alcohol character. Darker versions add malt character associated with darker grains.", - "appearance": "Pale gold to deep amber in color, sometimes pale orange. Long-lasting, dense, rocky white to ivory head. Belgian lace. Unfiltered, so clarity is variable (poor to good) and may be hazy. Effervescent. Darker versions can be copper to dark brown. Stronger versions may be a little deeper in color.", - "flavor": "A balance of fruity and spicy yeast, hoppy bitterness, and grainy malt with moderate to high bitterness, and a very dry finish. The fruity and spicy aspects are medium-low to medium-high, and hop flavor is low to medium, both with similar character as in the aroma (same descriptors apply). Malt is low to medium, with a soft, grainy palate. Very high attenuation, never with a sweet or heavy finish. Bitter, spicy aftertaste. Spices and herbs optional, but if used must be in harmony with the yeast. Sourness optional (see Comments).Darker versions will have more malt character, including flavors from the darker malts. Stronger versions will have greater malt intensity, and a light alcohol note.", - "mouthfeel": "Light to medium-low body. Very high carbonation. Effervescent. Light warming alcohol optional. Sourness rare but optional (see Comments).Stronger versions can have up to medium body and be somewhat warming. Table versions have no warmth.", - "comments": "This style generally describes the standard-strength pale version, followed by differences for variations in strength and color. Darker versions tend to have more malt character and less apparent hop bitterness, yielding a more balanced presentation. Stronger versions often have more malt flavor, richness, warmth, and body simply due to the higher gravity.There is no correlation between strength and color.Sourness is totally optional, and if present at low to moderate levels, it may substitute somewhat for bitterness in the balance. A Saison should not be both sour and bitter at the same time. The high attenuation may make the beer seem more bitter than the IBUs suggest. Pale versions are often more bitter and hoppy than darker versions. Yeast selection often drives the balance of fruity and spicy notes, and can change the character significantly; allow for a range of interpretations.Often called Farmhouse ales in the US, but this term is not common in Europe where they are simply part of a larger grouping of artisanal ales. Brettanomyces is not typical for this style; Saisons with Brett should be entered in the 28A Brett Beer style. A Grisette is a well-known type of Saison popular with miners; enter Grisette as 25B Saison, Session Strength, Comment: Grisette with wheat as the character grain.", - "history": "A provision ale from Wallonia, the French-speaking part of Belgium. Originally a lower-alcohol product so as to not debilitate farm and field workers, but tavern-strength products also existed. The best known modern saison, Saison Dupont, was first produced in the 1920s. Dupont’s super saison was first produced in 1954, and its brown version in the mid-1980s. Fantôme begain producing its ‘seasonal’ saisons in 1988. While the style retains its rustic image, they are now mostly made in large breweries.", - "style_comparison": "The pale, standard strength versions is like a more highly-attenuated, hoppy, and bitter Belgian Blond Ale with a stronger yeast character. At super strength and pale color, similar to a Belgian Tripel, but often with more of a grainy, rustic quality and sometimes with a spicier yeast character.", - "entry_instructions": "The entrant must specify the strength (table, standard, super) and the color (pale, dark). The entrant may identify character grains used.", - "tags": "standard-strength, pale-color, top-fermented, western-europe, traditional-style, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.065 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.002 - }, - "maximum": { - "unit": "sg", - "value": 1.008 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 7 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 5 - }, - "maximum": { - "unit": "SRM", - "value": 14 - } - }, - "ingredients": "Pale base malt. Cereal grains, such as wheat, oats, spelt, or rye. May contain sugary adjuncts. Continental hops. Spicy-fruity Belgian Saison yeast. Spices and herbs are uncommon, but allowable if they don’t dominate.", - "examples": "Ellezelloise Saison 2000, Lefebvre Saison 1900, Saison Dupont, Saison de Pipaix, Saison Voisin, Boulevard Tank 7", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Belgian Golden Strong Ale", - "category": "Strong Belgian Ale", - "category_id": "25", - "style_id": "25C", - "category_description": "This category contains the pale, well-attenuated, balanced to bitter beers, often more driven by yeast character than malt flavors, with generally higher alcohol (although a range exists within styles).", - "overall_impression": "A very pale, highly attenuated, strong Belgian ale that is more fruity and hoppy than spicy. Complex and delicate, the dry finish, light body, and high carbonationaccentuate the yeast and hop character.Sparkling carbonation and effervescent, forming a rocky white head.", - "aroma": "A complex bouquet of fruity esters, herbal hops, and peppery alcohol over a nearly neutral malt base. The esters are moderate to high, often pome fruit, especially pear. Hops are herbal, floral, or spicy, low to moderate. Alcohol and phenols often have a peppery or perfumy quality, low to moderate. Alcohol perception should be soft, not hot or solventy. Nearly neutral malt, possibly slightly grainy-sweet.", - "appearance": "Pale yellow to gold in color. Good clarity. Effervescent. Massive, long-lasting, rocky, white head resulting in characteristic Belgian lace on the glass as it fades.", - "flavor": "Flavor profile similar to aroma (same descriptors and intensities apply) for esters, hops, malt, phenols, and alcohol. The pear-like esters, peppery alcohol, herbal hops, and soft malt flavors carry through the palate into the long, dry finish and aftertaste. Medium to high bitterness, accentuated by the dry finish and high carbonation, lasts into the aftertaste.", - "mouthfeel": "Very highly carbonated.Effervescent. Light to medium body, lighter than the substantial gravity would suggest. Carbonation accentuates the perception of lightness. Smooth but noticeable alcohol warmth, not hot or solventy.", - "comments": "References to the devil are included in the names of many commercial examples of this style, referring to their potent alcoholic strength and as a tribute to the original example (Duvel). Traditionally bottle-conditioned.", - "history": "Developed by the Moortgat brewery after WWI as a response to the growing popularity of Pilsner beers. Originally a darker beer, it achieved its modern form by the 1970s.", - "style_comparison": "Often confused with Belgian Tripel, but is usually paler, lighter-bodied, crisper, and drier. Tends to use yeast that favor ester development (particularly pome fruit) over spiciness in the balance, and has more of a late hop character.", - "tags": "very-high-strength, pale-color, top-fermented, western-europe, traditional-style, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.07 - }, - "maximum": { - "unit": "sg", - "value": 1.095 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 22 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.005 - }, - "maximum": { - "unit": "sg", - "value": 1.016 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 7.5 - }, - "maximum": { - "unit": "%", - "value": 10.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "ingredients": "Pilsner malt with substantial sugary adjuncts. Continental hops. Fruity Belgian yeast. Fairly soft water. Spicing not traditional.", - "examples": "Brigand, Delirium Tremens, Duvel, Judas, Lucifer, Russian River Damnation", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Belgian Single", - "category": "Monastic Ale", - "category_id": "26", - "style_id": "26A", - "category_description": "Religious institutions have a long history of brewing in Belgium, although often interrupted by conflict and occupation such as during the Napoleonic Wars and World War I. Very few such institutions actually brew today, although many have licensed their names to commercial breweries. Despite the limited production, the traditional styles derived from these breweries have been quite influential and have spread beyond Belgium. Various terms have been used to describe these beers, but many are protected appellations and reflect the origin of the beer rather than a style. Those monasteries could brew any style they choose, but the ones described in this category are those that are most commonly associated with this brewing tradition.We differentiate beers in this category as those that were inspired by religious breweries. Despite claims of uniqueness, these beers do share a number of common attributes that help characterize the styles. All are top-fermenting, have very high attenuation (“more digestible” in Belgium), achieve high carbonation through bottle conditioning (“refermented in the bottle” in Belgium), and have distinctive, complex, and aggressive ‘Belgian’ spicy-estery yeast character. Many are strong in alcohol.", - "overall_impression": "A blond, bitter, hoppy table beer that is very dry and highly carbonated. The aggressive fruity-spicy Belgian yeast character and high bitterness is forward in the balance, with a soft, supportive grainy-sweet malt palate, and a spicy-floral hop profile.", - "aroma": "Medium-low to medium-high Belgian yeast character, showing a fruity-spicy character along with medium-low to medium spicy or floral hops, rarely enhanced by light herbal or citrusy spice additions. Low to medium-low malt backdrop, withbready, crackery, grainy, or light honey notes. Fruit expression can vary widely (apple, pear, grapefruit, lemon, orange, peach, apricot). Phenols are typically like black pepper or clove. Bubblegum inappropriate.", - "appearance": "Pale yellow to medium gold color. Generally good clarity, with a moderate-sized, persistent, billowy white head with characteristic lacing.", - "flavor": "Initial malty flavor is light and has a honeyed biscuit, bready, or cracker character. Grainy but soft malt palate, and a crisp, dry, hoppy-bitter finish. Moderate spicy or floral hop flavor on the palate. Moderate esters similar in character to aroma. Light to moderate spicy phenols as found in the aroma. Medium to high bitterness, accentuated by dryness.The yeast and hop character lasts into the aftertaste.", - "mouthfeel": "Medium-light to medium body. Smooth. Medium-high to high carbonation, can be somewhat prickly. Should not have noticeable alcohol warmth.", - "comments": "Often not labeled or available outside the monastery, or infrequently brewed. Might also be called monk’s beer, Brother’s beer, or simply a Blond (we don’t use this term to avoid confusion with the very different Belgian Blond Ale style). Highly attenuated, generally 85% or more.", - "history": "While monastic breweries have a tradition of brewing a lower-strength beer as a monk’s daily ration (Westmalle began making theirs in 1922), the bitter, pale beer this style describes is a relatively modern invention reflecting current tastes. Westvleteren first brewed theirs in 1999, but it replaced older lower-gravity products.", - "style_comparison": "Like a top-fermented Belgian interpretation of a German Pils – pale, hoppy, and well-attenuated, but with a strong Belgian yeast character. Has less sweetness, higher attenuation, less character malt, and is more hop-centered than a Belgian Pale Ale. More like a much smaller, more highly-hopped Belgian Tripel (with its bitterness and dryness) than a smaller Belgian Blond Ale.", - "tags": "standard-strength, pale-color, top-fermented, western-europe, craft-style, bitter, hoppy", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 45 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.004 - }, - "maximum": { - "unit": "sg", - "value": 1.01 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.8 - }, - "maximum": { - "unit": "%", - "value": 6 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 5 - } - }, - "ingredients": "Pilsner malt. Belgian yeast.Continental hops.", - "examples": "Chimay Gold, La Trappe Puur, Russian River Redemption, St. Bernardus Extra 4,Westmalle Extra, Westvleteren Blond", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Belgian Dubbel", - "category": "Monastic Ale", - "category_id": "26", - "style_id": "26B", - "category_description": "Religious institutions have a long history of brewing in Belgium, although often interrupted by conflict and occupation such as during the Napoleonic Wars and World War I. Very few such institutions actually brew today, although many have licensed their names to commercial breweries. Despite the limited production, the traditional styles derived from these breweries have been quite influential and have spread beyond Belgium. Various terms have been used to describe these beers, but many are protected appellations and reflect the origin of the beer rather than a style. Those monasteries could brew any style they choose, but the ones described in this category are those that are most commonly associated with this brewing tradition.We differentiate beers in this category as those that were inspired by religious breweries. Despite claims of uniqueness, these beers do share a number of common attributes that help characterize the styles. All are top-fermenting, have very high attenuation (“more digestible” in Belgium), achieve high carbonation through bottle conditioning (“refermented in the bottle” in Belgium), and have distinctive, complex, and aggressive ‘Belgian’ spicy-estery yeast character. Many are strong in alcohol.", - "overall_impression": "A deep reddish-copper, moderately strong, malty, complex Belgian ale with rich malty flavors, dark or dried fruit esters, and light alcohol blended together in a malty presentation that still finishes fairly dry.", - "aroma": "Moderate to moderately strong, rich malty aroma, with hints of chocolate, caramelized sugar, or toast. Never roasted or burnt. Moderate fruity esters, often dark or dried fruit, especially raisins and plums, sometimes pome fruit or banana. Low to moderate spicy, peppery phenols. Hops typically absent, but can have a low spicy, herbal, or floral character. The malt is strongest in the balance, with esters and spice adding complexity.Low soft, perfumy alcohol optional.", - "appearance": "Dark amber to copper in color, with an attractive reddish depth of color. Generally clear. Large, dense, and long-lasting creamy off-white head.", - "flavor": "Flavor profile similar to aroma (same descriptors and intensities apply) for malt, esters, phenols, alcohol, and hops. Medium-low to medium bitterness, but malt is always most prominent in the balance. The esters and phenols add complexity and interest to the malt, alcohol not typically tasted. Malty-rich, sometimes sweet flavor, that finishes moderately dry with a malty aftertaste accented by yeast esters and phenols.", - "mouthfeel": "Smooth, medium to medium-full body. Medium-high carbonation, which can influence the perception of body. Low alcohol warmth optional, never hot or solventy.", - "comments": "Most commercial examples are in the 6.5 – 7% ABV range. Can taste somewhat sweet due to restrained bitterness, but the beers are actually fairly dry.", - "history": "While dark and strong beers were produced long before, modern Dubbel traces back to the double brown or strong beer first produced at Westmalle in 1922 when the brewery was re-established after World War I. Other examples date from post-World War II.", - "style_comparison": "Perhaps similar to aDunkles Bock but with a Belgian yeast and sugar character. Similar in strength and balance to a Belgian Blond Ale, but with a richer malt and ester profile. Less strong and intense than a Belgian Dark Strong Ale.", - "tags": "high-strength, amber-color, top-fermented, western-europe, traditional-style, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.062 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 25 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.018 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6 - }, - "maximum": { - "unit": "%", - "value": 7.6 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 10 - }, - "maximum": { - "unit": "SRM", - "value": 17 - } - }, - "ingredients": "Spicy-estery Belgian yeast. Impression of a complex grain bill, although many traditional versions are quite simple, with caramelized sugar syrup or unrefined sugars and yeast providing much of the complexity. Continental hops. Spices not typical; if present, should be subtle.", - "examples": "Chimay Red, Corsendonk Bruin, La Trappe Dubbel, Rochefort 6, St. Bernardus Pater 6, Westmalle Dubbel", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Belgian Tripel", - "category": "Monastic Ale", - "category_id": "26", - "style_id": "26C", - "category_description": "Religious institutions have a long history of brewing in Belgium, although often interrupted by conflict and occupation such as during the Napoleonic Wars and World War I. Very few such institutions actually brew today, although many have licensed their names to commercial breweries. Despite the limited production, the traditional styles derived from these breweries have been quite influential and have spread beyond Belgium. Various terms have been used to describe these beers, but many are protected appellations and reflect the origin of the beer rather than a style. Those monasteries could brew any style they choose, but the ones described in this category are those that are most commonly associated with this brewing tradition.We differentiate beers in this category as those that were inspired by religious breweries. Despite claims of uniqueness, these beers do share a number of common attributes that help characterize the styles. All are top-fermenting, have very high attenuation (“more digestible” in Belgium), achieve high carbonation through bottle conditioning (“refermented in the bottle” in Belgium), and have distinctive, complex, and aggressive ‘Belgian’ spicy-estery yeast character. Many are strong in alcohol.", - "overall_impression": "A strong,pale, somewhat spicy Belgian ale with a pleasant rounded malt flavor, firm bitterness, and dry finish. Quite aromatic, with spicy, fruity, and light alcohol notes combining with the supportive clean malt character to produce a surprisingly drinkable beverage considering the high alcohol content.", - "aroma": "Complex but seamless bouquet of moderate to significant spiciness, moderate fruity esters, low alcohol,low hops, and light malt. Generous spicy, peppery, sometimes clove-like phenols. Esters often reminiscent of citrus fruit, like oranges or lemons, but may sometimes have a slight ripe banana character. A low yet distinctive spicy, floral, sometimes perfumy hop character is optional. Alcohols are soft, spicy, and low in intensity. The malt character is light, with a soft, slightly grainy-sweet, or slightly honey-like impression.", - "appearance": "Deep yellow to pale amber in color. Good clarity. Effervescent. Long-lasting, creamy, rocky, white head resulting in characteristic Belgian laceon the glass as it fades.", - "flavor": "Flavor profile similar to aroma (same descriptors apply) for malt, esters, phenols, alcohol, and hops. Esters low to moderate, phenols low to moderate, hops low to moderate, alcohol low, all well combined in a coherent presentation. Medium to high bitterness, accentuated by a dry finish. Moderate bitterness in the aftertaste with substantial spicy-fruity yeast character.Should not be sweet.", - "mouthfeel": "Medium-light to medium body, although lighter than the substantial gravity would suggest. Highly carbonated. The alcohol content is deceptive, and has little to no obvious warming sensation. Effervescent. Should not be heavy.", - "comments": "High in alcohol but does not taste strongly of alcohol. The best examples are sneaky, not obvious. High carbonation and attenuation helps bring out the many flavors and to increase the perception of a dry finish. Most traditional versions have at least 30 IBUs and are very dry.", - "history": "Popularized by the monastery at Westmalle, first brewed in 1934.", - "style_comparison": "May resemble a Belgian Golden Strong Ale but slightly darker and a bit fuller-bodied, with more emphasis on phenols and less on esters, and fewer late hops. Should not seem like a blond Barleywine.", - "tags": "high-strength, pale-color, top-fermented, western-europe, traditional-style, bitter", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.075 - }, - "maximum": { - "unit": "sg", - "value": 1.085 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 40 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.008 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 7.5 - }, - "maximum": { - "unit": "%", - "value": 9.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 4.5 - }, - "maximum": { - "unit": "SRM", - "value": 7 - } - }, - "ingredients": "Pilsner malt, often pale sugar adjuncts. Continental hops. Spicy-fruity Belgian yeast strains. Spice additions are generally not traditional, and if used, should be a background character only. Fairly soft water.", - "examples": "Chimay Tripel, La Rulles Tripel, La Trappe Tripel, St. Bernardus Tripel, Val-Dieu Triple, Westmalle Tripel", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Belgian Dark Strong Ale", - "category": "Monastic Ale", - "category_id": "26", - "style_id": "26D", - "category_description": "Religious institutions have a long history of brewing in Belgium, although often interrupted by conflict and occupation such as during the Napoleonic Wars and World War I. Very few such institutions actually brew today, although many have licensed their names to commercial breweries. Despite the limited production, the traditional styles derived from these breweries have been quite influential and have spread beyond Belgium. Various terms have been used to describe these beers, but many are protected appellations and reflect the origin of the beer rather than a style. Those monasteries could brew any style they choose, but the ones described in this category are those that are most commonly associated with this brewing tradition.We differentiate beers in this category as those that were inspired by religious breweries. Despite claims of uniqueness, these beers do share a number of common attributes that help characterize the styles. All are top-fermenting, have very high attenuation (“more digestible” in Belgium), achieve high carbonation through bottle conditioning (“refermented in the bottle” in Belgium), and have distinctive, complex, and aggressive ‘Belgian’ spicy-estery yeast character. Many are strong in alcohol.", - "overall_impression": "A dark, complex, very strong Belgian ale with a delicious blend of malt richness, dark fruit flavors, and spicy notes. Complex, rich, smooth, and dangerous.", - "aroma": "A complex and fairly intense mix of rich maltiness and deep fruit, accentuated by spicy phenols and alcohol. The malt character is moderately-high to high and has a deep, bready-toasty base with dark caramel notes, but no impression of dark or roasted malt. Esters are strong to moderately low, and reminiscent of raisins, plums, dried cherries, figs,dates, or prunes. Spicy phenols like black pepper or vanilla, not clove, may be present as a low to moderate background character. A soft, spicy, perfumy, or rose-like alcohol is low to moderate, but never hot or solvent-like. Hops are usually not noticeable, but if present can add a light spicy, floral, or herbal character.", - "appearance": "Deep amber to deep coppery-brown in color (dark in the style name implies more deeply colored than golden, not black). Huge, dense, moussy, persistent cream- to light tan-colored head. Usually clear.", - "flavor": "Rich and complex maltiness, but not heavy in the finish. The flavor character is similar to the aroma (same malt, ester, phenol, alcohol, and hop comments apply here as well). Moderately malty-rich on the palate, which can have a sweet impression if bitterness is low. Usually moderately dry to dry finish, although may be up to moderately sweet. Medium-low to moderate bitterness; alcohol provides some of the balance to the malt. Generally malty-rich balance, but can be fairly even with bitterness. The complex and varied flavors should blend smoothly and harmoniously, and often benefit from age. The finish should not be heavy or syrupy.", - "mouthfeel": "High carbonation but not sharp. Smooth but noticeable alcohol warmth. Body can range from medium-light to medium-full and creamy. Most are medium-bodied.", - "comments": "Also known as a Belgian Quad, mainly outside of Belgium (Quadruple is the name of a specific beer). Has a wider range of interpretation than manyother Belgian styles. Traditional versions tend to be drier than many modern commercial versions, which can be rather sweet and full-bodied. Manyexamples are simply known by their strength or color designation. Some might be labeled Grand Cru, but this is more of a statement of quality than style.", - "history": "Westvleteren started making their version just before World War II, with Chimay and Rochefort adding their examples just after. Other monastic breweries created products towards the end of the 20th century, but some secular breweries began producing similar beers starting around 1960.", - "style_comparison": "Like a larger Belgian Dubbel, with a fuller body and increased malt richness. Not as bitter or hoppy as a Belgian Tripel, but of similar strength.", - "tags": "very-high-strength, amber-color, top-fermented, western-europe, traditional-style, malty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.075 - }, - "maximum": { - "unit": "sg", - "value": 1.11 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 20 - }, - "maximum": { - "unit": "IBUs", - "value": 35 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.01 - }, - "maximum": { - "unit": "sg", - "value": 1.024 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 8 - }, - "maximum": { - "unit": "%", - "value": 12 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 12 - }, - "maximum": { - "unit": "SRM", - "value": 22 - } - }, - "ingredients": "Spicy-estery Belgian yeast. Impression of a complex grain bill, although many traditional versions are quite simple, with caramelized sugar syrup or unrefined sugars and yeast providing much of the complexity. Continental hops. Spices not typical; if present, should be subtle.", - "examples": "Achel Extra Bruin, Boulevard The Sixth Glass, Chimay Blue, Rochefort 10, St. Bernardus Abt 12, Westvleteren 12", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Brett Beer", - "category": "American Wild Ale", - "category_id": "28", - "style_id": "28A", - "category_description": "The name American Wild Ale is commonly used by craft brewers and homebrewers. However, the word Wild does not imply that these beers are necessarily spontaneously-fermented; rather, it indicates that they are influenced by microbes other than traditional brewer’s yeasts, or perhaps that they are mixed-fermentation beers. The use of the word American does not mean that the beer has to be based on a Classic Style American beer style, or that the methods are solely practiced in the United States. Base styles in this category do not have to be Classic Styles at all (although they can be); something like, “blond ale, 7%” would be fine, since the underlying style is often lost under the fermentation character.This category is intended for a wide range of beers that do not fit traditional European sour, wild, or spontaneously-fermented styles. All of the styles in this category are Specialty-TypeBeers where many creative interpretations are possible, and the styles are defined only by the use of specific fermentation profiles and ingredients. As specialty styles, the mandatory description provided by the entrant is of the utmost importance to the judge.The styles in this category are differentiated by the types of yeast and bacteria used – see the preamble to each style for more information. We use the conversational shorthand terms used in the brewing industry: Brett for Brettanomyces, Sacch for Saccharomyces, Lacto for Lactobacillus, and Pedio for Pediococcus. See the Glossary for additional information. The Wild Specialty Beer style is for beers for other styles within this category when Specialty-Type Ingredients are added. Background levels of oak may be used in all styles within this category, but beers aged in other woods with unique flavors or barrels that contained other alcohol products must be entered in the Wild Specialty Beer style.", - "notes": "Intended for beer with or without oak aging that has been fermented with Sacch and Brett, or with Brett only.", - "overall_impression": "Most often drier and fruitier than the base style suggests. Fruity or funky notes range from low to high, depending on the age of the beer and strains of Brett used. May possess a light non-lactic acidity.", - "aroma": "Variable by base style. Young Brett beers will possess more fruity notes (e.g., tropical fruit, stone fruit, or citrus), but this is variable by the strains of Brett used. Older Brett beers may start to develop a little funk (e.g., barnyard, wet hay, or slightly earthy or smoky notes), but this character should not dominate.", - "appearance": "Variable by base style. Clarity can be variable, and depends on the base style and ingredients used. Some haze is not necessarily a fault.", - "flavor": "Variable by base style. Brett character may range from minimal to aggressive. Can be quite fruity (e.g., tropical fruit, berry, stone fruit, citrus), or have some smoky, earthy, or barnyard character. Should not be unpleasantly funky, such as Band-Aid, fetid, nail polish remover, cheese, etc. Always fruitier when young, gaining more funk with age. May not be lactic. Malt flavors are often less pronounced than in the base style, leaving a beer most often dry and crisp due to high attenuation by the Brett.", - "mouthfeel": "Variable by base style. Generally has a light body, lighter than what might be expected from the base style but an overly thin body is a fault. Generally moderate to high carbonation. Head retention is variable, but often less than the base style.", - "comments": "The base style describes most of the character of these beers, but the addition of Brett ensures a drier, thinner, and often fruitier and funkier product. Younger versions are brighter and fruitier, while older ones possess more depth of funk and may lose more of the base style character. The Brett character should always meld with the style; these beers should never be a ‘Brett bomb’. WhileBrettcan produce low levels of organic acids, itis not a primary beer souring method.", - "history": "Modern American craft beer interpretations of Belgian wild ales, or experimentations inspired by Belgian wild ales or historical English beers with Brett. So-called 100% Brett beers gained popularity after the year 2000, but this was when S. Trois was thought to be a Brett strain (which it isn’t).Brettused in conjunction with a Sacch fermentation is standard practice now.", - "style_comparison": "Compared to the same beer style without Brett, a Brett Beer will be drier, more highly attenuated, fruitier, lighter in body, and slightly funkier as it ages. Less sourness and depth than Belgian ‘wild’ ales.", - "entry_instructions": "The entrant must specify either a Base Style,or provide a description of the ingredients, specs, or desired character. The entrant may specify the strains of Brett used.", - "vital_statistics": "Variable by base style.", - "tags": "wild-fermentation, north-america, craft-style, specialty-beer", - "ingredients": "Virtually any style of beer (except those already using a Sacch/Brettco-fermentation), then finished with one or more strains of Brett. Alternatively, a mixed fermentation with Sacch and one or more strains of Brett.No Lacto.", - "examples": "Boulevard Saison Brett, Hill Farmstead Arthur, Logsdon Seizoen Bretta, Lost Abbey Brett Devo, Russian River Sanctification, The Bruery Saison Rue", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Mixed-Fermentation Sour Beer", - "category": "American Wild Ale", - "category_id": "28", - "style_id": "28B", - "category_description": "The name American Wild Ale is commonly used by craft brewers and homebrewers. However, the word Wild does not imply that these beers are necessarily spontaneously-fermented; rather, it indicates that they are influenced by microbes other than traditional brewer’s yeasts, or perhaps that they are mixed-fermentation beers. The use of the word American does not mean that the beer has to be based on a Classic Style American beer style, or that the methods are solely practiced in the United States. Base styles in this category do not have to be Classic Styles at all (although they can be); something like, “blond ale, 7%” would be fine, since the underlying style is often lost under the fermentation character.This category is intended for a wide range of beers that do not fit traditional European sour, wild, or spontaneously-fermented styles. All of the styles in this category are Specialty-TypeBeers where many creative interpretations are possible, and the styles are defined only by the use of specific fermentation profiles and ingredients. As specialty styles, the mandatory description provided by the entrant is of the utmost importance to the judge.The styles in this category are differentiated by the types of yeast and bacteria used – see the preamble to each style for more information. We use the conversational shorthand terms used in the brewing industry: Brett for Brettanomyces, Sacch for Saccharomyces, Lacto for Lactobacillus, and Pedio for Pediococcus. See the Glossary for additional information. The Wild Specialty Beer style is for beers for other styles within this category when Specialty-Type Ingredients are added. Background levels of oak may be used in all styles within this category, but beers aged in other woods with unique flavors or barrels that contained other alcohol products must be entered in the Wild Specialty Beer style.", - "notes": "Intended for beer fermented with any combination of Sacch, Lacto, Pedio, and Brett (or additional yeast or bacteria), with or without oak aging (except if the beer fits instead in 28A or 28D).", - "overall_impression": "A sour andfunky version of a base style of beer.", - "aroma": "Variable by base style. The contribution of non-Sacch microbes should be noticeable to strong, and often contribute a sour and funky, wild note. The best examples will display a range of aromatics, rather than a single dominant character. The aroma should be inviting, not harsh or unpleasant.", - "appearance": "Variable by base style. Clarity can be variable; some haze is not a fault. Head retention can be poor.", - "flavor": "Variable by base style. Look for an agreeable balance between the base beer and the fermentation character. A range of results is possible from fairly high acidity and funk to a subtle, pleasant, harmonious beer. The best examples are pleasurable to drink with the esters and phenols complementing the malt or hops. The wild character can be prominent, but does not need to be dominating in a style with an otherwise strong malt or hop profile. Acidity should be firm yet enjoyable, and ranging from clean to complex, but should not be biting or vinegary; prominent, objectionable, or offensive acetic acid is a fault. Bitterness tends to be low, especially as sourness increases.", - "mouthfeel": "Variable by base style. Generally has a light body, almost always lighter than what might be expected from the base style. Generally moderate to high carbonation, although often lower in higher alcohol examples.", - "comments": "The base beer style becomes less relevant in this style because the various yeast and bacteria tend to dominate the profile. Bitterness is often reserved since bitter and sour flavors clash on the palate. Inappropriate characteristics include diacetyl, solvent, ropy or viscous texture, and heavy oxidation.", - "history": "Modern American craft beer interpretations of Belgian sour ales, or experimentations inspired by Belgian sour ales.", - "style_comparison": "A sour and funky version of a base style, but do not necessarily have to be as sour or as funky as some traditional European sour examples.", - "entry_instructions": "The entrant must specify a description of the beer, identifying yeast or bacteria used and either a Base Style, or the ingredients, specs, or target character of the beer.", - "vital_statistics": "Variable by base style.", - "tags": "wild-fermentation, north-america, craft-style, specialty-beer, sour", - "ingredients": "Virtually any style of beer. Usually fermented by some combination ofLacto,Pedio, Sacch, and Brett. Can also be a blend of styles. Wood or barrel aging is very common, but not required; if present, should not be a primary or dominant flavor.", - "examples": "Boulevard Love Child, Jester King Le Petit Prince, Jolly Pumpkin Oro de Calabaza, Lost Abbey Ghosts in the Forest, New Belgium Le Terroir, Russian River Temptation", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Wild Specialty Beer", - "category": "American Wild Ale", - "category_id": "28", - "style_id": "28C", - "category_description": "The name American Wild Ale is commonly used by craft brewers and homebrewers. However, the word Wild does not imply that these beers are necessarily spontaneously-fermented; rather, it indicates that they are influenced by microbes other than traditional brewer’s yeasts, or perhaps that they are mixed-fermentation beers. The use of the word American does not mean that the beer has to be based on a Classic Style American beer style, or that the methods are solely practiced in the United States. Base styles in this category do not have to be Classic Styles at all (although they can be); something like, “blond ale, 7%” would be fine, since the underlying style is often lost under the fermentation character.This category is intended for a wide range of beers that do not fit traditional European sour, wild, or spontaneously-fermented styles. All of the styles in this category are Specialty-TypeBeers where many creative interpretations are possible, and the styles are defined only by the use of specific fermentation profiles and ingredients. As specialty styles, the mandatory description provided by the entrant is of the utmost importance to the judge.The styles in this category are differentiated by the types of yeast and bacteria used – see the preamble to each style for more information. We use the conversational shorthand terms used in the brewing industry: Brett for Brettanomyces, Sacch for Saccharomyces, Lacto for Lactobacillus, and Pedio for Pediococcus. See the Glossary for additional information. The Wild Specialty Beer style is for beers for other styles within this category when Specialty-Type Ingredients are added. Background levels of oak may be used in all styles within this category, but beers aged in other woods with unique flavors or barrels that contained other alcohol products must be entered in the Wild Specialty Beer style.", - "notes": "Intended for variations of a Base Stylebeer from style 28A, 28B, or 28D. These variations may include the additionof one or more Specialty-TypeIngredients; aging in non-traditional wood varieties that impart a significant and identifiable wood character (e.g., Spanish Cedar, Amburana); oraging in barrels previously containing another alcohol (e.g., spirits, wine, cider).", - "overall_impression": "An American Wild Ale with fruit, herbs, spices, or other Specialty-Type Ingredients.", - "aroma": "Variable by base style. The Specialty-Type Ingredients should be evident, as well as thedefining characteristics of a wild fermentation per the base style. The best examples will blend the aromatics from the fermentation with the special ingredients, creating an aroma that may be difficult to attribute precisely.", - "appearance": "Variable by base style, generally showing a color, tint, or hue from any Specialty-Type Ingredient (especially if fruit is used) in both the beer and the head. Clarity can be variable; some haze is not a fault. Head retention is often poor.", - "flavor": "Variable by base style. The Specialty-Type Ingredients should be evident, as well as thedefining characteristics of a wild fermentation per the base style. If fruit was fermented, the sweetness is generally gone so that only the fruit esters typically remain. Fruit and other Specialty-Type Ingredients can add sourness of their own; if so, the sourness could be prominent, but should not be overwhelming. The acidity and tannin from any fruit or other Specialty-Type Ingredients can both enhance the dryness of the beer, so care must be taken with the balance. The acidity should enhance the perception of any fruit flavor, not detract from it. Wood notes, if present, add flavor but should be balanced.", - "mouthfeel": "Variable by base style. Generally has a light body, lighter than what might be expected from the base style. Generally moderate to high carbonation; carbonation should balance the base style if one is declared. The presence of tannin from some Specialty-Type ingredients (often fruit or wood) can provide a slight astringency, enhance the body, or make the beer seem drier than it is.", - "comments": "This style is intended for fruited (and other added Specialty-TypeIngredient) versions of other styles within Category 28, not variations of European wild or sour Classic Styles. Fruited versions of Lambic should be entered in 23F Fruit Lambic. Fruited versions of other sour Classic Styles (e.g., Flanders Red, Oud Bruin, Gose, Berliner Weisse) should be entered in 29A Fruit Beer. Beers with sugars and unfermented fruit added post-fermentation should be entered in 29C Specialty Fruit Beer.", - "history": "Modern American craft beer interpretations of Belgian wild ales, or experimentations inspired by Belgian wild ales.", - "style_comparison": "Like a fruit, herb, spice, or wood beer, but sour or funky.", - "entry_instructions": "Entrant must specify anySpecialty-Type Ingredient (e.g., fruit, spice, herb, or wood) used. Entrant must specify eithera description of the beer, identifying yeast or bacteria used and either a Base Style, or the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", - "vital_statistics": "Variable by base style.", - "tags": "wild-fermentation, north-america, craft-style, specialty-beer, sour, fruit", - "ingredients": "Virtually any style of beer. Any combination of Sacch, Brett, Lacto, Pedio, or other similar fermenters. Can also be a blend of styles. While cherries, raspberries, and peaches are most common, other fruits can be used as well. Vegetables with fruit-like characteristics (e.g., chile, rhubarb, pumpkin) may also be used. Wood or barrel aging is very common, but not required. Wood with unusual or unique flavor characteristics, or wood previously in contact with other types of alcohol is allowable.", - "examples": "Cascade Bourbonic Plague, Jester King Atrial Rubicite, New Belgium Dominga Mimosa Sour, New Glarus Wisconsin Belgian Red, Russian River Supplication, The Lost Abbey Cuvee de Tomme", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Straight Sour Beer", - "category": "American Wild Ale", - "category_id": "28", - "style_id": "28D", - "category_description": "The name American Wild Ale is commonly used by craft brewers and homebrewers. However, the word Wild does not imply that these beers are necessarily spontaneously-fermented; rather, it indicates that they are influenced by microbes other than traditional brewer’s yeasts, or perhaps that they are mixed-fermentation beers. The use of the word American does not mean that the beer has to be based on a Classic Style American beer style, or that the methods are solely practiced in the United States. Base styles in this category do not have to be Classic Styles at all (although they can be); something like, “blond ale, 7%” would be fine, since the underlying style is often lost under the fermentation character.This category is intended for a wide range of beers that do not fit traditional European sour, wild, or spontaneously-fermented styles. All of the styles in this category are Specialty-TypeBeers where many creative interpretations are possible, and the styles are defined only by the use of specific fermentation profiles and ingredients. As specialty styles, the mandatory description provided by the entrant is of the utmost importance to the judge.The styles in this category are differentiated by the types of yeast and bacteria used – see the preamble to each style for more information. We use the conversational shorthand terms used in the brewing industry: Brett for Brettanomyces, Sacch for Saccharomyces, Lacto for Lactobacillus, and Pedio for Pediococcus. See the Glossary for additional information. The Wild Specialty Beer style is for beers for other styles within this category when Specialty-Type Ingredients are added. Background levels of oak may be used in all styles within this category, but beers aged in other woods with unique flavors or barrels that contained other alcohol products must be entered in the Wild Specialty Beer style.", - "notes": "Intended for beers fermented with Sacch and Lacto, with or without oak aging, produced using any technique (e.g., traditional co-fermentation, quick kettle souring).", - "overall_impression": "A pale, refreshing, sour beer with a clean lactic sourness. A gentle, pale malt flavor supports the lemony sourness with moderate fruity esters.", - "aroma": "A sharply sour character is dominant (moderately-high to high). Can have up to a moderately fruity character (often peach, apricot, lemon, or tart apple). No hop aroma. Pale malt dominates, usually biscuity or crackery. Clean fermentation.", - "appearance": "Very pale in color. Clarity ranges from clear to somewhat hazy. Large, dense, white head with poor retention. Effervescent.", - "flavor": "Clean lactic sourness dominates and can be quite strong. Some complementary, bready, biscuit, crackery,or grainy flavor is generally noticeable. Hop bitterness is undetectable. Never vinegary or bitingly acidic. Pale fruit character can be moderate including a citrusy-lemony or tart apple fruitiness may be detected. Finish is off-dry to dry. Balance dominated by sourness, but some malt and estery fruit flavor should be present. No hop flavor. Clean.", - "mouthfeel": "Light body. Moderate to high carbonation. Never hot, although higher gravity examples can have a warming alcohol character. Crisp acidity.", - "comments": "A stronger version of a Berliner Weisse-type beer with less restrictive grist, and no Brett. This beer style istypically are used as a base for modern beers that are heavily flavored with fruit, spices, sugars, etc. – those should be entered in 28C Wild Specialty Beer.", - "history": "German brewing scientist, Otto Francke, developed what was to become known as the Francke acidification process which allowed the traditional mixed-culture Berliner Weiss methods to be sped up and more consistent; this is also known as kettle souring. Many modern commercial sour beer examples use this method for rapid production, and as an alternative to complex barrel production.", - "style_comparison": "Lower gravity examples can be very much like a Brett-free Berliner Weisse. Compared to a Lambic, is generally not as acidic and has a clean lactic sourness with restrained to below sensory threshold funk. Higher in alcohol content than both.", - "tags": "pale-color, top-fermented, sour", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.048 - }, - "maximum": { - "unit": "sg", - "value": 1.065 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 3 - }, - "maximum": { - "unit": "IBUs", - "value": 8 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.006 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 7 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 3 - } - }, - "ingredients": "Most or all of the grist is pale, Pils, or wheat malt in any combination. Lightly-kilned malts for more malt depth may be employed. Carapils-type malts can be used for body.Pale sugars can be used to increase gravity without body. No lactose or maltodextrin. Maybe be produced by kettle souring, co-fermentation culture (yeast and LAB), or using specialty yeast that produce lactic acid. No Brett.", - "examples": "Rarely found, as this style is typically the base for other Specialty-Type Beers.", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Fruit Beer", - "category": "Fruit Beer", - "category_id": "29", - "style_id": "29A", - "category_description": "The Fruit Beer category is for beer made with any fruit or combination of fruit under the definitions of this category. The culinary, not botanical, definition of fruit is used here – fleshy, seed-associated structures of plants that are sweet or sour, and edible in the raw state. Examples include pome fruit (apple, pear, quince), stone fruit (cherry, plum, peach, apricot, mango, etc.), berries (any fruit with the word ‘berry’ in it), currants, citrus fruit, dried fruit (dates, prunes, raisins, etc.), tropical fruit (banana, pineapple, mango, guava, passionfruit, papaya, etc.), figs, pomegranate, prickly pear, and so on. It does not mean spices, herbs, or vegetables as defined in Category 30 – especially botanical fruit treated as culinary vegetables. Basically, if you have to justify a fruit using the word “technically” as part of the description, then that’s not what we mean.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", - "overall_impression": "A pleasant integration of fruit with beer, but still recognizable as beer. The fruit character should be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "aroma": "Varies by base style. The fruit character should be noticeable in the aroma; however, some fruit (e.g., raspberries, cherries) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) – allow for a range of fruit character and intensities from subtle to aggressive. Hop aroma may be lower than in the base style to better show the fruit character. The fruit should add an extra complexity, but not be so prominent as to unbalance the resulting presentation.", - "appearance": "Varies by base style and special ingredients. Lighter-colored beer should show distinctive ingredient colors, including in the head. The color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. Variable clarity, although haze is generally undesirable. Some ingredients may impact head retention.", - "flavor": "Varies by base style. As with aroma, distinctive fruit flavors should be noticeable, and may range in intensity from subtle to aggressive, but the fruit character should not be so artificial or inappropriately overpowering as to suggest a ‘fruit juice drink.’ Bitterness, hop and malt flavors, alcohol content, and fermentation byproducts, such as esters, should be appropriate for the base style, but be harmonious and balanced with the distinctive fruit flavors present.Fruit generally adds flavor not sweetness, since fruitsugars usually fully ferment,thus lightening the flavor and drying out the finish. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality. Some fruit may add sourness, bitterness, and tannins, which must be balanced in the resulting flavor profile.", - "mouthfeel": "Varies by base style. Fruitoften decreases body, and makes the beer seem lighter on the palate. Some smaller and darker fruits may add a tannic depth, but this astringency should not overwhelm the base beer.", - "comments": "The description of the beer is critical for evaluation; judges should think more about the declared concept than trying to detect each individual ingredient. Balance, drinkability, and execution of the theme are the most important deciding factors. The fruit should complement the original style and not overwhelm it. Base style attributes will be different after the addition of fruit; do not expect the beer to taste identical to the unadulterated base style.Fruit Beers based on a Classic Style should be entered in this style, except Lambic – there is a special style for Fruit Lambic (23F). Fruited sour or mixed fermentation beers without a Classic Style base should be entered in the 28C Wild Specialty Beer. Fruited versions of sour Classic Style beers (e.g., Flanders Red, Oud Bruin, Gose, Berliner Weisse) should be entered in 29A Fruit Beer. Fruit-based versions of Classic Styles where spices are an inherent part of the Classic Style’s definition (e.g., Witbier, Gose) do not count as a Spice Beer for entering purposes.", - "entry_instructions": "The entrant must specify the type(s) of fruit used. Entrant must specify a description of the beer, identifying either a Base Styleor the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", - "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer, but the fruit will often be reflected in the color.", - "tags": "specialty-beer, fruit", - "examples": "21st Amendment Watermelon Wheat, Anderson Valley Blood Orange Gose, Avery Liliko’i Kepolo, Ballast Point Grapefruit Sculpin, Bell’s Cherry Stout, Founders Rübæus", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Fruit and Spice Beer", - "category": "Fruit Beer", - "category_id": "29", - "style_id": "29B", - "category_description": "The Fruit Beer category is for beer made with any fruit or combination of fruit under the definitions of this category. The culinary, not botanical, definition of fruit is used here – fleshy, seed-associated structures of plants that are sweet or sour, and edible in the raw state. Examples include pome fruit (apple, pear, quince), stone fruit (cherry, plum, peach, apricot, mango, etc.), berries (any fruit with the word ‘berry’ in it), currants, citrus fruit, dried fruit (dates, prunes, raisins, etc.), tropical fruit (banana, pineapple, mango, guava, passionfruit, papaya, etc.), figs, pomegranate, prickly pear, and so on. It does not mean spices, herbs, or vegetables as defined in Category 30 – especially botanical fruit treated as culinary vegetables. Basically, if you have to justify a fruit using the word “technically” as part of the description, then that’s not what we mean.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", - "notes": "Use the definitions of Fruit in the preamble to Category 29 and Spice in the preamble to Category 30; any combination of ingredients valid in Styles 29A and 30A are allowable in this category. For this style, the word ‘spice’ means ‘any SHV’.", - "overall_impression": "A tasteful union of fruit, spice, and beer, but still recognizable as beer. The fruit and spice character should each be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "aroma": "Varies by base style. The fruit and spice character should be noticeable in the aroma; however, note that some fruit and spices (e.g., raspberries, cherries, cinnamon, ginger) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) – allow for a range of fruit and spice character and intensity from subtle to aggressive. Hop aroma may be lower than in the base style to better show the specialty character. The specialty ingredients should add an extra complexity, but not be so prominent as to unbalance the resulting presentation.", - "appearance": "Varies by base style and special ingredients. Lighter-colored beer should show distinctive ingredient colors, including in the head. The color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. Variable clarity, although haze is generally undesirable. Some ingredients may impact head retention.", - "flavor": "Varies by base style. As with aroma, distinctive fruit and spice flavors should be noticeable, and may range in intensity from subtle to aggressive. The fruit character should not be so artificial or inappropriately overpowering as to suggest a spiced fruit juice drink. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation byproducts, such as esters, should be appropriate to the base style, but be harmonious and balanced with the distinctive fruit and spice flavors present. Fruit generally add flavor not sweetness, since fruit sugars usually fully ferment, thus lightening the flavor and drying out the finish. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality. Some ingredients may add sourness, bitterness, and tannins, which must be balanced in the resulting flavor profile.", - "mouthfeel": "Varies by base style. Fruitoften decreases body, and makes the beer seem lighter on the palate. Some smaller and darker fruits may add a tannic depth, but this astringency should not overwhelm the base beer. SHVs may increase or decrease body. Some SHVs may add a bit of astringency, although a “raw” spice character is undesirable.", - "comments": "The description of the beer is critical for evaluation; judges should think more about the declared concept than trying to detect each individual ingredient. Balance, drinkability, and execution of the theme are the most important deciding factors. The specialty ingredients should complement the original style and not overwhelm it. Base style attributes will be different after the addition of fruit and spices; do not expect the beer to taste identical to the unadulterated base style.", - "entry_instructions": "The entrant must specify the type of fruit, and the type of SHV used; individual SHV ingredients do not need to be specified if a well-known blend of spices is used (e.g., apple pie spice).Entrant must specify a description of the beer, either a Base Styleor the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", - "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer, but the fruit will often be reflected in the color.", - "tags": "specialty-beer, fruit, spice", - "examples": "Cigar City Margarita Gose, Firestone Walker Chocolate Cherry Stout, Golden Road Spicy Mango Cart, Kona Island Colada Cream Ale, New Glarus Blueberry Cocoa Stout, Sun King Orange Vanilla Sunlight", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Specialty Fruit Beer", - "category": "Fruit Beer", - "category_id": "29", - "style_id": "29C", - "category_description": "The Fruit Beer category is for beer made with any fruit or combination of fruit under the definitions of this category. The culinary, not botanical, definition of fruit is used here – fleshy, seed-associated structures of plants that are sweet or sour, and edible in the raw state. Examples include pome fruit (apple, pear, quince), stone fruit (cherry, plum, peach, apricot, mango, etc.), berries (any fruit with the word ‘berry’ in it), currants, citrus fruit, dried fruit (dates, prunes, raisins, etc.), tropical fruit (banana, pineapple, mango, guava, passionfruit, papaya, etc.), figs, pomegranate, prickly pear, and so on. It does not mean spices, herbs, or vegetables as defined in Category 30 – especially botanical fruit treated as culinary vegetables. Basically, if you have to justify a fruit using the word “technically” as part of the description, then that’s not what we mean.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", - "notes": "A Specialty Fruit Beer is a Fruit Beer with some additional ingredients, such as fermentable sugars (e.g., honey, brown sugar, invert sugar), sweeteners (e.g., lactose), adjuncts, alternative grains, or other special ingredients added, or some additional process applied. A Specialty Fruit Beer can use any style within the Fruit Beer category as a base style (currently, 29A, 29B, or 29D).", - "overall_impression": "A appealing combination of fruit, sugar, and beer, but still recognizable as a beer. The fruit and sugar character should both be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "aroma": "Same as Fruit Beer, except that some additional fermentables (e.g., honey, molasses) may add an aroma component. Whatever additional aroma component is present should be in balance with the fruit and the beer components, and be a pleasant combination.", - "appearance": "Same as Fruit Beer.", - "flavor": "Same as Fruit Beer, except that some additional fermentables (e.g., honey, molasses) may add a flavor component. Whatever additional flavor component is present should be in balance with the fruit and the beer components, and be a pleasant combination. Added sugars should not have a raw, unfermented flavor. Some added sugars will have unfermentable elements that may provide a fuller and sweeter finish; fully fermentable sugars may thin out the finish.", - "mouthfeel": "Same as Fruit Beer, although depending on the type of sugar added, could increase or decrease the body.", - "comments": "If the additional fermentables or processes do not add a distinguishable character to the beer, enter it as one of the other (non-Specialty) Fruit Beer styles and omit a description of the extra ingredients or processes.", - "entry_instructions": "The entrant must specify the type of fruit used. The entrant must specify the type of additional ingredient (per the introduction) or special process employed.Entrant must specify a description of the beer, identifying either a Base Styleor the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", - "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer, but the fruit will often be reflected in the color.", - "tags": "specialty-beer, fruit", - "examples": "The Bruery Goses are Red,New Planet Raspberry Ale, Tired Hands Strawberry Milkshake IPA, WeldWerks Piña Colada IPA", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Grape Ale", - "category": "Fruit Beer", - "category_id": "29", - "style_id": "29D", - "category_description": "The Fruit Beer category is for beer made with any fruit or combination of fruit under the definitions of this category. The culinary, not botanical, definition of fruit is used here – fleshy, seed-associated structures of plants that are sweet or sour, and edible in the raw state. Examples include pome fruit (apple, pear, quince), stone fruit (cherry, plum, peach, apricot, mango, etc.), berries (any fruit with the word ‘berry’ in it), currants, citrus fruit, dried fruit (dates, prunes, raisins, etc.), tropical fruit (banana, pineapple, mango, guava, passionfruit, papaya, etc.), figs, pomegranate, prickly pear, and so on. It does not mean spices, herbs, or vegetables as defined in Category 30 – especially botanical fruit treated as culinary vegetables. Basically, if you have to justify a fruit using the word “technically” as part of the description, then that’s not what we mean.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", - "notes": "Originally a local Italian style that subsequently inspired brewers in grape-growing regions worldwide to produce versions showcasing local varietals. See X3 Italian Grape Ale for the local version.", - "overall_impression": "Combines the profile of a sparkling wine and a relatively neutral base beer allowing the aromatic qualities of the grape to blend pleasantly with hop and yeast aromatics. Can be in a range from refreshing to complex.", - "aroma": "Aromatic characteristics of the varietal grape are noticeable but should not dominate. The grape character should meld well with the underlyingbase malt character. While hop aroma is usually restrained, it can range from medium-low to entirely absent. Fermentation is usually quite clean but can have delicate spice and fruity esters. Banana, bubblegum, and the like are considered faults.", - "appearance": "Color can range from pale golden to ruby but thoseusing red grapestend towards burgundy. These darker colors may also come from using cooked or concentrated grape products, never from specialty dark grains. White to reddish head with generally a medium-low retention. Clarity is generally good. Never hazy.", - "flavor": "As with the aroma, grape character may range from subtle to medium-high intensity, and be most prominent. Fruit flavors (stone, tropical, berries, etc.) as appropriate for the variety of grape. Darker red grapes can contribute more rustic flavors (e.g.,earthy, tobacco, leather). The malt character is supportive, not robust and usually of the pale, lightly kilned varieties. Very low levels of pale crystal malts are allowed but roasted or strong chocolate character is always inappropriate. Bitterness is generally low and hop flavors can be low to non-existent. Mild tart notes, due to variety and amount of grape used, is common and may help to improve the digestibility but should not near ‘sour’ threshold. Complementary oak is optional but a funky Brett character should not be present. Clean fermentation.", - "mouthfeel": "Medium-high to high carbonation improves the perception of aroma. Body is generally from low to medium and some acidity can contribute to increased perception of dryness. Finish is exceedingly dry and crisp. Strong examples may show some warming.", - "comments": "Strengths can be as low as 4.5% or as high as 12.5%, but most commonly in the range listed. Perception of color varies widely based on tint of added fruit.", - "history": "Initially brewed at Birrificio Montegioco and Birrificio Barley in 2006-2007. Became more popular after being published in the 2015 Guidelines as Italian Grape Ale (IGA), and inspired many local variations in other countries.Characteristic", - "ingredients": "Pils or pale base malt, limited pale crystal or wheat malts. Grape must(red or white varieties, typically fresh must) is usually 15 – 20% of the total grist, but can exceed 40%. The must is fermented with the beer, not a blending of wine and beer. Fruity-spicy yeast are most common but neutral varieties can be used. Hops should be selected to complement the overall profile. This beer is not dry-hopped.Oak is allowable, but not required, and it should not be overpowering, or at levels stronger than found in wine.", - "style_comparison": "Similar base asseveral Belgian styles, likeBelgian Blonde, Saison, and Belgian Single, but with grapes. Higher strength examples are similar to Belgian Tripel or Belgian Golden Strong Ale, but with grapes. Not funky like Fruit Lambic.", - "entry_instructions": "The entrant must specify the type of grape used. The entrant mayprovide additional information about the base style or characteristic ingredients.", - "tags": "specialty-beer, fruit", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.059 - }, - "maximum": { - "unit": "sg", - "value": 1.075 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 10 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.004 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 6 - }, - "maximum": { - "unit": "%", - "value": 8.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 4 - }, - "maximum": { - "unit": "SRM", - "value": 8 - } - }, - "examples": "Montegioco Open Mind, Birrificio del Forte Il Tralcio, Luppolajo Mons Rubus, Firestone Walker Feral Vinifera, pFriem Family Brewers Druif, 4 Árvores Abbondanza", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Spice, Herb, or Vegetable Beer", - "category": "Spiced Beer", - "category_id": "30", - "style_id": "30A", - "category_description": "We use the common or culinary definitions of spices, herbs, and vegetables, not botanical or scientific ones. In general, spices are the dried seeds, seed pods, fruit, roots, bark, etc. of plants used for flavoring food. Herbs are leafy plants or parts of plants (leaves, flowers, petals, stalks) used for flavoring food. Vegetables are savory or less sweet edible plant products, used primarily for cooking or sometimes eating raw. Vegetables can include some botanical fruit. This category explicitly includes all culinary spices, herbs, and vegetables, as well as nuts (or anything with ‘nut’ in the name, including coconut), chile peppers, coffee, chocolate, spruce tips, rose hips, hibiscus, fruit peels/zest (but not juice), rhubarb, and the like. It does not include culinary fruit or grains. Flavorful fermentable sugars and syrups (e.g., agave nectar, maple syrup, molasses, sorghum, treacle, honey) or sweeteners (e.g., lactose) can be included only in combination with other allowable ingredients, and should not have a dominant character. Any combination of allowable ingredients may also be entered. See Category 29 for a definition and examples of fruit.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", - "notes": "Often called Spice Beer, regardless of whether spices, herbs, or vegetables are used.", - "overall_impression": "An appealing fusion of spices, herbs, or vegetables (SHVs) and beer, but still recognizable as beer. The SHV character should be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "aroma": "Varies by base style. The SHV character should be noticeable in the aroma; however, some SHVs (e.g., ginger, cinnamon, rosemary) have stronger aromas and are more distinctive than others (e.g., most vegetables) – allow for a range of SHV character and intensity from subtle to aggressive. Hop aroma may be lower than in the base style to better show the SHV character. The SHVs should add an extra complexity, but not be so prominent as to unbalance the resulting presentation.", - "appearance": "Varies by base style and special ingredients. Lighter-colored beer may show distinctive ingredient colors, including in the head. Variable clarity, although haze is generally undesirable. Some ingredients may impact head retention.", - "flavor": "Varies by base style. As with aroma, distinctive SHV flavors should be noticeable, and may range in intensity from subtle to aggressive. Some SHVs are inherently bitter and may result in a beer more bitter than the declared base style. Bitterness, hop and malt flavors, alcohol content, and fermentation byproducts, such as esters, should be appropriate for the base style, but be harmonious and balanced with the distinctive SHV flavors present.", - "mouthfeel": "Varies by base style. SHVs may increase or decrease body. Some SHVs may add a bit of astringency, although a “raw” spice character is undesirable.", - "comments": "The description of the beer is critical for evaluation; judges should think more about the declared concept than trying to detect each individual ingredient. Balance, drinkability, and execution of the theme are the most important deciding factors. The SHVs should complement the original style and not overwhelm it. Base style attributes will be different after the addition of SHVs; do not expect the beer to taste identical to the unadulterated base style.", - "entry_instructions": "The entrant must specify the type of spices, herbs, or vegetables used, but individual ingredients do not need to be specified if a well-known spice blend is used (e.g., apple pie spice, curry powder, chili powder). Entrant must specify a description of the beer, identifying either a Base Style or the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", - "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer.", - "tags": "specialty-beer, spice", - "examples": "Alesmith Speedway Stout, Elysian Avatar Jasmine IPA, Founders Breakfast Stout, Rogue Yellow Snow Pilsner, Traquair Jacobite Ale, Young’s Double Chocolate Stout", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Autumn Seasonal Beer", - "category": "Spiced Beer", - "category_id": "30", - "style_id": "30B", - "category_description": "We use the common or culinary definitions of spices, herbs, and vegetables, not botanical or scientific ones. In general, spices are the dried seeds, seed pods, fruit, roots, bark, etc. of plants used for flavoring food. Herbs are leafy plants or parts of plants (leaves, flowers, petals, stalks) used for flavoring food. Vegetables are savory or less sweet edible plant products, used primarily for cooking or sometimes eating raw. Vegetables can include some botanical fruit. This category explicitly includes all culinary spices, herbs, and vegetables, as well as nuts (or anything with ‘nut’ in the name, including coconut), chile peppers, coffee, chocolate, spruce tips, rose hips, hibiscus, fruit peels/zest (but not juice), rhubarb, and the like. It does not include culinary fruit or grains. Flavorful fermentable sugars and syrups (e.g., agave nectar, maple syrup, molasses, sorghum, treacle, honey) or sweeteners (e.g., lactose) can be included only in combination with other allowable ingredients, and should not have a dominant character. Any combination of allowable ingredients may also be entered. See Category 29 for a definition and examples of fruit.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", - "notes": "Autumn Seasonal Beers are beers that suggest cool weather and the autumn harvest season, and may include pumpkins, gourds, or other squashes, and associated spices.", - "overall_impression": "A malty, spiced beer that often has a moderately rich body and slightly warming finish suggesting a good accompaniment for the cool fall season, and often evocative of harvest or Thanksgiving traditions.", - "aroma": "Malty, spicy, and balanced. A wide range is possible, as long as it evokes the harvest theme. The declared ingredients and concept set the expectation. Hops are often subtle. Alcohol is often present, but smooth and supportive. The components should be well-integrated, and create a coherent presentation.See Flavor section for spice, malt, sugar, and vegetable character.", - "appearance": "Medium amber to coppery-brown; lighter versions are more common. Clear, if not opaque. Well-formed, persistent,off-white to tan head. Some versions with squashes will take on an unusual hue for beer, with orange-like hints.", - "flavor": "Malty, spicy, and balanced. Allow for brewer creativity in meeting the theme objective. Warming or sweet spices common. Rich, toasty malty flavors are common, and may include caramel, toasted bread or pie crust, biscuit, or nut flavors. May include distinctive sugar flavors, like molasses, honey, or brown sugar. Flavor derived from squash-based vegetables are often elusive, often only providing a richer sweetness.The special ingredients should be supportive and balanced, not overshadowing the base beer. Bitterness and hop flavor are usually restrained to not interfere with the special character. Usually finishes somewhat full and satisfying, occasionallywith a light alcohol flavor. Roasted malt characteristics are typically absent.", - "mouthfeel": "Body is usually medium to full, and may be chewy. Moderately low to moderately high carbonation. Age character allowable. Warming alcohol allowable.", - "comments": "Using the sensory profile of products that suggest the harvest season, like pumpkin pie, apple pie, or candied yams, balanced with a supportive, often malty base beer. The description of the beer is critical for evaluation; judges should think more about the declared concept than trying to detect each individual ingredient. Balance, drinkability, and execution of the theme are the most important deciding factors.", - "entry_instructions": "The entrant must specify the type of spices, herbs, or vegetables used; individual ingredients do not need to be specified if a well-known blend of spices is used (e.g., pumpkin pie spice). Entrant must specify a description of the beer, identifying either a Base Styleor the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", - "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer. ABV is generally above 5%, and most examples are somewhat amber-copper in color.", - "tags": "specialty-beer, spice", - "ingredients": "Spices are required, and often include those evocative of the fall, harvest, or Thanksgiving season (e.g., allspice, nutmeg, cinnamon, cloves, ginger) but any combination is possible and creativity is encouraged. Flavorful adjuncts are common (e.g., molasses, invert sugar, brown sugar, honey, maple syrup). Squash-type or gourd-type vegetables (most frequently pumpkin) are often used.", - "examples": "Dogfish Head Punkin Ale, Elysian Punkuccino, Rogue Pumpkin Patch Ale, Schlafly Pumpkin Ale, UFO Pumpkin, Weyerbacher Imperial Pumpkin", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Winter Seasonal Beer", - "category": "Spiced Beer", - "category_id": "30", - "style_id": "30C", - "category_description": "We use the common or culinary definitions of spices, herbs, and vegetables, not botanical or scientific ones. In general, spices are the dried seeds, seed pods, fruit, roots, bark, etc. of plants used for flavoring food. Herbs are leafy plants or parts of plants (leaves, flowers, petals, stalks) used for flavoring food. Vegetables are savory or less sweet edible plant products, used primarily for cooking or sometimes eating raw. Vegetables can include some botanical fruit. This category explicitly includes all culinary spices, herbs, and vegetables, as well as nuts (or anything with ‘nut’ in the name, including coconut), chile peppers, coffee, chocolate, spruce tips, rose hips, hibiscus, fruit peels/zest (but not juice), rhubarb, and the like. It does not include culinary fruit or grains. Flavorful fermentable sugars and syrups (e.g., agave nectar, maple syrup, molasses, sorghum, treacle, honey) or sweeteners (e.g., lactose) can be included only in combination with other allowable ingredients, and should not have a dominant character. Any combination of allowable ingredients may also be entered. See Category 29 for a definition and examples of fruit.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", - "notes": "Winter Seasonal Beers are beers that suggest cold weather and the Christmas holiday season, and may include holiday spices, specialty sugars, and other products that are reminiscent of the festive season.", - "overall_impression": "A stronger, darker, spiced beer that often has a rich body and warming finish suggesting a good accompaniment for the cold winter season.", - "aroma": "Malty, spicy, fruity, and balanced. A wide range is possible, as long as it evokes the holiday theme. The declared ingredients and concept set the expectation. Fruit is often dark or dried in character. Hops are often subtle. Alcohol is often present, but smooth and supportive. Malty and sugary aromas tend to be greater in the balance, and support the spices. The components should be well-integrated, and create a coherent presentation.See Flavor section for spice, malt, sugar, and fruit character.", - "appearance": "Medium amber to very dark brown; darker versions are more common. Clear, if not opaque. Usually clear, although darker versions may be virtually opaque. Well-formed, persistent, off-white to tan head.", - "flavor": "Malty, spicy, fruity, and balanced. Allow for brewer creativity in meeting the theme objective. Warming or sweet spices common. Rich, sweet malty flavors are common, and may include caramel, toast, nutty, or chocolate flavors. May include dried fruit or dried fruit peel flavors such as raisin, plum, fig, cherry, orange peel, or lemon peel. May include distinctive sugar flavors, like molasses, honey, or brown sugar. The special ingredients should be supportive and balanced, not overshadowing the base beer. Bitterness and hop flavor are usually restrained to not interfere with special character. Usually finishes rather full and satisfying, often with a light alcohol flavor. Roasted malt characteristics are rare, and not usually stronger than chocolate.", - "mouthfeel": "Body is usually medium to full, often with a malty chewiness. Moderately low to moderately high carbonation. Age character allowable. Warming alcohol allowable.", - "comments": "Using the sensory profile of products that suggest the holiday season, such asChristmas cookies, gingerbread, English-type Christmas pudding, rum cakes, eggnog, evergreen trees, potpourri, or mulling spices, balanced with a supportive, often malty, warming, and darker base beer. The description of the beer is critical for evaluation; judges should think more about the declared concept than trying to detect each individual ingredient. Balance, drinkability, and execution of the theme are the most important deciding factors.", - "history": "The winter holiday season is a traditional time when old friends get together, where beer of a somewhat higher alcohol content and richness is served. Many breweries offer seasonal products that may be darker, stronger, spiced, or otherwise more characterful than their year-round beers. Spiced versions are an American or Belgian tradition, since English or German breweries traditionally do not use spices in their beer. Many American craft examples were inspired by Anchor Our Special Ale, first produced in 1975.", - "entry_instructions": "The entrant must specify the type of spices, sugars, fruits, or additional fermentables used; individual ingredients do not need to be specified if a well-known blend of spices is used (e.g., mulling spice). Entrant must specify a description of the beer, identifying either a Base Styleor the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", - "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer. ABV is generally above 6%, and most examples are somewhat dark in color.", - "tags": "specialty-beer, spice", - "ingredients": "Spices are required, and often include those evocative of the Christmas season (e.g., allspice, nutmeg, cinnamon, cloves, ginger) but any combination is possible and creativity is encouraged. Fruit peel (e.g., oranges, lemon) may be used, as may subtle additions of other fruits (often dried or dark fruit). Flavorful adjuncts are often used (e.g., molasses, treacle, invert sugar, brown sugar, honey, maple syrup).Usually ales, although strong dark lagers exist.", - "examples": "Anchor Christmas Ale, Great Lakes Christmas Ale, Harpoon Winter Warmer, Rogue Santa’s Private Reserve, Schlafly Christmas Ale, Troeg’s The Mad Elf", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Specialty Spice Beer", - "category": "Spiced Beer", - "category_id": "30", - "style_id": "30D", - "category_description": "We use the common or culinary definitions of spices, herbs, and vegetables, not botanical or scientific ones. In general, spices are the dried seeds, seed pods, fruit, roots, bark, etc. of plants used for flavoring food. Herbs are leafy plants or parts of plants (leaves, flowers, petals, stalks) used for flavoring food. Vegetables are savory or less sweet edible plant products, used primarily for cooking or sometimes eating raw. Vegetables can include some botanical fruit. This category explicitly includes all culinary spices, herbs, and vegetables, as well as nuts (or anything with ‘nut’ in the name, including coconut), chile peppers, coffee, chocolate, spruce tips, rose hips, hibiscus, fruit peels/zest (but not juice), rhubarb, and the like. It does not include culinary fruit or grains. Flavorful fermentable sugars and syrups (e.g., agave nectar, maple syrup, molasses, sorghum, treacle, honey) or sweeteners (e.g., lactose) can be included only in combination with other allowable ingredients, and should not have a dominant character. Any combination of allowable ingredients may also be entered. See Category 29 for a definition and examples of fruit.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", - "notes": "A Specialty Spice Beer is a 30A Spice, Herb, or Vegetable(SHV) Beer with some additional ingredients, such as fermentable sugars (e.g., honey, brown sugar, invert sugar, maple syrup), sweeteners (e.g., lactose), adjuncts, alternative grains, or other special ingredients added, or some additional process applied.30B Autumn and 30C Winter Seasonal Beers already allow additional ingredients, and should not be used as a base in this style.", - "overall_impression": "An appealing combinationof spices, herbs, or vegetables (SHVs), sugars, and beer, but still recognizable as beer. The SHV and sugar character should both be evident but in balance with the beer, not so forward as to suggest an artificial product.", - "aroma": "Same as SHVBeer, except that some additional fermentables (e.g., honey, molasses) may add an aroma component. Whatever additional aroma component is present should be in balance with the SHV and the beer components, and be a pleasant combination.", - "appearance": "Same as Spice, Herb, or VegetableBeer.", - "flavor": "Same as SHVBeer, except that some additional fermentables (e.g., honey, molasses) may add a flavor component. Whatever additional flavor component is present should be in balance with the SHV and the beer components, and be a pleasant combination. Added sugars should not have a raw, unfermented flavor. Some added sugars will have unfermentable elements that may provide a fuller and sweeter finish; fully fermentable sugars may thin out the finish.", - "mouthfeel": "Same as SHVBeer, although depending on the type of sugar added, could increase or decrease the body.", - "comments": "If the additional fermentables or processes do not add a distinguishable character to the beer, enter it as one of the other (non-Specialty) Spiced Beer styles and omit a description of the extra ingredients or processes.", - "entry_instructions": "The entrant must specify the type of SHVs used, but individual ingredients do not need to be specified if a well-known spice blend is used (e.g., apple pie spice, curry powder, chili powder). The entrant must specify the type of additional ingredient (per the introduction) or special process employed.Entrant must specify a description of the beer, identifying either a Base Styleor the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", - "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer.", - "tags": "specialty-beer, spice", - "examples": "New Belgium Honey Orange Tripel, Westbrook It’s Tiki Time", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Alternative Grain Beer", - "category": "Alternative Fermentables Beer", - "category_id": "31", - "style_id": "31A", - "category_description": "This category contains Specialty-TypeBeers usingeither grain or sugar to add a distinctive character. See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients to the base beer.", - "notes": "An Alternative Grain Beer is a standard beer (Classic Style or not) with additional or non-standard brewing grains (e.g., rye, oats, buckwheat, spelt, millet, sorghum, rice) added or used exclusively. Gluten-free (GF) beers made from completely gluten-free ingredients may be entered here, while GF beers using process-based gluten removal should be entered in their respective base style categories.", - "overall_impression": "A base beer enhanced by or featuring the character of additional grains. The specific character depends greatly on the added grains.", - "aroma": "Same as base beer style. The added grain will lend a particular character, although with some grains the beer will simply seem a bit more grainy or nutty, and some may have a relatively neutral character.", - "appearance": "Same as base beer style, although some additional haze may be noticeable.", - "flavor": "Same as base beer style. The additional grain should be noticeable in flavor, although it may not be necessarily identifiable. Some grains add an additional grainy, bready, or nutty flavor, while others simply enhance the flavor of the base beer. Some grains add a dryness to the finish.", - "mouthfeel": "Same as the base beer, although many additional grains (e.g., oats, rye) increase body and viscosity, while some (e.g., GF grains) create a thinner beer.", - "comments": "The additional grain should be apparent somewhere in the sensory profile. If the alternative grain does not provide a noticeable distinguishable character to the beer, enter it as the base style. This style should not be used for styles where the alternative grain is fundamental to the style definition (e.g., Rye IPA, Oatmeal Stout, Rice- or Corn-based International Lager). Note that sake is not beer, and is not intended for this category.", - "entry_instructions": "The entrant must specify the type of alternative grain used. Entrant must specify a description of the beer, identifying either a Base Style or the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", - "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer.", - "tags": "specialty-beer", - "examples": "Blue/Point Rastafarye Ale, Green’s India Pale Ale, Lakefront New Grist, New Planet Pale Ale, Rogue Morimoto Soba Ale, Voodoo Swimming Jeans", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Alternative Sugar Beer", - "category": "Alternative Fermentables Beer", - "category_id": "31", - "style_id": "31B", - "category_description": "This category contains Specialty-TypeBeers usingeither grain or sugar to add a distinctive character. See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients to the base beer.", - "notes": "An Alternative Sugar Beer is a standard beer (Classic Style or not) with addedsweeteners, including fermentable sugars (e.g., honey, brown sugar, invert sugar, molasses, treacle, maple syrup, sorghum), unfermentable sugars (e.g., lactose), sugar alcohols (e.g., sorbitol), and any other sweetener (natural or artificial) that affects the flavor profile. The beers may or may not have any residual sweetness; it depends on the type of sugar, but flavor contributions are expected.", - "overall_impression": "A tasteful integration of sugar and beer, but still recognizable as beer. The sugar character should both be evident and in balance with the beer, not so forward as to suggest an artificial product.", - "aroma": "Same as the base beer, except that some additional fermentables (e.g., honey, molasses) may add an aroma, which should be a pleasant, balanced combination with the beer.", - "appearance": "Same as the base beer, although some sugars will bring additional, usually darker, colors.", - "flavor": "Same as the base beer, except that some additional fermentables (e.g., honey, molasses) may add a flavor, which should be a pleasant, balanced combination with the beer. Added sugars should not have a raw, unfermented flavor. Some unfermentable sugars provide a fuller finish, while fully fermentable sugars can thin out the finish.", - "mouthfeel": "Same as the base beer, although depending on the type of sugar added, could increase or decrease the body.", - "comments": "The additional sugar should be apparent somewhere in the sensory profile. If the sugars do not add a distinguishable character to the beer, enter it in the base style category. A honey-based beer should not have so much honey that it is perceived more like a mead with beer (i.e., a braggot) than a honey beer. This style should not be used for styles where the alternative sugar is fundamental to the style definition, or where a small amount of neutral-flavored sugar is used simply to increase gravity, increase attenuation, or lighten flavor or body; those beers should be entered as the normal base style.", - "entry_instructions": "The entrant must specify the type of sugar used. Entrant must specify a description of the beer, identifying either a Base Style or the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", - "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer.", - "tags": "specialty-beer", - "examples": "Bell’s Hopslam, Cervejaria Colorado Appia, Fifth Hammer Break of Jawn, Groundswell Piloncillo, Long Trail Harvest, New Glarus Cabin Fever", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Classic Style Smoked Beer", - "category": "Smoked Beer", - "category_id": "32", - "style_id": "32A", - "category_description": "This category contains Specialty-TypeBeers that have a smoke character.", - "notes": "Intended for smoked versions of Classic Style beers, except if the Classic Style beer has smoke as an inherent part of its definition (of course, that beer should be entered in its base style, such as Rauchbier).", - "overall_impression": "A well-balanced fusion of the malt and hops of the base beer style with a pleasant and agreeable smoke character.", - "aroma": "A pleasant balance between the expected aroma of the base beer and smoked malt. The smoke character ranges from low to assertive, and may show varietal wood smoke character (e.g., alder, oak, beechwood). The balance between the smoke and beer can vary – they do not need to be equal in intensity. However, the resulting mix should be appealing. Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate.", - "appearance": "Variable. The appearance should reflect the base beer style, although the color is often a bit darker than expected for the plain base style.", - "flavor": "Similar to the aroma, with a balance between the base beer and low to assertive smoked malt. Varietal woods can produce different flavor profiles. The balance between smoke and beer can vary, but the resulting blend should be enjoyable. Smoke can add some additional dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury, medicinal, or phenolic smoke-derived flavors are inappropriate.", - "mouthfeel": "Varies with the base beer style. Significant astringent, phenolic, smoke-derived harshness is a fault.", - "comments": "Use this style for beers other than Bamberg-style Rauchbier (i.e., beechwood-smoked Märzen), which has its own style. Judges should evaluate these beers mostly on the overall balance, and how well the smoke character enhances the base beer.", - "history": "The process of using smoked malts has been adapted by craft brewers to many styles. German brewers have traditionally used smoked malts in Bock, Doppelbock, Weissbier, Munich Dunkel, Schwarzbier, Munich Helles, Pils, and other specialty styles.", - "entry_instructions": "The entrant must specify a Base Style. The entrant must specify the type of wood or smoke if a varietal smoke character is noticeable.", - "vital_statistics": "Varies with the base beer style.", - "tags": "specialty-beer, smoke", - "ingredients": "Different materials used to smoke malt result in unique flavor and aroma characteristics. Beechwood, or other hardwood (e.g., oak, maple, mesquite, alder, pecan, apple, cherry, other fruitwoods) smoked malts may be used. These may be reminiscent of certain smoked foods (e.g., hickory with ribs, maple with bacon or sausage, and alder with salmon). Evergreen wood should never be used since it adds a medicinal, piney flavor to the malt. Noticeable peat-smoked malt is universally undesirable due to its sharp, piercing phenols and dirt-like earthiness. The remaining ingredients vary with the base style. If smoked malts are combined with other unusual ingredients (e.g., fruits, vegetables, spices, honey) in noticeable quantities, the resulting beer should be entered in the 32B Specialty Smoked Beer.", - "examples": "Alaskan Smoked Porter, Schlenkerla Oak Smoke Doppelbock, Schlenkerla Rauchbier Weizen,SchlenkerlaRauchbier Ur-Bock, O’Fallon Smoked Porter, Spezial Rauchbier Lagerbier", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Specialty Smoked Beer", - "category": "Smoked Beer", - "category_id": "32", - "style_id": "32B", - "category_description": "This category contains Specialty-TypeBeers that have a smoke character.", - "notes": "A Specialty Smoked Beer is either a smoked beer based on something other than a Classic Style (a Specialty-Type style, or a broad style family such as Porter rather than a specific style), OR any type of smoked beer with additional specialty ingredients (fruits, vegetables, spices) or processes employed that transform the beer into something more unique.", - "overall_impression": "A well-balanced fusion of the malt and hops of the base specialty beer style with a pleasant and agreeable smoke character.", - "aroma": "A pleasant balance between the expected aroma of the base beer, smoked malt, and any specialty ingredients. The smoke character ranges from low to assertive, and may show varietal wood smoke character (e.g., alder, oak, beechwood). The balance between the smoke, the beer, and any specialty ingredients can vary – they do not need to be equal in intensity. However, the resulting mix should be appealing. Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate.", - "appearance": "Variable. The appearance should reflect the base beer style, although the color is often a bit darker than expected for the plain base style. The use of certain fruits and spices may affect the color and hue of the beer as well.", - "flavor": "Similar to the aroma, with a balance between the base beer, any specialty ingredients, and low to assertive smoked malt. Varietal woods can produce different flavor profiles. The balance between smoke, beer, and any specialty ingredients can vary, but the resulting blend should be enjoyable. Smoke can add some additional dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury, medicinal, or phenolic smoke-derived flavors are inappropriate.", - "mouthfeel": "Varies with the base beer style. Significant astringent, phenolic, smoke-derived harshness is a fault.", - "comments": "Judges should evaluate these beers mostly on the overall balance, and how well the smoke character enhances the base beer and any specialty ingredients.", - "entry_instructions": "The entrant must specify the type of wood or smoke if a varietal smoke character is noticeable. The entrant must specify the additional ingredients or processes that make this a specialty smoked beer.Entrant must specify a description of the beer, identifying either a base style or the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", - "vital_statistics": "Varies with the base beer style.", - "tags": "specialty-beer, smoke", - "ingredients": "Same as 32A Classic Style Smoked Beer with the possible addition of specialty ingredients (e.g., fruits, spices, vegetables, honey) in noticeable quantities.", - "examples": "Fat Head’s Up in Smoke, Ommegang Bourbon Barrel Vanilla Smoked Porter", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Commercial Specialty Beer", - "category": "Specialty Beer", - "category_id": "34", - "style_id": "34A", - "category_description": "While there are many Specialty-Type Beers in these guidelines, the Specialty Beer style category is intended for those beers that do not fit anywhere else. Please check each previous Specialty-Type category before entering a beer in one of these styles.", - "notes": "This style is intended for reproductions or interpretations of specific commercial beers that don’t fit withindefined styles. Beers entered here do not need to be exact copies. The beer should be judged as to how well it fits the broader style represented by the example beer, not how well it is an exact copy of a specific commercial product. If a Commercial Specialty Beerfitsanother defined style, do not enter it here.", - "overall_impression": "Based on declared beer.", - "aroma": "Based on declared beer.", - "appearance": "Based on declared beer.", - "flavor": "Based on declared beer.", - "mouthfeel": "Based on declared beer.", - "comments": "Intended as a catch-all location for specific beers that are based on unique commercial examples that don’t fit existing styles. Past versions of the Style Guidelines included a Belgian Specialty Ale style; this style fits that general purpose, as well as allowing non-Belgian entries of similar intent.", - "entry_instructions": "The entrant must specify the name of the commercial beer, specifications (vital statistics) for the beer, and either a brief sensory description or a list of ingredients used in making the beer. Without this information, judges who are unfamiliar with the beer will have no basis for comparison.", - "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the declared beer.", - "tags": "specialty-beer", - "examples": "Orval, La Chouffe", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Mixed-Style Beer", - "category": "Specialty Beer", - "category_id": "34", - "style_id": "34B", - "category_description": "While there are many Specialty-Type Beers in these guidelines, the Specialty Beer style category is intended for those beers that do not fit anywhere else. Please check each previous Specialty-Type category before entering a beer in one of these styles.", - "notes": "This style is intended for beers in Existing Styles (previously-defined Classic Style beers or Specialty-Type Beers) that are either:A combination of Existing Styles that are not defined previously in the guidelines, including combination of Specialty-Type Beers not otherwise allowable elsewhere.A variation of an Existing Style using a non-traditional method or process (e.g., dry-hopping, ‘eis’-ing, stein bier) for that style.A variation of an Existing Style using a non-traditional ingredient (e.g., yeast with a non-traditional profile, hops with a different character than described in the Base Style).Out-of-spec variations of an Existing Style (e.g., ‘imperial’ versions, ‘session’ versions, overly-sweet versions, etc.).This style is intended for beers that can’t be entered in previously-listed styles first, including (and especially) the declared Base Style of beer. However, if the unusual method, process, or ingredient results in a beer that now fits within another defined style, the beer should be entered there. Note that some styles already allow for different strengths (e.g., IPAs, Saisons), so those variations should be entered as the appropriate Base Style.Bear in mind that a poorly-made, faulted beer should not be used to define a new style. Drinkability should always be maintained, while allowing for creative new concepts.", - "overall_impression": "Based on the declared Base Styles, methods, and ingredients. As with all Specialty-Type Beers, the resulting combination of beer styles needs to be harmonious and balanced, and be pleasant to drink.", - "aroma": "Based on the declared Base Styles.", - "appearance": "Based on the declared Base Styles.", - "flavor": "Based on the declared Base Styles.", - "mouthfeel": "Based on the declared Base Styles.", - "comments": "See preamble for intent.", - "entry_instructions": "The entrant must specify the Base Style or Styles being used, and any special ingredients, processes, or variations involved. The entrant may provide an additional description of the sensory profile of the beer or the vital statistics of the resulting beer.", - "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the declared beer.", - "tags": "specialty-beer", - "examples": "Birrificio Italiano Tipopils, Firestone Walker Pivo Pils, Jack’s Abby Hoponius Union, Ommegang Helles Superior", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Experimental Beer", - "category": "Specialty Beer", - "category_id": "34", - "style_id": "34C", - "category_description": "While there are many Specialty-Type Beers in these guidelines, the Specialty Beer style category is intended for those beers that do not fit anywhere else. Please check each previous Specialty-Type category before entering a beer in one of these styles.", - "notes": "This is explicitly a catch-all category for any beer that does not fit into an Existing Style description. No beer is ever “out of style” in this style, unless it can be entered in another beer stylefirst. This is the last resort for any beer entered into a competition. With the broad definition for previous styles, this style should be rarely used.", - "overall_impression": "Varies, but should be a unique experience.", - "aroma": "Varies.", - "appearance": "Varies.", - "flavor": "Varies.", - "mouthfeel": "Varies.", - "comments": "This style cannot represent a well-known commercial beer (otherwise it would be a Commercial Specialty Beer) and cannot fit into any other existing Specialty-Type Beer style (including those within this major category).", - "entry_instructions": "The entrant must specify the special nature of the experimental beer, including the special ingredients or processes that make it not fit elsewhere in the guidelines. The entrant must provide vital statistics for the beer, and either a brief sensory description or a list of ingredients used in making the beer. Without this information, judges will have no basis for evaluation.", - "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the declared beer.", - "tags": "specialty-beer", - "examples": "None", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Dorada Pampeana", - "category": "Argentine Styles", - "category_id": "X", - "style_id": "X1", - "notes": "Suggested style placement: Category 18 (Pale American Beer)En sus comienzos los cerveceros caseros argentinos estaban muy limitados: no existían los extractos, sólo malta pilsen y lúpulo Cascade. Sólo levaduras secas, comúnmente Nottingham, Windsor o Safale. Con estos ingredientes, los cerveceros argentinos desarrollaron una versión específica de la Blond Ale, llamda Dorada Pampeana.", - "impresion_general": "Fácilmente bebible, accesible, con orientación a malta.", - "aroma": "aroma dulce maltoso ligero a moderado. Es aceptable el aroma frutal bajo a moderado. Debe tener aroma a lúpulo bajo a medio. Sin diacetilo.", - "aspecto": "color amarillo claro a dorado profundo. Claro a brillante. Espuma baja a medio con buena retención.", - "sabor": "Dulzor maltoso inicial suave. Típicamente ausentes los flavors a caramelo. Flavor a lúpulo ligero a moderado (usualmente Cascade), pero no debería ser agresivo. Amargor bajo a moderado, pero el balance tiende a la malta. Final medio-seco o algo dulce. Sin diacetilo.", - "sensacion_en_boca": "Cuerpo mediano ligero a medio. Carbonatación media a alta. Sensación suave sin amargor áspero o astringencia.", - "comentarios": "es dificultoso lograr el balance.", - "historia": "los primeros cerveceros argentinos sólo accedían a malta pilsen y lúpulo cascade y con ellos desarrollaron esta variante de Blond Ale.", - "ingredientes": "usualmente solo malta pálida o pilsen, aunque puede incluir bajas proporciones de malta caramelizadas. Comúnmente lúpulo Cascade. Levaduras americanas limpias, británicas levemente frutadas o Kölsch, usualmente acondicionada en frío.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.042 - }, - "maximum": { - "unit": "sg", - "value": 1.054 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 15 - }, - "maximum": { - "unit": "IBUs", - "value": 22 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.009 - }, - "maximum": { - "unit": "sg", - "value": 1.013 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.3 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 3 - }, - "maximum": { - "unit": "SRM", - "value": 5 - } - }, - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "IPA Argenta", - "category": "Argentine Styles", - "category_id": "X", - "style_id": "X2", - "notes": "Suggested style placement: Category 21 (IPA)IPA Especialidad: IPA ARGENTA", - "impresion_general": "Una Pale Ale Argentina decididamente amarga y lupulada, refrescante y moderadamente fuerte. La clave del estilo está en la tomabilidad sin asperezas y con un buen balance.", - "aroma": "Intenso aroma a lúpulo con carácter floral y cítrico, derivado de los lúpulos argentinos. Muchas versiones tienen dry-hopping, lo que otorga un carácter a hierba adicional, aunque esto no es requerido. Puede hallarse dulzura límpida a malta e inclusive algo de caramelo, pero con menor tenor que en las Ipas inglesas. Un carácter frutal leve de los ésteres es aceptable, al igual que toques fenólicos producto de la fermentación del trigo, que nunca deben ser dominantes y solo deben agregar complejidad. De todos modos, el carácter relativmente neutro de la fermentación es lo más usual. Puede notarse algo de alcohol en las versiones más fuertes. Sin DMS. El diacetil es un demérito importante en esta cerveza ya que apaga el lúpulo, por lo que nunca debe estar presente.", - "aspecto": "El color varía de dorado medio a cobre rojizo medio. Algunas versiones pueden tener un tinte anaranjado. Debe ser clara, aunque las versiones con dry-hopping o que contienen trigo no malteado pueden tener una leve turbiedad. Buena espuma persistente.", - "sabor": "A lúpulo medio a alto, debiendo reflejar el carácter del lúpulo argentino, con aspectos prominentemente cítricos a pomelo rosado y cáscara de mandarina, que deben dominar. Puede tener también tonos florales como flores de azhar o también herbal y/o resinoso aunque es menos habitual y solo debe agregar complejidad. Amargor medio a medio alto, soportado por una maltosidad limpia que proporciona un balance adecuado.Sabor a malta bajo a medio, límpido, aunque son aceptables bajos niveles acaramelados o picantes por el uso de trigo, sea o no malteado. Sin diacetil. Un bajo carácter frutal es aceptable, pero no requerido. El amargor debe permanecer en el retrogusto pero nunca debe ser áspero. Finish medio seco a seco y refrescante. Puede percibirse algún sabor a alcohol en las versiones más fuertes.", - "sensacion_en_boca": "cuerpo medio liviano a medio, suave, sin astringencias derivadas del lúpulo, aunque la moderada a moderada alta carbonatación puede combinarse con el trigo para dar una sensación seca, aún en presencia de la dulzura de la malta. Suave tibieza a alcohol en las versiones más fuertes (no en todas). Menor cuerpo que la IPA inglesa, y más seca que la IPA Americana.", - "historia": "La versión Argentina del histórico estilo inglés desarrollada en el marco de una serie de encuentros de la Asociación Civil Somos Cerveceros en 2013, donde se fueron definiendo sus características distintivas. Se diferencia de la IPA Americana por agregado de trigo a la receta de granos y el uso de lúpulos Argentinos que tienen características únicas de sabor y aroma. Se busca que las caracterísiticas cítricas del lúpulo Argentino armonicen con el trigo, como sucede en la Witbier. El agregado de bajas cantidades de trigo puede recordar al grist de la Kölsch, donde también hay un frutado producto de la fermentación.", - "ingredientes": "malta pálida (bien modificada y disponible para maceración simple) y una cantidad de trigo como complemento que no debe superar el 15%; El trigo puede ser malteado o sin maltear. EN el caso de agregar caramelos, deben ser limitados y preferentemente utilizando trigo caramelo. Los lúpulos Argentinos como el Cascade, Mapuche y Nugget son los usuales, aunque puede tener Spalt, Victoria y Bullion para agregar complejidad. Levadura americana que da un perfil límpido o levemente frutal. El agua varía de blanda a moderadamente sulfatada.", - "ejemplos_comerciales": "Antares Ipa Argenta, Kerze Ipa Argenta.", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1055 - }, - "maximum": { - "unit": "sg", - "value": 1065 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 35 - }, - "maximum": { - "unit": "IBUs", - "value": 60 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1008 - }, - "maximum": { - "unit": "sg", - "value": 1015 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 5 - }, - "maximum": { - "unit": "%", - "value": 6.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 6 - }, - "maximum": { - "unit": "SRM", - "value": 15 - } - }, - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Italian Grape Ale", - "category": "Italian Styles", - "category_id": "X", - "style_id": "X3", - "notes": "For uses outside Italy, see 29D Grape Ale.", - "aroma": "Aromatic characteristics of a particular grape have to be noticeable but do should not overpower the other aromas. The grape character should be pleasant and should not have defects such as oxidation. Malt character is usually restrained and should not exhibit a roasty, stout like, profile. Hop aroma (floral, earthy) can range from medium-low to absent. Some examples can have a low wild character described as barnyard, earthy, goaty but should not be as intense as in a lambic/fruit lambic. No diacetyl.", - "appearance": "Color can range from light gold to copper but some examples can be brown. Reddish/ruby color is usually due to the use of red grape varieties. White to reddish head with generally a medium low retention. Clarity is generally good but some cloudiness may be present.", - "flavor": "As with aroma, grape character (must or wine-like) must be present and may range from medium-low to medium-high intensity. Varieties of grape can contribute differently on the flavor profile: in general stone/tropical fruit flavors (peach, pear, apricot, pineapple) can come from white grapes and red fruit flavors (e.g., cherry, strawberry) from red grape varieties. Further fruity character of fermentative origin is also common. Different kinds of special malts can be used but should be supportive and balanced, not so prominent as to overshadow the base beer. Strong roasted and/or chocolate character is inappropriate. Light sour notes, due to the use of grape, are common and may help to improve the drinkability but should not be prominent as in Sour ale/Lambic or similar. Oak flavors, along with some barnyard, earthy, goaty notes can be present but should not be predominant. Bitterness and hop flavors are low. Diacetyl is absent", - "mouthfeel": "Medium-high carbonation improves the perception of aroma. Body is generally from low to medium and some acidity can contribute to increase the perception of dryness. Strong examples can show some warming but without being hot or solventy.", - "overall_impression": "A sometimes refreshing, sometimes more complex Italian ale characterized by different varieties of grapes.", - "history": "Initially brewed at Birrificio Montegioco and Birrificio Barley in 2006-2007, Italian Grape Ale (IGA) is now produced by many Italian craft breweries. It’s also becoming popular in US and other wine countries. It represents a communion between beer and wine promoted to the large local availability of different varieties of grapes across the country. They can be an expression of territory, biodiversity and creativity of the brewer. Normally seen as a specialty beer in the range of products of the brewery. Breweries call “Wild IGA” or “Sour IGA” any wild/sour version of the style.", - "ingredients": "Pils in most of cases or pale base malt with some special malts (if any). Grape content can represent up to 40% of whole grist. Grape or grape must, sometimes extensively boiled before use, can be used at different stages: during boiling or more commonly during primary/secondary fermentation. Yeast can show a neutral character (more common) or a fruity/spicy profile (English and Belgian strains). Wine yeast can be used also in conjunction with other yeasts. Continental hop varieties, mainly German or English, are used in low quantities in order not to excessively characterize the beer.", - "style_comparison": "Similar to Fruit Beer but evolved as a standalone style due to the abundance of grapes varieties in Italy.", - "tags": "Specialty-beer, FruitBrazilian Styles", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.045 - }, - "maximum": { - "unit": "sg", - "value": 1.1 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 6 - }, - "maximum": { - "unit": "IBUs", - "value": 30 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.005 - }, - "maximum": { - "unit": "sg", - "value": 1.015 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 12 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 14 - }, - "maximum": { - "unit": "SRM", - "value": 25 - } - }, - "examples": "Montegioco Open Mind, Birrificio Barley BB5-10, Birrificio del Forte Il Tralcio, Viess Beer al mosto di gewurtztraminer, CRAK IGA Cabernet, Birrificio Apuano Ninkasi, Luppolajo Mons Rubus", - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "Catharina Sour", - "category": "Brazilian Styles", - "category_id": "X", - "style_id": "X4", - "notes": "Estilo sugerido para inscrição: Categoria 29 (Fruit Beer)", - "impressao_geral": "Uma cerveja refrescante de trigo, ácida e com frutas, possui um caráter de frutas vivida e uma acidez lática limpa. A graduação alcoólica contida, o corpo leve, a carbonatação elevada, e amargor abaixo da percepção fazem com que a fruta fresca seja o destaque. A fruta não precisa ser de caráter tropical, mas normalmente apresenta este perfil.", - "aroma": "Médio à alto caráter de fruta, reconhecível e identificável de forma imediata. Uma acidez lática limpa de intensidade baixa à media que complementa a fruta. Malte tipicamente neutro, mas pode apresentar notas de pão e grãos em caráter de apoio. Fermentação limpa sem caráter de levedura selvagem ou funky. Sem aroma de lúpulo. Sem álcool agressivo. Especiarias, ervas e vegetais devem complementar a fruta se estiverem presentes.", - "aparencia": "Coloração tipicamente bastante clara – amarela-palha até dourada. Espuma branca de média à alta formação e média à boa retenção. A coloração da espuma e da cerveja podem ser alteradas e ficar com a coloração da fruta. Claridade pode ser bastante límpida até turva. Efervescente.", - "sabor": "Sabor de fruta fresca dominante em intensidade média à alta, com uma acidez lática limpa de intensidade baixa à média-alta de forma complementar mas notável. A fruta deve ter um caráter fresco, sem parecer cozida, parecida com geléia ou artificial. O malte é normalmente ausente, se presente pode ter um caráter baixo de grãos ou pão, mas não deve nunca competir com a fruta ou a acidez. Amargor do lúpulo abaixo do limiar de percepção. Final seco com um retrogosto limpo, ácido e frutado. Sem sabor de lúpulo, notas acéticas, diacetil, ou sabores funk oriundos de Brett. Especiarias, ervas e vegetais são opcionais e em caráter complementar à fruta.", - "sensacao_de_boca": "Corpo baixo à médio-baixo. Carbonatação média à alta. Sem aquecimento alcoólico. Acidez baixa à média-baixa sem ser agressivamente ácida ou adstringente.", - "comentarios": "Melhor servida fresca. A acidez pode fazer com que a cerveja pareça mais seca e com um corpo menor do que a gravidade final sugere. Uma Berliner Weisse com adição de frutas deve ser inscrita na categoria 29A Fruit Beer.", - "historia": "Os exemplos individuais existiam com nomes diferentes anteriormente no Brasil, mas o estilo se tornou popular com esse nome depois que foi definido formalmente em 2015 durante uma reunião entre cervejeiros profissionais e caseiros em Santa Catarina. Utilizando ingredientes locais adequados para um clima quente, o estilo se espalhou para outros estados do Brasil e além, sendo um estilo muito popular na América do Sul – tanto em competições comerciais como caseiras.", - "ingredientes": "Malte Pilsen com malte de trigo ou trigo não maltado. A técnica de Kettle Sour com o uso de Lacto é a mais comum de ser utilizada, seguida por uma fermentação com uma levedura ale neutra. A fruta é tipicamente adicionada nos estágios finais da fermentação. Frutas da estação frescas, comumente tropicais. Especiarias, ervas e vegetais são opcionais, mas devem sempre estar em caráter de apoio e elevar a percepção da fruta.", - "comparacoes_de_estilo": "Como uma Berliner Weisse mais forte, mas com fruta fresca e sem Brett. Menos ácida do que Lambic e Gueuze e sem o caráter da Brett. A partir do guia de estilos 2021, cervejas semelhantes podem ser inscritas no estilo mais amplo 28C Wild Specialty Beer Style.", - "exemplos_comerciais": "Armada Daenerys, Blumenau Catharina Sour Pêssego, Istepô Goiabêra, Itajahy Catharina Araçá Sour, Liffey Coroa Real, UNIKA Tangerina Clemenules", - "marcacoes": "estilo-craft, fruta, ácida, cerveja-specialty", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.039 - }, - "maximum": { - "unit": "sg", - "value": 1.048 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 2 - }, - "maximum": { - "unit": "IBUs", - "value": 8 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.004 - }, - "maximum": { - "unit": "sg", - "value": 1.012 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4 - }, - "maximum": { - "unit": "%", - "value": 5.5 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "style_guide": "BJCP2021", - "type": "beer" - }, - { - "name": "New Zealand Pilsner", - "category": "New Zealand Styles", - "category_id": "X", - "style_id": "X5", - "notes": "Suggested style placement: Category 12 (Pale Commonwealth Beer)", - "overall_impression": "A pale, dry, golden-colored, cleanly-fermented beer showcasing the characteristic tropical, citrusy, fruity, grassy New Zealand-type hops. Medium body, soft mouthfeel, and smooth palate and finish, with a neutral to bready malt base provide the support for this very drinkable, refreshing, hop-forward beer.", - "aroma": "Medium to high hop aroma reflective of modern New World hop varieties, often showcasing tropical fruit, citrus (lime, white grapefruit), gooseberry, honeydew melon, with a light green bell pepper or grassy aspect. Medium-low to medium malt in support, with a neutral to bready-crackery quality. Very low DMS acceptable but not required. Neutral, clean yeast character, optionally with a very light sulfury quality. The hop character should be most prominent in the balance, but some malt character must be evident.", - "appearance": "Straw to deep gold in color, but most examples are yellow-gold. Generally quite clear to brilliant clarity; haziness is a fault. Creamy, long-lasting white head.", - "flavor": "Medium to high hop bitterness, cleanly bitter not harsh, most prominent in the balance and lasting into the aftertaste. Medium to high hop flavor with similar characteristics as the aroma (tropical, citrus, gooseberry, melon, grass). Medium to medium-low malt flavor, grainy-sweet, bready, or crackery. Clean fermentation profile (fermentation esters are a fault). Dry to off-dry with a clean, smooth finish and bitter but not harsh aftertaste. The malt may suggest an impression of sweetness but the beer should not be literally sweet. The finish may be dry but not seem crisp or biting. The balance should always be bitter, but the malt flavor must be noticeable.", - "mouthfeel": "Medium to medium-light body. Medium to medium-high carbonation. Smoothness is the most prominent impression. Never harsh nor astringent.", - "comments": "The hop aromatics often have a similar quality as many New Zealand Sauvignon Blanc wines, with tropical fruit, grassy, melon, and lime aromatics. Often brewed as a hybrid style in New Zealand using a neutral ale yeast at cool temperatures. Limiting the sulfur content of the finished product is important since it can clash with the hop character.", - "history": "Largely defined by the original created at Emerson’s Brewery in the mid-1990s, New Zealand Pilsner has expanded in character as the varieties of New Zealand hops have expanded in number and popularity.", - "ingredients": "New Zealand hop varieties, such as Motueka, Riwake, Nelson Sauvin, often with Pacific Jade for bittering. Other new world varieties from Australia or the US may be used, if they have similar characteristics. Pale base malts, Pilsner or pale types, perhaps with a small percentage of wheat malt. Fairly low-mineral water, typically with more chloride than sulfate. Clean lager yeast or very neutral ale yeast.", - "style_comparison": "Compared to a German Pils, not as crisp and dry in the finish with a softer, maltier presentation and a fuller body. Compared to a Czech Premium Pale Lager, less malt complexity, a cleaner fermentation. Similar in balance to a Kolsch or British Golden Ale, but with a hoppier aroma. Compared to any of these German styles, showcasing New Zealand hop varieties with tropical, citrusy, fruity, grassy characteristics, often with a white wine-like character. Should not be as hoppy or bitter in balance as an IPA.", - "tags": "bitter, pale-color, standard-strength, bottom-fermented, hoppy, pilsner-family, lagered, craft-style, pacific", - "original_gravity": { - "minimum": { - "unit": "sg", - "value": 1.044 - }, - "maximum": { - "unit": "sg", - "value": 1.056 - } - }, - "international_bitterness_units": { - "minimum": { - "unit": "IBUs", - "value": 25 - }, - "maximum": { - "unit": "IBUs", - "value": 45 - } - }, - "final_gravity": { - "minimum": { - "unit": "sg", - "value": 1.009 - }, - "maximum": { - "unit": "sg", - "value": 1.014 - } - }, - "alcohol_by_volume": { - "minimum": { - "unit": "%", - "value": 4.5 - }, - "maximum": { - "unit": "%", - "value": 5.8 - } - }, - "color": { - "minimum": { - "unit": "SRM", - "value": 2 - }, - "maximum": { - "unit": "SRM", - "value": 6 - } - }, - "examples": "Croucher New Zealand Pilsner, Emerson’s Pilsner, Liberty Halo Pilsner, Panhead Port Road Pilsner, Sawmill Pilsner, Tuatara Mot Eureka", - "style_guide": "BJCP2021", - "type": "beer" - } - ] - } -} diff --git a/beer/urls.py b/beer/urls.py index 7bf0285..728b324 100644 --- a/beer/urls.py +++ b/beer/urls.py @@ -1,4 +1,4 @@ -from django.urls import path, re_path +from django.urls import path from django.conf import settings from django.conf.urls.static import static from .views import home, view_recipe, view_batch, update_ferm, update_hop diff --git a/fixtures/bjcp.json b/fixtures/bjcp.json new file mode 100644 index 0000000..f2bc34d --- /dev/null +++ b/fixtures/bjcp.json @@ -0,0 +1,12344 @@ +[ +{ + "model": "beer.bjcpstyle", + "pk": 1, + "fields": { + "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", + "original_gravity_minimum_value": "1.02800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "12.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "0.99800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.00800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "2.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "4.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "3.00000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 2, + "fields": { + "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", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "18.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00400", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.30000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "3.50000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 3, + "fields": { + "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", + "original_gravity_minimum_value": "1.04200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "20.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "5.00000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 4, + "fields": { + "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", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 5, + "fields": { + "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.", + "tags": "standard-strength, pale-color, bottom-fermented, lagered, traditional-style, pale-lager-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "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", + "entry_instructions": "Entrant may specify regional variations, if desired (Mexican lager, Dutch lager, etc.).", + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 6, + "fields": { + "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", + "original_gravity_minimum_value": "1.04200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 7, + "fields": { + "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", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05600", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "20.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "14.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "30.00000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 8, + "fields": { + "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", + "original_gravity_minimum_value": "1.02800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "4.10000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 9, + "fields": { + "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", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "45.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01300", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01700", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.50000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 10, + "fields": { + "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", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01300", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01700", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.40000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "10.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "16.00000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 11, + "fields": { + "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", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "34.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01300", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01700", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.40000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "17.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "35.00000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 12, + "fields": { + "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", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04800", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "16.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "22.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.70000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.40000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "5.00000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 13, + "fields": { + "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", + "original_gravity_minimum_value": "1.05400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05700", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.30000", + "color_minimum_unit": "SRM", + "color_minimum_value": "4.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 14, + "fields": { + "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", + "original_gravity_minimum_value": "1.06400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "23.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01100", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.40000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "9.00000", + "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", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 15, + "fields": { + "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", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.02600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.03400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "28.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "2.40000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "1.50000", + "color_maximum_unit": "SRM", + "color_maximum_value": "4.00000", + "ingredients": "Continental Pils malt. German lager yeast.Traditional German hops.", + "examples": "Autenrieder Schlossbräu Leicht, Greif Bräu Leicht, Hohenthanner Tannen Hell Leicht, Müllerbrau Heimer Leicht, Schönramer Surtaler Schankbier, Waldhaus Sommer Bier", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 16, + "fields": { + "name": "Kölsch", + "category": "Pale Bitter European Beer", + "category_id": "5", + "style_id": "5B", + "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 subtle, brilliantly clear, pale beer with a delicate balance of malt, fruit, and hop character, moderate bitterness, and a well-attenuated but soft finish. Freshness makes a huge difference with this beer, as the delicate character can fade quickly with age.", + "aroma": "Low to very low grainy-sweet malt aroma. A subtle fruit aroma (apple, pear, or sometimes cherry) is optional, but welcome. Low floral, spicy, or herbal hop aroma optional. The intensity of aromatics is fairly subtle but generally balanced, clean, fresh, and pleasant.", + "appearance": "Medium yellow to light gold. Brilliant clarity. Has a delicate white head that may not persist.", + "flavor": "A delicate flavor balance between malt, fruitiness, bitterness, and hops, with a clean, well-attenuated finish. The medium to medium-low grainy maltiness may have very light bready or honey notes. The fruitiness can have an almost imperceptible sweetness.Medium-low to medium bitterness. Low to moderately-high floral, spicy, or herbal hop flavor; most are medium-low to medium. May have a neutral-grainy to light malty sweet impression at the start. Soft, rounded palate. Finish is soft, dry, and slightly crisp, not sharp or biting. No noticeable residual sweetness. While the balance between the flavor components can vary, none are ever strong.", + "mouthfeel": "Medium-light to medium body; most are medium-light. Medium to medium-high carbonation. Smooth and soft, but well-attenuated and not heavy. Not harsh.", + "comments": "A traditional top-fermented, lagered beer from Cologne, Germany (Köln). Köln breweriesdifferentiate themselves throughbalance, so allow for a range of variation within the style when judging. Drier versions may seem hoppier or more bitter than the IBU levels might suggest. The delicate flavor profile does not age well, so be alert for oxidation defects. Served in Köln in a tall, narrow 20cl glass called a Stange.", + "history": "Köln has a top-fermenting brewing tradition since the Middle Ages, but the beer now known as Kölsch was developed in the late 1800s as an alternative to pale lagers. Bottom fermentation was actually prohibited in Cologne. Kölsch is an appellation protected by the Kölsch Konvention (1986), and is restricted to breweries in and around Köln. The Konvention simply defines the beer as a “light, highly attenuated, hop-accentuated, clear, top-fermenting Vollbier.”", + "style_comparison": "Can be mistaken for a Cream Ale or somewhat subtle German Pils.", + "tags": "standard-strength, pale-color, top-fermented, lagered, central-europe, traditional-style, pale-ale-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00700", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01100", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.40000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.50000", + "color_maximum_unit": "SRM", + "color_maximum_value": "5.00000", + "ingredients": "Traditional German hops. German Pils, Pale, or Vienna malt. Attenuative, clean German ale yeast. Occasional small use of wheat malt. Current commercial practice is to ferment around 15 °C, cold condition near freezing for up to a month, and serve fresh.", + "examples": "Früh Kölsch, Gaffel Kölsch, Mühlen Kölsch, Päffgen Kolsch, Reissdorf Kölsch, Sion Kölsch, Sünner Kölsch", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 17, + "fields": { + "name": "German Helles Exportbier", + "category": "Pale Bitter European Beer", + "category_id": "5", + "style_id": "5C", + "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 goldenGerman lager balancing a smooth malty profile with a bitter, hoppy character in a slightly above-average body and strength beer.", + "aroma": "Medium-low to medium floral, spicy, or herbal hop aroma. Moderate grainy-sweet malt aroma, possibly with light toasty, bready, or doughy notes. Clean fermentation profile. Hops and malt both noticeable, and generally balanced.", + "appearance": "Medium yellow to deep gold. Clear. Persistent white head.", + "flavor": "Moderate, balanced malt and hops with supporting bitterness. Malt and hop flavors similar to aroma (same descriptors and intensities). Medium, noticeable bitterness, full on the palate, with a medium-dry finish. Clean fermentation character. Aftertaste of both malt and hops, generally in balance. Mineral character typically perceived more as a roundness and fullness of flavor, and a dry, flinty sharpness in the finish rather than overt mineral flavors. Backgroundsulfate optional.", + "mouthfeel": "Medium to medium-full body.Medium carbonation. Smooth and mellow on the palate. Very slight warmth may be noted in stronger versions.", + "comments": "Also known Dortmunder Export, Dortmunder, Export, or simply a Dort. Called Export within Germany, and often Dortmunder elsewhere, Export is also a beer strength descriptor under German brewing tradition, and could be applied to other styles. Splits the difference between a German Pils and a Munich Helles in several aspects: color, hop-malt balance, finish, bitterness.", + "history": "Developed in Dortmund in the Ruhr industrial region in the 1870s in response to pale Pilsner-type beers.It became very popular after World War II but declined in the 1970s. Other Export-class beers developed independently, and reflected a slightly stronger version of existing beers.", + "style_comparison": "Less finishing hops and more body than a German Pils. More bitter and drier than a Munich Helles. Stronger, drier,but less hoppy than a Czech Premium Pale Lager.", + "tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05800", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "4.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Minerally water with high levels of sulfates, carbonates, and chlorides.Traditional German or Czech hops. Pilsner malt. German lager yeast. Decoction mash traditional.", + "examples": "Chuckanut Export Dortmunder Lager, DAB Dortmunder Export, Dortmunder Kronen, Landshuter Edel Hell, Müllerbräu Export Gold, Schönramer Gold", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 18, + "fields": { + "name": "German Pils", + "category": "Pale Bitter European Beer", + "category_id": "5", + "style_id": "5D", + "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, dry, bitter German lagerfeaturing a prominent hop aroma. Crisp, clean, and refreshing, showing a brilliant gold color with excellent head retention.", + "aroma": "Moderately to moderately-high flowery, spicy, or herbal hops. Low to medium grainy, sweet, or doughy malt character, often with a light honey and toasted cracker quality. Clean fermentation profile. The hops should be forward, but not totally dominate the malt in the balance.", + "appearance": "Straw to deep yellow, brilliant to very clear, with a creamy, long-lasting white head.", + "flavor": "Initial malt flavor quickly overcome with hop flavor and bitterness, leading into a dry, crisp finish. Malt and hop flavors similar to aroma (same descriptors and intensities). Medium to high bitterness, lingering into the aftertaste along with a touch of malt and hops. Clean fermentation profile. Minerally water can accentuate and lengthen the dry finish. Hops and malt can fade with age, but the beer should always have a bitter balance.", + "mouthfeel": "Medium-light body. Medium to high carbonation. Should not feel heavy. Not harsh, but may have a flinty, minerally, sharpness in some examples.", + "comments": "Modern examples of Pils tend to become paler in color, drier and sharper in finish, and more bitter moving from South to North in Germany, often mirroring increasing sulfates in the water. Pils found in Bavaria tend to be a bit softer in bitterness with more malt flavor and late hop character, yet still with sufficient hops and crispness of finish to differentiate itself from Munich Helles. The use of the term ‘Pils’ is more common in Germany than ‘Pilsner’ to differentiate it from the Czech style, and (some say) to show respect.", + "history": "Adapted from Czech Pilsner to suit brewing conditions in Germany, particularly water with higher mineral content and domestic hop varieties. First brewed in Germany in the early 1870s. Became more popular after WWII as German brewing schools emphasized modern techniques. Along with its cousin Czech Pilsner, it is the ancestor of the most widely produced beer styles today.", + "style_comparison": "Lighter in body and color, drier, crisper, more fully attenuated, more lingering bitterness, and higher carbonation than a Czech Premium Pale Lager. More hop character, malt flavor, and bitterness than International Pale Lager. More hop character and bitterness with a drier, crisper finish than a Munich Helles; the Helles has more malt intensity, but of the same character as the German Pils.", + "tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pilsner-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "22.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.40000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "4.00000", + "ingredients": "Continental Pilsner malt.Traditional German hops.Clean German lager yeast.", + "examples": "ABK Pils Anno 1907, Jever Pilsener, König Pilsener, Paulaner Pils, Bierstadt Slow-Pour Pils, Rothaus Pils, Schönramer Pils, Trumer Pils", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 19, + "fields": { + "name": "Märzen", + "category": "Amber Malty European Lager", + "category_id": "6", + "style_id": "6A", + "category_description": "This category groups amber-colored, German-origin, bottom-fermented lagerbiers that have a malty balance and are vollbier to starkbier in strength.", + "overall_impression": "An amber,malty German lager with a clean, rich, toasty, bready malt flavor, restrained bitterness, and a well-attenuated finish. The overall malt impression is soft, elegant, and complex, with a rich malty aftertaste that is never cloying or heavy.", + "aroma": "Moderate malty aroma, typically rich, bready, somewhat toasty, with light bread crust notes. Clean lager fermentation character. Very lowfloral, herbal, or spicy hop aroma optional. Caramel-sweet, biscuity-dry, or roasted malt aromas are inappropriate. Very light alcohol might be detected, but should never be sharp. Clean, elegant malt richness should be the primary aroma.", + "appearance": "Amber-orange to deep reddish-copper color; should not be golden. Bright clarity, with persistent, off-white foam stand.", + "flavor": "Moderate to highrich malt flavor often initially suggests sweetness, but the finish is moderately-dry to dry. Distinctive and complex maltiness often includes a bready, toasty aspect. Hop bitterness is moderate, and the floral, herbal, or spicy hop flavor is low to none. Hops provide sufficient balance that the malty palate and finish do not seem sweet. The aftertaste is malty, with the same elegant, rich malt flavors lingering. Noticeable sweet caramel, dry biscuit, or roasted flavors are inappropriate. Clean fermentation profile.", + "mouthfeel": "Medium body, with a smooth, creamy texture that often suggests a fuller mouthfeel. Medium carbonation. Fully attenuated, without a sweet or cloying impression. May be slightly warming, but the strength should be relatively hidden.", + "comments": "Modern domestic German Oktoberfest versions are golden – see the Festbier style for this version. Export German versions (to the United States, at least) are typically orange-amber in color, have a distinctive toasty malt character, and are often labeled Oktoberfest. Many craft versions of Oktoberfest are based on this style. Historic versions of the beer tended to be darker, towards the brown color range, but there have been many ‘shades’ of Märzen (when the name is used as a strength); this style description specifically refers to the stronger amber lager version. The modern Festbier can be thought of as a lighter-bodied, pale Märzen by these terms.", + "history": "As the name suggests, brewed as a stronger “March beer” in March and lagered in cold caves over the summer. Modern versions trace back to the lager developed by Spaten in 1841, contemporaneous to the development of Vienna lager. However, the Märzen name is much older than 1841 – theearly ones were dark brown, and the name implied a strength band (14 °P) rather than a style. The amber lager style served at Oktoberfest from 1872 until 1990 when the golden Festbier was adopted as the standard festival beer.", + "style_comparison": "Not as strong and rich as a Dunkles Bock. More malt depth and richness than a Festbier, with a heavier body and slightly less hops. Less hoppy but equally malty as a Czech Amber Lager, but with a different malt profile.", + "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "24.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.60000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.30000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "17.00000", + "ingredients": "Grist varies, although traditional German versions emphasized Munich malt. The notion of elegance is derived from the finest quality ingredients, particularly the base malts. A decoction mash is traditional, andenhances the rich malt profile.", + "examples": "Hacker-Pschorr Oktoberfest Märzen, Hofmark Märzen, Paulaner Oktoberfest, Saalfelder Ur-Saalfelder, Weltenburger Kloster Anno 1050", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 20, + "fields": { + "name": "Rauchbier", + "category": "Amber Malty European Lager", + "category_id": "6", + "style_id": "6B", + "category_description": "This category groups amber-colored, German-origin, bottom-fermented lagerbiers that have a malty balance and are vollbier to starkbier in strength.", + "overall_impression": "Abeechwood-smoked,malty,amber German lager. The expected Märzen profile of toasty-rich malt, restrained bitterness, clean fermentation, and a relatively dry finish is enhanced by anoticeable to intense smoke character.", + "aroma": "Blend of smoke and malt, varying in balance and intensity. The beechwood smoke character can range from subtle to fairly strong, and can seem smoky, woody, or bacon-like. The malt character can be low to moderate, and be somewhat rich, toasty, or malty-sweet. The malt and smoke components are often inversely proportional (i.e., when smoke increases, malt decreases, and vice versa). Low floral or spicy hop aroma optional. Clean fermentation profile.", + "appearance": "Very clear, with a large, creamy, rich, tan- to cream-colored head. Deep amber to coppery-brown in color, often a little darker than the underlying Märzen style.", + "flavor": "Generally follows the aroma profile, with a blend of smoke and malt in varying balance and intensity, yet always mutually supportive. Märzen-like qualities should be evident, particularly a malty, toasty richness, but the beechwood smoke flavor can be low to high. The palate can be somewhat malty, rich, and sweet, yet the finish tends to be medium-dry to dry with the smoke character sometimes enhancing the dryness of the finish. The aftertaste can reflect both malt richness and smoke flavors, with a balanced presentation desirable. Moderate, balanced, hop bitterness. Can have up to a moderate hop flavor with spicy, floral, or herbal notes. Clean lager fermentation character. The quality and character of the smoke is important; it should be cleanly smoky. At higher levels, the smoke can take on a ham- or bacon-like character, which is acceptable as long as it doesn’t veer into the greasy range. Harsh, bitter, burnt, acrid, charred, rubbery, sulfury,or creosote-like smoky-phenolic flavors are inappropriate.", + "mouthfeel": "Medium body. Medium to medium-high carbonation. Smooth lager character. Significant astringent, phenolic harshness is inappropriate.", + "comments": "Literally smoke beerin German. The smoke character and intensity varies by maltster and brewery, so allow for variation in the style when judging – not all examples are highly smoked.Many other traditional German styles are smoked; those should be entered in the 32A Classic Style Smoked Beer style. This style is only for the more common Märzen-based beer.", + "history": "A historical specialty of the city of Bamberg, in the Franconian region of Bavaria in Germany. While smoked beers certainly were made long ago, the origins of this specific style are unclear but must have been developed after Märzen was created.", + "style_comparison": "Like a Märzen with but with a balanced, sweet, smoky aroma and flavor and a somewhat darker color.", + "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, malty, smoke", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05700", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01200", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "12.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Märzen-type grist, with the addition of a sizeable quantity of German Rauchmalz (beechwood-smoked Vienna-type malt). Some breweries smoke their own malt. German lager yeast. Traditional German or Czech hops.", + "examples": "Cervejaria Bamberg Rauchbier, Göller Rauchbier, Rittmayer Rauchbier, Schlenkerla Rauchbier Märzen, Spezial Rauchbier Märzen", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 21, + "fields": { + "name": "Dunkles Bock", + "category": "Amber Malty European Lager", + "category_id": "6", + "style_id": "6C", + "category_description": "This category groups amber-colored, German-origin, bottom-fermented lagerbiers that have a malty balance and are vollbier to starkbier in strength.", + "overall_impression": "A strong,dark, malty German lager beer that emphasizes the malty-rich and somewhat toasty qualities of continental malts without being sweet in the finish.", + "aroma": "Medium to medium-high rich bready-malty aroma, often with moderate amounts of rich Maillard products or toasty overtones. Virtually no hop aroma. Some alcohol may be noticeable. Clean lager character, although a slight dark fruit character is allowable.", + "appearance": "Light copper to brown color, often with attractive garnet highlights. Good clarity despite the dark color. Large, creamy, persistent, off-white head.", + "flavor": "Medium to medium-high complex, rich maltiness is dominated by toasty-rich Maillard products. Some dark caramel notes may be present. Hop bitterness is generally only high enough to support the malt flavors, allowing a bit of malty sweetness to linger into the finish. Well-attenuated, not cloying. Clean fermentation profile, although the malt can provide a slight dark fruit character. No hop flavor. No roasted, burnt, or dry biscuity character.", + "mouthfeel": "Medium to medium-full bodied. Moderate to moderately low carbonation. Some alcohol warmth may be found, but should never be hot. Smooth, without harshness or astringency.", + "comments": "Decoction mashing plays an important part of flavor development, as it enhances the caramel and Maillard flavor aspects of the malt.", + "history": "Originated in the Northern German city of Einbeck, which was a brewing center and popular exporter in the days of the Hanseatic League (14th to 17th century). Recreated in Munich starting in the 17th century. “Bock” translates to “Ram” in German, which is why the animal is often used in logos and advertisements.", + "style_comparison": "Darker, with a richer malty flavor and less apparent bitterness than a Helles Bock. Less alcohol and malty richness than a Doppelbock. Stronger malt flavors and higher alcohol than a Märzen. Richer, less attenuated, and less hoppy than a Czech Amber Lager.", + "tags": "high-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, bock-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "27.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01300", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01900", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "14.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Munich and Vienna malts, rarely a tiny bit of dark roasted malts for color adjustment, never any non-malt adjuncts. Continental European hop varieties are used. Clean German lager yeast.", + "examples": "Aass Bock, Einbecker Ur-Bock Dunkel, Kneitinger Bock, Lindeboom Bock, Schell’s Bock, Penn Brewery St. Nikolaus Bock", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 22, + "fields": { + "name": "Vienna Lager", + "category": "Amber Bitter European Beer", + "category_id": "7", + "style_id": "7A", + "category_description": "This category groups amber-colored, evenly balanced to bitter balanced beers of German or Austrian origin.", + "overall_impression": "A moderate-strength continental amber lager with a soft, smooth maltiness and a balanced, moderate bitterness, yet finishing relatively dry. The malt flavor is clean, bready-rich, and somewhat toasty, with an elegant impression derived from quality base malts and process, not specialty malts or adjuncts.", + "aroma": "Moderately-intense malt aroma, with toasty and malty-rich accents. Floral, spicy hop aroma may be low to none. Clean lager character. A significant caramel, biscuity, or roasted aroma is inappropriate.", + "appearance": "Light reddish amber to copper color. Bright clarity. Large, off-white, persistent head.", + "flavor": "Soft, elegant malt complexity is in the forefront, with a firm enough hop bitterness to provide a balanced finish. The malt flavor tends towards a rich, toasty character, without significant caramel, biscuity, or roast flavors. Fairly dry, soft finish, with both rich malt and hop bitterness present in the aftertaste. Floral, spicy, or herbal hop flavor may be low to none. Clean fermentation profile.", + "mouthfeel": "Medium-light to medium body, with a gentle creaminess. Moderate carbonation. Smooth.", + "comments": "A standard-strength everyday beer, not a beer brewed for festivals. Many traditional examples have become sweeter and more adjunct-laden, now seeming more like International Amber or Dark Lagers.", + "history": "Developed by Anton Dreher in Vienna in 1841, became popular in the mid-late 1800s. The style was brought to Mexico by Santiago Graf and other Austrian immigrant brewers in the late 1800s. Seems to be embraced as a modern craft style in other countries.", + "style_comparison": "Similar malt flavor as a Märzen, but lighter in intensity, and body, with a touch more bitterness and dryness in the balance. Lower in alcohol than Märzen or Festbier. Less rich, malty, and hoppythan Czech Amber Lager.", + "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.70000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "9.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "15.00000", + "ingredients": "Traditionally, best-quality Vienna malt,but can also use Pils and Munich malts. Traditional continental hops. Clean German lager yeast. May use small amounts of specialty malts for color and sweetness.", + "examples": "Chuckanut Vienna Lager, Devils Backbone Vienna Lager, Figueroa Mountain Red Lager, Heavy Seas Cutlass, Ottakringer Wiener Original, Schell’s Firebrick, Theresianer Vienna", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 23, + "fields": { + "name": "Altbier", + "category": "Amber Bitter European Beer", + "category_id": "7", + "style_id": "7B", + "category_description": "This category groups amber-colored, evenly balanced to bitter balanced beers of German or Austrian origin.", + "overall_impression": "A moderately colored, well-attenuated, bitter beer with a rich maltiness balancing a strong bitterness. Light and spicy hop character complements the malt. A dry beer with a firm body and smooth palate.", + "aroma": "Malty and rich with grainy characteristics like baked bread or nutty, toasted bread crusts. Should not have darker roasted or chocolate notes. Malt intensity is moderate to moderately-high. Moderate to low hops complement but do not dominate the malt, and often have a spicy, peppery, or floral character. Fermentation character is very clean. Low to medium-low esters optional.", + "appearance": "The color ranges from amber to deep copper, stopping short of brown; bronze-orange is most common. Brilliant clarity. Thick, creamy, long-lasting off-white head.Flavor", + "flavor": null, + "mouthfeel": "Medium body. Smooth. Medium to medium-high carbonation. Astringency low to none.", + "comments": "Classic, traditional examples in the Altstadt (“old town”) section of Düsseldorf are served from casks.Most examples have a balanced (25-35 IBU) bitterness, not the aggressive hop character of the well-known Zum Uerige.Stronger sticke and doppelsticke beers should be entered in the 27 Historical Beer style instead.", + "history": "Developed in the late 19th century in Düsseldorf to use lager techniques to compete with lager. Older German styles were brewed in the area but there is no linkage to modern Altbier.", + "style_comparison": "More bitter and malty than International Amber Lagers. Somewhat similar to California Common, both in production technique and finished flavor and color, though not in ingredients. Less alcohol, less malty richness, and more bitterness than a Dunkles Bock. Drier, richer, and more bitter than a Vienna Lager.", + "tags": "standard-strength, amber-color, top-fermented, lagered, central-europe, traditional-style, amber-ale-family, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "50.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "9.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "17.00000", + "ingredients": "Grists vary, but usually consist of German base malts (usually Pils, sometimes Munich) with small amounts of crystal, chocolate, or black malts.May include some wheat, including roasted wheat. Spalt hops are traditional, but other traditional German or Czech hops can be used. Clean, highly attenuative ale yeast. A step mash program is traditional. Fermented at cool ale temperatures, then cold conditioned.", + "examples": "Bolten Alt, Diebels Alt, Füchschen Alt, Original Schlüssel Alt, Schlösser Alt, Schumacher Alt, Uerige Altbier", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": "Malt profile similar to the aroma, with an assertive, medium to high hop bitterness balancing the rich malty flavors. The beer finishes medium-dry to dry with a grainy, bitter, malty-rich aftertaste.The finish is long-lasting, sometimes with a nutty or bittersweet impression. The apparent bitterness level is sometimes masked by the malt character if the beer is not very dry, but the bitterness tends to scale with the malt richness to maintain balance. No roast. No harshness. Clean fermentation profile. Light fruity esters, especially dark fruit, may be present. Medium to low spicy, peppery, or floral hop flavor. Light minerally character optional.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 24, + "fields": { + "name": "Munich Dunkel", + "category": "Dark European Lager", + "category_id": "8", + "style_id": "8A", + "category_description": "This category contains German vollbier lagers darker than amber-brown color.", + "overall_impression": "A traditional malty brown lager from Bavaria. Deeply toasted, bready malt flavors without any roasty or burnt flavors. Smooth and rich, with a restrained bitterness and a relatively dry finish that allows for drinking in quantity.", + "aroma": "Moderate to high malt richness, like toasted bread crusts with hints of chocolate, nuts, caramel, or toffee. Fresh traditional versions often show higher levels of chocolate. The malt character is more malty-rich than sugary or caramelly sweet.Clean fermentation profile. A light spicy, floral, or herbal hop aroma is optional.", + "appearance": "Deep copper to dark brown, often with a red or garnet tint. Creamy, light to medium tan head. Usually clear.", + "flavor": "Rich malt flavors similar to aroma (same malt descriptors apply), medium to high. Restrained bitterness, medium-low to medium, giving an overall malty balance. Malty and soft on the palate without being overly sweet, and medium-dry in the finish with a malty aftertaste. No roast, burnt, or bitter malt flavors, toasted flavors shouldn’t have a harsh grainy dryness, and caramel flavors should not be sweet. Low spicy, herbal, or floral hop flavor optional. Clean fermentation profile.", + "mouthfeel": "Medium to medium-full body, providing a soft and dextrinous mouthfeel without being heavy or cloying. Moderate carbonation. Smooth lager character. No harsh or biting astringency. Not warming.", + "comments": "A traditional Munich style, the dark companion to Helles. Franconian versions are more bitter than ones from Munich.", + "history": "Developed at Spaten in the 1830s after the development of Munich malt, and seen as a successor to dark regional beers of the time. While originating in Munich, the style became popular throughout Bavaria (especially Franconia).", + "style_comparison": "Not as intense in maltiness or as strong as a Dunkles Bock. Lacking the more roasted flavors and often the hop bitterness of a Schwarzbier. Richer, more malt-centric, and less hoppy than a Czech Dark Lager.", + "tags": "standard-strength, dark-color, bottom-fermented, lagered, central-europe, traditional-style, malty, dark-lager-family", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05600", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "28.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "17.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "28.00000", + "ingredients": "Traditionally, Munich malts, but Pils and Vienna can be used too. Light use of specialty malts for color and depth. Decoction mash traditional. German hops and lager yeast.", + "examples": "Ayinger Altbairisch Dunkel, Ettaler Kloster-Dunkel, Eittinger Urtyp Dunkel, Hacker-Pschorr Münchner Dunkel, Hofbräuhaus Dunkel, Weltenburger Kloster Barock-Dunkel", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 25, + "fields": { + "name": "Schwarzbier", + "category": "Dark European Lager", + "category_id": "8", + "style_id": "8B", + "category_description": "This category contains German vollbier lagers darker than amber-brown color.", + "overall_impression": "A dark German lager that balances roasted yet smooth malt flavors with moderate hop bitterness. The lighter body, dryness, and lack of a harsh, burnt, or heavy aftertaste helps make this beer quite drinkable.", + "aroma": "Low to moderate malt, with low aromatic malty sweetness and hints of roast malt often apparent. The malt can be clean and neutral or moderately rich and bready, and may have a hint of dark caramel. The roast character can be somewhat dark chocolate- or coffee-like but should never be burnt. A moderately low spicy, floral, or herbal hop aroma is optional. Clean lager yeast character.", + "appearance": "Medium to very dark brown in color, often with deep ruby to garnet highlights, yet almost never truly black. Very clear. Large, persistent, tan-colored head.", + "flavor": "Light to moderate malt flavor, which can have a clean, neutral character to a moderately rich, bread-malty quality. Light to moderate roasted malt flavors can give a bitter-chocolate palate that is never burnt. Medium-low to medium bitterness. Light to moderate spicy, floral, or herbal hop flavor. Clean lager character. Dry finish. Some residual sweetness is acceptable but not traditional.Aftertaste of hop bitterness with a complementary but subtle roastiness in the background.", + "mouthfeel": "Medium-light to medium body. Moderate to moderately-high carbonation. Smooth. No harshness or astringency, despite the use of dark, roasted malts.", + "comments": "Literally means black beer in German. While sometimes called a “black Pils,” the beer is rarely as dark as black or as hop-forward and bitter as a Pils. Strongly roasted, Porter-like flavors are a flaw.", + "history": "A regional specialty from Thuringia, Saxony, and Franconia in Germany. Served as the inspiration for black lagers brewed in Japan.Popularity grew after German reunification in 1990.", + "style_comparison": "In comparison with a Munich Dunkel, usually darker in color, drier on the palate, lighter in body, and with a noticeable (but not high) roasted malt edge to balance the malt base. Should not taste like an American Porter made with lager yeast. Drier, less malty, with less hop character than a Czech Dark Lager.", + "tags": "standard-strength, dark-color, bottom-fermented, lagered, central-europe, traditional-style, balanced, dark-lager-family", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.40000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.40000", + "color_minimum_unit": "SRM", + "color_minimum_value": "19.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "30.00000", + "ingredients": "German Munich malt and Pilsner malts for the base, withhuskless dark roasted malts that add roast flavors without burnt flavors. German hop varieties and clean German lager yeasts are traditional.", + "examples": "Chuckanut Schwarz Lager,Devils Backbone Schwartz Bier, Köstritzer Schwarzbier, Kulmbacher Mönchshof Schwarzbier, Nuezeller Original Badebier, pFriem Schwarzbier", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 26, + "fields": { + "name": "Doppelbock", + "category": "Strong European Beer", + "category_id": "9", + "style_id": "9A", + "category_description": "This category contains more strongly flavored and higher alcohol lagers from Germany and the Baltic region. Most are dark, but some pale versions are known.", + "overall_impression": "A strong, rich, and very malty German lager that can have both pale and dark variants. The darker versions have more richly-developed, deeper malt flavors, while the paler versions have slightly more hops and dryness.", + "aroma": "Very strong maltiness, possibly with light caramel notes, and up to a moderate alcohol aroma. Virtually no hop aroma. Dark versions have significant, rich Maillard products, deeply toasted malt, and possibly a slight chocolate-like aroma that should never be roasted or burnt. Moderately-low dark fruit, like plums,dark grapes, or fruit leather, is allowable. Pale versions have a rich and strong, often toasty, malt presence, possibly with a light floral, spicy, or herbal hop accent.", + "appearance": "Good clarity, with a large, creamy, persistent head.Dark versions are copper to dark brown in color, often with ruby highlights, and an off-white head.Pale versions are deep gold to light amber in color, with a white head.", + "flavor": "Very rich and malty. Hop bitterness varies from moderate to moderately low but always allows malt to dominate the flavor. Faint hop flavor optional. Most examples are fairly malty-sweet on the palate, but should have an impression of attenuation in the finish. The impression of sweetness comes from low hopping, not from incomplete fermentation. Clean fermentation profile.Dark versions have malt and ester flavors similar to the aroma (same descriptors and intensities).Pale versions have a strong bready and toasty malt flavor, a light floral, spicy, or herbal hop flavor, and a drier finish.", + "mouthfeel": "Medium-full to full body. Moderate to moderately-low carbonation. Very smooth without harshness, astringency. A light alcohol warmth may be noted, but it should never burn.", + "comments": "Doppelbock means double bock. Most versions are dark colored and may display the caramelizing and Maillard products of decoction mashing, but excellent pale versions also exist. The pale versions will not have the same richness and darker malt and fruit flavors of the dark versions, and may be a bit drier, hoppier, and more bitter. While most traditional examples are in the lower end of the ranges cited, the style can be considered to have no upper limit for gravity and alcohol,provided the balance remains the same.", + "history": "A Bavarian specialty originating in Munich, first made by the monks of St. Francis of Paulaby the 1700s. Historical versions were less well-attenuated than modern interpretations, thus with higher sweetness and lower alcohol levels. Was called “liquid bread” by monks, and consumed during the Lenten fast. Breweries adopted beer names ending in “-ator” after a 19th century court ruling that no one but Paulaner was allowed to use the name Salvator. Traditionally dark brown in color; paler examples are a more recent development.", + "style_comparison": "A stronger, richer, more full-bodied version of either a Dunkles Bock or a Helles Bock. Pale versions will show higher attenuation and less dark fruity character than the darker versions.", + "tags": "high-strength, amber-color, pale-color, bottom-fermented, lagered, central-europe, traditional-style, bock-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.11200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "16.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "26.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "7.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "10.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "25.00000", + "ingredients": "Pils, Vienna, Munich malts. Occasionally dark malt for color adjustment. Traditional German hops. Clean German lager yeast. Decoction mashing is traditional.", + "examples": "Dark Versions –Andechs Doppelbock Dunkel,Ayinger Celebrator, Paulaner Salvator, Spaten Optimator, Tröegs Troegenator,Weihenstephaner Korbinian; Pale Versions – Eggenberg Urbock 23º, Meinel Doppelbock Hell, Plank Bavarian Heller Doppelbock, Riegele Auris 19, Schönbuch Doppelbock Hell, Staffelberg-Bräu Zwergator", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant will specify whether the entry is a pale or a dark variant.", + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 27, + "fields": { + "name": "Eisbock", + "category": "Strong European Beer", + "category_id": "9", + "style_id": "9B", + "category_description": "This category contains more strongly flavored and higher alcohol lagers from Germany and the Baltic region. Most are dark, but some pale versions are known.", + "overall_impression": "A strong, full-bodied, rich, and malty dark German lager often with a viscous quality and strong flavors. Even though flavors are concentrated, the alcohol should be smooth and warming, not burning.", + "aroma": "Dominated by rich, intense malt and a definite alcohol presence. The malt can have bready, toasty, qualities, with some caramel or faint chocolate, often with dark fruit notes like plums or grapes. No hop aroma. Alcohol aromas should not be harsh or solventy. Clean fermentation profile.", + "appearance": "Deep copper to dark brown in color, often with attractive ruby highlights. Good clarity. Head retention may be moderate to poor. Off-white to deep ivory colored head. Pronounced legs are often evident.", + "flavor": "Rich, sweet malt balanced by a significant alcohol presence. The malt can have Maillard products, toasty qualities, some caramel, and occasionally a slight chocolate flavor. May have significant malt-derived dark fruit esters. Hop bitterness just offsets the malt sweetness enough to avoid a cloying character. No hop flavor. Alcohol helps balance the strong malt presence. The finish should be of rich malt with a certain dryness from the alcohol. It should not be sticky, syrupy, or cloyingly sweet. Clean fermentationprofile.", + "mouthfeel": "Full to very full-bodied. Low carbonation. Significant alcohol warmth without sharp hotness. Very smooth and silky without harsh edges from alcohol, bitterness, fusels, or other concentrated flavors.", + "comments": "Extended lagering is often needed post-freezing to smooth the alcohol and enhance the malt and alcohol balance. Pronounced “ICE-bock.”", + "history": "Originating in Kulmbach in Franconiain the late 1800s, although exact origins are not known. Fables describe it as coming from beer accidentally freezing at a brewery.", + "style_comparison": "Eisbocks are not simply stronger Doppelbocks; the name refers to the process of freezing and concentrating the beer, and is not a statement on alcohol; some Doppelbocks are stronger than Eisbocks. Not as thick, rich, or sweet as a Wheatwine.", + "tags": "very-high-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, bock-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.12000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.02000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.03500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "9.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "14.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "17.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "30.00000", + "ingredients": "Same as Doppelbock. Produced by freezing a doppelbock-like beer and removing ice (“freeze distillation”), thus concentrating flavor and alcohol, as well as any defects present. Commercial eisbocks are generally concentrated anywhere from 7% to 33% by volume.", + "examples": "Kulmbacher Eisbock", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 28, + "fields": { + "name": "Baltic Porter", + "category": "Strong European Beer", + "category_id": "9", + "style_id": "9C", + "category_description": "This category contains more strongly flavored and higher alcohol lagers from Germany and the Baltic region. Most are dark, but some pale versions are known.", + "overall_impression": "A strong, dark, malty beer with differentinterpretationswithin the Baltic region. Smooth, warming, and richly malty, with complex dark fruit flavors and a roasted flavor without burnt notes.", + "aroma": "Rich maltiness often containing caramel, toffee, nuts, deep toast, or licorice notes. Complex alcohol and ester profile of moderate strength, and reminiscent of plums, prunes, raisins, cherries, or currants, occasionally with a vinous Port-like quality. Deep malt accents ofdark chocolate, coffee, or molasses, but never burnt. No hops. No sourness. Smooth, not sharp, impression.", + "appearance": "Dark reddish-copper to opaque dark brown color, but not black. Thick, persistent tan-colored head. Clear, although darker versions can be opaque.", + "flavor": "As with aroma, has a rich maltiness with a complex blend of deep malt, dried fruit esters, and alcohol. The malt can have a caramel, toffee, nutty, molasses,or licorice complexity. Prominent yet smooth Schwarzbier-like roasted flavor that stops short of burnt. Light hints of black currants and dark dried fruits. Smooth palate and full finish. Starts malty-sweet but darker malt flavors quickly dominate and persist through the dryish finish, leaving a hint of roast coffee or licorice and dried fruit in the aftertaste. Medium-low to medium bitterness, just to provide balance and prevent it from seeming cloying. Hop flavor from slightly spicy hops ranges from none to medium-low.Clean fermentation profile.", + "mouthfeel": "Generally quite full-bodied and smooth, with a well-aged alcohol warmth that can be deceptive. Medium to medium-high carbonation, making it seem even more mouth-filling. Not heavy on the tongue due to carbonation level.", + "comments": "Most commercial versions are in the 7–8.5% ABV range. The best examples have a deceptive strength that makes them dangerously easy to drink. The character of these beers varies by country of origin, so be careful about generalizing based on a single example. Some beers are truer to their English roots, while others are more of the style first popularized in Poland.", + "history": "Developed indigenously (and independently) in several countries bordering the Baltic Sea after import of popular English porters and stouts was interrupted in the early 1800s. Historically top-fermented, many breweries adapted the recipes for bottom-fermenting yeast along with the rest of their production. The name Baltic Porter is recent (since the 1990s) and describes the modern collection of beers with a somewhat similar profile from these countries, not historical versions.", + "style_comparison": "Combines the body, maltiness, richness, and smoothness of a Doppelbock, the darker malt character of an English Porter, the roast flavors of a Schwarzbier, and alcohol and fruitiness of and Old Ale. Much less roasted and often lower in alcoholthan an Imperial Stout.", + "tags": "high-strength, dark-color, any-fermentation, lagered, eastern-europe, traditional-style, porter-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.09000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "17.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "30.00000", + "ingredients": "Generally lager yeast (cold fermented if using ale yeast, as is required when brewed in Russia). Debittered dark malt. Munich or Vienna base malt. Continental hops. May contain crystal malts or adjuncts. Brown or amber malt common in historical recipes.As a collection of regional beers, different formulations are expected.", + "examples": "Aldaris Mežpils Porteris, Baltika 6 Porter, Devils Backbone Danzig, Okocim Mistrzowski Porter, Sinebrychoff Porter, Zywiec Porter", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 29, + "fields": { + "name": "Weissbier", + "category": "German Wheat Beer", + "category_id": "10", + "style_id": "10A", + "category_description": "This category contains vollbier- and starkbier-strength German wheat beers without sourness, in light and dark colors.", + "overall_impression": "A pale, refreshing, lightly-hopped German wheat beer with high carbonation, dry finish, fluffy mouthfeel, and a distinctive banana-and-clove weizen yeast fermentation profile.", + "aroma": "Moderate to strong esters and phenols, typically banana and clove, often well balanced and typically stronger than the malt. Light to moderate bready, doughy, or grainy wheat aroma. Light vanilla optional. Light floral, spicy, or herbal hops optional. Bubblegum (strawberry with banana), sourness, or smoke are faults.", + "appearance": "Pale straw to gold in color. Very thick, moussy, long-lasting white head. Can be hazy and have a shine from wheat and yeast, although this can settle out in bottles.", + "flavor": "Low to moderately strong banana and clove flavor, often well balanced. Low to moderate soft, somewhat bready, doughy, or grainy wheat flavor supported by the slight Pils malt grainysweetness. Very low to moderately low bitterness. Well-rounded, flavorful palate with a relatively dry finish. Light vanilla optional.Very low floral, spicy, or herbal hop flavor optional. Anyimpression of sweetness is due more to low bitterness than any residual sweetness; a sweet or heavy finish impairs drinkability.Bubblegum, sourness, or smoke are faults. While the banana-and-clove profile is important, it should not be so strong as to be extreme and unbalanced.", + "mouthfeel": "Medium-light to medium body; never heavy. Fluffy, creamy fullness progressing to a light, spritzy finish aided by high to very high carbonation. Effervescent.", + "comments": "Also known as hefeweizen or weizenbier, particularly outside Bavaria. These beers are best enjoyed while young and fresh, as they often don’t age well. In Germany, lower-alcohol light (leicht) and non-alcoholic versions are popular. Kristall versions are filtered for brilliant clarity.", + "history": "While Bavaria has a wheat beer tradition dating back before the 1500s, brewing wheat beer used to be a monopoly reserved for Bavarian royalty. Modern Weissbier dates from 1872 when Schneider began production of its amber version. However, pale Weissbier only became popular since the 1960s (although the name historically could be used in Germany to describe beer made from air-dried malt, a different tradition). It is quite popular today, particularly in southern Germany.", + "style_comparison": "Compared to American Wheat, has a banana and clove yeast character and less bitterness. Compared to a Dunkles Weissbier, has a paler color and less malt richness and flavor.", + "tags": "standard-strength, pale-color, top-fermented, central-europe, traditional-style, wheat-beer-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05300", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "15.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Malted wheat, at least half the grist. Pilsner malt. Decoction mash traditional. Weizen yeast, cool fermentation temperatures.", + "examples": "Ayinger Bräuweisse, Distelhäuser Hell Weizen, Hacker-Pschorr Hefeweißbier, Hofbräuhaus Münchner Weisse, Schneider Weisse Original Weissbier, Weihenstephaner Hefeweißbier", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant may specify whether the yeast should be roused before serving.", + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 30, + "fields": { + "name": "Dunkles Weissbier", + "category": "German Wheat Beer", + "category_id": "10", + "style_id": "10B", + "category_description": "This category contains vollbier- and starkbier-strength German wheat beers without sourness, in light and dark colors.", + "overall_impression": "A moderatelydark German wheat beer with a distinctive banana-and-clove weizen yeast fermentation profile, supported by a toasted bread or caramel malt flavor. Highly carbonated and refreshing, with a creamy, fluffy texture and light finish.", + "aroma": "Moderate esters and phenols, typically banana and clove, often well balanced with each other and with the malt. Light to moderate bready, doughy, or grainy wheat aroma, often accompanied by caramel, bread crust, or richer malt notes. Low to moderate vanilla optional. Light floral, spicy, or herbal hops optional. Bubblegum (strawberry with banana), sourness, or smoke are faults.", + "appearance": "Light copper to dark, mahogany brown in color. Very thick, moussy, long-lasting off-white head. Can be hazy and have a shine from wheat and yeast, although this can settle out in bottled versions.", + "flavor": "Low to moderately strong banana and clove flavor, often well balanced with each other and with the malt, although the malt may sometimes mask the clove impression. Low to medium-high soft, somewhat bready, doughy, or grainy wheat flavor with richer caramel, toast, or bread crust flavors. No strongly roasted flavors, but a touch of roasty dryness is allowable. Very low to low bitterness. Well-rounded, flavorful, often somewhat malty palate with a relatively dry finish.Very light to moderate vanilla optional. Low spicy, herbal, or floral hop flavor optional. Bubblegum, sourness, or smoke are faults.", + "mouthfeel": "Medium-light to medium-full body. Fluffy, creamy fullness progressing to a lighter finish, aided by moderate to high carbonation. Effervescent.", + "comments": "Often known as dunkelweizen, particularly in the United States.Increasingly rare and often being replaced by Kristall and non-alcoholic versions in Germany.", + "history": "Bavaria has a wheat beer brewing traditional hundreds of years old, but the brewing right was reserved for Bavarian royalty until the late 1700s. Old-fashioned Bavarian wheat beer was often dark, as were most beers of the time. Pale Weissbier started to become popular in the 1960s, but traditional dark wheat beer remained somewhat of an old person’s drink.", + "style_comparison": "Combines the yeast and wheat character of Weissbier with the malty richness of a Munich Dunkel. The banana-and-clove character is often less apparent than in a Weissbier due to the increased maltiness.Has a similar yeast character as Roggenbier, but without the rye flavor and increased body.", + "tags": "standard-strength, amber-color, top-fermented, central-europe, traditional-style, wheat-beer-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05700", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "10.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "18.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "14.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "23.00000", + "ingredients": "Malted wheat, at least half the grist. Munich, Vienna, or Pilsner malt. Dark wheat, caramel wheat, or color malt. Decoction mash traditional. Weizen yeast, cool fermentation temperatures.", + "examples": "Ayinger Urweisse, Ettaler Benediktiner Weißbier Dunkel, Franziskaner Hefe-Weisse Dunkel, Hirsch Dunkel Weisse, Tucher Dunkles Hefe Weizen, Weihenstephaner Hefeweißbier Dunkel", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 31, + "fields": { + "name": "Weizenbock", + "category": "German Wheat Beer", + "category_id": "10", + "style_id": "10C", + "category_description": "This category contains vollbier- and starkbier-strength German wheat beers without sourness, in light and dark colors.", + "overall_impression": "A strong and malty Germanwheat beer combining the best wheat and yeast flavors of a Weissbier with the rich maltiness, strength, and body of a Bock. The style range includes Bock and Doppelbock strength, with variations for pale and dark color.", + "aroma": "Medium-high to high maltyrichness with a significant bready, grainy wheatcharacter. Medium-low to medium-high weizen yeast character, typically banana and clove. Vanilla accents optional. No hops. Low to moderate alcohol, not hot or solventy. The malt, yeast, and alcohol are well balanced, complex, and inviting.Bubblegum (strawberry with banana), sourness, or smoke are faults.Dark versions have a deeper, highly toasted, bready malt richness with significant Maillard products, similar to a Dunkles Bock or dark Doppelbock.They can also have caramel and dark fruit esters, like plums, prunes, dark grapes, fruit leather, and raisins, particularly as they age. Pale versions have a grainy-sweet, bready, toasty malty richness, similar to a Helles Bock or pale Doppelbock.", + "appearance": "Very thick, moussy, long-lasting head.Can be hazy and have a shine from wheat and yeast, although this can settle out with age.Dark versions are dark amber to dark ruby-brown in color, with a light tan head.Pale versions are gold to amber in color, with a very white to off-white head.", + "flavor": "Medium-high to high malty richness with significant bready, grainywheat flavor. Low to moderate banana and spice (clove, vanilla) yeast character.No hop flavor. Low to medium-low bitterness can give a slightly sweet palate impression, but the beer typically finishes dry. Light alcohol can enhance this character. The interplay between the malt, yeast, and alcohol adds complexity and interest, which is often enhanced with age. Bubblegum, sourness, or smoke are faults.Dark versions have deeper, richly bready or toasty malt flavors with significant Maillard products, optionallywith caramel or light chocolate but not roast. Can have some dark fruit esters like plums, prunes, dark grapes, fruit leather, or raisins, particularly as they age.Pale versions have a bready, toasty, grainy-sweet malt richness.", + "mouthfeel": "Medium-full to full body. Soft, smooth, fluffy or creamy texture.Mild alcohol warmth. Moderate to high carbonation.", + "comments": "A Weissbier brewed to bock or doppelbock strength, although Schneider also produces an Eisbock version. Pale and dark versions exist, but dark is most common. Lightly oxidized Maillard products can produce some rich, intense flavors and aromas that are often seen in aged imported commercial products; fresher versions will not have this character. Well-aged examples might also take on a slight sherry-like complexity.Pale versions, like their doppelbock cousins, have less rich malt complexity and often more hop-forward. However, versions that have significant late hops or are dry-hopped should be entered in 34B Mixed-Style Beer.", + "history": "Dopplebock-strength Aventinuswas created in 1907 at the Schneider Weisse Brauhaus in Munich. Pale versions are a much more recent invention.", + "style_comparison": "Stronger and richer than a Weissbier or Dunkles Weissbier, but with similar yeast character. More directly comparable to the Doppelbock style, with the pale and dark variations. Can vary widely in strength, but most are in the Bock to Doppelbock range.", + "tags": "high-strength, amber-color, pale-color, top-fermented, central-europe, traditional-style, wheat-beer-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.09000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "25.00000", + "ingredients": "Malted wheat, at least half the grist. Munich, Vienna, or Pilsner malt. Color malts may be used sparingly. Decoction mash traditional. Weizen yeast, cool fermentation temperatures.", + "examples": "Dark – Plank Bavarian Dunkler Weizenbock, Penn Weizenbock,Schalchner Weisser Bock, Schneider Weisse Aventinus; Pale –Ayinger Weizenbock, Distelhäuser Weizen Bock, Ladenburger Weizenbock Hell,Weihenstephaner Vitus", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant will specify whether the entry is a pale(SRM 6-9) or a dark(SRM 10-25) version.", + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 32, + "fields": { + "name": "Ordinary Bitter", + "category": "British Bitter", + "category_id": "11", + "style_id": "11A", + "category_description": "The family of British bitters grew out of English pale ales as a draught product after the late 1800s. The use of crystal malts in bitters became more widespread after WWI. Traditionally served very fresh under no pressure (gravity or hand pump only) at cellar temperatures (i.e., “real ale”). Most bottled or kegged versions of UK-produced bitters are often higher-alcohol and more highly carbonated versions of cask products produced for export, and have a different character and balance than their draught counterparts in Britain (often being sweeter and less hoppy than the cask versions). These guidelines reflect the “real ale” version of the style, not the export formulations of commercial products.", + "overall_impression": "Low gravity, alcohol, and carbonation make this an easy-drinking session beer. The malt profile can vary in flavor and intensity, but should never override the overall bitter impression. Drinkability is a critical component of the style.", + "aroma": "Low to moderate malt aroma, often (but not always) with a light caramel quality. Bready, biscuity, or lightly toasty malt complexity is common. Mild to moderate fruitiness. Hop aroma can range from moderate to none, typically with a floral, earthy, resiny, or fruity character. Generally no diacetyl, although very low levels are allowed.", + "appearance": "Pale amber to light copper color. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.", + "flavor": "Medium to moderately high bitterness. Moderately low to moderately high fruity esters. Moderate to low hop flavor, typically with an earthy, resiny, fruity, or floral character. Low to medium maltiness with a dry finish. The malt profile is typically bready, biscuity, or lightly toasty. Low to moderate caramel or toffee flavors are optional. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters, and hop flavor. Generally no diacetyl, although very low levels are allowed.", + "mouthfeel": "Light to medium-light body. Low carbonation, although bottled examples can have moderate carbonation.", + "comments": "The lowest gravity member of the British Bitter family, typically known to consumers simply as “bitter” (although brewers tend to refer to it as Ordinary Bitter to distinguish it from other members of the family).", + "history": "See comments in category introduction.", + "style_comparison": "Some modern variants are brewed exclusively with pale malt and are known as golden ales, summer ales, or golden bitters. Emphasis is on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales.", + "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.03900", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00700", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01100", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Pale ale, amber, or crystal malts. May use a touch of dark malt for color adjustment. May use sugar adjuncts, corn, or wheat. English finishing hops are most traditional, but any hops are fair game; if American hops are used, a light touch is required. Characterful British yeast.", + "examples": "Bateman’s XB, Brains Bitter, Brakspear Gravity, Fuller's Chiswick Bitter, Greene King IPA, Tetley’s Original Bitter", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 33, + "fields": { + "name": "Best Bitter", + "category": "British Bitter", + "category_id": "11", + "style_id": "11B", + "category_description": "The family of British bitters grew out of English pale ales as a draught product after the late 1800s. The use of crystal malts in bitters became more widespread after WWI. Traditionally served very fresh under no pressure (gravity or hand pump only) at cellar temperatures (i.e., “real ale”). Most bottled or kegged versions of UK-produced bitters are often higher-alcohol and more highly carbonated versions of cask products produced for export, and have a different character and balance than their draught counterparts in Britain (often being sweeter and less hoppy than the cask versions). These guidelines reflect the “real ale” version of the style, not the export formulations of commercial products.", + "overall_impression": "A flavorful, yet refreshing, session beer. Some examples can be more malt balanced, but this should not override the overall bitter impression. Drinkability is a critical component of the style.", + "aroma": "Low to moderate malt aroma, often (but not always) with a low to medium-low caramel quality. Bready, biscuit, or lightly toasty malt complexity is common. Mild to moderate fruitiness. Hop aroma can range from moderate to none, typically with a floral, earthy, resiny, or fruity character. Generally no diacetyl, although very low levels are allowed.", + "appearance": "Pale amber to medium copper color. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.", + "flavor": "Medium to moderately high bitterness. Moderately low to moderately high fruity esters. Moderate to low hop flavor, typically with an earthy, resiny, fruity, or floral character. Low to medium maltiness with a dry finish. The malt profile is typically bready, biscuity, or lightly toasty. Low to moderate caramel or toffee flavors are optional. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters and hop flavor. Generally no diacetyl, although very low levels are allowed.", + "mouthfeel": "Medium-light to medium body. Low carbonation, although bottled examples can have moderate carbonation.", + "comments": "More evident malt flavor than in an ordinary bitter; this is a stronger, session-strength ale.", + "history": "See comments in category introduction.", + "style_comparison": "More alcohol than an ordinary bitter, and often using higher-quality ingredients. Less alcohol than a strong bitter. More caramel or base malt character and color than a British Golden Ale. Emphasis is on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales.", + "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04800", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "4.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "16.00000", + "ingredients": "Pale ale, amber, or crystal malts. Most contain sugar. May use a touch of caramel or dark malt for color adjustment. May use corn or wheat. English finishing hops are most traditional, but any hops are fair game; if American hops are used, a light touch is required. Characterful British yeast.", + "examples": "Adnams Southwold Bitter, Fuller's London Pride, Harvey’s Sussex Best Bitter, Salopian Darwin’s Origin, Surrey Hills Shere Drop, Timothy Taylor Landlord", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 34, + "fields": { + "name": "Strong Bitter", + "category": "British Bitter", + "category_id": "11", + "style_id": "11C", + "category_description": "The family of British bitters grew out of English pale ales as a draught product after the late 1800s. The use of crystal malts in bitters became more widespread after WWI. Traditionally served very fresh under no pressure (gravity or hand pump only) at cellar temperatures (i.e., “real ale”). Most bottled or kegged versions of UK-produced bitters are often higher-alcohol and more highly carbonated versions of cask products produced for export, and have a different character and balance than their draught counterparts in Britain (often being sweeter and less hoppy than the cask versions). These guidelines reflect the “real ale” version of the style, not the export formulations of commercial products.", + "overall_impression": "An average-strength to moderately-strong British bitter ale. The balance may vary between fairly even between malt and hops to somewhat bitter. Drinkability is a critical component of the style. A rather broad style that allows for considerable interpretation by the brewer.", + "aroma": "Hop aroma moderately-high to moderately-low, typically with a floral, earthy, resiny, or fruity character. Medium to medium-high malt aroma, optionally with a low to moderate caramel component. Medium-low to medium-high fruity esters. Generally no diacetyl, although very low levels are allowed.", + "appearance": "Light amber to deep copper color. Good to brilliant clarity. Low to moderate white to off-white head. A low head is acceptable when carbonation is also low.", + "flavor": "Medium to medium-high bitterness with supporting malt flavors evident. The malt profile is typically bready, biscuity, nutty, or lightly toasty, and optionally has a moderately low to moderate caramel or toffee flavor. Hop flavor moderate to moderately high, typically with a floral, earthy, resiny, or fruity character. Hop bitterness and flavor should be noticeable, but should not totally dominate malt flavors. Moderately-low to high fruity esters. Optionally may have low amounts of alcohol. Medium-dry to dry finish. Generally no diacetyl, although very low levels are allowed.", + "mouthfeel": "Medium-light to medium-full body. Low to moderate carbonation, although bottled versions will be higher. Stronger versions may have a slight alcohol warmth but this character should not be too high.", + "comments": "In England today, “ESB” is a Fullers trademark, and no one thinks of it as a generic class of beer. It is a unique (but very well-known) beer that has a very strong, complex malt profile not found in other examples, often leading judges to overly penalize traditional English strong bitters. In America, ESB has been co-opted to describe a malty, bitter, reddish, standard-strength (for the US) British-type ale, and is a popular craft beer style. This may cause some judges to think of US brewpub ESBs as representative of this style.", + "history": "See comments in category introduction. Strong bitters can be seen as a higher-gravity version of best bitters (although not necessarily “more premium” since best bitters are traditionally the brewer’s finest product). British pale ales are generally considered a premium, export-strength pale, bitter beer that roughly approximates a strong bitter, although reformulated for bottling (including increasing carbonation levels). While modern British pale ale is considered a bottled bitter, historically the styles were different.", + "style_comparison": "More evident malt and hop flavors than in a special or best bitter, as well as more alcohol. Stronger versions may overlap somewhat with British Strong Ales, although Strong Bitters will tend to be paler and more bitter. More malt flavor (particularly caramel) and esters than an American Pale Ale, with different finishing hop character.", + "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "50.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.60000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "18.00000", + "ingredients": "Pale ale, amber, or crystal malts, may use a touch of black malt for color adjustment. May use sugar adjuncts, corn or wheat. English finishing hops are most traditional, but any hops are fair game; if American hops are used, a light touch is required. Characterful British yeast. Burton versions use medium to high sulfate water, which can increase the perception of dryness and add a minerally or sulfury aroma and flavor.", + "examples": "Bass Ale, Bateman’s Triple XB, Robinsons Trooper, Samuel Smith’s Organic Pale Ale, Shepherd Neame Bishop's Finger, Summit Extra Pale Ale", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 35, + "fields": { + "name": "British Golden Ale", + "category": "Pale Commonwealth Beer", + "category_id": "12", + "style_id": "12A", + "category_description": "This category contains pale, moderately-strong, hop-forward, bitter ales from countries within the former British Empire.", + "overall_impression": "A hop-forward, average-strength to moderately-strong pale bitter. Drinkability and a refreshing quality are critical components of the style, as it was initially a summer seasonal beer.", + "aroma": "Hop aroma is moderately low to moderately high, and can use any variety of hops – floral, herbal, or earthy English hops and citrusy American hops are most common. Frequently a single hop varietal will be showcased. Lowbready malt aroma with no caramel. Medium-low to low fruity aroma from the hops rather than esters. Low diacetyl optional.", + "appearance": "Straw to golden in color. Good to brilliant clarity. Low to moderate white head. A low head is acceptable when carbonation is also low.", + "flavor": "Medium to medium-high bitterness. Hop flavor is moderate to moderately high of any hop variety, although citrus flavors are increasingly common. Medium-low to low malt character, generally bready with perhaps a little biscuity flavor. Caramel flavors are typically absent. Hop bitterness and flavor should be pronounced. Moderately-low to low esters. Medium-dry to dry finish. Bitterness increases with alcohol level, but is always balanced.Low diacetyl optional.", + "mouthfeel": "Light to medium body. Low to moderate carbonation on draught, although bottled commercial versions will be higher. Stronger versions may have a slight alcohol warmth, but this character should not be too high.", + "comments": "Well-hopped, quenching beer with an emphasis on showcasing hops. Served colder than traditional bitters, this style was originally positioned as a refreshing summer beer, but is now often brewed year-round. Once brewed with English hops, increasingly American citrus-flavored hops are used. Golden Ales are also called Golden Bitters, Summer Ales, or British Blonde Ales. Can be found in cask, keg, and bottle.", + "history": "Modern golden ales were developed in England to take on strongly-marketed lagers. While it is difficult to identify the first, Hop Back's Summer Lightning, first brewed in 1986, is thought by many to have got the style off the ground.", + "style_comparison": "More similar to an American Pale Ale than anything else, although it is often lower in alcohol and usually features British ingredients. Has no caramel and fewer esters compared to British Bitters and pale ales. Dry as Bitters but with less malt character to support the hops, giving a different balance. Often uses (and features) American hops, more so than most other modern British styles. Balance of hoppiness between a Blonde Ale and an American Pale Ale.", + "tags": "standard-strength, pale-color, top-fermented, british-isles, craft-style, pale-ale-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05300", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "45.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "5.00000", + "ingredients": "Low-color pale or lager malt acting as a blank canvas for the hop character. May use sugar adjuncts, corn, or wheat. English hops frequently used, although citrusy American varietals are becoming more common. Somewhat clean-fermenting British yeast.", + "examples": "Adnams Explorer, Crouch Vale Brewers Gold, Golden Hill Exmoor Gold, Hop Back Summer Lightning, Oakham JHB, Spitfire Golden Ale", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 36, + "fields": { + "name": "Australian Sparkling Ale", + "category": "Pale Commonwealth Beer", + "category_id": "12", + "style_id": "12B", + "category_description": "This category contains pale, moderately-strong, hop-forward, bitter ales from countries within the former British Empire.", + "overall_impression": "A well-balanced, pale, highly-carbonated, and refreshing ale suitable for drinking in a hot climate. Fairly bitter, with a moderate herbal-spicy hop and pome fruit ester profile. Smooth, neutral malt flavors with a fuller body but a crisp, highly-attenuated finish.", + "aroma": "Fairly soft, clean aroma with a balanced mix of esters, hops, malt, and yeast – all moderate to low in intensity. The esters are frequently pears and apples, optionally with a very light touch of banana. The hops are earthy, herbaceous, or might show the characteristic iron-like Pride of Ringwood nose. The malt can range from neutral grainy to moderately sweet to lightly bready; no caramel should be evident. Very fresh examples can have a lightly yeasty, sulfury nose.", + "appearance": "Deep yellow to light amber in color, often medium gold. Tall, frothy, persistent white head with tiny bubbles. Noticeable effervescence due to high carbonation. Brilliant clarity if decanted, but typically poured with yeast to have a cloudy appearance. Not typically cloudy unless yeast roused during the pour.", + "flavor": "Medium to low rounded, grainy to bready malt flavor, initially mild to malty-sweet but a medium to medium-high bitterness rises mid-palate to balance the malt. Caramel flavors typically absent. Highly attenuated, giving a dry, crisp finish with lingering bitterness, although the body gives an impression of fullness. Medium to medium-high hop flavor, somewhat earthy and possibly herbal, resinous, peppery, or iron-like but not floral, lasting into aftertaste. Medium-high to medium-low esters, often pears and apples. Banana is optional, but should never dominate. May be lightly minerally or sulfury, especially if yeast is present. Should not be bland.", + "mouthfeel": "High to very high carbonation, giving mouth-filling bubbles and a crisp, spritzy carbonic bite. Medium to medium-full body, tending to the higher side if poured with yeast. Smooth but gassy. Stronger versions may have a light alcohol warmth, but lower alcohol versions will not. Very well-attenuated; should not have any residual sweetness.", + "comments": "Coopers has been making their flagship Sparkling Ale since 1862, although the formulation has changed over the years. Presently the beer will have brilliant clarity if decanted, but publicans often pour most of the beer into a glass then swirl the bottle and dump in all the yeast. In some bars, the bottle is rolled along the bar. When served on draught, the brewery instructs publicans to invert the keg to rouse the yeast. A cloudy appearance for the style seems to be a modern consumer preference. Always naturally carbonated, even in the keg. A present-use ale, best enjoyed fresh.", + "history": "Brewing records show that the majority of Australian beer brewed in the 19th century was draught XXX (Mild) and porter. Ale in bottle was originally developed to compete with imported bottled pale ales from British breweries, such as Bass and Wm Younger’ Monk. By the early 20th century, bottled pale ale went out of fashion and “lighter” lager beers were in vogue. Many Australian Sparkling and Pale Ales were labeled as ales, but were actually bottom-fermented lagers with very similar grists to the ales that they replaced. Coopers of Adelaide, South Australia is the only surviving brewer producing the Sparkling Ale style.", + "style_comparison": "Superficially similar to English Pale Ales, although much more highly carbonated, with less caramel, less late hops, and showcasing the signature yeast strain and hop variety. More bitter than IBUs might suggest due to high attenuation, low final gravity, and somewhat coarse hops.", + "tags": "standard-strength, pale-color, top-fermented, pacific, traditional-style, pale-ale-family, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00400", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.00600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "4.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "7.00000", + "ingredients": "Lightly kilned Australian 2-row pale malt, lager varieties may be used. Small amounts of crystal malt for color adjustment only. Modern examples use no adjuncts, cane sugar for priming only. Historical examples using 45% 2 row, 30% higher protein malt (6 row) would use around 25% sugar to dilute the nitrogen content. Traditionally used Australian hops, Cluster, and Goldings until replaced from mid-1960s by Pride of Ringwood. Highly attenuative Burton-type yeast (Australian-type strain typical). Variable water profile, typically with low carbonate and moderate sulfate.", + "examples": "Coopers Sparkling Ale", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 37, + "fields": { + "name": "English IPA", + "category": "Pale Commonwealth Beer", + "category_id": "12", + "style_id": "12C", + "category_description": "This category contains pale, moderately-strong, hop-forward, bitter ales from countries within the former British Empire.", + "overall_impression": "A bitter, moderately-strong, very well-attenuated pale British ale with a dry finish and a hoppy aroma and flavor. Classic British ingredients provide the most authentic flavor profile.", + "aroma": "A moderate to moderately-high hop aroma, typically floral, spicy-peppery, or citrus-orange in nature. A slight dry-hop aroma is acceptable, but not required. Medium-low to medium bready or biscuity malt, optionally with a moderately-low caramel-like or toasty malt presence. Low to moderate fruitiness is acceptable. Optional light sulfury note.", + "appearance": "Color ranges from golden to deep amber, but most are fairly pale. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Moderate-sized, persistent head stand with off-white color.", + "flavor": "Hop flavor is medium to high, with a moderate to assertive hop bitterness. The hop flavor should be similar to the aroma (floral, spicy-peppery, or citrus-orange). Malt flavor should be medium-low to medium, and be somewhat bready, optionally with light to medium-light biscuit, toast, toffee,or caramel aspects. Medium-low to medium fruitiness. Finish is medium-dry to very dry, and the bitterness may linger into the aftertaste but should not be harsh. The balance is toward the hops, but the malt should still be noticeable in support. If high sulfate water is used, a distinctively minerally, dry finish, some sulfur flavor, and a lingering bitterness are usually present. Some clean alcohol flavor can be noted in stronger versions.", + "mouthfeel": "Smooth, medium-light to medium body without hop-derived astringency.Medium to medium-high carbonation can give an overall dry sensation despite a supportive malt presence. A low, smooth alcohol warming can be sensed in stronger versions.", + "comments": "The attributes of IPA that were important to its arrival in good condition in India were that it was very well-attenuated, and heavily hopped. Simply because this is how IPA was shipped, doesn’t mean that other beers such as Porter weren’t also sent to India, that IPA was invented to be sent to India, that IPA was more heavily hopped than other keeping beers, or that the alcohol level was unusual for the time.Many modern examples labeled IPA are quite weak in strength. According to CAMRA, “so-called IPAs with strengths of around 3.5% are not true to style.” English beer historian Martyn Cornell has commented that beers like this are “not really distinguishable from an ordinary bitter.” So we choose to agree with these sources for our guidelines rather than what some modern British breweries are calling an IPA; just be aware of these two main types of IPAs in the British market today.The beers were shipped in well-used oak casks, so the style shouldn’t have an oak or Brett character.", + "history": "Originally a pale stock ale from London that was first shipped to India in the late 1700s. George Hodgson of the Bow Brewery did not create the style, but was the first well known brewer to dominate the market. After a trade dispute, the East India Company had Samuel Allsopp recreate (and reformulate) the beer in 1823 using Burton’s sulfate-rich water. The name India Pale Ale wasn’t used until around 1830. Strength and popularity declined over time, and the style virtually disappeared in the second half of the 20th century. While the stronger Burton-type IPA remained, the name was also applied to hoppy, lower-gravity, often bottled products (a trend that continues in some modern British examples). The style underwent a craft beer rediscovery in the 1980s, and is what is described in these guidelines. Modern examples are inspired by classic versions, but shouldn’t be assumed to have an unbroken lineage with the exact same profile. White Shield is probably the example with the longest lineage, tracing to the strong Burton IPAs of old and first brewed in 1829.", + "style_comparison": "Generally will have more late hops and less fruitiness and caramel than British pale ales and Bitters. Has less hop intensity and a more pronounced malt flavor than typical American IPAs.", + "tags": "high-strength, pale-color, top-fermented, british-isles, traditional-style, ipa-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "40.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "60.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Pale ale malt. English hops, particularly as finishing hops. Attenuative British ale yeast. Refined sugar may be used in some versions. Optional sulfate character from Burton-type water.", + "examples": "Berkshire Lost Sailor IPA, Fuller's Bengal Lancer, Marston’s Old Empire IPA, Meantime London IPA, Thornbridge Jaipur, Worthington White Shield", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 38, + "fields": { + "name": "Dark Mild", + "category": "Brown British Beer", + "category_id": "13", + "style_id": "13A", + "category_description": "While Dark Mild, Brown Ale, and English Porter may have long and storied histories, these guidelines describe the modern versions. They are grouped together for judging purposes only since they often have similar flavors and balance, not because of any implied common ancestry. The similar characteristics are low to moderate strength, dark color, generally malty balance, and British ancestry. These styles have no historic relationship to each other; especially, none of these styles evolved into any of the others, or was ever a component of another. The category name was never used historically to describe this grouping of beers; it is our name for the judging category. “Brown Beer” was a distinct and important historical product, and is not related to this category name.", + "overall_impression": "A dark, low-gravity, malt-focused British session ale readily suited to drinking in quantity. Refreshing, yet flavorful for its strength, with a wide range of dark malt or dark sugar expression.", + "aroma": "Low to moderate malt aroma, and may have some fruitiness. The malt expression can take on a wide range of character, which can include caramel, toffee, grainy, toasted, nutty, chocolate, or lightly roasted. Low earthy or floral hop aroma optional. Very low diacetyl optional.", + "appearance": "Copper to dark brown or mahogany color. Generally clear, although is traditionally unfiltered. Low to moderate off-white to tan head; retention may be poor.", + "flavor": "Generally a malty beer, although may have a very wide range of malt- and yeast-based flavors (e.g., malty, sweet, caramel, toffee, toast, nutty, chocolate, coffee, roast, fruit, licorice, plum, raisin) over a bready, biscuity, or toasty base. Can finish sweet to dry. Versions with darker malts may have a dry, roasted finish. Low to moderate bitterness, enough to provide some balance but not enough to overpower the malt in the balance. Moderate fruity esters optional. Low hop flavor optional. Low diacetyl optional.", + "mouthfeel": "Light to medium body. Generally low to medium-low carbonation. Roast-based versions may have a light astringency. Sweeter versions may seem to have a rather full mouthfeel for the gravity. Should not be flat, watery, or thin.", + "comments": "Most are low-gravity session beers around 3.2%, although some versions may be made in the stronger (4%+) range for export, festivals, seasonal or special occasions. Generally served on cask; session-strength bottled versions don’t often travel well. A wide range of interpretations are possible. Pale (medium amber to light brown) versions exist, but these are even more rare than dark milds; these guidelines only describe the modern dark version.", + "history": "Historically, ‘mild’ was simply an unaged beer, and could be used as an adjective to distinguish between aged or more highly hopped keeping beers. Modern milds trace their roots to the weaker X-type ales of the 1800s, which started to get darker in the 1880s, but only after WWI did they become dark brown. In current usage, the term implies a lower-strength beer with less hop bitterness than bitters. The guidelines describe the modern British version. The term ‘mild’ is currently somewhat out of favor with consumers, and many breweries no longer use it. Increasingly rare. There is no historic connection or relationship between Mild and Porter.", + "style_comparison": "Some versions may seem like lower-gravity modern English Porters. Much less sweet than London Brown Ale.", + "tags": "session-strength, dark-color, top-fermented, british-isles, traditional-style, brown-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.03800", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "10.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "14.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "25.00000", + "ingredients": "Pale British base malts (often fairly dextrinous), crystal malt, dark malts or dark sugar adjuncts, may also include adjuncts such as flaked maize, and may be colored with brewer’s caramel. Characterful British ale yeast. Any type of hops, since their character is muted and rarely is noticeable.", + "examples": "Brain’s Dark,Greene King XX Mild, Hobson’s Champion Mild, Mighty Oak Oscar Wilde, Moorhouse Black Cat, Theakston Traditional Mild", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 39, + "fields": { + "name": "British Brown Ale", + "category": "Brown British Beer", + "category_id": "13", + "style_id": "13B", + "category_description": "While Dark Mild, Brown Ale, and English Porter may have long and storied histories, these guidelines describe the modern versions. They are grouped together for judging purposes only since they often have similar flavors and balance, not because of any implied common ancestry. The similar characteristics are low to moderate strength, dark color, generally malty balance, and British ancestry. These styles have no historic relationship to each other; especially, none of these styles evolved into any of the others, or was ever a component of another. The category name was never used historically to describe this grouping of beers; it is our name for the judging category. “Brown Beer” was a distinct and important historical product, and is not related to this category name.", + "overall_impression": "A malty, caramelly,brown British ale without the roasted flavors of a Porter. Balanced and flavorful, but usually a little stronger than most average UK beers.", + "aroma": "Light, sweet malt aroma with toffee, nutty, or light chocolate notes, and a light to heavy caramel quality. A light but appealing floral or earthy hop aroma may also be noticed. A light fruity aroma may be evident, but should not dominate.", + "appearance": "Dark amber to dark reddish-brown color. Clear. Low to moderate off-white to light tan head.", + "flavor": "Gentle to moderate malt sweetness, with a light to heavy caramel character, and a medium to dry finish. Malt may also have a nutty, toasted, biscuity, toffee, or light chocolate character. Medium to medium-low bitterness. Malt-hop balance ranges from even to malt-focused.Low floral or earthy hop flavor optional. Low to moderate fruity esters optional.", + "mouthfeel": "Medium-light to medium body. Medium to medium-high carbonation.", + "comments": "A wide-ranging category with different interpretations possible, ranging from lighter-colored to hoppy to deeper, darker, and caramel-focused; however, none of the versions have strongly roasted flavors. A stronger Double Brown Ale was more popular in the past, but is very hard to find now. While London Brown Ales are marketed using the name Brown Ale, we list those as a different judging style due to the significant difference in balance (especially sweetness) and alcohol strength; that doesn’t mean that they aren’t in the same family, though.", + "history": "Brown ale has a long history in Great Britain, although different products used that name at various times. Modern brown ale is a 20th century creation; it is not the same as historical products with the same name. A wide range of gravities were brewed, but modern brown ales are generally of the stronger (by current UK standards) interpretation. This style is based on the modern stronger British brown ales, not historical versions or the sweeter London Brown Ale described in the Historical Beer category. Predominantly but not exclusively a bottled product currently.", + "style_comparison": "More malty balance than British Bitters, with more malt flavors from darker grains. Stronger than a Dark Mild. Less roast than an English Porter. Stronger and much less sweet than London Brown Ale.", + "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, brown-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.90000", + "color_minimum_unit": "SRM", + "color_minimum_value": "12.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "British mild ale or pale ale malt base with caramel malts. May also have small amounts darker malts (e.g., chocolate) to provide color and the nutty character. English hop varieties are most authentic.", + "examples": "AleSmith Nut Brown Ale, Cigar City Maduro Brown Ale, Maxim Double Maxim, Newcastle Brown Ale, Riggwelter Yorkshire Ale, Samuel Smith’s Nut Brown Ale", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 40, + "fields": { + "name": "English Porter", + "category": "Brown British Beer", + "category_id": "13", + "style_id": "13C", + "category_description": "While Dark Mild, Brown Ale, and English Porter may have long and storied histories, these guidelines describe the modern versions. They are grouped together for judging purposes only since they often have similar flavors and balance, not because of any implied common ancestry. The similar characteristics are low to moderate strength, dark color, generally malty balance, and British ancestry. These styles have no historic relationship to each other; especially, none of these styles evolved into any of the others, or was ever a component of another. The category name was never used historically to describe this grouping of beers; it is our name for the judging category. “Brown Beer” was a distinct and important historical product, and is not related to this category name.", + "overall_impression": "A moderate-strength dark brown English ale with a restrained roasty, bitter character. May have a range of roasted flavors, generally without burnt qualities, and often has a malty chocolate and caramelprofile.", + "aroma": "Moderate to moderately low bready, biscuity, and toasty malt aroma with mild roastiness, often like chocolate. Additional malt complexity may be present as caramel, nuts, toffee sweetness. May have up to a moderate level of floral or earthy hops. Moderate fruity esters optional, but desirable. Low diacetyl optional.", + "appearance": "Brown to dark brown in color, often with ruby highlights. Good clarity, although may be opaque. Moderate off-white to light tan head with good to fair retention.", + "flavor": "Moderate bready, biscuity, and toasty malt flavor with a mild to moderate chocolate roastiness,and often a significant caramel, nutty, or toffee character, possibly with lower levels ofdarker flavors like coffee or licorice. Should not be burnt or harshly roasted, although small amounts may contribute a bitter chocolate complexity. Up to moderate earthy or floral hop flavor optional. Low to moderate fruity esters.Medium-low to medium bitterness varies the balance from slightly malty to slightly bitter, with a fairly dry to slightly sweet finish. Moderately-low diacetyl optional.", + "mouthfeel": "Medium-light to medium body. Moderately-low to moderately-high carbonation. Light to moderate creamy texture.", + "comments": "This style description describes the modern version of English Porter, not every possible variation over time in every region where it existed. Historical re-creations should be entered in the 27 Historical Beer category, with an appropriate description describing the profile of the beer. Modern craft examples in the UK are bigger and hoppier.", + "history": "Originating in London in the early 1700s, porter evolved as a more heavily hopped and aged (keeping) version of the Brown Beer popular at the time. It evolved many times based on various technological and ingredient developments (such as the invention of black malt in 1817, and large-scale industrial brewing), as well as consumer preferences, wars, and tax policy. It became a highly-popular, widely-exported style in the early 1800s before declining by the 1870s as it changed to a lower gravity, unaged beer. As gravities continued to decline in all UK beers in the first half of the 1900s, styles stopped being made (including porter, gone by the 1950s). The craft beer era led to its re-introduction in 1978.The name is said to have been derived from its popularity with the London working class performing various load-carrying tasks of the day. Parent of various regional interpretations over time, and a predecessor to all stouts (which were originally called “stout porters”).There is no historic connection or relationship between Mild and Porter.", + "style_comparison": "Differs from American Porter in that it usually has softer, sweeter, and more caramelly flavors, lower gravities, and usually less alcohol; American Porter also usuallyhas more hop character. More substance and roast than a British Brown Ale. Higher in gravity than a Dark Mild.", + "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, porter-family, malty, roasty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.40000", + "color_minimum_unit": "SRM", + "color_minimum_value": "20.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "30.00000", + "ingredients": "Grists vary, but something producing a dark color is always involved. Chocolate or other roasted malts, caramel malt, brewing sugars, and the like are common. London-type porters often use brown malt as a characteristic flavor.", + "examples": "Bateman’s Salem Porter, Burton Bridge Burton Porter, Fuller's London Porter, Nethergate Old Growler Porter, RCH Old Slug Porter, Samuel Smith Taddy Porter", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": "Simply called “Porter” in Britain, the name “English Porter” is used to differentiate it from other derivative porters described in these guidelines.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 41, + "fields": { + "name": "Scottish Light", + "category": "Scottish Ale", + "category_id": "14", + "style_id": "14A", + "category_description": "There are really only three traditional beer styles broadly available today in Scotland: the 70/- Scottish Heavy, the 80/- Scottish Export, and the Strong Scotch Ale (Wee Heavy, Style 17C). The 60/- Scottish Light is rare and often cask-only, but it does seem to be having a bit of a renaissance currently. All these styles took modern form after World War II, regardless of prior use of the same names. Currently, the 60/- is similar to a dark mild, the 70/- is similar to an ordinary bitter, and the 80/- similar to a best or strong bitter. The Scottish beers have a different balance and flavor profile, but fill a similar market position as those English beers.The Light, Heavy, and Export beers have similar flavor profiles, and are often produced through the parti-gyling process. As gravity increases, so does the character of the beer. Traditional ingredients were dextrinous pale ale malt, corn, dark brewing sugars, and brewers caramel for coloring. Modern (post-WWII) recipes often add small amounts of dark malt and lower percentages of crystal malt, along with other ingredients like amber malt and wheat. Scottish brewers traditionally used single infusion mashes, often with underlet mashes and multiple sparges.In general, these Scottish beers are weaker, sweeter, darker, lower in attenuation, and less highly hopped compared to equivalent modern English beers. They are produced using slightly cooler fermentation temperatures than their counterparts. Many of these differences have been exaggerated in popular lore; they are noticeable, but not huge, yet enough to affect the balance of the beer, and to perhaps indicate a national flavor preference. The balance remains malty and somewhat sweet due to higher finishing gravity, lower alcohol, and lower hopping rates. Many of these divergences from English beer took place between the late 1800s and the mid-1900s.Production methods championed by homebrewers, such as kettle caramelization or grists heavy in a variety of crystal malts, are not commonly used in traditional products but can approximate those flavors when traditional ingredients aren’t available. The use of peat-smoked malt is not only completely inauthentic, it produces a dirty, phenolic flavor inappropriate in any of these styles. Smoked versions (using any type smoke) should be entered in 32A Classic Style Smoked Beer. The use of ‘shilling’ (/-) designations is a Scottish curiosity. Originally it referred to the price of beer in hogshead casks, which in no way could be constant over time. Shillings aren’t even used a currency now in Scotland. But the name stuck as a shorthand for a type of beer, even if the original meaning stopped being the real price during WWI. About all it means now is that larger numbers mean stronger beers, at least within the same brewery. Between the world wars, some breweries used the price per pint rather than shillings (e.g., Maclay 6d for 60/-, 7d for 70/-, 8d for 80/-). Confusingly, during this time 90/- pale ale was a low-gravity bottled beer. Curious, indeed.", + "overall_impression": "A low-alcohol, maltybeer with lightcaramel, toast, toffee, and fruit flavors. A slight roast dryness offsets the residual sweetness in the finish, with the bitterness perceived only to keep the beer from being cloying.", + "aroma": "Low to medium maltiness with caramel and toffee notes, and light toasty and sugary qualities that might be reminiscent of toasted breadcrumbs, ladyfingers, English biscuits, graham crackers, or butterscotch. Light pome fruitiness and light English hop aroma (earthy, floral, orange-citrus, spicy, etc.) allowable.", + "appearance": "Deep copper to dark brown. Clear. Low to moderate, creamy off-white.", + "flavor": "Medium toasty-bready malt with caramel and toffee overtones, finishing with a slightly roasty dryness. A wide range of caramelized sugar and toasted bread type of flavors are possible, using similar descriptors as the aroma. Clean maltiness and fermentation profile. Light esters and hop flavor allowable (similar descriptors as aroma). Sufficient bitterness to not be cloying, but with a malty balance and aftertaste.", + "mouthfeel": "Medium-low to medium body. Low to moderate carbonation. Maybe be moderately creamy.", + "comments": "See category introduction for detailed comments. May not seem as bitter as specifications indicate due to higher finishing gravity and residual sweetness.Typically a draught product, but somewhat rare.Do not mis-perceive the light roasty dryness as smoke; smoke is not present in these beers.", + "history": "See category introduction. The Shilling ale names were used for mild (unaged) beer before World War I, but the styles took modern form only after World War II.", + "style_comparison": "See category introduction. Similar to other Scottish Ales but lower in alcohol, and darker in color. Similar in strength to the low end of Dark Mild, but with a different flavor profile and balance.", + "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.03500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "10.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "20.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "2.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.30000", + "color_minimum_unit": "SRM", + "color_minimum_value": "17.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "25.00000", + "ingredients": "At its simplest, pale ale malt, but can also use colored malt, sugars, corn, wheat, crystal malts, colorants, and a variety of other grains. Clean yeast. Soft water. No peat-smoked malt.", + "examples": "Belhaven Best, McEwan's 60/-", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 42, + "fields": { + "name": "Scottish Heavy", + "category": "Scottish Ale", + "category_id": "14", + "style_id": "14B", + "category_description": "There are really only three traditional beer styles broadly available today in Scotland: the 70/- Scottish Heavy, the 80/- Scottish Export, and the Strong Scotch Ale (Wee Heavy, Style 17C). The 60/- Scottish Light is rare and often cask-only, but it does seem to be having a bit of a renaissance currently. All these styles took modern form after World War II, regardless of prior use of the same names. Currently, the 60/- is similar to a dark mild, the 70/- is similar to an ordinary bitter, and the 80/- similar to a best or strong bitter. The Scottish beers have a different balance and flavor profile, but fill a similar market position as those English beers.The Light, Heavy, and Export beers have similar flavor profiles, and are often produced through the parti-gyling process. As gravity increases, so does the character of the beer. Traditional ingredients were dextrinous pale ale malt, corn, dark brewing sugars, and brewers caramel for coloring. Modern (post-WWII) recipes often add small amounts of dark malt and lower percentages of crystal malt, along with other ingredients like amber malt and wheat. Scottish brewers traditionally used single infusion mashes, often with underlet mashes and multiple sparges.In general, these Scottish beers are weaker, sweeter, darker, lower in attenuation, and less highly hopped compared to equivalent modern English beers. They are produced using slightly cooler fermentation temperatures than their counterparts. Many of these differences have been exaggerated in popular lore; they are noticeable, but not huge, yet enough to affect the balance of the beer, and to perhaps indicate a national flavor preference. The balance remains malty and somewhat sweet due to higher finishing gravity, lower alcohol, and lower hopping rates. Many of these divergences from English beer took place between the late 1800s and the mid-1900s.Production methods championed by homebrewers, such as kettle caramelization or grists heavy in a variety of crystal malts, are not commonly used in traditional products but can approximate those flavors when traditional ingredients aren’t available. The use of peat-smoked malt is not only completely inauthentic, it produces a dirty, phenolic flavor inappropriate in any of these styles. Smoked versions (using any type smoke) should be entered in 32A Classic Style Smoked Beer. The use of ‘shilling’ (/-) designations is a Scottish curiosity. Originally it referred to the price of beer in hogshead casks, which in no way could be constant over time. Shillings aren’t even used a currency now in Scotland. But the name stuck as a shorthand for a type of beer, even if the original meaning stopped being the real price during WWI. About all it means now is that larger numbers mean stronger beers, at least within the same brewery. Between the world wars, some breweries used the price per pint rather than shillings (e.g., Maclay 6d for 60/-, 7d for 70/-, 8d for 80/-). Confusingly, during this time 90/- pale ale was a low-gravity bottled beer. Curious, indeed.", + "overall_impression": "A lower-alcohol, maltybeer with lightcaramel, toast, toffee, and fruity flavors. A slight roast dryness offsets the residual sweetness in the finish, with the bitterness perceived only to keep the beer from being cloying.", + "aroma": "Medium-low to medium maltiness with caramel and toffee notes, and light toasty and sugary qualities that might be reminiscent of toasted breadcrumbs, ladyfingers, English biscuits, graham crackers, or butterscotch. Light pome fruitiness and light English hop aroma (earthy, floral, orange-citrus, spicy, etc.) allowable.", + "appearance": "Pale copper to brown. Clear. Low to moderate, creamy off-white.", + "flavor": "Medium toasty-bready malt with caramel and toffee overtones, finishing with a slightly roasty dryness. A wide range of caramelized sugar and toasted bread type of flavors are possible, using similar descriptors as the aroma. Clean maltiness and fermentation profile. Light esters and hop flavor allowable (similar descriptors as aroma). Sufficient bitterness to not be cloying, but with a malty balance and aftertaste.", + "mouthfeel": "Medium-low to medium body. Low to moderate carbonation. Maybe be moderately creamy.", + "comments": "See category introduction for detailed comments. May not seem as bitter as specifications indicate due to higher finishing gravity and residual sweetness.Do not mis-perceive the light roasty dryness as smoke; smoke is not present in these beers.", + "history": "See category introduction. The Shilling ale names were used for mild (unaged) beer before World War I, but the styles took modern form only after World War II.", + "style_comparison": "See category introduction. Similar to other Scottish Ales in flavor profile, lighter in color and stronger than a Scottish Light. Similar in strength to Ordinary Bitter, but with a different flavor profile and balance.", + "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "10.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "20.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.90000", + "color_minimum_unit": "SRM", + "color_minimum_value": "12.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "20.00000", + "ingredients": "At its simplest, pale ale malt and colored malt, but can also use sugars, corn, wheat, crystal malts, colorants, and a variety of other grains. Clean yeast. Soft water. No peat-smoked malt.", + "examples": "McEwan's 70/-, Orkney Raven Ale", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 43, + "fields": { + "name": "Scottish Export", + "category": "Scottish Ale", + "category_id": "14", + "style_id": "14C", + "category_description": "There are really only three traditional beer styles broadly available today in Scotland: the 70/- Scottish Heavy, the 80/- Scottish Export, and the Strong Scotch Ale (Wee Heavy, Style 17C). The 60/- Scottish Light is rare and often cask-only, but it does seem to be having a bit of a renaissance currently. All these styles took modern form after World War II, regardless of prior use of the same names. Currently, the 60/- is similar to a dark mild, the 70/- is similar to an ordinary bitter, and the 80/- similar to a best or strong bitter. The Scottish beers have a different balance and flavor profile, but fill a similar market position as those English beers.The Light, Heavy, and Export beers have similar flavor profiles, and are often produced through the parti-gyling process. As gravity increases, so does the character of the beer. Traditional ingredients were dextrinous pale ale malt, corn, dark brewing sugars, and brewers caramel for coloring. Modern (post-WWII) recipes often add small amounts of dark malt and lower percentages of crystal malt, along with other ingredients like amber malt and wheat. Scottish brewers traditionally used single infusion mashes, often with underlet mashes and multiple sparges.In general, these Scottish beers are weaker, sweeter, darker, lower in attenuation, and less highly hopped compared to equivalent modern English beers. They are produced using slightly cooler fermentation temperatures than their counterparts. Many of these differences have been exaggerated in popular lore; they are noticeable, but not huge, yet enough to affect the balance of the beer, and to perhaps indicate a national flavor preference. The balance remains malty and somewhat sweet due to higher finishing gravity, lower alcohol, and lower hopping rates. Many of these divergences from English beer took place between the late 1800s and the mid-1900s.Production methods championed by homebrewers, such as kettle caramelization or grists heavy in a variety of crystal malts, are not commonly used in traditional products but can approximate those flavors when traditional ingredients aren’t available. The use of peat-smoked malt is not only completely inauthentic, it produces a dirty, phenolic flavor inappropriate in any of these styles. Smoked versions (using any type smoke) should be entered in 32A Classic Style Smoked Beer. The use of ‘shilling’ (/-) designations is a Scottish curiosity. Originally it referred to the price of beer in hogshead casks, which in no way could be constant over time. Shillings aren’t even used a currency now in Scotland. But the name stuck as a shorthand for a type of beer, even if the original meaning stopped being the real price during WWI. About all it means now is that larger numbers mean stronger beers, at least within the same brewery. Between the world wars, some breweries used the price per pint rather than shillings (e.g., Maclay 6d for 60/-, 7d for 70/-, 8d for 80/-). Confusingly, during this time 90/- pale ale was a low-gravity bottled beer. Curious, indeed.", + "overall_impression": "A moderate-strength, maltybeer with light caramel, toast, toffee, and fruit flavors. A slight roast dryness offsets the residual sweetness in the finish, with the bitterness perceived only to keep the beer from being cloying.", + "aroma": "Medium maltiness with caramel and toffee notes, and light toasty and sugary qualities that might be reminiscent of toasted breadcrumbs, ladyfingers, English biscuits, graham crackers, or butterscotch. Light pome fruitiness and light English hop aroma (earthy, floral, orange-citrus, spicy, etc.) allowable.", + "appearance": "Pale copper to brown. Clear. Low to moderate, creamy off-white.", + "flavor": "Medium toasty-bready malt with caramel and toffee overtones, finishing with a slightly roastydryness. A wide range of caramelized sugar and toasted bread type of flavors are possible, using similar descriptors as the aroma. Clean maltiness and fermentation profile. Light esters and hop flavor allowable (similar descriptors as aroma). Sufficient bitterness to not be cloying, but with a malty balance and aftertaste.", + "mouthfeel": "Medium body. Medium-low to medium carbonation. Maybe be moderately creamy.", + "comments": "See category introduction for detailed comments. May not seem as bitter as specifications indicate due to higher finishing gravity and residual sweetness. Do not mis-perceive the light roasty dryness as smoke; smoke is not present in these beers. Americanized versions are often greater in strength (similar to American treatment of Irish Red Ales).", + "history": "See category introduction. The Shilling ale names were used for mild (unaged) beer before World War I, but the styles took modern form only after World War II.", + "style_comparison": "See category introduction. Stronger than other Scottish Ales, but with a similar flavor profile. Similar in strength to Best Bitter and Strong Bitter, but with a different flavor profile and balance.", + "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.90000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "12.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "20.00000", + "ingredients": "At its simplest, pale ale malt and colored malt, but can also use sugars, corn, wheat, crystal malts, colorants, and a variety of other grains. Clean yeast. Soft water. No peat-smoked malt.", + "examples": "Belhaven Scottish Ale, Broughton Wee Jock 80 Shilling, Caledonian Edinburgh Castle, McEwan’s 80/-, McEwan’s Export, Traquair Bear Ale", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 44, + "fields": { + "name": "Irish Red Ale", + "category": "Irish Beer", + "category_id": "15", + "style_id": "15A", + "category_description": "The traditional beers of Ireland contained in this category are amber to dark, top-fermented beers of moderate to slightly strong strength, and are often widely misunderstood due to differences in export versions, or overly focusing on the specific attributes of beer produced by high-volume, well-known breweries. Each of the styles in this grouping has a wider range than is commonly believed.", + "overall_impression": "An easy-drinking pint, often with subtle flavors. Slightly malty in the balance sometimes with an initial soft toffee or caramel sweetness, a slightly grainy-biscuity palate, and a touch of roasted dryness in the finish. Some versions can emphasize the caramel and sweetness more, while others will favor the grainy palate and roasted dryness.", + "aroma": "Low to moderate malt aroma, either neutral-grainy or with a lightly caramel, toast, or toffee character. Very light buttery character optional. Low earthy or floral hop aroma optional. Quite clean.", + "appearance": "Medium amber to medium reddish-copper color. Clear. Low off-white to tan colored head, average persistence.", + "flavor": "Moderate to very little caramel malt flavor and sweetness, rarely with a light buttered toast or toffee-like quality. The palate often is fairly neutral and grainy, or can take on a lightly toasty or biscuity note as it finishes with a light taste of roasted grain, which lends a characteristic dryness to the finish. A light earthy or floral hop flavor is optional. Medium to medium-low bitterness. Medium-dry to dry finish. Clean and smooth. Low esters optional. The balance tends to be slightly towards the malt, although light use of roasted grains may increase the perception of bitterness slightly.", + "mouthfeel": "Medium-light to medium body, although examples containing low levels of diacetyl may have a slightly slick mouthfeel (not required). Moderate carbonation. Smooth.", + "comments": "The style is fairly broad to allow for examples beyond the traditional ones from Ireland. Irish examples tend to be lower alcohol, grainier, and drier in the finish, while non-Irish versions are often higher in alcohol, sweeter, perhaps more caramelly and estery, and are often seasonal offerings.", + "history": "While Ireland has a long ale brewing heritage, the modern Irish Red Ale style is essentially an adaptation or interpretation of the popular English Bitter style with less hopping and a bit of roast to add color and dryness, although some suggest a longer history. Rediscovered as a craft beer style in Ireland, today it is an essential part of most brewery lineups, along with a pale ale and a stout.", + "style_comparison": "A less-bitter and hoppy Irish equivalent to an English Bitter, with a dryish finish due to roasted barley. More attenuated with less caramel flavor and body than equivalent-strength Scottish Ales.", + "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04600", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "28.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "9.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Generally has a bit of roasted barley or black malt to provide reddish color and dry roasted finish. Pale base malt. Caramel malts were historically imported and more expensive, so not all brewers would use them.", + "examples": "Franciscan Well Rebel Red, Kilkenny Irish Beer, Murphy’s Irish Red, O’Hara’s Irish Red Ale, Porterhouse Nitro Red Ale, Smithwick’s Irish Ale", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 45, + "fields": { + "name": "Irish Stout", + "category": "Irish Beer", + "category_id": "15", + "style_id": "15B", + "category_description": "The traditional beers of Ireland contained in this category are amber to dark, top-fermented beers of moderate to slightly strong strength, and are often widely misunderstood due to differences in export versions, or overly focusing on the specific attributes of beer produced by high-volume, well-known breweries. Each of the styles in this grouping has a wider range than is commonly believed.", + "overall_impression": "A black beer with a pronounced roasted flavor, often similar to coffee. The balance can range from fairly even to quite bitter, with the more balanced versions having a little malty sweetness and the bitter versions being quite dry. Draught versions typically are creamy from a nitro pour, but bottled versions will not have this dispense-derived character. The roasted flavor can range from dry and coffee-like to somewhat chocolaty.", + "aroma": "Moderate coffee-like aroma typically dominates; may have slight dark chocolate, cocoa,or roasted grain secondary notes. Medium-low esters optional. Low earthy or floral hop aroma optional.", + "appearance": "Jet black to deep brown with garnet highlights in color. According to Guinness, “Guinness beer may appear black, but it is actually a very dark shade of ruby.” Opaque. A thick, creamy, long-lasting, tan- to brown-colored head is characteristic when served on nitro, but don’t expect a tight, creamy head on a bottled beer.", + "flavor": "Moderate roasted grain or malt flavor with a medium to high bitterness. The finish can be dry and coffee-like to moderately balanced with a touch of caramel or malty sweetness. Typically has coffee-like flavors, but also may have a bittersweet or unsweetened chocolate character in the palate, lasting into the finish. Balancing factors may include some creaminess, medium-low fruitiness, or medium earthy hop flavor. The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers.", + "mouthfeel": "Medium-light to medium-full body, with a somewhat creamy character – especially when served by nitro pour. Low to moderate carbonation. For the high hop bitterness and significant proportion of dark grains present, this beer is remarkably smooth. May have a light astringency from the roasted grains, although harshness is undesirable.", + "comments": "Traditionally a draught product. Modern examples are almost always associated with a nitro pour. Do not expect bottled beers to have the full, creamy texture or very long-lasting head associated with mixed-gas dispense. Regional differences exist in Ireland, similar to variability in English Bitters. Dublin-type stouts use roasted barley, are more bitter, and are drier. Cork-type stouts are sweeter, less bitter, and have flavors from chocolate and specialty malts.", + "history": "The style evolved from London porters, but reflecting a fuller, creamier, more “stout” body and strength. Guinness began brewing only porter in 1799, and a “stouter kind of porter” around 1810. Irish stout diverged from London single stout (or simply porter) in the late 1800s, with an emphasis on darker malts and roast barley. Guinness began using flaked barley after WWII, and Guinness Draught was launched as a brand in 1959. Draught (“widget”) cans and bottles were developed in the late 1980s and 1990s.", + "style_comparison": "Lower strength than an Irish Extra Stout. Darker in color (black) than an English Porter (brown).", + "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, bitter, roasty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "45.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00700", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01100", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "25.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Dark roasted malts or grains, enough to make the beer black in color. Pale malt. May use unmalted grains for body.", + "examples": "Beamish Irish Stout, Belhaven Black Stout, Guinness Draught, Murphy's Irish Stout, O’Hara’s Irish Stout, Porterhouse Irish Stout", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 46, + "fields": { + "name": "Irish Extra Stout", + "category": "Irish Beer", + "category_id": "15", + "style_id": "15C", + "category_description": "The traditional beers of Ireland contained in this category are amber to dark, top-fermented beers of moderate to slightly strong strength, and are often widely misunderstood due to differences in export versions, or overly focusing on the specific attributes of beer produced by high-volume, well-known breweries. Each of the styles in this grouping has a wider range than is commonly believed.", + "overall_impression": "A fuller-bodied black beer with a pronounced roasted flavor, often similar to coffee and dark chocolate with some malty complexity. The balance can range from moderately bittersweet to bitter, with the more balanced versions having up to moderate malty richness and the bitter versions being quite dry.", + "aroma": "Moderate to moderately high coffee-like aroma, often with slight dark chocolate, cocoa, biscuit, vanilla,or roasted grain secondary notes. Medium-low esters optional. Hop aroma low to none, may be lightly earthy or spicy, but is typically absent. Malt and roast dominate the aroma.", + "appearance": "Jet black. Opaque. A thick, creamy, persistent tan head is characteristic.", + "flavor": "Moderate to moderately high dark-roasted grain or malt flavor with a medium to medium-high bitterness. The finish can be dry and coffee-like to moderately balanced with up to moderate caramel or malty sweetness. Typically has roasted coffee-like flavors, but also often has a dark chocolate character in the palate, lasting into the finish. Background mocha or biscuit flavors are often present and add complexity. Medium-low fruitiness optional. Medium earthy or spicy hop flavor optional. The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers.", + "mouthfeel": "Medium-full to full body, with a somewhat creamy character. Moderate carbonation. Very smooth. May have a light astringency from the roasted grains, although harshness is undesirable. A slightly warming character may be detected.", + "comments": "Traditionally a stronger, bottled product with a range of equally valid possible interpretations, varying most frequentlyin roast flavor and sweetness. Most traditional Irish commercial examples are in the 5.6 to 6.0% ABV range.", + "history": "Same roots as Irish Stout, but as a stronger product. Guinness Extra Stout (Extra Superior Porter, later Double Stout) was first brewed in 1821, and was primarily a bottled product.", + "style_comparison": "Midway between an Irish Stout and a Foreign Extra Stout in strength and flavor intensity, although with a similar balance. More body, richness, and often malt complexity than an Irish Stout. Black in color, not brown like an EnglishPorter.", + "tags": "high-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, bitter, roasty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "35.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "50.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "30.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Similar to Irish Stout. May have additional dark crystal malts or dark sugars.", + "examples": "Guinness Extra Stout, O’Hara’s Leann Folláin, Porterhouse XXXX, Sheaf Stout", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 47, + "fields": { + "name": "Sweet Stout", + "category": "Dark British Beer", + "category_id": "16", + "style_id": "16A", + "category_description": "This category contains average to strong, bitter to sweet, modern British and Irish stouts that originated in England even if some are now more widely associated with Ireland. In this case, “British” means the broader British Isles not Great Britain.", + "overall_impression": "A very dark, sweet, full-bodied, slightly roasty stout that can suggest coffee-and-cream, or sweetened espresso.", + "aroma": "Mild roasted grain aroma, sometimes with coffee or chocolate notes. An impression of cream-like sweetness often exists. Fruitiness can be low to moderately high. Low diacetyl optional. Low floral or earthy hop aroma optional.", + "appearance": "Very dark brown to black in color. Clear, if not opaque. Creamy tan to brown head.", + "flavor": "Dark, roasted, coffee or chocolate flavors dominate the palate. Low to moderate fruity esters. Moderate bitterness. Medium to high sweetness provides a counterpoint to the roasted character and bitterness, lasting into the finish. The balance between dark grains or malts and sweetness can vary, from quite sweet to moderately dry and somewhat roasty.Low diacetyl optional.Low floral or earthy hop flavoroptional.", + "mouthfeel": "Medium-full to full-bodied and creamy. Low to moderate carbonation. High residual sweetness from unfermented sugars enhances the full-tasting mouthfeel.", + "comments": "Gravities are low in Britain (sometimes lower than the statistics below), higher in exported and US products. Variations exist, with the level of residual sweetness, the intensity of the roast character, and the balance between the two being the variables most subject to interpretation.", + "history": "An English style of stout developed in the early 1900s. Historically known as “Milk” or “Cream” stouts, legally this designation is no longer permitted in Englandbut may be acceptable elsewhere. The “milk” name is derived from the use of the milk sugar lactoseas a sweetener. Originally marketed as a tonic for invalids and nursing mothers.", + "style_comparison": "Much sweeter and less bitter-tasting than other stouts, except the stronger Tropical Stout. The roast character is mild, not burnt like other stouts. Can be similar in balance to Oatmeal Stout, albeit with more sweetness.", + "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, malty, roasty, sweet", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01200", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "30.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Base of pale malt with dark malts or grains. May use grain or sugar adjuncts.Lactoseis frequently added to provide additional residual sweetness.", + "examples": "Bristol Beer Factory Milk Stout, Firestone Nitro Merlin Milk Stout, Left Hand Milk Stout, Lancaster Milk Stout, Mackeson's XXX Stout, Marston’s Pearl Jet Stout", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 48, + "fields": { + "name": "Oatmeal Stout", + "category": "Dark British Beer", + "category_id": "16", + "style_id": "16B", + "category_description": "This category contains average to strong, bitter to sweet, modern British and Irish stouts that originated in England even if some are now more widely associated with Ireland. In this case, “British” means the broader British Isles not Great Britain.", + "overall_impression": "A dark, roasty, full-bodied stout with enough sweetness to support the oat backbone.The sweetness, balance, and oatmeal impression can vary considerably.", + "aroma": "Mild grainy, roasty, coffee-like character with a light malty sweetness that can give a coffee-and-cream impression. Low to medium-high fruitiness. Medium-low earthy or floral hop aroma optional. A light grainy-nutty oatmeal aroma is optional.Medium-low diacetyl optional but typically absent.", + "appearance": "Brown to black in color. Thick, creamy, persistent tan- to brown-colored head. Clear, if not opaque.", + "flavor": "Similar to the aroma, with a mild roasted coffee, milk chocolate, or coffee-and-cream flavor, and low to moderately-high fruitiness. Oats can add a toasty-nutty, grainy, or earthy flavor. Medium bitterness. Medium-sweet to medium-dry finish, which affects the perception of balance. Malty, roasty, nutty aftertaste.Medium-low earthy or floral hop flavor optional.Medium-low diacetyl optional but typically absent.", + "mouthfeel": "Medium-full to full body, with a smooth, silky, velvety, sometimes an almost oily slickness from the oatmeal. Creamy. Medium to medium-high carbonation. Stronger versions may be lightly warming.", + "comments": "When judging, allow for differences in balance and interpretation.American versions tend to be more hoppy, less sweet, and less fruity than English examples. Bitterness, sweetness,and oatmeal impression varies. Light use of oatmeal may give a certain silkiness of body and richness of flavor, while heavy use of oatmeal can be fairly intense in flavor with an almost oily mouthfeel and dryish finish.", + "history": "A variant of nourishing or invalid stouts around 1900 using oatmeal in the grist, similar to but independent of the development of sweet stout using lactose. An original Scottish version used a significant amount of oat malt. Later went through a shady phase where some English brewers would throw a handful of oats into their parti-gyled stouts in order to legally produce a ‘healthy’ Oatmeal Stout for marketing purposes. Most popular in England between the World Wars, was revived in the craft beer era for export, which helped lead to its adoption as a popular modern American craft beer style that uses a noticeable (not symbolic) quantity of oats.", + "style_comparison": "Most are like a cross between an Irish Extra Stout and a Sweet Stout with oatmeal added. Several variations exist, with the sweeter versions more like a Sweet Stout with oatmeal instead of lactose, and the drier versions more like a more nutty, flavorful Irish Extra Stout. Both tend to emphasize the body and mouthfeel.", + "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, balanced, roasty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.90000", + "color_minimum_unit": "SRM", + "color_minimum_value": "22.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Pale, caramel, and dark roasted malts (often chocolate) and grains. Oatmeal or malted oats (5-20% or more). Hops primarily for bittering. Can use brewing sugars or syrups. English ale yeast.", + "examples": "Anderson Valley Barney Flats Oatmeal Stout, Broughton Stout Jock, St-Ambroise Oatmeal Stout, Samuel Smith Oatmeal Stout, Summit Oatmeal Stout, Young's London Stout", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 49, + "fields": { + "name": "Tropical Stout", + "category": "Dark British Beer", + "category_id": "16", + "style_id": "16C", + "category_description": "This category contains average to strong, bitter to sweet, modern British and Irish stouts that originated in England even if some are now more widely associated with Ireland. In this case, “British” means the broader British Isles not Great Britain.", + "overall_impression": "A very dark, sweet, fruity, moderately strong stout with smooth, roasty flavors,yet no burnt harshness.", + "aroma": "Moderate to high intensity sweetness is prominent. Moderate to high coffee or chocolate roasty aroma, but not burnt. Medium to high fruitiness. May have a molasses, licorice, burnt sugar, dried fruit, or vinous aromatics. Stronger versions can have a subtle, clean aroma of alcohol. Low hop aroma optional. Low diacetyl optional.", + "appearance": "Very deep brown to black in color. Clarity usually obscured by deep color. Clear, if not opaque. Large tan to brown head with good retention.", + "flavor": "Quite sweet with a smooth dark grain flavors, and restrained, medium-low to medium bitterness. Smooth, roasty flavor, often like coffee or chocolate, although moderated in the balance by the sweet finish. No burnt malt flavor or harsh bite in the finish. Moderate to high fruity esters. Can have a sweet, dark rum, molasses, or burnt sugar-like quality. Low hop flavor optional. Medium-low diacetyl optional.", + "mouthfeel": "Medium-full to full body, often with a smooth, creamy character. May have a warming but not hot alcohol presence. Moderate to moderately-high carbonation.", + "comments": "Surprisingly refreshing in a hot climate.Sweetness levels can vary significantly. Tropicalimplies that the beeroriginated in and is popular in the tropics, not that it has characteristics of tropical fruit from hops or fruit.", + "history": "A local adaptation of Foreign Extra Stouts brewed with indigenous ingredients and methods in the Caribbean and other tropical markets. Bitterness lower than export-type stouts since these beers do not have to be shipped abroad, and to suit local palate preferences.", + "style_comparison": "Tastes like a scaled-up Sweet Stout with higher fruitiness. Similar to some Imperial Stouts without the high bitterness, strong or burnt roastiness, and late hops, and with lower alcohol. Much sweeter and less hoppy than American Stouts. Much sweeter and less bitter than the similar-gravity Foreign Extra Stouts.", + "tags": "high-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, malty, roasty, sweet", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "50.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "30.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Similar to a Sweet Stout, but higher gravity. Pale and dark roasted malts and grains. Hops mostly for bitterness. May use adjuncts and sugar to boost gravity. Typically made with warm-fermented lager yeast.", + "examples": "ABC Extra Stout, Bahamian Strong Back Stout, Dragon Stout, Jamaica Stout, Lion Stout, Royal ExtraStout", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 50, + "fields": { + "name": "Foreign Extra Stout", + "category": "Dark British Beer", + "category_id": "16", + "style_id": "16D", + "category_description": "This category contains average to strong, bitter to sweet, modern British and Irish stouts that originated in England even if some are now more widely associated with Ireland. In this case, “British” means the broader British Isles not Great Britain.", + "overall_impression": "A very dark, rich, moderately strong, fairly dry stout with prominent roast flavors.", + "aroma": "Moderate to high roast, like coffee, dark chocolate, or lightly burnt grain. Low to medium fruitiness. May have a sweet aroma, or molasses, licorice, dried fruit, or vinous aromatics. Stronger versions can have a subtle, clean aroma of alcohol. Low earthy, herbal, or floral hop aroma optional. Low diacetyl optional.", + "appearance": "Very deep brown to black in color. Clarity usually obscured by deep color. Clear, if not opaque. Large tan to brown head with good retention.", + "flavor": "Moderate to high roast, like coffee, dark chocolate, or lightly burnt grain, although without a sharp bite. Low to medium esters. Medium to high bitterness. Moderately dry finish. Moderate earthy, herbal, or floral hop flavor optional. Medium-low diacetyl optional.", + "mouthfeel": "Medium-full to full body, often with a smooth, sometimes creamy character. May have a warming but not hot alcohol presence. Moderate to moderately-high carbonation.", + "comments": "Also known as Foreign Stout, Export Stout, and Foreign Export Stout. Historic versions (before WWI, at least) had the same OG as domestic Extra Stouts, but depending on the brewery could have had a higher ABV because it had a long secondary with Brett chewing away at it. The difference between domestic and foreign versions were the hopping and length of maturation.", + "history": "Stronger stouts brewed for the export market today, but with a history stretching back to the 18th and 19th centuries when they were more heavily-hopped versions of stronger export stouts. Vatted originally, but Guinness stopped this practice in the 1950s. Guinness Foreign Extra Stout (originally, West India Porter, later Foreign Extra Double Stout) was first brewed in 1801 according to Guinness with “extra hops to give it a distinctive taste and a longer shelf life in hot weather.”", + "style_comparison": "Similar in balance to an Irish Extra Stout, but with more alcohol. Not as big or intense as an Imperial Stout. Lacking the strong bitterness and high late hops of American Stout. Similar gravity as Tropical Stout, but with a drier finish andhigher bitterness.", + "tags": "high-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, balanced, roasty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "50.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "70.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "30.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Pale and dark roasted malts and grains, historically also could have used brown and amber malts. Hops mostly for bitterness, typically English varieties. May use adjuncts and sugar to boost gravity.", + "examples": "Coopers Best Extra Stout, Guinness Foreign Extra Stout, The Kernel Export Stout London 1890, La Cumbre Malpais Stout, Pelican Tsunami Export Stout, Ridgeway Foreign Export Stout", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 51, + "fields": { + "name": "British Strong Ale", + "category": "Strong British Ale", + "category_id": "17", + "style_id": "17A", + "category_description": "This category contains stronger, non-roasty ales of the British Isles. Covers the style space above bitters, milds, and brown ales while excluding porters and stouts.", + "overall_impression": "An ale of respectable alcoholic strength, traditionally bottled-conditioned and cellared. Can have a wide range of interpretations, but most will have varying degrees of malty richness, late hops and bitterness, fruity esters, and alcohol warmth. The malt and adjunct flavors and intensity can vary widely, but any combination should result in an agreeable palate experience.", + "aroma": "Malty-sweet with fruity esters, often with a complex blend of dried-fruit, caramel, nuts, toffee, or other specialty malt aromas. Some alcohol notes are acceptable, but shouldn’t be hot or solventy. Hop aromas can vary widely, but typically have earthy, resiny, fruity, or floral notes. The balance can vary widely, but most examples will have a blend of malt, fruit, hops, and alcohol in varying intensities.", + "appearance": "Amber to dark reddish-brown color; many are fairly dark. Generally clear, although darker versions may be almost opaque. Moderate to low cream- to light tan-colored head with average retention.", + "flavor": "Medium to high malt character often rich with nutty, toffee, or caramel flavors. Light chocolate notes are sometimes found in darker beers. May have interesting flavor complexity from brewing sugars. Balance is often malty, but may be well hopped, which affects the impression of maltiness. Moderate fruity esters are common, often with a dark fruit or dried fruit character. The finish may vary from medium dry to somewhat sweet. Alcoholic strength should be evident, not overwhelming. Low diacetyl optional, but generally not desirable.", + "mouthfeel": "Medium to full, chewy body. Alcohol warmth is often evident and always welcome. Low to moderate carbonation. Smooth texture.", + "comments": "An entry category more than a style; the strength and character of examples can vary widely. Fits in the style space between normal gravity beers and Barley Wines. Can include pale malty-hoppy beers, English winter warmers, strong dark milds, smaller Burton ales, and other unique beers in the general gravity range that don’t fit other categories. Judges should allow for a significant range in character, as long as the beer is within the alcohol strength range and has an interesting ‘British’ character, it likely fits the style.", + "history": "A collection of unrelated minor styles, each of which has its own heritage. Do not use this category grouping to infer a historical relationship between examples – none is intended. This is a modern British specialty judging category where the ‘special’ attribute is alcohol level.", + "style_comparison": "Significant overlap in gravity with Old Ale, but not having an aged character. A wide range of interpretations is possible. Should not be as rich or strong as an English Barley Wine. Stronger than the stronger everyday Strong Bitter, British Brown Ale, and English Porter. More specialty malt or sugar character than American Strong Ale.", + "tags": "high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.08000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "60.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Grists vary, often based on pale malt with caramel and specialty malts. Some darker examples suggest a light use of dark malts (e.g., chocolate, black malt). Sugary and starchy adjuncts (e.g., maize, flaked barley, wheat) are common. Finishing hops are traditionally English.", + "examples": "Fuller’s 1845, Harvey’s Elizabethan Ale, J.W. Lees Moonraker, McEwan’s Champion, Samuel Smith’s Winter Welcome, Shepherd Neame 1698", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 52, + "fields": { + "name": "Old Ale", + "category": "Strong British Ale", + "category_id": "17", + "style_id": "17B", + "category_description": "This category contains stronger, non-roasty ales of the British Isles. Covers the style space above bitters, milds, and brown ales while excluding porters and stouts.", + "overall_impression": "A stronger-than-averageEnglish ale, though usually not as strong or rich as an English Barley Wine, but usually malty. Warming. Shows positive maturation effects of a well-kept, aged beer.", + "aroma": "Malty-sweet with fruity esters, often with a complex blend of driedfruit, vinous, caramel, molasses, toffee, light treacle, or other specialty malt aromas. Some alcohol and nutty oxidative notes are acceptable, akin to those found in Sherry, Port, or Madeira. Hop aroma not usually present.", + "appearance": "Deep amber to very dark reddish-brown color, but most are fairly dark. Age and oxidation may darken the beer further. Clear, but can be almost opaque. Moderate to low cream- to light tan-colored head; retention average to poor.", + "flavor": "Medium to high malt character with a luscious malt complexity, often with nut, caramel,or molasses-like flavors. Light chocolate or roasted malt flavors are optional, but should never be prominent. Balance is often malty-sweet, but may be well hopped; the impression of bitterness often depends on amount of aging. Moderate to high fruity esters are common, and may take on a dried-fruit or vinous character. The finish may vary from dry to somewhat sweet. Extended aging may contribute oxidative flavors similar to a fine old Sherry, Port, or Madeira. Alcoholic strength should be evident, though not overwhelming. Low diacetyl optional.", + "mouthfeel": "Medium to full, chewy body, although older examples may be lower in body due to continued attenuation during conditioning. Alcohol warmth is often evident and always welcome. Low to moderate carbonation, depending on age and conditioning. Light acidity may be present, as well as some tannin if wood-aged; both are optional.", + "comments": "Strength and character vary widely. The predominant defining quality for this style is the impression of age, which can manifest itself in different ways (complexity, oxidation, leather, vinous qualities, etc.). Many of these qualities are otherwise faults, but if the resulting character of the beer is pleasantly drinkable and complex, then those characteristics are acceptable. In no way should those allowable characteristics be interpreted as making an undrinkably off-flavored beer as somehow in style. Old Peculier is a well-known but fairly unique beer that is quite different than other Old Ales.", + "history": "Historically, an aged ale used as stock ales for blending or enjoyed at full strength (stale or stock refers to beers that were aged or stored for a significant period of time). There are at least two definite types in Britain today, weaker, unaged draught ones that are similar to milds of around 4.5%, and stronger aged ones that are often 6-8% or more.", + "style_comparison": "Roughly overlapping the British Strong Ale and the lower end of the English Barley Wine styles, but always having an aged quality. The distinction between an Old Ale and a Barley Wine is somewhat arbitrary above 7% ABV, and generally means having a more significant aged quality.", + "tags": "high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty, aged", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.08800", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "60.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "10.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Composition varies, although generally similar to British Strong Ales. The age character is the biggest driver of the final style profile, which is more handling than brewing.", + "examples": "Avery Old Jubilation, Berlina Old Ale, Greene King Strong Suffolk Ale, Marston Owd Roger, Theakston Old Peculier", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 53, + "fields": { + "name": "Wee Heavy", + "category": "Strong British Ale", + "category_id": "17", + "style_id": "17C", + "category_description": "This category contains stronger, non-roasty ales of the British Isles. Covers the style space above bitters, milds, and brown ales while excluding porters and stouts.", + "overall_impression": "Rich, sweet malt depth with caramel, toffee, and fruity flavors. Full-bodied and chewy, with warming alcohol. Restrained bitterness, but not cloying or syrupy.", + "aroma": "Strong bready-toasty malt, with a high caramel and toffee aspect. A wide range of supportive caramelized sugar and toasty bread type aromas are possible (toasted breadcrumbs, ladyfingers, English biscuits, graham crackers, nougat, butterscotch, etc.). Faint hint of roast is sometimes noted. Low to moderate dark or dried fruit esters and alcohol. Very low earthy, floral, orange-citrus, or spicy hops optional.", + "appearance": "Light copper to dark brown color, often with deep ruby highlights. Clear. Usually has a large tan head, which may not persist. Legs may be evident in stronger versions.", + "flavor": "Rich, bready-toasty malt that is often full and sweet on the palate with caramel and toffee flavors, but balanced by alcohol and a hint of grainy roast in the finish. The malt often has caramelized sugar and toasty flavors of the same type as described in the aroma. Medium to low alcohol and esters (plums, raisins, dried fruit, etc.). Bitterness low in the balance, giving a sweet to medium-dry finish. Medium-low hop flavor optional, with similar descriptors as the aroma.", + "mouthfeel": "Medium-full to full-bodied, sometimes with a thick, chewy, sometimes creamy, viscosity. A smooth alcohol warmth is usually present and is desirable since it balances the malty sweetness. Moderate carbonation.", + "comments": "A range of strengths is allowable; not all versions are very strong. Also known as “Strong Scotch Ale,” the term “wee heavy” means “small strong” and traces to the beer that made the term famous, Fowler’s Wee Heavy, a 12 Guinea Ale.", + "history": "Descended from Edinburgh Ales, a stronger malty beer brewed in a range of strengths, similar to Burton Ale (although at half the hopping rate). Modern versions have two main variants, a more modest 5% ABV beer and the more widely known 8-9% ABV beer. As gravities decreased over times, some of the variations ceased to be produced.", + "style_comparison": "Somewhat similar to an English Barley Wine, but often darker and more caramelly.", + "tags": "high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.13000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "17.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.04000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "10.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "14.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "25.00000", + "ingredients": "Scottish pale ale malt, a wide range of other ingredients are possible, including adjuncts. Some may use crystal malt or darker grains for color. No peat-smoked malt.", + "examples": "Belhaven Wee Heavy, Broughton Old Jock, McEwan’s Scotch Ale, Orkney Skull Splitter, Traquair House Ale, The Duck-Rabbit Wee Heavy Scotch-Style Ale", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": "See Category 14 Scottish Ale introduction for general characteristics of Scottish beer.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 54, + "fields": { + "name": "English Barley Wine", + "category": "Strong British Ale", + "category_id": "17", + "style_id": "17D", + "category_description": "This category contains stronger, non-roasty ales of the British Isles. Covers the style space above bitters, milds, and brown ales while excluding porters and stouts.", + "overall_impression": "A strong and richly malty ale witha pleasant fruity or hoppy depth. A wintertime sipper with a full, chewy body and warming alcohol.", + "aroma": "Very rich, strongly malty, often with a caramel-like aroma in darker versions or a light toffee character in paler versions. May have a rich character including bready, toasty, or toffee notes.May have moderate to strong fruitiness, often with a dark- or dried-fruit character, particularly in dark versions. The hop aroma may range from mild to assertive, and is typically floral, earthy, tea-like, or marmalade-like. Alcohol may be low to moderate, but are soft and rounded. Aromatic intensity subsides with age, and can develop aquality like sherry, wine, or port.", + "appearance": "Color ranging from golden amber to dark brown, often with ruby highlights and significant depth of color. Should not be black or opaque. Low to moderate off-white head.May have low head retention. Brilliant clarity, particularly when aged, although younger versions can have a little haze. High alcohol and viscosity may be visible aslegs.", + "flavor": "Medium to high rich, malty sweetness, often complex and multi-layered, with bread, biscuit, and caramel malt flavors (more toffee-like in paler versions) and having a medium to highfruitiness (often with dark or dried fruit aspects). When aged, these fruity components come out more, and darker versions will have a higher level than paler ones. The hop aroma, flavor, and bitterness can vary wildly. Light to strong hops, with an English character (floral, earthy, tea, or marmalade-like) are common. Bitterness can be light to fairly strong, fading with time, so the balance can be malty to somewhat bitter. Stronger versions will have a little alcohol character. The finish and aftertaste can be moderately dry to moderately sweet, often depending on age.Some oxidative or vinous flavors may be present, and often complex alcohol flavors should be evident. Pale versions typically seem more bitter, better attenuated, and more hop-forward than darker versions.", + "mouthfeel": "Full-bodied and chewy, with a velvety, luscious texture, declining with age. A smooth warmth from aged alcohol should be present, but shouldn’t burn. Carbonation may be low to moderate, depending on age and conditioning.", + "comments": "The richest and strongest of modern English Ales. Their character can change significantly over time; both young and old versions should be appreciated for what they are. The malt profile can vary widely; not all examples will have all possible flavors or aromas. Paler varieties won’t have the caramel and richer malt flavors, nor will they typically have the darker dried fruits – don’t expect flavors and aromatics that are impossible from a beer of that color. Typically written as “Barley Wine” in the UK, and “Barleywine” in the US.", + "history": "A modern descendent of the strongest Burton Ales. Bass No. 1 was first called a barleywine in 1872. Traditionally a darker beer until Tennant (now Whitbread) first produced Gold Label, a gold-colored version in 1951. The original style that inspired derivative variations in Belgium, the United States, and elsewhere in the world.", + "style_comparison": "Less hoppy and bitter, maltier and fruitier than American Barleywine. Can overlap Old Ale on the lower end of the range, but without heavier signs of age. Not as caramelly and often not as sweet as a Wee Heavy.", + "tags": "very-high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.08000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.12000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "35.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "70.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.03000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "8.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "12.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "British pale ale andcrystal malts. Limited use of dark malts. Often uses brewing sugars. English hops. British yeast.", + "examples": "Burton Bridge Thomas Sykes Old Ale, Coniston No. 9 Barley Wine, Fuller’s Golden Pride, Hogs Back A over T, J.W. Lee’s Vintage Harvest Ale, Robinson’s Old Tom", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 55, + "fields": { + "name": "Blonde Ale", + "category": "Pale American Ale", + "category_id": "18", + "style_id": "18A", + "category_description": "This category contains modern American ales of average strength and light color that are moderately malty to moderately bitter.", + "overall_impression": "Easy-drinking, approachable, malt-oriented American craft beer, often with interesting fruit, hop, or character malt notes. Well-balanced and clean, is a refreshing pint without aggressive flavors.", + "aroma": "Light to moderate malty aroma, generally neutral or grainy, possibly with a light bread or caramel note. Low to moderate fruitiness is optional, but acceptable. May have a low to medium hop aroma, and can reflect almost any hop variety although citrusy, floral, fruity, and spicy notes are common. Clean fermentation profile.", + "appearance": "Light yellow to deep gold in color. Clear to brilliant. Low to medium white head with fair to good retention.", + "flavor": "Initial soft maltiness, but can also have light character malt flavor (e.g., bread, toast, biscuit, wheat). Caramel flavors usually absent; if present, they are typically low-color caramel or honey notes. Low to medium fruity esters optional, but are welcome. Light to moderate hop flavor (any variety), but shouldn’t be overly aggressive. Medium-low to medium bitterness, but the balance is normally towards the malt or even between malt and hops. Finishes medium-dry to slightly malty; an impression of sweetness is often an expression of lower bitterness than actual residual sweetness. Clean fermentation profile.", + "mouthfeel": "Medium-light to medium body. Medium to high carbonation. Smooth without being heavy.", + "comments": "Oxidized versions can develop caramel or honey notes, which should not be mistaken for similar malt-derived flavors. Sometimes known as Golden Ale or simply a Gold.", + "history": "An American craft beer style produced as a faster-produced alternative to standard American lagers. First believed to be produced in 1987 at Catamount. Often positioned as an entry-level house ale.", + "style_comparison": "Typically has more flavor than American Lager and Cream Ale. Less bitterness than an American Pale Ale. Perhaps similar to some maltier examples of Kölsch.", + "tags": "standard-strength, pale-color, any-fermentation, north-america, craft-style, pale-ale-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "28.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Generally all-malt, but can include wheat malt or sugar adjuncts. Any hop variety can be used. Clean American, lightly fruity English, or Kölsch yeast. May also be made with lager yeast, or cold-conditioned.", + "examples": "Firestone Walker 805, Kona Big Wave Golden Ale, Real Ale Firemans #4 Blonde Ale, Russian River Aud Blonde, Victory Summer Love, Widmer Citra Summer Blonde Brew", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 56, + "fields": { + "name": "American Pale Ale", + "category": "Pale American Ale", + "category_id": "18", + "style_id": "18B", + "category_description": "This category contains modern American ales of average strength and light color that are moderately malty to moderately bitter.", + "overall_impression": "An average-strength, hop-forward, pale American craft beer with sufficient supporting malt to make the beer balanced and drinkable. The clean hop presence can reflect classic or modern American or New World hop varieties with a wide range of characteristics.", + "aroma": "Moderate to moderately-high hop aroma from American or New World hop varieties with a wide range of possible characteristics, including citrus, floral, pine, resin, spice, tropical fruit, stone fruit, berry, or melon. None of these specific characteristics are required, but a hoppy aroma should be apparent. Low to moderate neutral to grainy maltiness supports the hop presentation, and can show low amounts of specialty malt character (e.g., bread, toast, biscuit, caramel). Fruity esters optional, up to moderate in strength. Fresh dry-hop aroma optional.", + "appearance": "Pale golden to amber. Moderately large white to off-white head with good retention. Generally quite clear.", + "flavor": "Hop and malt character similar to aroma (same intensities and descriptors apply).Caramel flavors are often absent or fairly restrained, but are acceptable as long as they don’t clash with the hops.Moderate to high bitterness. Clean fermentation profile. Fruity yeast esters can be moderate to none, although many hop varieties are quite fruity.Medium to dry finish.The balance is typically towards the late hops and bitterness; the malt presence should be supportive, not distracting. Hop flavor and bitterness often linger into the finish, but the aftertaste should generally be clean and not harsh. Fresh dry-hop flavor optional.", + "mouthfeel": "Medium-light to medium body. Moderate to high carbonation. Overall smooth finish without astringency or harshness.", + "comments": "Modern American versions are often just lower gravity IPAs. Traditionally was a style that allowed for experimentation with hop varieties and usage methods, which can now often be found as international adaptations in countries with an emerging craft beer market. Judges should allow for characteristics of modern American or New World hops as they are developed and released.", + "history": "A modern American craft beer era adaptation of English pale ale, reflecting indigenous ingredients. Sierra Nevada Pale Ale was first made in 1980 and helped popularize the style. Prior to the explosion in popularity of IPAs, this style was the most well-known and popular of American craft beers.", + "style_comparison": "Typically lighter in color, cleaner in fermentation profile, and having fewer caramel flavors than English counterparts. There can be some overlap in color between American Pale Ale and American Amber Ale. The American Pale Ale will generally be cleaner, have a less caramelly malt profile, less body, and often more finishing hops. Less bitterness in the balance and alcohol strength than an American IPA. Maltier, more balanced and drinkable, and less intensely hop-focused and bitter than session-strength American IPAs (aka Session IPAs). More bitter and hoppy than a Blonde Ale.", + "tags": "standard-strength, pale-color, top-fermented, north-america, craft-style, pale-ale-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "50.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "5.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "10.00000", + "ingredients": "Neutralpale malt. American or New World hops. Neutral to lightly fruity American or English ale yeast. Small amounts of various specialty malts.", + "examples": "Deschutes Mirror Pond Pale Ale, Half Acre Daisy Cutter Pale Ale, Great Lakes Burning River, La Cumbre Acclimated APA, Sierra Nevada Pale Ale, Stone Pale Ale 2.0", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 57, + "fields": { + "name": "American Amber Ale", + "category": "Amber and Brown American Beer", + "category_id": "19", + "style_id": "19A", + "category_description": "This category contains modern American amber and brown top-fermented ales and warm-fermented lagers of standard strength that can be balanced to bitter.", + "overall_impression": "An amber, hoppy, moderate-strength American craft beer with a malty caramel flavor. The balance can vary quite a bit, with some versions being fairly malty and others being aggressively hoppy. Hoppy and bitter versions should not have clashing flavors with the caramel malt profile.", + "aroma": "Low to moderate hop aroma reflective of American or New World hop varieties (citrus, floral, pine, resin, spice, tropical fruit, stone fruit, berry, or melon). A citrusy hop character is common, but not required. Moderately-low to moderately-high maltiness, usually with a moderate caramel character, that can either support, balance, or sometimes mask the hop presentation. Esters vary from moderate to none.", + "appearance": "Deep amber to coppery-brown in color, sometimes with a reddish hue. Moderately large off-white head with good retention. Generally quite clear.", + "flavor": "Moderate to high hop flavor with similar characteristics as the aroma. Malt flavors are moderate to strong, and usually show an initial malty sweetness followed by a moderate caramel flavorand sometimes toasty or biscuity malt flavors in lesser amounts. Dark or roasted malt flavors absent. Moderate to moderately-high bitterness. Balance can vary from somewhat malty to somewhat bitter. Fruity esters can be moderate to none. Caramel sweetness, hop flavor, and bitterness can linger somewhat into the medium to full yet dry finish.", + "mouthfeel": "Medium to medium-full body. Medium to high carbonation. Overall smooth finish without astringency. Stronger versions may have a slight alcohol warmth.", + "comments": "Can overlap in color with darker American pale ales, but with a different malt flavor and balance. A range of balance exists in this style, from balanced and malty to more aggressively hopped.", + "history": "A modern American craft beer style developed as a variation from American Pale Ales. Mendocino Red Tail Ale was first made in 1983, and was known regionally as a Red Ale. This served as the progenitor of Double Reds (American Strong Ale), Red IPAs, and other hoppy, caramelly beers.", + "style_comparison": "Darker, more caramelly, more body, and generally less bitter in the balance than American Pale Ales. Less alcohol, bitterness, and hop character than Red IPAs. Less strength, malt, and hop character than American Strong Ales. Less chocolate and dark caramel than an American Brown Ale.", + "tags": "standard-strength, amber-color, top-fermented, north-america, craft-style, amber-ale-family, balanced, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "10.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "17.00000", + "ingredients": "Neutral pale ale malt. Medium to dark crystal malts. American or New World hops, often with citrusy flavors, are common but others may also be used. Neutral to lightly estery yeast.", + "examples": "Anderson Valley Boont Amber Ale, Bell’s Amber Ale, Full Sail Amber, North Coast Red Seal Ale, Saint Arnold Amber Ale, Tröegs Hopback Amber Ale", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 58, + "fields": { + "name": "California Common", + "category": "Amber and Brown American Beer", + "category_id": "19", + "style_id": "19B", + "category_description": "This category contains modern American amber and brown top-fermented ales and warm-fermented lagers of standard strength that can be balanced to bitter.", + "overall_impression": "A toasty and caramelly, fairly bitter, standard-strength beer with an interesting fruitiness and rustic, woody hop character. Smooth and well carbonated.", + "aroma": "Moderate to high herbal, resinous, floral, or minty hops. Light fruitiness acceptable. Low to moderate caramel or toasty malt supports the hops.", + "appearance": "Medium amber to light copper color. Generally clear. Moderate off-white head with good retention.", + "flavor": "Moderately malty with a pronounced hop bitterness. The malt character usually has toast (not roast) and caramel flavors. Low to moderately high hop flavor, usually showing rustic, traditional American hop qualities (often herbal, resinous, floral, minty). Finish fairly dry and crisp, with a lingering hop bitterness and a firm, grainy malt flavor. Light fruity esters are acceptable, but otherwise clean.", + "mouthfeel": "Medium-bodied. Medium to medium-high carbonation.", + "comments": "This style is narrowly defined around the prototypical Anchor Steam example, although allowing other typical ingredients of the era. Northern Brewer hops are not a strict requirement for the style.Modern American and New World-type hops (especially citrusy ones) are inappropriate.", + "history": "American West Coast original, brewed originally as Steam Beer during the Gold Rush era. Large shallow open fermenters (coolships) were used to compensate for the lack of refrigeration and to take advantage of the cool temperatures in the San Francisco Bay area. Modern versions are based on Anchor Brewing re-launching the style in the 1970s.", + "style_comparison": "Superficially similar to an American Amber Ale, but with specific choices for malt and hopping – the hop flavor and aroma is traditional (not modern) American hops, malt flavors are toastier, the hopping is always assertive, and a warm-fermented lager yeast is used. Less attenuated, less carbonated and less fruity than Australian Sparkling ale.", + "tags": "standard-strength, amber-color, bottom-fermented, north-america, traditional-style, amber-lager-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "45.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01100", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "9.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Pale ale malt, non-citrusy hops (often Northern Brewer), small amounts of toasted malt or crystal malts. Lager yeast; however, some strains (often with the mention of “California” in the name) work better than others at the warmer fermentation temperatures (55 to 60 °F) typically used. Note that some German yeast strains produce inappropriate sulfury character.", + "examples": "Anchor Steam, Steamworks Steam Engine Lager", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 59, + "fields": { + "name": "American Brown Ale", + "category": "Amber and Brown American Beer", + "category_id": "19", + "style_id": "19C", + "category_description": "This category contains modern American amber and brown top-fermented ales and warm-fermented lagers of standard strength that can be balanced to bitter.", + "overall_impression": "A malty but hoppy standard-strength American ale frequently with chocolate and caramel flavors. The hop flavor and aroma complement and enhance the malt rather than clashing with it.", + "aroma": "Moderate malty-sweet to malty-rich aroma with chocolate, caramel, nutty, or toasty qualities. Hop aroma is typically low to moderate, of almost any type that complements the malt. Some interpretations of the style may optionally feature a stronger hop aroma, an American or New World hop character (citrusy, fruity, tropical, etc.), or a dry-hopped aroma. Fruity esters are moderate to very low. The dark malt character is more robust than other brown ales, yet stops short of being overly Porter-like.", + "appearance": "Light to very dark brown color. Clear. Low to moderate off-white to light tan head.", + "flavor": "Medium to moderately-high malty-sweet or malty-rich flavor with chocolate, caramel, nutty, or toasty malt complexity, with medium to medium-high bitterness. Medium to medium-dry finish with an aftertaste of both malt and hops. Light to moderate hop flavor, sometimes citrusy, fruity, or tropical, although any hop flavor that complements the malt is acceptable. Very low to moderate fruity esters. The malt and hops are generally equal in intensity, but the balance can vary in either direction. Should not have a roasted character suggestive of a Porter or Stout.", + "mouthfeel": "Medium to medium-full body. More bitter versions may have a dry, resiny impression. Moderate to moderately-high carbonation. Stronger versions may be lightly warming.", + "comments": "Most commercial American Browns are not as aggressive as the original homebrewed versions, and some modern craft-brewed examples. This style reflects the current commercial offerings typically marketed as American Brown Ales rather than the hoppier, stronger homebrew versions from the early days of homebrewing. These IPA-strength brown ales should be entered as 21BSpecialty IPA", + "history": "An American style from the early modern craft beer era. Derived from English Brown Ales, but with more hops. Pete’s Wicked Ale (1986) defined the style, which was first judged at the Great American Beer Festival in 1992.", + "style_comparison": "More chocolate and caramel flavors than American Pale or Amber Ales, typically with less prominent bitterness in the balance. Less bitterness, alcohol, and hop character than Brown IPAs. More bitter and generally hoppier than English Brown Ales, with a richer malt presence, usually higher alcohol, and American or New World hop character.", + "tags": "standard-strength, dark-color, top-fermented, north-america, craft-style, brown-ale-family, balanced, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "18.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "35.00000", + "ingredients": "Pale malt, plus crystal and darker malts (typically chocolate). American hops are typical, but continental or New World hops can also be used.", + "examples": "Avery Ellie’s Brown Ale, Big Sky Moose Drool Brown Ale, Brooklyn Brown Ale, Bell’s Best Brown, Smuttynose Old Brown Dog Ale, Telluride Face Down Brown", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": "Brown IPA.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 60, + "fields": { + "name": "American Porter", + "category": "American Porter and Stout", + "category_id": "20", + "style_id": "20A", + "category_description": "These beers all evolved from their English namesakes to be wholly transformed by American craft brewers. Generally, these styles are bigger, stronger, more roast-forward, and more hop-centric than their traditional Anglo cousins. These styles are grouped together due to a similar shared history and flavor profile.", + "overall_impression": "A malty, bitter, and often somewhat hoppydark beer with a balanced,roasted, and frequently chocolatey character.", + "aroma": "Medium-light to medium-strong roast aroma, often with a chocolate, light coffee,or lightly burnt character, sometimes with a background caramel or toffee sweetness, or a malty richness. The resiny, earthy, or floral hop character can vary from low to high. Moderate fruity esters optional. Should not seem sharp, acrid, or acidic. The malt-hop balance can vary, but it should always have a roasted malt aroma.", + "appearance": "Medium brown to very dark brown, often with ruby- or garnet-like highlights. Can approach black in color. Clear, if not opaque. Full, tan-colored head with moderately good head retention.", + "flavor": "Moderately strong roasted flavor, often with a chocolate and lightly burnt character, sometimes with a sweet caramel or malty richness in support. Medium to high bitterness, and a dry to medium-sweet finish. Dark malts may sharpen this impression, but should not add an acrid, burnt, or harsh flavor. Low to high resiny, earthy, or floral hop flavor, which should not clash with the dark malt. Dry-hopped versions may have a fresh hop or resiny flavor. Moderate fruity esters optional. Should not have an acidic bite.", + "mouthfeel": "Medium to medium-full body. Moderately low to moderately high carbonation. Stronger versions may have a slight alcohol warmth. May have a slight dark malt astringency, but this character should not be strong.", + "comments": "Sometimes called Robust Porter, becoming increasingly hard to find. A rather broad style open to interpretation by the brewer. Dark malt intensity and flavor can vary significantly. May or may not have a strong hop character, or significant fermentation byproducts; thus may seem to have an “American” or “British” character.", + "history": "A stronger, more aggressive version of earlier Pre-Prohibition Porters or English Porters, first brewed in the modern craft beer era (introduced in 1974). This style describes the modern craft version; see Historical Beer", + "style_comparison": "More bitter and often stronger with more dark malt qualities and dryness than English Porters or Pre-Prohibition Porters. Less strong and assertive than American Stouts.", + "tags": "standard-strength, dark-color, top-fermented, north-america, craft-style, porter-family, bitter, roasty, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "50.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01200", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "22.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Pale base malt, frequently crystal malt. Dark malts, often black malt or chocolate malt. American hops typically used for bittering, but US or UK finishing hops can be used. Ale yeast can either be clean US versions or characterful English varieties.", + "examples": "Anchor Porter, Bell’s Porter, Deschutes Black Butte Porter, Great Lakes Edmund Fitzgerald Porter, Sierra Nevada Porter, Smuttynose Robust Porter", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": "Pre-Prohibition Porter for the older US version.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 61, + "fields": { + "name": "American Stout", + "category": "American Porter and Stout", + "category_id": "20", + "style_id": "20B", + "category_description": "These beers all evolved from their English namesakes to be wholly transformed by American craft brewers. Generally, these styles are bigger, stronger, more roast-forward, and more hop-centric than their traditional Anglo cousins. These styles are grouped together due to a similar shared history and flavor profile.", + "overall_impression": "A fairly strong, highly roasted, bitter, hoppy dark stout. The body and dark flavors typical of stouts with a more aggressive American hop character and bitterness.", + "aroma": "Moderate to strong roast aroma, often with a roasted coffee or dark chocolate quality. Burnt or charcoal aromas are acceptable at low levels. Medium to very low hop aroma, often with a citrusy or resiny character. Medium esters optional. Light alcohol optional. Should not seem sharp, acrid, or acidic.", + "appearance": "Generally a jet black color, although some may appear very dark brown. Large, persistent head of light tan to light brown in color. Usually opaque.", + "flavor": "Moderate to very high roasted flavors, often tasting of coffee, dark or bittersweet chocolate, orroasted coffee beans. May taste of slightly burnt coffee grounds, but this character should not be prominent. Low to medium malt sweetness, often with rich chocolate or caramel flavors. Medium to high bitterness. Low to high hop flavor, generally citrusy or resiny. Medium to dry finish, occasionally with a lightly burnt quality. Low esters optional. Light but smooth alcohol flavor optional.", + "mouthfeel": "Medium to full body. Can be somewhat creamy. Can have a bit of roast-derived astringency, but this character should not be excessive. Medium-high to high carbonation. Light to moderately strong alcohol warmth, but smooth and not excessively hot.", + "comments": "Breweries express individuality through varying the roasted malt profile, malt sweetness and flavor, and the amount of finishing hops used. Generally has bolder roasted malt flavors and hopping than other traditional stouts (except Imperial Stouts). Becoming increasingly hard to find.", + "history": "A modern craft beer and homebrew style that applied a more aggressive American hopping regime to a strong traditional English or Irish Stout. The homebrew version was once known as West Coast Stout, a common naming scheme for a more highly-hopped beer.", + "style_comparison": "Like a hoppy, bitter, strongly roasted Irish Extra Stout. Much more roast and body than a Black IPA. Bigger, stronger versions belong in the Imperial Stout style. Stronger and more assertive, particularly in the dark malt or grain additions and hop character, than American Porter.", + "tags": "high-strength, dark-color, top-fermented, north-america, craft-style, stout-family, bitter, roasty, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "35.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "75.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "30.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Common American base malts, yeast, and hops. Varied use of dark and roasted malts, as well as caramel-type malts. Adjuncts or additives may be present in low quantities to add complexity.", + "examples": "Avery Out of Bounds Stout, Bell’s Kalamazoo Stout, Deschutes Obsidian Stout, Sierra Nevada Stout, Trillium Secret Stairs", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 62, + "fields": { + "name": "Imperial Stout", + "category": "American Porter and Stout", + "category_id": "20", + "style_id": "20C", + "category_description": "These beers all evolved from their English namesakes to be wholly transformed by American craft brewers. Generally, these styles are bigger, stronger, more roast-forward, and more hop-centric than their traditional Anglo cousins. These styles are grouped together due to a similar shared history and flavor profile.", + "overall_impression": "An intensely-flavored, very strong, very dark stout with a broad range of interpretations. Roasty-burnt malt with a depth of dark or dried fruit flavors, and a warming, bittersweet finish. Despite the intense flavors, the components need to meld together to create a complex, harmonious beer, not a hot mess – sometimes only accomplished with age.", + "aroma": "Rich, deep, complex, and often quite intense, with a pleasant blend of roast, fruit, hops, and alcohol. Light to moderately strong roast can have a coffee, bittersweet or dark chocolate, cocoa, black licorice, tar, or slightly burnt grain quality, sometimes with a light caramel sweetness or toasty maltiness. Low to moderately strong esters often perceived as dark or dried fruits like plums, prunes, figs, black currants, or raisins. Very low to fairly aggressive hops, often English or American in character. Alcohol flavor optional, but should not be sharp, hot, or solventy. The balance between these main four components can vary greatly; not all need to be noticeable, but those present should have a smooth interplay. Age can add another dimension, including a vinous or port-like impression, but not sourness. Age can decrease aroma intensity.", + "appearance": "Color ranges from very dark reddish-brown to jet black. Opaque. Deep tan to dark brown head. Generally has a well-formed head, although head retention may be low to moderate. High alcohol and viscosity may be visible as legs.", + "flavor": "Like the aroma, a complex mix of roast, fruit, hops, and alcohol (same descriptors apply). The flavors can be quite intense, often greater than in the aroma, but the same warning about the balance varying greatly still applies. Medium to aggressively high bitterness. The maltiness balances and supports the other flavors, and may have qualities of bread, toast, or caramel. The palate and finish can be fairly dry to moderately sweet, an impression that often changes with age. Should not by syrupy or cloying. Aftertaste of roast, bitterness, and warmth. Same age effects as in the aroma apply.", + "mouthfeel": "Full to very full-bodied and chewy, with a velvety, luscious texture. The body and texture may decline with age. Gentle, smooth warmth should be present and noticeable, but as a background character. Low to moderate carbonation.", + "comments": "Sometimes known as Russian Imperial Stout or RIS. Varying interpretations exist with American versions having greater bitterness, and more roasted character and late hops, while English varieties often reflect a more complex specialty malt character with a more forward ester profile. Not all Imperial Stouts have a clearly ‘English’ or ‘American’ character; anything in betweenis allowable as well, which is why it is counter-productive to define strict sub-types. Judges must be aware of the broad range of the style, and not try to judge all examples as clones of a specific commercial beer.", + "history": "A style with a long, although not necessarily continuous, heritage. Traces roots to strong English porters brewed for export in the 1700s, and said to have been popular with the Russian Imperial Court. After the Napoleonic wars interrupted trade, these beers were increasingly sold in England. The style eventually all but died out, until being popularly embraced in the modern craft beer era in England as a revival export and in the United States as anadaptation by extending the style with American characteristics.", + "style_comparison": "Darker and more roasty than Barleywines, but with similar alcohol. More complex, with a broader range of possible flavors, than lower-gravity stouts.", + "tags": "very-high-strength, dark-color, top-fermented, british-isles, north-america, traditional-style, craft-style, stout-family, malty, bitter, roasty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.11500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "50.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "90.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.03000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "8.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "12.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "30.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Pale malt with significant roasted malts or grain. Flaked adjuncts common. American or English ale yeast and hops are typical. Ages very well.Increasingly used as the base beer for many specialty styles.", + "examples": "American –Bell’s Expedition Stout, Great Divide Yeti Imperial Stout, North Coast Old Rasputin Imperial Stout, Oskar Blues Ten Fidy, Sierra Nevada Narwhal Imperial Stout; English – 2SP Brewing Co The Russian, Courage Imperial Russian Stout, Le Coq Imperial Extra Double Stout, Samuel Smith Imperial Stout, Thornbridge Saint Petersburg", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": "Traditionally an English style, but it is currently much more popular and widely available in America and internationally, where it is a craft beer favorite, not a historical curiosity.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 63, + "fields": { + "name": "American IPA", + "category": "IPA", + "category_id": "21", + "style_id": "21A", + "category_description": "The IPA category is for modern American IPAs and their derivatives. This does not imply that English IPAs aren’t proper IPAs or that there isn’t a relationship between them. This is simply a method of grouping similar styles for competition purposes. English IPAs are grouped with other English-derived beers, and the stronger Double IPA is grouped with stronger American beers. The term “IPA” is intentionally not spelled out as “India Pale Ale” since none of these beers historically went to India, and many aren’t pale. However, the term IPA has come to be a balance-defined style in modern craft beer.", + "overall_impression": "A decidedly hoppy and bitter, moderately strong,pale American ale. The balance is hop-forward, with a clean fermentation profile, dryish finish, and clean, supporting malt allowing a creative range of hop character to shine through.", + "aroma": "A prominent to intense hop aroma often featuring American or New World hop characteristics, such as citrus, floral, pine, resin, spice, tropical fruit, stone fruit, berry, or melon. Low to medium-low clean, grainy maltiness supports the hop presentation. Generally clean fermentation profile, but light fruitiness acceptable. Restrained alcohol optional.", + "appearance": "Color ranging from medium gold to light reddish-amber. Clear, butlight haze allowable. Medium-sized, white to off-white head with good persistence.", + "flavor": "Medium to very high hop flavor (same descriptors as aroma). Low to medium-low clean and grainy maltiness, possibly with light caramel and toast flavors. Medium-high to very high bitterness.Dry to medium-dry finish. Hoppy, bitter aftertaste with supportive malt. Low esters optional. Background clean alcohol flavor optional.", + "mouthfeel": "Medium-light to medium body, with a smooth texture. Medium to medium-high carbonation. No harshness. Very light, smooth warmth optional.", + "comments": "The basis for many modern variations, including the stronger Double IPA as well as IPAs with various other ingredients. Those other IPAs should generally be entered in the 21B Specialty IPA style. An India Pale Lager (IPL) can be entered as an American IPA if it has a similar character, otherwise 34B Mixed-Style Beer. Oak is inappropriate in this style; if noticeably oaked, enter in 33A Wood-Aged Beer. Dry, sharply bitter, clear examples are sometimes known as West Coast IPA, which is really just a type of American IPA.", + "history": "The first modern American craft beer adaptation of this traditional English style is generally believed to be Anchor Liberty Ale, first brewed in 1975 and using whole Cascade hops; the style has evolved beyond that original beer, which now tastes more like an American Pale Ale in comparison. American-made IPAs from earlier eras were not unknown (particularly the well-regarded Ballantine’s IPA, an oak-aged beer using an old English recipe). This style is based on the modern craft beer examples.", + "style_comparison": "Stronger and more highly hopped than American Pale Ale. Compared to English IPA, has less caramel, bread, and toast; often more American or New World hops; fewer yeast-derived esters; less body and often a more hoppy balance; and is slightly stronger than most examples. Less alcohol than a Double IPA, but with a similar balance.", + "tags": "high-strength, pale-color, top-fermented, north-america, craft-style, ipa-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "40.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "70.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Pale base malt. American or English yeast with a clean or slightly fruity profile. Generally all-malt, but sugar additions are acceptable. Restrained use of crystal malts.Often uses American or New World hops but any arevarieties are acceptable; new hop varieties continue to be released and may be used even if they do not have the sensory profiles listed as examples.", + "examples": "Bell’s Two-Hearted Ale, Cigar City Jai Alai, Fat Heads Head Hunter IPA, Firestone Walker Union Jack, Maine Lunch, Russian River Blind Pig IPA", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 64, + "fields": { + "name": "Specialty IPA", + "category": "IPA", + "category_id": "21", + "style_id": "21B", + "category_description": "The IPA category is for modern American IPAs and their derivatives. This does not imply that English IPAs aren’t proper IPAs or that there isn’t a relationship between them. This is simply a method of grouping similar styles for competition purposes. English IPAs are grouped with other English-derived beers, and the stronger Double IPA is grouped with stronger American beers. The term “IPA” is intentionally not spelled out as “India Pale Ale” since none of these beers historically went to India, and many aren’t pale. However, the term IPA has come to be a balance-defined style in modern craft beer.", + "overall_impression": "A beer with the dryness, hop-forward balance, and flavor characteristics of an American IPA, but darker in color. Darker malts add a gentle and supportive flavor, not a strongly roasted or burnt character.", + "aroma": "Moderate to high hop aroma, often with a stone fruit, tropical, citrusy, resinous, pine, berry, or melon character. Very low to moderate malt, possibly with light chocolate, coffee, or toast notes, as well as a background caramel sweetness. Clean fermentation profile, but light esters acceptable.", + "appearance": "Dark brown to black color. Clear, if not opaque. Light haze allowable, but should not be murky. Light tan to tan head, moderate size, persistent.", + "flavor": "Medium-low to high hop flavor, same descriptors as aroma. Low to medium malt flavor, with restrained chocolate or coffee notes, but not burnt or ashy. The roasted notes should not clash with the hops. Light caramel or toffee optional. Medium-high to very high bitterness. Dry to slightly off-dry finish, with a bitter but not harsh aftertaste, often with a light roast flavor that can contribute to the dry impression. Low to moderate esters optional. Background alcohol flavor optional.", + "mouthfeel": "Smooth.Medium-light to medium body. Medium carbonation. Light creaminess optional. Light warmth optional.", + "comments": "Most examples are standard strength. Strong examples can sometimes seem like big, hoppy porters if made too extreme, which hurts their drinkability.", + "history": "An American IPA variantfirst commercially produced by Greg Noonan as Blackwatch IPA around 1990. Popularized in the Pacific Northwest and Southern California of the US starting in the early-mid 2000s, and was a popular fad in the early 2010s before fading into obscurity in the US.", + "style_comparison": "Balance and overall impression of an American or Double IPA with restrained roast similar to the type found in Schwarzbier. Not as rich and roasty as American Stout and Porter, and with less body and increased smoothness and drinkability.", + "tags": "high-strength, dark-color, top-fermented, north-america, craft-style, ipa-family, specialty-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.08500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "50.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "90.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "25.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Debittered roast malts. Any American or New World hop character is acceptable; new hop varieties continue to be released and should not constrain this style to the example hop characteristics listed.", + "examples": "21st Amendment Back in Black, Duck-Rabbit Hoppy Bunny ABA, Stone Sublimely Self-Righteous Black IPA", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "Entrant must specify a strength (session, standard, double); if no strength is specified, standard will be assumed. Entrant must specify specific type of Specialty IPA from the list of Currently Defined Typesidentified in the Style Guidelines, or as amended by Provisional Styles on the BJCP website; OR the entrant must describe the type of Specialty IPA and its key characteristics in comment form so judges will know what to expect. Entrants may specify specific hop varieties used, if entrants feel that judges may not recognize the varietal characteristics of newer hops. Entrants may specify a combination of defined IPA types (e.g., Black Rye IPA) without providing additional descriptions.", + "notes": "Specialty IPAis a competition entry category, not a distinct style. Beers entered here are not experimental beers; they are a collection of currently-produced types of beer that may or may not have any market longevity. This category also allows for expansion, so potential future IPA variants (St. Patrick’s Day Green IPA, Romulan Blue IPA, Zima Clear IPA, etc.) have a place to be entered without rewriting the style guidelines. The only common element is that they have the balance and overall impression of an IPA (typically, an American IPA) but with some minor tweak.The term ‘IPA’ is used as a singular descriptor of a type of hoppy, bitter beer. It is not meant to be spelled out as ‘India Pale Ale’ when used in the context of a Specialty IPA. None of these beers ever historically went to India, and many aren’t pale. But the craft beer market knows what to expect in balance when a beer is described as an ‘IPA’ – so the modifiers used to differentiate them are based on that concept alone.The Specialty IPA category is not intended for Classic-style IPAs with added ingredients (such as fruit, spice, wood, smoke, grains, or sugars) – these should be entered in the appropriate Specialty-Type beer category (Fruit Beer, SHV Beer, etc.). The Specialty IPA styles are considered Classic Styles for entering in Specialty-Type category purposes. Classic-style IPAs with unique or special hops should still be entered in the appropriate Classic-style IPA style.", + "currently_defined_types": "Belgian IPA, Black IPA, Brown IPA, Red IPA, Rye IPA, White IPA, Brut IPA", + "strength_classifications": "Session – ABV: 3.0 – 5.0%Standard – ABV: 5.0 – 7.5%Double – ABV: 7.5 – 10.0%Specialty IPA: Belgian IPA", + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 65, + "fields": { + "name": "Hazy IPA", + "category": "IPA", + "category_id": "21", + "style_id": "21C", + "category_description": "The IPA category is for modern American IPAs and their derivatives. This does not imply that English IPAs aren’t proper IPAs or that there isn’t a relationship between them. This is simply a method of grouping similar styles for competition purposes. English IPAs are grouped with other English-derived beers, and the stronger Double IPA is grouped with stronger American beers. The term “IPA” is intentionally not spelled out as “India Pale Ale” since none of these beers historically went to India, and many aren’t pale. However, the term IPA has come to be a balance-defined style in modern craft beer.", + "overall_impression": "An American IPA with intense fruit flavors and aromas, a soft body, smooth mouthfeel, and often opaque with substantial haze. Less perceived bitterness than traditional IPAs but always massively hop-forward.", + "aroma": "Intense hop aroma, with stone fruit, tropical fruit, citrus, or other fruity qualities; not grassy or herbal. Clean, neutral, grainy,or lightly bready malt in the background; no caramel or toast. Absence of any malt character is a fault. Neutral to fruity fermentation character. Esters from yeast and hops should not clash. A creamy, buttery, or acidic aroma is inappropriate. Light alcohol aroma optional.", + "appearance": "Color ranging from straw to very light amber, sometimes with an orange hue. Hazy, often opaque, clarity; should not be cloudy or murky. The opacity can add a ‘shine’ to the beer and make the color seem darker. Any visible floating hop matter, yeast clumps, or other particulates is a fault. Medium to rocky, meringue-like white head with high to very high retention.", + "flavor": "High to very high fruity hop flavor, same descriptors as aroma. Low to medium malt flavor, same descriptors as aroma. Low to medium-high perceived bitterness, often masked by the fuller body and soft, off-dry to medium finish. The hop character in the aftertaste should not be sharp or harsh. Neutral to fruity fermentation profile, supportive of the hops. Should not be sweet, although high ester levels and lower bitterness may sometimes give that impression. Background alcohol flavor optional.", + "mouthfeel": "Medium to medium-full body. Medium carbonation. Smooth. No harshness. Lightwarmth optional.The beer should not have a creamy or viscous mouthfeel, an acidic twang, or a raw starch texture.", + "comments": "Also known as New England IPA or NEIPA. An emphasis on late hopping, especially dry-hopping, with hops with tropical fruit qualities lends the ‘juicy’ character for which this style is known.Heavy examples suggestive of milkshakes, creamsicles, or fruit smoothies are outside this style; IPAs should always be drinkable. Haziness comes from dry-hopping, not suspended yeast, starch haze, or other techniques; a hazy shine is desirable, not a cloudy, murky mess.", + "history": "A modern craft beer style originating in the New England region of the United States as an American IPA variant. Alchemist Heady Topper is believed to be the original inspiration as the style grew in popularity during the 2010s. The style continues to evolve, including a trend towards lower bitterness and using the style as the base for other additions.", + "style_comparison": "Has a fuller, softer mouthfeel, a more fruit-forward late hop expression, a more restrained perceived bitterness balance, and a hazier appearance than American IPA. Many modern American IPAs are fruity and somewhat hazy; examples with a dry, crisp finish, at most medium body, and high perceived bitternessshould be entered as 21A American IPA. Noticeable additions of fruit, lactose, vanilla, etc. to increase the fruity, smooth character should be entered in a specialty category defined by the additives (e.g., 29A Fruit Beer, 29C Specialty Fruit Beer, 30D Specialty Spice Beer).", + "tags": "high-strength, pale-color, top-fermented, north-america, craft-style, ipa-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.08500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "60.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "7.00000", + "ingredients": "Grist like an American IPA, but with more flakedgrains and less caramel or specialty malts. American or New World hops with fruity characteristics. Neutral to estery yeast. Balanced to chloride-rich water. Heavily dry-hopped, partly during active fermentation, using a variety of hopping doses and temperatures to emphasis depth of hop aroma and flavor over bitterness. Biotransformation of hop oils during fermentation adds to the depth and fruit complexity.", + "examples": "Belching Beaver Hazers Gonna Haze, Hill Farmstead Susan, Other Half Green Diamonds Double IPA, Pinthouse Electric Jellyfish, Tree House Julius, Trillium Congress Street, WeldWerks Juicy Bits", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 66, + "fields": { + "name": "Double IPA", + "category": "Strong American Ale", + "category_id": "22", + "style_id": "22A", + "category_description": "This category includes modern American strong ales with a varying balance of malt and hops. The category is defined mostly by higher alcohol strength and a lack of roast.", + "overall_impression": "An intensely hoppy, fairly strong, bitter pale ale without the big, rich, complex maltiness, residual sweetness, and body of an American Barleywine. Strongly hopped, but clean, dry, and lacking harshness. Despite showing its strength, drinkability is an important consideration.", + "aroma": "A prominent to intense hop aroma typically featuringmodern American or New World hop characteristics such as citrus, floral, pine, resin, spice, tropical fruit, stone fruit, berry, or melon. A supportive, clean, neutral to grainy maltiness may be found in the background. Neutral to lightly fruity fermentation profile. Alcohol may be noted, but should not be solventy.", + "appearance": "Gold to light orange-copper color, but most modern versions are fairly pale. Good clarity, although a little haze is acceptable. Moderate-sized, persistent, white to off-white head.", + "flavor": "Strong and complex hop flavor (same descriptors as aroma). Moderately high to very high bitterness, but should not be harsh. Low to medium supportive, clean, soft, unobtrusivemalt character; may have light caramel or toast flavors. Dry to medium-dry finish, not sweet or heavy, with a lingering hoppy, bitter aftertaste. Low to moderate fruitiness optional. A light, clean, smooth alcohol flavor is allowable.", + "mouthfeel": "Medium-light to medium body, with a smooth texture. Medium to medium-high carbonation. No harsh hop-derived astringency. Restrained, smooth alcohol warmth acceptable.", + "comments": "Rarely called Imperial IPA. Many modern versions have multiple dry-hop additions.", + "history": "An American craft beer innovation first developed in the mid-late 1990s as more intense version of American IPA. Became more mainstream and popular throughout the 2000s, and inspired additional IPA creativity. Russian River Pliny the Elder, first brewed in 2000, helped popularize the style.", + "style_comparison": "Bigger than English and American IPAs in alcohol strength, bitterness, and hoppiness. Less malty-rich, less body, drier, and with a greater overall hop balance than American Barleywine.", + "tags": "very-high-strength, pale-color, top-fermented, north-america, craft-style, ipa-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.08500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "60.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "100.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "7.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "10.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Neutral base malt. Sugar adjuncts common. Crystal malts rare. American or New World hops. Neutral or lightly fruity yeast. No oak.", + "examples": "Columbus Brewing Bohdi, Fat Head’s Hop Juju, Port Brewing Hop-15, Russian River Pliny the Elder, Stone Ruination Double IPA 2.0, Wicked Weed Freak of Nature", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 67, + "fields": { + "name": "American Strong Ale", + "category": "Strong American Ale", + "category_id": "22", + "style_id": "22B", + "category_description": "This category includes modern American strong ales with a varying balance of malt and hops. The category is defined mostly by higher alcohol strength and a lack of roast.", + "overall_impression": "A malty, bitter, and strong American Ale fitting in the space between American Barleywine, Double IPA, and Red IPA. The malty and hoppy flavors can be quite strong, but are generally in balance.", + "aroma": "Medium to high hop aroma typically featuring modern American or New World hop characteristics such as citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon. Moderate to bold maltiness supporting the hop profile, with medium to dark caramel common, toasty or bready possible, and background notes of light roast or chocolate allowable. Neutral to moderately fruity fermentation profile. Alcohol may be noted, but should not be solventy.", + "appearance": "Medium amber to deep copper or light brown. Moderate-low to medium-sized off-white to light tan head; may have low head retention. Good clarity. Legs possible.", + "flavor": "Medium to high malt, with a caramel, toffee, or dark fruit quality. Malt complexity can include additional toasty, bready, or rich flavors in support. Light chocolate or roast allowable, but should not be burnt or sharp. Medium-high to high bitterness. Moderate to high hop flavor, same descriptors as aroma. Low to moderate esters. May have a noticeable alcohol flavor, but should not be sharp. Medium to high malty sweetness on the palate, finishing somewhat dry to somewhat sweet. Should not be syrupy, sweet, or cloying. Bitter to bittersweet aftertaste, with hops, malt, and alcohol noticeable.", + "mouthfeel": "Medium to full body. An alcohol warmth may be present, but should not be excessively hot. Light hop astringency allowable. Medium-low to medium carbonation.", + "comments": "A fairly broad style describing beers labeled in various ways, including modern Double Red Ales and other strong, malty-but-hoppy beers that aren’t quite in the Barleywine class. Diverse enough to include what may be viewed as a strong American Amber Ale with room for stronger versions of other American Ale styles.", + "history": "While modern craft versions were developed as “imperial” strength versions of American amber or red ales, the style has much in common with historic American Stock Ales. Strong, malty beers were highly hopped to keep as provision beers prior to Prohibition. There is no continuous legacy of brewing stock ales in this manner, but the resemblance is considerable (albeit without the age character).", + "style_comparison": "Generally not as strong and as rich as an American Barleywine. More malt balanced than an American or Double IPA. More American hop intensity than a British Strong Ale. Maltier and fuller-bodied than a Red IPA.", + "tags": "high-strength, amber-color, top-fermented, north-america, craft-style, strong-ale-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.09000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "50.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "100.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01400", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "10.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "7.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "18.00000", + "ingredients": "Pale base malt. Medium to dark crystal malts common. American or New World hops. Neutral or lightly fruity yeast.", + "examples": "Arrogant Bastard Ale, Fat Head’s Bone Head, Great Lakes Nosferatu, Oskar Blues G’Knight, Port Brewing Shark Attack Double Red Ale", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": "A grouping of beers with similar balance and profile rather than a distinct style. A category for a variety of stronger, bitter-and-malty beers that aren’t quite Barleywines.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 68, + "fields": { + "name": "American Barleywine", + "category": "Strong American Ale", + "category_id": "22", + "style_id": "22C", + "category_description": "This category includes modern American strong ales with a varying balance of malt and hops. The category is defined mostly by higher alcohol strength and a lack of roast.", + "overall_impression": "A very strong, malty, hoppy, bitter American ale with a rich palate, full mouthfeel, and warming aftertaste, suitable for contemplative sipping.", + "aroma": "Strong malt and hop aroma dominates. Hops are moderate to assertive, showing a range of American, New World, or English characteristics. Citrusy, fruity, or resiny are classic attributes, but others are possible, including those from modern hops. Strong grainy, bready, toasty, light caramel, or neutral malt richness, but typically not with darker caramel, roast, or deep fruit aspects. Low to moderately strong esters and alcohol, lower in the balance than the malt and hops. Intensities fade with age.", + "appearance": "Color ranges from amber to medium copper, rarely up to light brown. Ruby highlights common. Moderately-low to large off-white to light tan head; may have low head retention. Good to brilliant clarity but may have some chill haze. The color may appear to have great depth, as if viewed through a thick glass lens. Legs possible.", + "flavor": "Similar malt and hop flavors as the aroma (same descriptors apply). Moderately strong to aggressive bitterness, tempered by a rich, malty palate. Moderate to high hop flavor. Low to moderate esters. Noticeable alcohol, but not solventy. Moderately low to moderately high malty sweetness on the palate, with a somewhat malty to dry but full finish. Age will often dry out the beer, and smooth out the flavors. The balance is malty, but always bitter.", + "mouthfeel": "Full-bodied and chewy, with a velvety, luscious texture, declining with age. A smooth alcohol warmth should be noticeable, but shouldn’t burn. Carbonation may be low to moderate, depending on age and conditioning.", + "comments": "Sometimes labeled as “Barley Wine” or “Barleywine-style ale”. Recently many US breweries seem to have discontinued their Barleywines, made them barrel-aged, or rebranded them as some form of IPA.", + "history": "Traditionally the strongest ale offered by a brewery, often associated with the winter season and vintage-dated. As with many American craft beer styles, an adaptation of an English style using American ingredients and balance. One of the first American craft beer versions was Anchor Old Foghorn, first brewed in 1975. Sierra Nevada Bigfoot, first brewed in 1983, set the standard for the hop-forward style of today. The story goes that when Sierra Nevada first sent Bigfoot out for lab analysis, the lab called and said, “your Barleywine is too bitter” – to which Sierra Nevada replied, “thank you.”", + "style_comparison": "Greater emphasis on hop bitterness, flavor, and aroma than English Barley Wine, often featuring American hop varieties. Typically paler than the darker English Barley Winesand lacking their deeper malt flavors, but darker than the golden English Barley Wines. Differs from a Double IPA in that the hops are not extreme, the malt is more forward, and the body is fuller and often richer. American Barleywine typically has more residual sweetness than Double IPA, which affects the overall drinkability (sipping vs. drinking).", + "tags": "very-high-strength, amber-color, top-fermented, north-america, craft-style, strong-ale-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.08000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.12000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "50.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "100.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.03000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "8.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "12.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "9.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "18.00000", + "ingredients": "Pale malt with some specialty malts. Dark malts used with great restraint. Many varieties of hops can be used, but typically includes American hops. American or English ale yeast.", + "examples": "Anchor Old Foghorn, Bell’s Third Coast Old Ale,East End Gratitude, Hair of the Dog Doggie Claws, Sierra Nevada Bigfoot", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 69, + "fields": { + "name": "Wheatwine", + "category": "Strong American Ale", + "category_id": "22", + "style_id": "22D", + "category_description": "This category includes modern American strong ales with a varying balance of malt and hops. The category is defined mostly by higher alcohol strength and a lack of roast.", + "overall_impression": "A richly textured, high alcohol sipping beer with a significant grainy, bready flavor, and a sleek body. The emphasis is first on the bready, wheaty flavors with malt, hops, fruity yeast, and alcohol complexity.", + "aroma": "Hop aroma is mild and can represent just about any hop variety. Moderate to moderately-strong bready, wheaty malt character, often with additional malt complexity such as honey and caramel. A light, clean, alcohol aroma may be noted. Low to medium fruity notes may be apparent. Very low diacetyl optional. Banana-and-clove Weizen yeast character is inappropriate.", + "appearance": "Color ranging from gold to deep amber, often with garnet or ruby highlights. Low to medium off-white head. The head may have creamy texture, and good retention. Chill haze is allowable, but usually clears up as the beer gets warmer. High alcohol and viscosity may be visible aslegs.", + "flavor": "Moderate to moderately-high bready wheat malt flavor, dominant in the flavor balance over any hop character. Low to moderate toasty, caramel, biscuity, or honey malt notes can add a welcome complexity, but are not required. Low to medium hop flavor, reflecting any variety. Moderate to moderately-high fruitiness, often with a dried-fruit character. Low to moderate bitterness, creating a malty to even balance. Should not be syrupy or under-attenuated.", + "mouthfeel": "Medium-full to full body. Chewy, often with a luscious, velvety texture. Low to moderate carbonation. Light to moderate smooth alcohol warmthoptional.", + "comments": "Much of the color arises from a lengthy boil. Some commercial examples may be stronger than the Vital Statistics.", + "history": "An American craft beer style that was first brewed at the Rubicon Brewing Company in 1988. Usually a winter seasonal, vintage, or one-off release.", + "style_comparison": "More than simply a wheat-based Barleywine, many versions have very expressive fruity and hoppy notes, while others develop complexity through oak aging. Less emphasis on the hops than American Barleywine. Has roots in American Wheat Beer rather than any German wheat style, so should not have any Weizen yeast character.", + "tags": "very-high-strength, amber-color, top-fermented, north-america, craft-style, strong-ale-family, wheat-beer-family, balanced, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.08000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.12000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "60.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.03000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "8.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "12.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Typically brewed with a combination of American two-row and American wheat. Style commonly uses 50% or more wheat malt. Restrained use of dark malts. Any variety of hops may be used. May be oak-aged.", + "examples": "The Bruery White Oak, Castelain Winter Ale, Perennial Heart of Gold, Two Brothers Bare Tree", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 70, + "fields": { + "name": "Berliner Weisse", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23A", + "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", + "overall_impression": "A very pale, refreshing, low-alcohol German wheat beer with a clean lactic sourness and a very high carbonation level. A light bread dough malt flavor supports the sourness, which shouldn’t seem artificial. A gentle fruitiness is found in the best examples.", + "aroma": "A moderate to moderately-high sharply sour character is dominant. Can have up to a moderately fruitiness, often lemon, tart apple, peach, or apricot, and a light floral note. No hop aroma. The wheat may be perceived as raw bread dough in fresher versions; combined with the acidity, may suggest sourdough bread.", + "appearance": "Straw in color, can be very pale. Clarity ranges from clear to somewhat hazy. Large, dense, white head with poor retention. Highly effervescent.", + "flavor": "Clean lactic sourness dominates and can be quite strong. A complementary doughy, bready, or grainy wheat flavor is generally noticeable. Hop bitterness is undetectable; sourness provides the balance rather than hops. Never vinegary. Bright yet restrained fruitiness may be detected asapricot-peach,citrus-lemon, or tart apple. Very dry finish. Balance dominated by sourness, but some malt flavor should be present. No hop flavor. No THP.", + "mouthfeel": "Light body, but never thin. Very high carbonation. No sensation of alcohol. Crisp acidity.", + "comments": "Any Brettcharacter is restrained, and is typically expressed as fruity and floralnotes, not funky.Aged examples can show a cider, honey, hay, or gentle wildflower character, and sometimes increased acidity.In Germany, it is classified as a Schankbier denoting a small beer of starting gravity in the range 7-8 °P. Fruited or Spiced versions should be entered as 29A Fruit Beer, as 30A Spice, Herb, or Vegetable Beer, or as 29B Fruit and Spice Beer.", + "history": "A regional specialty of Berlin.Referred to by Napoleon's troops in 1809 as “the Champagne of the North” due to its lively and elegant character. At one point, it was smoked and there used to be Märzen-strength (14 °P) version. Increasingly rare in Germany, but now produced in several other countries.", + "style_comparison": "Compared to Lambic, has a clean lactic sourness with restrained to below sensory threshold Brett. Also lower in alcohol content.Compared to Straight Sour Beer and Catharina Sour, is lower gravity and may contain Brett.", + "tags": "session-strength, pale-color, top-fermented, central-europe, traditional-style, wheat-beer-family, sour", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.02800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.03200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "3.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "8.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00300", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.00600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "2.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "3.00000", + "ingredients": "Pilsner malt. Usually wheat malt, often at least half the grist. A symbiotic co-fermentation with top-fermenting yeast and LAB provides the sharp sourness, which may be enhanced by blending of beers of different ages during fermentation and by cool aging. Decoction mashing with mash hopping is traditional. German brewing scientists believe that Brett is essential to get the correct, fruity-floral flavor profile.", + "examples": "Bayerischer Bahnhof Berliner Style Weisse, Berliner Berg Berliner Weisse, Brauerei Meierei Weiße, Lemke Berlin Budike Weisse, Schell's Brewing Company Schelltheiss, Urban Chestnut Ku’damm", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 71, + "fields": { + "name": "Flanders Red Ale", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23B", + "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", + "overall_impression": "A sour and fruityoak-aged reddish-brown Belgian-style ale with supportive toasty malt flavors and fruit complexity. The dry, tannic finish supports the suggestion of a vintage red wine.", + "aroma": "Complex fruity-sour profile with supporting malt. Fruitiness is high, and reminiscent of black cherries, oranges, plums, red currants, or fruit leather. Low to medium-low vanilla, chocolate,or peppery phenolcan be present for complexity. The sour aroma ranges from moderate to high. A dominant vinegary character is inappropriate, although low to moderate levels of acetic acid are acceptable if balanced with the malt. No hop aroma.", + "appearance": "Deep red, burgundy to reddish-brown in color. Good clarity. White to very pale tan head. Average to good head retention.", + "flavor": "Moderate to moderately-high malty flavors often have a soft toasty-rich quality. Intense fruit flavors, same descriptors as aroma. Complex, moderate to high sourness, accentuated by the esters; should not be a simple lactic sourness. A dominant vinegary character is inappropriate, although low to moderate acetic acid is acceptable if balanced with the malt. Generally as the sour character increases, the malt character fades to more of a background flavor (and vice versa). Lowto medium-low vanilla, chocolate, or peppery phenolsoptional. No hop flavor. Restrained bitterness; balanced to the malt side. Acids and tannins can enhance the perception of bitterness, and provide balance and structure. Some versions are sweetened, or blended to be sweet; allow for a wide range of sweetness levels, which can soften the acidic bite and acetic perception.", + "mouthfeel": "Medium body, often enhanced by tannins. Low to medium carbonation. Low to medium astringency, often with a prickly acidity. Deceivingly light and crisp on the palate although a somewhat sweet finish is not uncommon.", + "comments": "The “wine-like” observation should not be taken too literally; it may suggest a high-acid French Burgundy to some, but it is clearly not identical. Produced by long aging (up to two years) in large wooden vats (foeders), blending of young and well-aged beer, and variable amounts of sweetening of the final product.A wide range of products are possible depending on the actual blend and whether any sweetening takes place. Acetic flavors may be noted, but not all acidity in this beer is from acetic acid; vinegar is over six times greater in total acidity than this style. Fruited versions should be entered as a 29A Fruit Beer.", + "history": "An indigenous beer of West Flanders, typified by the products of the Rodenbach brewery, established in 1821. Aging in wooden vats and blending of old and young beers borrowed from the English tradition. Belgian brewers consider Flanders Red and Oud Bruin to be of the same style family, but the distinction was first made when Michael Jackson first defined beer styles, since the flavor profiles are distinctly different.Many modern examples are influenced by the popularity of Rodenbach Grand Cru.Characteristic Ingredients: Vienna or Munich malts, a variety of caramel malts, maize. Low alpha acid continental hops. Sacch, Lacto, and Brett. Aged in oak. Sometimes blended and sweetened (natural or artificial).", + "style_comparison": "Less malty-rich than an Oud Bruin, often with more of a fruity-tart and acetic profile.", + "tags": "standard-strength, amber-color, top-fermented, western-europe, traditional-style, balanced, sour, wood", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05700", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "10.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00200", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.60000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "10.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "17.00000", + "ingredients": null, + "examples": "Cuvée des Jacobins, Duchesse de Bourgogne, New Belgium La Folie,Rodenbach Classic, Rodenbach Grand Cru, Vichtenaar Flemish Ale", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 72, + "fields": { + "name": "Oud Bruin", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23C", + "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", + "overall_impression": "A malty, fruity, aged, somewhat sour Belgian-style brown ale with a caramel-chocolate malt flavor, and often substantial alcohol.", + "aroma": "Richly malty with fruity esters and an aged sourness. Medium to medium-high esters commonly reminiscent of raisins, plums, figs, dates, oranges, black cherries, or prunes. Medium-low to medium-high malt with caramel, toffee, treacle, or chocolatecharacter. Low spicy-peppery phenols optional. A low sour aroma may be present, and can modestly increase with age but should not grow to a strongly acetic, vinegary character. Hop aroma absent.Aged examples can show a lightly nutty, sherry-like oxidation character.", + "appearance": "Dark reddish-brown to brown in color. Good clarity. Average to good head retention. Ivory to light tan head color.", + "flavor": "Malty with fruity complexity and typically some dark caramel or burnt sugar flavor. Medium-low to medium-high malt, same descriptors as aroma.Medium to medium-high fruitiness, same descriptors as aroma. Low spicy-peppery phenols optional. A slight sourness often becomes more pronounced in well-aged examples, along with some sherry-like character, producing a “sweet-and-sour” profile and aftertaste. The sourness should not grow to a strongly acetic, vinegary character. Hop flavor absent. Restrained hop bitterness. Balance is malty, but with fruitiness and sourness present. Blending and sweetening may produce a range of finishes, and balances.", + "mouthfeel": "Medium to medium-full body. Low to moderate carbonation. No astringency. Stronger versions can be noticeably warming.", + "comments": "Long aging and blending of young and aged beer may occur, adding smoothness and complexity and balancing any harsh, sour character. Traditionally, this style was designed to lay down so examples with a moderate aged character are considered superior to younger examples. Fruited versions should be entered as a29A Fruit Beer.", + "history": "An indigenous beer of East Flanders, typified by the products of the Liefman brewery with roots back to the 1600s. Belgian brewers consider Flanders Red and Oud Bruin to be of the same style family, but the distinction was first made when Michael Jackson first defined beer styles, since the flavor profiles are distinctly different.Many modern examples are influenced by the popularity of Liefmans Goudenband. Unrelated to the dark, sweet Dutch lager of the same name.", + "style_comparison": "A deeper malt character with more caramel, toffee, and chocolate flavorsand darker color distinguishes these beers from Flanders Red Ale. The Oud Bruin is less acetic and maltier than a Flanders Red, and the fruity flavors are more malt-oriented. In modern times, Oud Bruin also tends to be higher in alcohol than is typically seen in Flanders Red Ales. Differs from Lambic in that they are not spontaneously fermented, and don’t contain wheat.", + "tags": "standard-strength, dark-color, top-fermented, western-europe, traditional-style, malty, sour", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "17.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Pils malt, dark crystal malts,maize, small amounts ofcolor malt. Low alpha acid continental hops. Sacch and Lacto. Aged. Water with carbonates and magnesium typical of its home region.", + "examples": "Ichtegem Oud Bruin, Liefmans Goudenband, Liefmans Oud Bruin, Petrus Roodbruin, pFriem Oud Bruin, VanderGhinste Roodbruin", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 73, + "fields": { + "name": "Lambic", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23D", + "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", + "overall_impression": "A fairly sour, often moderately funky, wild Belgian wheat beer with sourness taking the place of hop bitterness in the balance. Traditionally served uncarbonated as a café drink.", + "aroma": "Young versions can be quite sour and fruity, but can develop barnyard, earthy, goaty, hay, horsey, or horse blanket funkiness with age. The fruit character can take on a light citrus fruit, citrus rind, pome fruit, or rhubarb quality, getting more complex with age. Malt can have a light bready, grainy, honey, or wheat-like quality, if noticeable. Should not have enteric, smoky, cigar-like, or cheesy faults. No hops.", + "appearance": "Pale yellow to deep golden in color; age tends to darken the beer. Clarity is hazy to good. Younger versions are often cloudy, while older ones are generally clear. White colored head generally has poor retention.", + "flavor": "Young versions often have a strong lactic sourness with fruity flavors (same descriptors as aroma), while aged versions are more balanced and complex. Funky notes can develop over time, same descriptors as aroma. Low bready, grainy malt. Bitterness generally below sensory threshold; sourness provides the balance. No hop flavor. Dry finish, increasing with age.Should not have enteric, smoky, cigar-like, or cheesy faults.", + "mouthfeel": "Light to medium-light body; should not be watery. Has a medium to high tart, puckering quality without being sharply astringent. Traditional versions are virtually to completely uncarbonated, but bottled examples can pick up moderate carbonation with age.", + "comments": "A single-batch, unblended beer, reflecting the house character of the brewery. Generally served young (6 months) from the cask. Younger versions tend to be one-dimensionally sour since a complex Brett character takes a year or more to develop. A noticeable vinegary or cidery character is considered a fault by Belgian brewers. Typically bottled only when completely fermented. Lambic sweetened with raw sugar at service time is known as Faro.", + "history": "Spontaneously-fermented ‘wild’ ales from the area in and around Brussels (also known as the Senne Valley and thePajottenland) stem from a farmhouse brewing tradition several centuries old. The number of producers is constantly dwindling.", + "style_comparison": "Often has a simpler sourness and less complexity than a Gueuze, but more variability from batch to batch. Traditionally served uncarbonated from pitchers, while Gueuze is bottled and very highly carbonated.", + "tags": "standard-strength, pale-color, wild-fermented, western-europe, traditional-style, wheat-beer-family, sour", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "0.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "10.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00100", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Pilsner malt, unmalted wheat. Aged hops (3+ years) used more as a preservative than for bitterness. Spontaneously fermented with naturally occurring yeast and bacteria in well-used, neutral oak barrels.", + "examples": "Cantillon Grand Cru Bruocsella. In the Brussels area, many specialty cafés have draught lambic from Boon, De Cam, Cantillon, Drie Fonteinen, Lindemans, Timmermans, Girardin and others.", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 74, + "fields": { + "name": "Gueuze", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23E", + "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", + "overall_impression": "A very refreshing, highly carbonated, pleasantly sour but balanced wild Belgian wheat beer. The wild beer character can be complex and varied, combining sour, funky, and fruity flavors.", + "aroma": "Moderately sour with complex but balanced funkiness accented by fruity notes. The funkiness can be moderate to strong, and can be described as barnyard, leather, earthy, goaty, hay, horsey, or horse blanket. Fruitiness is light to moderate, with a citrus fruit, citrus rind, pome fruit, or rhubarb quality. Malt is supportive, and can be lightly bready, grainy, honey, or wheat-like, if noticeable. Should not have enteric, smoky, cigar-like, or cheesy faults. No hops. Light oak acceptable. Complexity of aroma is valued more than intensity, but a balanced sour presentation is desirable.", + "appearance": "Golden color, with excellent clarity and a thick, rocky, mousse-like, white head that seems to last forever. Effervescent.", + "flavor": "Sour and funky on the palate, with a similar character as the aroma (same descriptors and intensities apply for funk and fruit). Low bready, grainy malt. Bitterness low to none; sourness provides most of the balance. No hop flavor. Crisp, dry finish, with a tart and funky aftertaste.Light oak, vanilla, and honey are acceptable. Should not have enteric, smoky, cigar-like, or cheesy faults. The beer should not be one dimensionally sour; a balanced, moderately sour presentation is classic, with the funky and fruity notes providing complexity. May be aged.", + "mouthfeel": "Light to medium-light body; should not be watery. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a very light warming character. Highly carbonated.", + "comments": "Blending young and aged lambic creates a more complex product, and often reflects the personal taste of the blender.A noticeable vinegary or cidery character is considered a fault by Belgian brewers. A good Gueuze is not the most pungent, but possesses a full and tantalizing bouquet, a sharp aroma, and a soft, velvety texture. Lambic is served uncarbonated, while Gueuze is served sparkling. Products marked oude or vieille(“old”) are considered most traditional.", + "history": "Same basic history as Lambic, but involves blending, which may be performed outside the brewery. Some of the best examples are produced by blenders, who ferment, age, blend, and package the final product. Some modern producers are sweetening their products post-fermentation to make them more palatable to a wider audience. These guidelines describe the traditional dry product.", + "style_comparison": "More complex and carbonated than a Lambic. The sourness isn’t necessarily stronger, but it tends to have more of a well-developed wild character.", + "tags": "high-strength, pale-color, wild-fermented, western-europe, traditional-style, wheat-beer-family, aged, sour", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "0.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "10.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.00600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "5.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Same as Lambic, except that one-, two-, and three-year old Lambics are blended, then cellared.", + "examples": "3 Fonteinen Oud Gueuze, Cantillon Classic Gueuze 100% Lambic, Girardin Gueuze 1882 (Black label), Hanssens Oude Gueuze, Lindemans Gueuze Cuvée René,Oude Gueuze Boon", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 75, + "fields": { + "name": "Fruit Lambic", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23F", + "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", + "overall_impression": "A complex, refreshing, pleasantly sour Belgian wheat beerblending a complementary fermented fruit character with a sour, funky Gueuze.", + "aroma": "The specified fruit should be the dominant aroma, blending well with similar aromatics as Gueuze (same description applies, but with the addition of a fermented fruit character).", + "appearance": "Like Gueuze, but modified by the color of the fruit used, fading in intensity with age.Clarity is often good, although some fruit will not drop bright. If highly carbonated in the traditional manner, will have a thick rocky, generally long-lasting,mousse-like head, sometimes with a hue reflecting the added fruit.", + "flavor": "Combines the flavor profile of a Gueuze (same description applies) with noticeable flavor contributions from the added fruit. Traditional versions are dry and tart, with an added fermented fruit flavor. Modern versions may have a variable sweetness, which can offset the acidity. Fruit flavors also fade with age, and lose their vibrancy, so can be low to high in intensity.", + "mouthfeel": "Light to medium-light body; should not be watery. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a light warming character. Carbonation can vary from sparkling to nearly still.", + "comments": "Produced like Gueuze, with the fruit commonly added halfway through aging,so the yeast and bacteria can ferment all sugars from the fruit; or less commonly by adding fruit to aLambic. The variety of fruit can sometimes be hard to identify since fermented and aged fruit is often perceived differently than the more recognizable fresh fruit. Fruit can bring acidity and tannins, in addition to flavor and aroma; understanding the fermented character of added fruit helps with judging the style.", + "history": "Same basic history as Gueuze, including the recent sweetening trend but with fruit in addition to sugar. Fruit was traditionally added by the blender or publican to increase the variety of beers available in local cafés.", + "style_comparison": "A Gueuze with fruit, not just a sour Fruit Beer; the wild character must be evident.", + "tags": "standard-strength, pale-color, wild-fermented, western-europe, traditional-style, wheat-beer-family, sour, fruit", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "0.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "10.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "7.00000", + "ingredients": "Same base as Gueuze. Fruit added to barrels during fermentation and blending. Traditional fruit include tart cherries, raspberries; modern fruit include peaches, apricots, grapes, and others.May use natural or artificial sweeteners.", + "examples": "3 Fonteinen Schaerbeekse Kriek, Cantillon Fou’ Foune, Cantillon Lou Pepe Framboise, Cantillon Vigneronne, Hanssens Oude Kriek,Oude KriekBoon", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The type of fruit used must be specified. The brewer must declare a carbonation level (low, medium, high) and a sweetness level (low/none, medium, high).", + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 76, + "fields": { + "name": "Gose", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23G", + "category_description": "This category contains the traditional sour beer styles of Europe that are still produced, many (but not all) with a wheat component. Most have low bitterness, with the sourness of the beer providing the balance that hop bitterness would otherwise contribute. Some are sweetened or flavored, whether at the brewery or upon consumption.", + "overall_impression": "A tart, lightly-bittered historical central European wheat beer with a distinctive but restrained salt and coriander character. Very refreshing, with a dry finish,high carbonation, and bright flavors.Aroma", + "aroma": null, + "appearance": "Unfiltered, with a moderate to full haze. Moderate to tall white head with tight bubbles and good retention. Effervescent. Yellow color.", + "flavor": "Noticeable sourness, medium-low to medium-high. Moderate bready or doughy malt flavor. Light to moderate fruity character of pome fruit, stone fruit, or lemons. Light to moderate salt character, up to the threshold of taste; the salt should be noticeable (particularly in the initial taste) but not taste overtly salty. Very low bitterness.No hop flavor. Dry, fully-attenuated finish, with acidity not hops balancing the malt. Acidity can be more noticeable in the finish, and enhance the refreshing quality of the beer. The acidity should be balanced, not forward (although historical versions could be very sour). No THP.", + "mouthfeel": "High to very high carbonation.Effervescent. Medium-light to medium-full body. Salt may give a slightly tingly, mouthwatering quality and a rounder, thicker mouthfeel. Yeast and wheat can alsoadd a little body, but shouldn’t feel heavy due to the thinning effects of acidity.", + "comments": "Historical versions may have been more sour than modern examples due to spontaneous fermentation, and may be blended with syrups as is done with Berliner Weisse, or with caraway liqueur. Modern examples are inoculated with Lacto, and are more balanced and generally don’t need sweetening. Pronounced GOH-zeh.", + "history": "Minor style associated with Leipzig but originating in the Middle Ages in the town of Goslar on the Gose River. Documented to have been in Leipzig by 1740. Leipzig was said to have 80 Gose houses in 1900. Production declined significantly after WWII, and ceased entirely in 1966. Modern production was revived in the 1980s in Germany, but the beer was not widely available. Became popular outside of Germany recently as a revival style, and is often used as a base style for fruited sour beers and other Specialty-Type beers.", + "style_comparison": "Perceived acidity is not as intense as Berliner Weisse or Gueuze. Restrained use of salt, coriander, and Lacto – should not taste overtly salty. Coriander aroma can be similar to a Witbier. Haziness similar to a Weissbier.", + "tags": "standard-strength, pale-color, top-fermented, central-europe, historical-style, wheat-beer-family, sour, spice", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05600", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "5.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "12.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "4.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "4.00000", + "ingredients": "Pilsner and wheat malt, restrained use of salt and coriander seed, Lacto. The coriander should have a fresh, citrusy (lemon or bitter orange), bright note, and not be vegetal, celery-like, or ham-like. The salt should have a sea salt or fresh salt character, not a metallic, iodine note.", + "examples": "Anderson Valley Gose, Bayerisch Bahnhof Leipziger Gose, Original Ritterguts Gose, Westbrook Gose", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": "Light to moderately fruity aroma of pome fruit. Light sourness, slightly sharp. Noticeable coriander, which can have an aromatic lemony quality, and an intensity up to moderate. Light bready, doughy, yeasty character like uncooked sourdough bread. The acidity and coriander can give a bright, lively impression. The salt may be perceived as a very light, clean sea breeze character or just a general freshness, if noticeable at all.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 77, + "fields": { + "name": "Witbier", + "category": "Belgian Ale", + "category_id": "24", + "style_id": "24A", + "category_description": "This category contains the maltier to balanced, more highly flavored Belgian and French ales.", + "overall_impression": "A pale, hazy Belgian wheat beer with spices accentuating the yeast character. Adelicate, lightly spiced, moderate-strength ale that is a refreshing summer drink with its high carbonation, dry finish, and light hopping.", + "aroma": "Moderate bready maltiness, often with light notes of honey or vanilla.Light grainy, spicy wheat aromatics. Moderate perfumy-lemony coriander, often with a complex herbal, spicy, or peppery note in the background. Moderate zesty, citrusy-orangey fruitiness. A low spicy-herbal hop aroma is optional, but typically absent. Spices should blend in with fruity, floral, and sweet aromas and should not be overly strong.", + "appearance": "Very pale straw to deep yellow in color. The beer will be very cloudy from starch haze or yeast, which gives it a milky, whitish-yellow shine. Dense, white, moussy head. Head retention should be quite good.", + "flavor": "Pleasant bready, grainy malt flavor, often with a honey or vanilla character. Moderate zesty, orange-citrusy fruitiness. Herbal-spicy flavors, which may include lemony coriander and other spices, are common should be subtle and balanced, not overpowering. A spicy-earthy hop flavor can be low to none, and never overshadows the spices. Hop bitterness is low to medium-low, and supports the refreshing flavors of fruit and spice. Refreshingly crisp with a dryfinish, and no bitter or harsh aftertaste.", + "mouthfeel": "Medium-light to medium body, often having a smoothness and light creaminess. Effervescent character from high carbonation. Refreshing, from carbonation, dryness, and lack of bitterness in finish. No harshness or astringency. Should not be overly dry and thin, nor should it be thick and heavy.", + "comments": "Historical versions may have had some lactic sourness but this is absent in fresh modern versions. Spicing has some variety, but should not be overdone. Coriander of certain origin or age might give an inappropriate ham or celery character. The beer tends to be perishable, so younger, fresher, properly-handled examples are most desirable. An impression of sweetness is often due to low bitterness, not residual sugar. Most examples seem to be approximately 5% ABV.", + "history": "One of a group of medieval Belgian white beers from the Leuven area, it died out in 1957 and was later revived in 1966 by Pierre Celis at what became Hoegaarden.After Hoegaarden was acquired by Interbrew, the style grew rapidly and inspired many similar products that are traceable to the Celis recreation of the style, not those from past centuries.", + "style_comparison": "Low bitterness level with a balance similar to a Weissbier, but with spice and citrus character coming from additions more so than the yeast.", + "tags": "standard-strength, pale-color, top-fermented, western-europe, traditional-style, wheat-beer-family, spice", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "20.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "4.00000", + "ingredients": "Unmalted wheat (30-60%), the remainderlow color barley malt. Some versions use up to 5-10% raw oats or other unmalted cereal grains. Traditionally uses coriander seed and dried Curaçao orange peel. Other secret spices are rumored to be used in some versions, as are sweet orange peels.Mild fruity-spicy Belgian ale yeast.", + "examples": "Allagash White, Blanche de Bruxelles, Celis White, Hoegaarden White, Ommegang Witte,St. Bernardus Wit", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 78, + "fields": { + "name": "Belgian Pale Ale", + "category": "Belgian Ale", + "category_id": "24", + "style_id": "24B", + "category_description": "This category contains the maltier to balanced, more highly flavored Belgian and French ales.", + "overall_impression": "A top-fermented, all malt, average strength Belgian ale that is moderately bitter, not dry-hopped, and without strong flavors. The copper-colored beer lacks the aggressive yeast character or sourness of many Belgian beers, buthas a well-balanced, malty, fruity, and often bready and toasty profile.", + "aroma": "Moderate bready malt aroma, which can include toasty, biscuity, or nutty notes, possibly with a touch of light caramel or honey. Moderate to moderately high fruitiness complements the malt, and is suggestive of pear, orange, apple, or lemon, and sometimes of darker stone fruit like plums. Low to moderate spicy, herbal, or floral hop character. Low peppery, spicy phenols optional. The hop character is lower in balance than the malt and fruitiness.", + "appearance": "Amber to copper in color. Clarity is very good. Creamy, rocky, white head. Well carbonated.", + "flavor": "Has an initial soft, smooth, moderately malty flavor with a variable profile of toasty, biscuity, nutty, light caramel, or honey notes. Moderate to moderately high fruitiness, with a pear, orange, apple, or lemon character. Medium-low to low spicy, herbal, or floral hop character. Medium-high to medium-low bitterness, enhanced by optionallow to very low peppery phenols. Dry to balanced finish, with hops becoming more pronounced in the aftertaste of those with a drier finish. Fairly wellbalanced overall, with no single component being high in intensity; malt and fruitiness are more forward initially with a supportive bitterness and drying character coming on late.", + "mouthfeel": "Medium to medium-light body. Smooth palate. Alcohol level is restrained, and any warming character should be low if present. Medium to medium-high carbonation.", + "comments": "Most commonly found in the Flemish provinces of Antwerp, Brabant, Hainaut, and East Flanders. A Spéciale Belge Ale (Belgian Special Ale) in Belgium.", + "history": "Created after a competition in 1904 to create a regional specialty beer to compete with imported British ales and continental lagers. De Koninck of Antwerp is the best-known modern example, making the beer since 1913.", + "style_comparison": "Fairly similar to pale ales from England (11C Strong Bitter), typically with a slightly different yeast character and a more varied malt profile. Less yeast character than many other Belgian beers, though.", + "tags": "standard-strength, amber-color, top-fermented, western-europe, traditional-style, pale-ale-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Variable grist with pale, character, and caramel malts. No adjuncts. English or continental hops. Fruity yeast with low phenols.", + "examples": "De Koninck Bolleke, De Ryck Special, Palm,Palm Dobble", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 79, + "fields": { + "name": "Bière de Garde", + "category": "Belgian Ale", + "category_id": "24", + "style_id": "24C", + "category_description": "This category contains the maltier to balanced, more highly flavored Belgian and French ales.", + "overall_impression": "A family of smooth, fairly strong, malty, lagered artisanal French beer with a range of malt flavors appropriate for the blond, amber, or brown color. All are malty yet dry, with clean flavors.Darker versions have more malt character, while paler versions can have more hops while still remaining malt-focused beers.", + "aroma": "Prominent malty richness, often with a complex, light-to-moderate intensity, toasty and bready character. Low to moderate esters. Low spicy, peppery, or herbal hops optional. Generally quite clean, although stronger versions may have a light, spicy alcohol note as it warms.Paler versions are still malty but lack richer, deeper aromatics and may have a bit more hops.", + "appearance": "Blond, amber, and brown variations exist, with the color varying golden-blonde to reddish-bronze to chestnut brown. Clarity is brilliant to fair, but some haze is allowable. Well-formed head, generally white to off-white (varyingwith beer color), average persistence.", + "flavor": "Medium to high malty richness, often with a toasty, biscuity, toffee, or light caramel character. Low to moderate esters and alcohol flavors. Medium-low hop bitterness, giving a malty balance to the palate and aftertaste. Medium-dry to dry finish, not sweet, cloying, or heavy.Low spicy, peppery, or herbal hop flavor optional.Malt flavor, depth, richness,intensity, and complexity increases with beer color. Darker versions will have more of an initial rich malty impression than paler versions but should not seem roasted. Paler versions can have slightly greater hop flavor.", + "mouthfeel": "Medium to medium-light body, often with a smooth, creamy-silky character. Moderate to high carbonation. Moderate alcohol warming, but should never be hot.", + "comments": "Cellar, musty, moldy, or rustic character often mentioned in literature are signs of mishandled imports, not fresh, authentic products. Age and oxidation can also increase fruitiness and caramel flavors, but increase harshness. While caramel and fruit can be part of the style, do not confuse the oxidation character for the proper base beer.", + "history": "Name roughly means beer for keeping. A traditional farmhouse artisanal ale from the area around Lille in Northern France,historically brewed in early spring and kept in cold cellars for consumption in warmer weather. Although documented to exist in the 1800s, Jenlain is the prototypical modern amber lager version first bottled in the 1940s.", + "style_comparison": "Calling this a farmhouse beer invites comparisons to Saison, which has a completely different balance – Bière de Garde is malty and smooth, while Saison is hoppy and bitter. Actually has more of a similarity in malt profile to a Bock.", + "tags": "high-strength, pale-color, amber-color, any-fermentation, lagered, western-europe, traditional-style, amber-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.08000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "28.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "19.00000", + "ingredients": "Base malts vary by beer color, but usually include pale, Vienna, and Munich types. Crystal-type malts of varying color. Sugar adjuncts may be used. Lager or ale yeast fermented at cool ale temperatures, followed by long cold conditioning. Continental hops.", + "examples": "Ch’Ti Blonde, Jenlain Ambrée, La Choulette Brune, Russian River Perdition,Saint Sylvestre 3 Monts Blonde, Two Brothers Domaine Dupage", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "Entrant must specify blond, amber, or brownBière de Garde. If no color is specified, the judge should attempt to judge based on initial observation, expecting a malt flavor and balance that matches the color.", + "notes": "Three main variations are included in the style: the blond (blonde), the brown (brune), and the most traditionalamber (ambrée).", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 80, + "fields": { + "name": "Belgian Blond Ale", + "category": "Strong Belgian Ale", + "category_id": "25", + "style_id": "25A", + "category_description": "This category contains the pale, well-attenuated, balanced to bitter beers, often more driven by yeast character than malt flavors, with generally higher alcohol (although a range exists within styles).", + "overall_impression": "A golden,moderately-strong Belgian ale with a pleasantly subtlecitrusy-spicy yeast complexity, smooth malty palate, and dry, soft finish.", + "aroma": "Light to moderate grainy-sweet, slightly toasty, or crackerymalt. Subtle to moderate yeast profile featuring fruity-citrusy esters (like oranges or lemons), and background spicy-peppery phenols. Light earthy or spicy hop notes optional. Light perfumy alcohol and suggestions of a light malty sweetness can givea slight honey- or sugar-like character. Subtle yet complex.", + "appearance": "Deep yellow to deep gold color. Generally very clear. Large, dense, and creamy white to off-white head. Good head retention with Belgian lace.", + "flavor": "Similar to the aroma, with the light to moderate grainy-sweet malt flavor being perceived first. Faint, lightly caramelized sugar or honey-like sweetness on palate.Medium bitterness, with the malt slightly more prominent in the balance. Moderate to low yeast profile with orange or lemon esters, and slight spicy-peppery phenols. Can have a light perfumy character. Light hop flavor, can be spicy or earthy, complementing yeast. Finishes medium-dry to dry, smooth, and soft, with light alcohol and malt in the aftertaste.", + "mouthfeel": "Medium-high to high carbonation, can give mouth-filling bubbly sensation. Medium body. Light to moderate alcohol warmth, but smooth. Can be somewhat creamy.", + "comments": "Most commercial examples are in the 6.5 – 7% ABV range. Often has an almost lager-like character, which gives it a cleaner profile in comparison to many other Belgian styles. Flemish-speaking Belgians use the term Blond, while the French speakers spell it Blonde. Many monastic or artisanal Belgian beers are called Blond but those are notrepresentative of this style.", + "history": "Relatively recent development to further appeal to European Pils drinkers, becoming more popular as it is heavily marketed and widely distributed. Despite claims of links back to 1200, the beer style was created after World War II and first popularized by Leffe.", + "style_comparison": "Similar strength and balance as a Belgian Dubbel but gold in color and without the darker malt flavors. Similar character as a Belgian Strong Golden Ale or Belgian Tripel, although a bit maltier, not as bitter, and lower in alcohol.", + "tags": "high-strength, pale-color, top-fermented, western-europe, traditional-style, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "4.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Belgian Pils malt, aromatic malts, sugar or other adjuncts, Belgian Abbey-type yeast strains, continental hops. Spices are not traditionally used;if present, should be a background character only.", + "examples": "Affligem Blond, Corsendonk Blond, Grimbergen Blonde, La Trappe Blond, Leffe Blond, Val-Dieu Blonde", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 81, + "fields": { + "name": "Saison", + "category": "Strong Belgian Ale", + "category_id": "25", + "style_id": "25B", + "category_description": "This category contains the pale, well-attenuated, balanced to bitter beers, often more driven by yeast character than malt flavors, with generally higher alcohol (although a range exists within styles).", + "overall_impression": "A family of refreshing, highly attenuated, hoppy, and fairly bitter Belgian ales with a very dry finish and high carbonation. Characterized by a fruity, spicy, sometimes phenolic fermentation profile,and the use of cereal grains and sometimes spices for complexity. Several variations in strength and color exist.", + "aroma": "A pleasantly aromatic mix of fruity-spicy yeast and hops. The fruity esters are moderate to high, and often have a citrus fruit, pome fruit, or stone fruit character. Low to moderately-high spicy notes are often like black pepper, not clove. Hops are low to moderate and have a continental character (spicy, floral, earthy, or fruity). The malt is often overshadowed, but if detected is lightly grainy. Spices and herbs optional, but must not dominate. Sourness optional (see Comments).Strong versions have more aromatic intensity, and can add a light alcohol and moderate malt character. Table versions have less intensity and not have an alcohol character. Darker versions add malt character associated with darker grains.", + "appearance": "Pale gold to deep amber in color, sometimes pale orange. Long-lasting, dense, rocky white to ivory head. Belgian lace. Unfiltered, so clarity is variable (poor to good) and may be hazy. Effervescent. Darker versions can be copper to dark brown. Stronger versions may be a little deeper in color.", + "flavor": "A balance of fruity and spicy yeast, hoppy bitterness, and grainy malt with moderate to high bitterness, and a very dry finish. The fruity and spicy aspects are medium-low to medium-high, and hop flavor is low to medium, both with similar character as in the aroma (same descriptors apply). Malt is low to medium, with a soft, grainy palate. Very high attenuation, never with a sweet or heavy finish. Bitter, spicy aftertaste. Spices and herbs optional, but if used must be in harmony with the yeast. Sourness optional (see Comments).Darker versions will have more malt character, including flavors from the darker malts. Stronger versions will have greater malt intensity, and a light alcohol note.", + "mouthfeel": "Light to medium-low body. Very high carbonation. Effervescent. Light warming alcohol optional. Sourness rare but optional (see Comments).Stronger versions can have up to medium body and be somewhat warming. Table versions have no warmth.", + "comments": "This style generally describes the standard-strength pale version, followed by differences for variations in strength and color. Darker versions tend to have more malt character and less apparent hop bitterness, yielding a more balanced presentation. Stronger versions often have more malt flavor, richness, warmth, and body simply due to the higher gravity.There is no correlation between strength and color.Sourness is totally optional, and if present at low to moderate levels, it may substitute somewhat for bitterness in the balance. A Saison should not be both sour and bitter at the same time. The high attenuation may make the beer seem more bitter than the IBUs suggest. Pale versions are often more bitter and hoppy than darker versions. Yeast selection often drives the balance of fruity and spicy notes, and can change the character significantly; allow for a range of interpretations.Often called Farmhouse ales in the US, but this term is not common in Europe where they are simply part of a larger grouping of artisanal ales. Brettanomyces is not typical for this style; Saisons with Brett should be entered in the 28A Brett Beer style. A Grisette is a well-known type of Saison popular with miners; enter Grisette as 25B Saison, Session Strength, Comment: Grisette with wheat as the character grain.", + "history": "A provision ale from Wallonia, the French-speaking part of Belgium. Originally a lower-alcohol product so as to not debilitate farm and field workers, but tavern-strength products also existed. The best known modern saison, Saison Dupont, was first produced in the 1920s. Dupont’s super saison was first produced in 1954, and its brown version in the mid-1980s. Fantôme begain producing its ‘seasonal’ saisons in 1988. While the style retains its rustic image, they are now mostly made in large breweries.", + "style_comparison": "The pale, standard strength versions is like a more highly-attenuated, hoppy, and bitter Belgian Blond Ale with a stronger yeast character. At super strength and pale color, similar to a Belgian Tripel, but often with more of a grainy, rustic quality and sometimes with a spicier yeast character.", + "tags": "standard-strength, pale-color, top-fermented, western-europe, traditional-style, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00200", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.00800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "5.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Pale base malt. Cereal grains, such as wheat, oats, spelt, or rye. May contain sugary adjuncts. Continental hops. Spicy-fruity Belgian Saison yeast. Spices and herbs are uncommon, but allowable if they don’t dominate.", + "examples": "Ellezelloise Saison 2000, Lefebvre Saison 1900, Saison Dupont, Saison de Pipaix, Saison Voisin, Boulevard Tank 7", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the strength (table, standard, super) and the color (pale, dark). The entrant may identify character grains used.", + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 82, + "fields": { + "name": "Belgian Golden Strong Ale", + "category": "Strong Belgian Ale", + "category_id": "25", + "style_id": "25C", + "category_description": "This category contains the pale, well-attenuated, balanced to bitter beers, often more driven by yeast character than malt flavors, with generally higher alcohol (although a range exists within styles).", + "overall_impression": "A very pale, highly attenuated, strong Belgian ale that is more fruity and hoppy than spicy. Complex and delicate, the dry finish, light body, and high carbonationaccentuate the yeast and hop character.Sparkling carbonation and effervescent, forming a rocky white head.", + "aroma": "A complex bouquet of fruity esters, herbal hops, and peppery alcohol over a nearly neutral malt base. The esters are moderate to high, often pome fruit, especially pear. Hops are herbal, floral, or spicy, low to moderate. Alcohol and phenols often have a peppery or perfumy quality, low to moderate. Alcohol perception should be soft, not hot or solventy. Nearly neutral malt, possibly slightly grainy-sweet.", + "appearance": "Pale yellow to gold in color. Good clarity. Effervescent. Massive, long-lasting, rocky, white head resulting in characteristic Belgian lace on the glass as it fades.", + "flavor": "Flavor profile similar to aroma (same descriptors and intensities apply) for esters, hops, malt, phenols, and alcohol. The pear-like esters, peppery alcohol, herbal hops, and soft malt flavors carry through the palate into the long, dry finish and aftertaste. Medium to high bitterness, accentuated by the dry finish and high carbonation, lasts into the aftertaste.", + "mouthfeel": "Very highly carbonated.Effervescent. Light to medium body, lighter than the substantial gravity would suggest. Carbonation accentuates the perception of lightness. Smooth but noticeable alcohol warmth, not hot or solventy.", + "comments": "References to the devil are included in the names of many commercial examples of this style, referring to their potent alcoholic strength and as a tribute to the original example (Duvel). Traditionally bottle-conditioned.", + "history": "Developed by the Moortgat brewery after WWI as a response to the growing popularity of Pilsner beers. Originally a darker beer, it achieved its modern form by the 1970s.", + "style_comparison": "Often confused with Belgian Tripel, but is usually paler, lighter-bodied, crisper, and drier. Tends to use yeast that favor ester development (particularly pome fruit) over spiciness in the balance, and has more of a late hop character.", + "tags": "very-high-strength, pale-color, top-fermented, western-europe, traditional-style, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.09500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "22.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "7.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "10.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Pilsner malt with substantial sugary adjuncts. Continental hops. Fruity Belgian yeast. Fairly soft water. Spicing not traditional.", + "examples": "Brigand, Delirium Tremens, Duvel, Judas, Lucifer, Russian River Damnation", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 83, + "fields": { + "name": "Belgian Single", + "category": "Monastic Ale", + "category_id": "26", + "style_id": "26A", + "category_description": "Religious institutions have a long history of brewing in Belgium, although often interrupted by conflict and occupation such as during the Napoleonic Wars and World War I. Very few such institutions actually brew today, although many have licensed their names to commercial breweries. Despite the limited production, the traditional styles derived from these breweries have been quite influential and have spread beyond Belgium. Various terms have been used to describe these beers, but many are protected appellations and reflect the origin of the beer rather than a style. Those monasteries could brew any style they choose, but the ones described in this category are those that are most commonly associated with this brewing tradition.We differentiate beers in this category as those that were inspired by religious breweries. Despite claims of uniqueness, these beers do share a number of common attributes that help characterize the styles. All are top-fermenting, have very high attenuation (“more digestible” in Belgium), achieve high carbonation through bottle conditioning (“refermented in the bottle” in Belgium), and have distinctive, complex, and aggressive ‘Belgian’ spicy-estery yeast character. Many are strong in alcohol.", + "overall_impression": "A blond, bitter, hoppy table beer that is very dry and highly carbonated. The aggressive fruity-spicy Belgian yeast character and high bitterness is forward in the balance, with a soft, supportive grainy-sweet malt palate, and a spicy-floral hop profile.", + "aroma": "Medium-low to medium-high Belgian yeast character, showing a fruity-spicy character along with medium-low to medium spicy or floral hops, rarely enhanced by light herbal or citrusy spice additions. Low to medium-low malt backdrop, withbready, crackery, grainy, or light honey notes. Fruit expression can vary widely (apple, pear, grapefruit, lemon, orange, peach, apricot). Phenols are typically like black pepper or clove. Bubblegum inappropriate.", + "appearance": "Pale yellow to medium gold color. Generally good clarity, with a moderate-sized, persistent, billowy white head with characteristic lacing.", + "flavor": "Initial malty flavor is light and has a honeyed biscuit, bready, or cracker character. Grainy but soft malt palate, and a crisp, dry, hoppy-bitter finish. Moderate spicy or floral hop flavor on the palate. Moderate esters similar in character to aroma. Light to moderate spicy phenols as found in the aroma. Medium to high bitterness, accentuated by dryness.The yeast and hop character lasts into the aftertaste.", + "mouthfeel": "Medium-light to medium body. Smooth. Medium-high to high carbonation, can be somewhat prickly. Should not have noticeable alcohol warmth.", + "comments": "Often not labeled or available outside the monastery, or infrequently brewed. Might also be called monk’s beer, Brother’s beer, or simply a Blond (we don’t use this term to avoid confusion with the very different Belgian Blond Ale style). Highly attenuated, generally 85% or more.", + "history": "While monastic breweries have a tradition of brewing a lower-strength beer as a monk’s daily ration (Westmalle began making theirs in 1922), the bitter, pale beer this style describes is a relatively modern invention reflecting current tastes. Westvleteren first brewed theirs in 1999, but it replaced older lower-gravity products.", + "style_comparison": "Like a top-fermented Belgian interpretation of a German Pils – pale, hoppy, and well-attenuated, but with a strong Belgian yeast character. Has less sweetness, higher attenuation, less character malt, and is more hop-centered than a Belgian Pale Ale. More like a much smaller, more highly-hopped Belgian Tripel (with its bitterness and dryness) than a smaller Belgian Blond Ale.", + "tags": "standard-strength, pale-color, top-fermented, western-europe, craft-style, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "45.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00400", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "5.00000", + "ingredients": "Pilsner malt. Belgian yeast.Continental hops.", + "examples": "Chimay Gold, La Trappe Puur, Russian River Redemption, St. Bernardus Extra 4,Westmalle Extra, Westvleteren Blond", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 84, + "fields": { + "name": "Belgian Dubbel", + "category": "Monastic Ale", + "category_id": "26", + "style_id": "26B", + "category_description": "Religious institutions have a long history of brewing in Belgium, although often interrupted by conflict and occupation such as during the Napoleonic Wars and World War I. Very few such institutions actually brew today, although many have licensed their names to commercial breweries. Despite the limited production, the traditional styles derived from these breweries have been quite influential and have spread beyond Belgium. Various terms have been used to describe these beers, but many are protected appellations and reflect the origin of the beer rather than a style. Those monasteries could brew any style they choose, but the ones described in this category are those that are most commonly associated with this brewing tradition.We differentiate beers in this category as those that were inspired by religious breweries. Despite claims of uniqueness, these beers do share a number of common attributes that help characterize the styles. All are top-fermenting, have very high attenuation (“more digestible” in Belgium), achieve high carbonation through bottle conditioning (“refermented in the bottle” in Belgium), and have distinctive, complex, and aggressive ‘Belgian’ spicy-estery yeast character. Many are strong in alcohol.", + "overall_impression": "A deep reddish-copper, moderately strong, malty, complex Belgian ale with rich malty flavors, dark or dried fruit esters, and light alcohol blended together in a malty presentation that still finishes fairly dry.", + "aroma": "Moderate to moderately strong, rich malty aroma, with hints of chocolate, caramelized sugar, or toast. Never roasted or burnt. Moderate fruity esters, often dark or dried fruit, especially raisins and plums, sometimes pome fruit or banana. Low to moderate spicy, peppery phenols. Hops typically absent, but can have a low spicy, herbal, or floral character. The malt is strongest in the balance, with esters and spice adding complexity.Low soft, perfumy alcohol optional.", + "appearance": "Dark amber to copper in color, with an attractive reddish depth of color. Generally clear. Large, dense, and long-lasting creamy off-white head.", + "flavor": "Flavor profile similar to aroma (same descriptors and intensities apply) for malt, esters, phenols, alcohol, and hops. Medium-low to medium bitterness, but malt is always most prominent in the balance. The esters and phenols add complexity and interest to the malt, alcohol not typically tasted. Malty-rich, sometimes sweet flavor, that finishes moderately dry with a malty aftertaste accented by yeast esters and phenols.", + "mouthfeel": "Smooth, medium to medium-full body. Medium-high carbonation, which can influence the perception of body. Low alcohol warmth optional, never hot or solventy.", + "comments": "Most commercial examples are in the 6.5 – 7% ABV range. Can taste somewhat sweet due to restrained bitterness, but the beers are actually fairly dry.", + "history": "While dark and strong beers were produced long before, modern Dubbel traces back to the double brown or strong beer first produced at Westmalle in 1922 when the brewery was re-established after World War I. Other examples date from post-World War II.", + "style_comparison": "Perhaps similar to aDunkles Bock but with a Belgian yeast and sugar character. Similar in strength and balance to a Belgian Blond Ale, but with a richer malt and ester profile. Less strong and intense than a Belgian Dark Strong Ale.", + "tags": "high-strength, amber-color, top-fermented, western-europe, traditional-style, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "10.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "17.00000", + "ingredients": "Spicy-estery Belgian yeast. Impression of a complex grain bill, although many traditional versions are quite simple, with caramelized sugar syrup or unrefined sugars and yeast providing much of the complexity. Continental hops. Spices not typical; if present, should be subtle.", + "examples": "Chimay Red, Corsendonk Bruin, La Trappe Dubbel, Rochefort 6, St. Bernardus Pater 6, Westmalle Dubbel", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 85, + "fields": { + "name": "Belgian Tripel", + "category": "Monastic Ale", + "category_id": "26", + "style_id": "26C", + "category_description": "Religious institutions have a long history of brewing in Belgium, although often interrupted by conflict and occupation such as during the Napoleonic Wars and World War I. Very few such institutions actually brew today, although many have licensed their names to commercial breweries. Despite the limited production, the traditional styles derived from these breweries have been quite influential and have spread beyond Belgium. Various terms have been used to describe these beers, but many are protected appellations and reflect the origin of the beer rather than a style. Those monasteries could brew any style they choose, but the ones described in this category are those that are most commonly associated with this brewing tradition.We differentiate beers in this category as those that were inspired by religious breweries. Despite claims of uniqueness, these beers do share a number of common attributes that help characterize the styles. All are top-fermenting, have very high attenuation (“more digestible” in Belgium), achieve high carbonation through bottle conditioning (“refermented in the bottle” in Belgium), and have distinctive, complex, and aggressive ‘Belgian’ spicy-estery yeast character. Many are strong in alcohol.", + "overall_impression": "A strong,pale, somewhat spicy Belgian ale with a pleasant rounded malt flavor, firm bitterness, and dry finish. Quite aromatic, with spicy, fruity, and light alcohol notes combining with the supportive clean malt character to produce a surprisingly drinkable beverage considering the high alcohol content.", + "aroma": "Complex but seamless bouquet of moderate to significant spiciness, moderate fruity esters, low alcohol,low hops, and light malt. Generous spicy, peppery, sometimes clove-like phenols. Esters often reminiscent of citrus fruit, like oranges or lemons, but may sometimes have a slight ripe banana character. A low yet distinctive spicy, floral, sometimes perfumy hop character is optional. Alcohols are soft, spicy, and low in intensity. The malt character is light, with a soft, slightly grainy-sweet, or slightly honey-like impression.", + "appearance": "Deep yellow to pale amber in color. Good clarity. Effervescent. Long-lasting, creamy, rocky, white head resulting in characteristic Belgian laceon the glass as it fades.", + "flavor": "Flavor profile similar to aroma (same descriptors apply) for malt, esters, phenols, alcohol, and hops. Esters low to moderate, phenols low to moderate, hops low to moderate, alcohol low, all well combined in a coherent presentation. Medium to high bitterness, accentuated by a dry finish. Moderate bitterness in the aftertaste with substantial spicy-fruity yeast character.Should not be sweet.", + "mouthfeel": "Medium-light to medium body, although lighter than the substantial gravity would suggest. Highly carbonated. The alcohol content is deceptive, and has little to no obvious warming sensation. Effervescent. Should not be heavy.", + "comments": "High in alcohol but does not taste strongly of alcohol. The best examples are sneaky, not obvious. High carbonation and attenuation helps bring out the many flavors and to increase the perception of a dry finish. Most traditional versions have at least 30 IBUs and are very dry.", + "history": "Popularized by the monastery at Westmalle, first brewed in 1934.", + "style_comparison": "May resemble a Belgian Golden Strong Ale but slightly darker and a bit fuller-bodied, with more emphasis on phenols and less on esters, and fewer late hops. Should not seem like a blond Barleywine.", + "tags": "high-strength, pale-color, top-fermented, western-europe, traditional-style, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.08500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "7.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "4.50000", + "color_maximum_unit": "SRM", + "color_maximum_value": "7.00000", + "ingredients": "Pilsner malt, often pale sugar adjuncts. Continental hops. Spicy-fruity Belgian yeast strains. Spice additions are generally not traditional, and if used, should be a background character only. Fairly soft water.", + "examples": "Chimay Tripel, La Rulles Tripel, La Trappe Tripel, St. Bernardus Tripel, Val-Dieu Triple, Westmalle Tripel", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 86, + "fields": { + "name": "Belgian Dark Strong Ale", + "category": "Monastic Ale", + "category_id": "26", + "style_id": "26D", + "category_description": "Religious institutions have a long history of brewing in Belgium, although often interrupted by conflict and occupation such as during the Napoleonic Wars and World War I. Very few such institutions actually brew today, although many have licensed their names to commercial breweries. Despite the limited production, the traditional styles derived from these breweries have been quite influential and have spread beyond Belgium. Various terms have been used to describe these beers, but many are protected appellations and reflect the origin of the beer rather than a style. Those monasteries could brew any style they choose, but the ones described in this category are those that are most commonly associated with this brewing tradition.We differentiate beers in this category as those that were inspired by religious breweries. Despite claims of uniqueness, these beers do share a number of common attributes that help characterize the styles. All are top-fermenting, have very high attenuation (“more digestible” in Belgium), achieve high carbonation through bottle conditioning (“refermented in the bottle” in Belgium), and have distinctive, complex, and aggressive ‘Belgian’ spicy-estery yeast character. Many are strong in alcohol.", + "overall_impression": "A dark, complex, very strong Belgian ale with a delicious blend of malt richness, dark fruit flavors, and spicy notes. Complex, rich, smooth, and dangerous.", + "aroma": "A complex and fairly intense mix of rich maltiness and deep fruit, accentuated by spicy phenols and alcohol. The malt character is moderately-high to high and has a deep, bready-toasty base with dark caramel notes, but no impression of dark or roasted malt. Esters are strong to moderately low, and reminiscent of raisins, plums, dried cherries, figs,dates, or prunes. Spicy phenols like black pepper or vanilla, not clove, may be present as a low to moderate background character. A soft, spicy, perfumy, or rose-like alcohol is low to moderate, but never hot or solvent-like. Hops are usually not noticeable, but if present can add a light spicy, floral, or herbal character.", + "appearance": "Deep amber to deep coppery-brown in color (dark in the style name implies more deeply colored than golden, not black). Huge, dense, moussy, persistent cream- to light tan-colored head. Usually clear.", + "flavor": "Rich and complex maltiness, but not heavy in the finish. The flavor character is similar to the aroma (same malt, ester, phenol, alcohol, and hop comments apply here as well). Moderately malty-rich on the palate, which can have a sweet impression if bitterness is low. Usually moderately dry to dry finish, although may be up to moderately sweet. Medium-low to moderate bitterness; alcohol provides some of the balance to the malt. Generally malty-rich balance, but can be fairly even with bitterness. The complex and varied flavors should blend smoothly and harmoniously, and often benefit from age. The finish should not be heavy or syrupy.", + "mouthfeel": "High carbonation but not sharp. Smooth but noticeable alcohol warmth. Body can range from medium-light to medium-full and creamy. Most are medium-bodied.", + "comments": "Also known as a Belgian Quad, mainly outside of Belgium (Quadruple is the name of a specific beer). Has a wider range of interpretation than manyother Belgian styles. Traditional versions tend to be drier than many modern commercial versions, which can be rather sweet and full-bodied. Manyexamples are simply known by their strength or color designation. Some might be labeled Grand Cru, but this is more of a statement of quality than style.", + "history": "Westvleteren started making their version just before World War II, with Chimay and Rochefort adding their examples just after. Other monastic breweries created products towards the end of the 20th century, but some secular breweries began producing similar beers starting around 1960.", + "style_comparison": "Like a larger Belgian Dubbel, with a fuller body and increased malt richness. Not as bitter or hoppy as a Belgian Tripel, but of similar strength.", + "tags": "very-high-strength, amber-color, top-fermented, western-europe, traditional-style, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.11000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "8.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "12.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "12.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Spicy-estery Belgian yeast. Impression of a complex grain bill, although many traditional versions are quite simple, with caramelized sugar syrup or unrefined sugars and yeast providing much of the complexity. Continental hops. Spices not typical; if present, should be subtle.", + "examples": "Achel Extra Bruin, Boulevard The Sixth Glass, Chimay Blue, Rochefort 10, St. Bernardus Abt 12, Westvleteren 12", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 87, + "fields": { + "name": "Brett Beer", + "category": "American Wild Ale", + "category_id": "28", + "style_id": "28A", + "category_description": "The name American Wild Ale is commonly used by craft brewers and homebrewers. However, the word Wild does not imply that these beers are necessarily spontaneously-fermented; rather, it indicates that they are influenced by microbes other than traditional brewer’s yeasts, or perhaps that they are mixed-fermentation beers. The use of the word American does not mean that the beer has to be based on a Classic Style American beer style, or that the methods are solely practiced in the United States. Base styles in this category do not have to be Classic Styles at all (although they can be); something like, “blond ale, 7%” would be fine, since the underlying style is often lost under the fermentation character.This category is intended for a wide range of beers that do not fit traditional European sour, wild, or spontaneously-fermented styles. All of the styles in this category are Specialty-TypeBeers where many creative interpretations are possible, and the styles are defined only by the use of specific fermentation profiles and ingredients. As specialty styles, the mandatory description provided by the entrant is of the utmost importance to the judge.The styles in this category are differentiated by the types of yeast and bacteria used – see the preamble to each style for more information. We use the conversational shorthand terms used in the brewing industry: Brett for Brettanomyces, Sacch for Saccharomyces, Lacto for Lactobacillus, and Pedio for Pediococcus. See the Glossary for additional information. The Wild Specialty Beer style is for beers for other styles within this category when Specialty-Type Ingredients are added. Background levels of oak may be used in all styles within this category, but beers aged in other woods with unique flavors or barrels that contained other alcohol products must be entered in the Wild Specialty Beer style.", + "overall_impression": "Most often drier and fruitier than the base style suggests. Fruity or funky notes range from low to high, depending on the age of the beer and strains of Brett used. May possess a light non-lactic acidity.", + "aroma": "Variable by base style. Young Brett beers will possess more fruity notes (e.g., tropical fruit, stone fruit, or citrus), but this is variable by the strains of Brett used. Older Brett beers may start to develop a little funk (e.g., barnyard, wet hay, or slightly earthy or smoky notes), but this character should not dominate.", + "appearance": "Variable by base style. Clarity can be variable, and depends on the base style and ingredients used. Some haze is not necessarily a fault.", + "flavor": "Variable by base style. Brett character may range from minimal to aggressive. Can be quite fruity (e.g., tropical fruit, berry, stone fruit, citrus), or have some smoky, earthy, or barnyard character. Should not be unpleasantly funky, such as Band-Aid, fetid, nail polish remover, cheese, etc. Always fruitier when young, gaining more funk with age. May not be lactic. Malt flavors are often less pronounced than in the base style, leaving a beer most often dry and crisp due to high attenuation by the Brett.", + "mouthfeel": "Variable by base style. Generally has a light body, lighter than what might be expected from the base style but an overly thin body is a fault. Generally moderate to high carbonation. Head retention is variable, but often less than the base style.", + "comments": "The base style describes most of the character of these beers, but the addition of Brett ensures a drier, thinner, and often fruitier and funkier product. Younger versions are brighter and fruitier, while older ones possess more depth of funk and may lose more of the base style character. The Brett character should always meld with the style; these beers should never be a ‘Brett bomb’. WhileBrettcan produce low levels of organic acids, itis not a primary beer souring method.", + "history": "Modern American craft beer interpretations of Belgian wild ales, or experimentations inspired by Belgian wild ales or historical English beers with Brett. So-called 100% Brett beers gained popularity after the year 2000, but this was when S. Trois was thought to be a Brett strain (which it isn’t).Brettused in conjunction with a Sacch fermentation is standard practice now.", + "style_comparison": "Compared to the same beer style without Brett, a Brett Beer will be drier, more highly attenuated, fruitier, lighter in body, and slightly funkier as it ages. Less sourness and depth than Belgian ‘wild’ ales.", + "tags": "wild-fermentation, north-america, craft-style, specialty-beer", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Virtually any style of beer (except those already using a Sacch/Brettco-fermentation), then finished with one or more strains of Brett. Alternatively, a mixed fermentation with Sacch and one or more strains of Brett.No Lacto.", + "examples": "Boulevard Saison Brett, Hill Farmstead Arthur, Logsdon Seizoen Bretta, Lost Abbey Brett Devo, Russian River Sanctification, The Bruery Saison Rue", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify either a Base Style,or provide a description of the ingredients, specs, or desired character. The entrant may specify the strains of Brett used.", + "notes": "Intended for beer with or without oak aging that has been fermented with Sacch and Brett, or with Brett only.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "Variable by base style.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 88, + "fields": { + "name": "Mixed-Fermentation Sour Beer", + "category": "American Wild Ale", + "category_id": "28", + "style_id": "28B", + "category_description": "The name American Wild Ale is commonly used by craft brewers and homebrewers. However, the word Wild does not imply that these beers are necessarily spontaneously-fermented; rather, it indicates that they are influenced by microbes other than traditional brewer’s yeasts, or perhaps that they are mixed-fermentation beers. The use of the word American does not mean that the beer has to be based on a Classic Style American beer style, or that the methods are solely practiced in the United States. Base styles in this category do not have to be Classic Styles at all (although they can be); something like, “blond ale, 7%” would be fine, since the underlying style is often lost under the fermentation character.This category is intended for a wide range of beers that do not fit traditional European sour, wild, or spontaneously-fermented styles. All of the styles in this category are Specialty-TypeBeers where many creative interpretations are possible, and the styles are defined only by the use of specific fermentation profiles and ingredients. As specialty styles, the mandatory description provided by the entrant is of the utmost importance to the judge.The styles in this category are differentiated by the types of yeast and bacteria used – see the preamble to each style for more information. We use the conversational shorthand terms used in the brewing industry: Brett for Brettanomyces, Sacch for Saccharomyces, Lacto for Lactobacillus, and Pedio for Pediococcus. See the Glossary for additional information. The Wild Specialty Beer style is for beers for other styles within this category when Specialty-Type Ingredients are added. Background levels of oak may be used in all styles within this category, but beers aged in other woods with unique flavors or barrels that contained other alcohol products must be entered in the Wild Specialty Beer style.", + "overall_impression": "A sour andfunky version of a base style of beer.", + "aroma": "Variable by base style. The contribution of non-Sacch microbes should be noticeable to strong, and often contribute a sour and funky, wild note. The best examples will display a range of aromatics, rather than a single dominant character. The aroma should be inviting, not harsh or unpleasant.", + "appearance": "Variable by base style. Clarity can be variable; some haze is not a fault. Head retention can be poor.", + "flavor": "Variable by base style. Look for an agreeable balance between the base beer and the fermentation character. A range of results is possible from fairly high acidity and funk to a subtle, pleasant, harmonious beer. The best examples are pleasurable to drink with the esters and phenols complementing the malt or hops. The wild character can be prominent, but does not need to be dominating in a style with an otherwise strong malt or hop profile. Acidity should be firm yet enjoyable, and ranging from clean to complex, but should not be biting or vinegary; prominent, objectionable, or offensive acetic acid is a fault. Bitterness tends to be low, especially as sourness increases.", + "mouthfeel": "Variable by base style. Generally has a light body, almost always lighter than what might be expected from the base style. Generally moderate to high carbonation, although often lower in higher alcohol examples.", + "comments": "The base beer style becomes less relevant in this style because the various yeast and bacteria tend to dominate the profile. Bitterness is often reserved since bitter and sour flavors clash on the palate. Inappropriate characteristics include diacetyl, solvent, ropy or viscous texture, and heavy oxidation.", + "history": "Modern American craft beer interpretations of Belgian sour ales, or experimentations inspired by Belgian sour ales.", + "style_comparison": "A sour and funky version of a base style, but do not necessarily have to be as sour or as funky as some traditional European sour examples.", + "tags": "wild-fermentation, north-america, craft-style, specialty-beer, sour", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Virtually any style of beer. Usually fermented by some combination ofLacto,Pedio, Sacch, and Brett. Can also be a blend of styles. Wood or barrel aging is very common, but not required; if present, should not be a primary or dominant flavor.", + "examples": "Boulevard Love Child, Jester King Le Petit Prince, Jolly Pumpkin Oro de Calabaza, Lost Abbey Ghosts in the Forest, New Belgium Le Terroir, Russian River Temptation", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify a description of the beer, identifying yeast or bacteria used and either a Base Style, or the ingredients, specs, or target character of the beer.", + "notes": "Intended for beer fermented with any combination of Sacch, Lacto, Pedio, and Brett (or additional yeast or bacteria), with or without oak aging (except if the beer fits instead in 28A or 28D).", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "Variable by base style.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 89, + "fields": { + "name": "Wild Specialty Beer", + "category": "American Wild Ale", + "category_id": "28", + "style_id": "28C", + "category_description": "The name American Wild Ale is commonly used by craft brewers and homebrewers. However, the word Wild does not imply that these beers are necessarily spontaneously-fermented; rather, it indicates that they are influenced by microbes other than traditional brewer’s yeasts, or perhaps that they are mixed-fermentation beers. The use of the word American does not mean that the beer has to be based on a Classic Style American beer style, or that the methods are solely practiced in the United States. Base styles in this category do not have to be Classic Styles at all (although they can be); something like, “blond ale, 7%” would be fine, since the underlying style is often lost under the fermentation character.This category is intended for a wide range of beers that do not fit traditional European sour, wild, or spontaneously-fermented styles. All of the styles in this category are Specialty-TypeBeers where many creative interpretations are possible, and the styles are defined only by the use of specific fermentation profiles and ingredients. As specialty styles, the mandatory description provided by the entrant is of the utmost importance to the judge.The styles in this category are differentiated by the types of yeast and bacteria used – see the preamble to each style for more information. We use the conversational shorthand terms used in the brewing industry: Brett for Brettanomyces, Sacch for Saccharomyces, Lacto for Lactobacillus, and Pedio for Pediococcus. See the Glossary for additional information. The Wild Specialty Beer style is for beers for other styles within this category when Specialty-Type Ingredients are added. Background levels of oak may be used in all styles within this category, but beers aged in other woods with unique flavors or barrels that contained other alcohol products must be entered in the Wild Specialty Beer style.", + "overall_impression": "An American Wild Ale with fruit, herbs, spices, or other Specialty-Type Ingredients.", + "aroma": "Variable by base style. The Specialty-Type Ingredients should be evident, as well as thedefining characteristics of a wild fermentation per the base style. The best examples will blend the aromatics from the fermentation with the special ingredients, creating an aroma that may be difficult to attribute precisely.", + "appearance": "Variable by base style, generally showing a color, tint, or hue from any Specialty-Type Ingredient (especially if fruit is used) in both the beer and the head. Clarity can be variable; some haze is not a fault. Head retention is often poor.", + "flavor": "Variable by base style. The Specialty-Type Ingredients should be evident, as well as thedefining characteristics of a wild fermentation per the base style. If fruit was fermented, the sweetness is generally gone so that only the fruit esters typically remain. Fruit and other Specialty-Type Ingredients can add sourness of their own; if so, the sourness could be prominent, but should not be overwhelming. The acidity and tannin from any fruit or other Specialty-Type Ingredients can both enhance the dryness of the beer, so care must be taken with the balance. The acidity should enhance the perception of any fruit flavor, not detract from it. Wood notes, if present, add flavor but should be balanced.", + "mouthfeel": "Variable by base style. Generally has a light body, lighter than what might be expected from the base style. Generally moderate to high carbonation; carbonation should balance the base style if one is declared. The presence of tannin from some Specialty-Type ingredients (often fruit or wood) can provide a slight astringency, enhance the body, or make the beer seem drier than it is.", + "comments": "This style is intended for fruited (and other added Specialty-TypeIngredient) versions of other styles within Category 28, not variations of European wild or sour Classic Styles. Fruited versions of Lambic should be entered in 23F Fruit Lambic. Fruited versions of other sour Classic Styles (e.g., Flanders Red, Oud Bruin, Gose, Berliner Weisse) should be entered in 29A Fruit Beer. Beers with sugars and unfermented fruit added post-fermentation should be entered in 29C Specialty Fruit Beer.", + "history": "Modern American craft beer interpretations of Belgian wild ales, or experimentations inspired by Belgian wild ales.", + "style_comparison": "Like a fruit, herb, spice, or wood beer, but sour or funky.", + "tags": "wild-fermentation, north-america, craft-style, specialty-beer, sour, fruit", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Virtually any style of beer. Any combination of Sacch, Brett, Lacto, Pedio, or other similar fermenters. Can also be a blend of styles. While cherries, raspberries, and peaches are most common, other fruits can be used as well. Vegetables with fruit-like characteristics (e.g., chile, rhubarb, pumpkin) may also be used. Wood or barrel aging is very common, but not required. Wood with unusual or unique flavor characteristics, or wood previously in contact with other types of alcohol is allowable.", + "examples": "Cascade Bourbonic Plague, Jester King Atrial Rubicite, New Belgium Dominga Mimosa Sour, New Glarus Wisconsin Belgian Red, Russian River Supplication, The Lost Abbey Cuvee de Tomme", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "Entrant must specify anySpecialty-Type Ingredient (e.g., fruit, spice, herb, or wood) used. Entrant must specify eithera description of the beer, identifying yeast or bacteria used and either a Base Style, or the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", + "notes": "Intended for variations of a Base Stylebeer from style 28A, 28B, or 28D. These variations may include the additionof one or more Specialty-TypeIngredients; aging in non-traditional wood varieties that impart a significant and identifiable wood character (e.g., Spanish Cedar, Amburana); oraging in barrels previously containing another alcohol (e.g., spirits, wine, cider).", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "Variable by base style.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 90, + "fields": { + "name": "Straight Sour Beer", + "category": "American Wild Ale", + "category_id": "28", + "style_id": "28D", + "category_description": "The name American Wild Ale is commonly used by craft brewers and homebrewers. However, the word Wild does not imply that these beers are necessarily spontaneously-fermented; rather, it indicates that they are influenced by microbes other than traditional brewer’s yeasts, or perhaps that they are mixed-fermentation beers. The use of the word American does not mean that the beer has to be based on a Classic Style American beer style, or that the methods are solely practiced in the United States. Base styles in this category do not have to be Classic Styles at all (although they can be); something like, “blond ale, 7%” would be fine, since the underlying style is often lost under the fermentation character.This category is intended for a wide range of beers that do not fit traditional European sour, wild, or spontaneously-fermented styles. All of the styles in this category are Specialty-TypeBeers where many creative interpretations are possible, and the styles are defined only by the use of specific fermentation profiles and ingredients. As specialty styles, the mandatory description provided by the entrant is of the utmost importance to the judge.The styles in this category are differentiated by the types of yeast and bacteria used – see the preamble to each style for more information. We use the conversational shorthand terms used in the brewing industry: Brett for Brettanomyces, Sacch for Saccharomyces, Lacto for Lactobacillus, and Pedio for Pediococcus. See the Glossary for additional information. The Wild Specialty Beer style is for beers for other styles within this category when Specialty-Type Ingredients are added. Background levels of oak may be used in all styles within this category, but beers aged in other woods with unique flavors or barrels that contained other alcohol products must be entered in the Wild Specialty Beer style.", + "overall_impression": "A pale, refreshing, sour beer with a clean lactic sourness. A gentle, pale malt flavor supports the lemony sourness with moderate fruity esters.", + "aroma": "A sharply sour character is dominant (moderately-high to high). Can have up to a moderately fruity character (often peach, apricot, lemon, or tart apple). No hop aroma. Pale malt dominates, usually biscuity or crackery. Clean fermentation.", + "appearance": "Very pale in color. Clarity ranges from clear to somewhat hazy. Large, dense, white head with poor retention. Effervescent.", + "flavor": "Clean lactic sourness dominates and can be quite strong. Some complementary, bready, biscuit, crackery,or grainy flavor is generally noticeable. Hop bitterness is undetectable. Never vinegary or bitingly acidic. Pale fruit character can be moderate including a citrusy-lemony or tart apple fruitiness may be detected. Finish is off-dry to dry. Balance dominated by sourness, but some malt and estery fruit flavor should be present. No hop flavor. Clean.", + "mouthfeel": "Light body. Moderate to high carbonation. Never hot, although higher gravity examples can have a warming alcohol character. Crisp acidity.", + "comments": "A stronger version of a Berliner Weisse-type beer with less restrictive grist, and no Brett. This beer style istypically are used as a base for modern beers that are heavily flavored with fruit, spices, sugars, etc. – those should be entered in 28C Wild Specialty Beer.", + "history": "German brewing scientist, Otto Francke, developed what was to become known as the Francke acidification process which allowed the traditional mixed-culture Berliner Weiss methods to be sped up and more consistent; this is also known as kettle souring. Many modern commercial sour beer examples use this method for rapid production, and as an alternative to complex barrel production.", + "style_comparison": "Lower gravity examples can be very much like a Brett-free Berliner Weisse. Compared to a Lambic, is generally not as acidic and has a clean lactic sourness with restrained to below sensory threshold funk. Higher in alcohol content than both.", + "tags": "pale-color, top-fermented, sour", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "3.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "8.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "3.00000", + "ingredients": "Most or all of the grist is pale, Pils, or wheat malt in any combination. Lightly-kilned malts for more malt depth may be employed. Carapils-type malts can be used for body.Pale sugars can be used to increase gravity without body. No lactose or maltodextrin. Maybe be produced by kettle souring, co-fermentation culture (yeast and LAB), or using specialty yeast that produce lactic acid. No Brett.", + "examples": "Rarely found, as this style is typically the base for other Specialty-Type Beers.", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": "Intended for beers fermented with Sacch and Lacto, with or without oak aging, produced using any technique (e.g., traditional co-fermentation, quick kettle souring).", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 91, + "fields": { + "name": "Fruit Beer", + "category": "Fruit Beer", + "category_id": "29", + "style_id": "29A", + "category_description": "The Fruit Beer category is for beer made with any fruit or combination of fruit under the definitions of this category. The culinary, not botanical, definition of fruit is used here – fleshy, seed-associated structures of plants that are sweet or sour, and edible in the raw state. Examples include pome fruit (apple, pear, quince), stone fruit (cherry, plum, peach, apricot, mango, etc.), berries (any fruit with the word ‘berry’ in it), currants, citrus fruit, dried fruit (dates, prunes, raisins, etc.), tropical fruit (banana, pineapple, mango, guava, passionfruit, papaya, etc.), figs, pomegranate, prickly pear, and so on. It does not mean spices, herbs, or vegetables as defined in Category 30 – especially botanical fruit treated as culinary vegetables. Basically, if you have to justify a fruit using the word “technically” as part of the description, then that’s not what we mean.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", + "overall_impression": "A pleasant integration of fruit with beer, but still recognizable as beer. The fruit character should be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "aroma": "Varies by base style. The fruit character should be noticeable in the aroma; however, some fruit (e.g., raspberries, cherries) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) – allow for a range of fruit character and intensities from subtle to aggressive. Hop aroma may be lower than in the base style to better show the fruit character. The fruit should add an extra complexity, but not be so prominent as to unbalance the resulting presentation.", + "appearance": "Varies by base style and special ingredients. Lighter-colored beer should show distinctive ingredient colors, including in the head. The color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. Variable clarity, although haze is generally undesirable. Some ingredients may impact head retention.", + "flavor": "Varies by base style. As with aroma, distinctive fruit flavors should be noticeable, and may range in intensity from subtle to aggressive, but the fruit character should not be so artificial or inappropriately overpowering as to suggest a ‘fruit juice drink.’ Bitterness, hop and malt flavors, alcohol content, and fermentation byproducts, such as esters, should be appropriate for the base style, but be harmonious and balanced with the distinctive fruit flavors present.Fruit generally adds flavor not sweetness, since fruitsugars usually fully ferment,thus lightening the flavor and drying out the finish. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality. Some fruit may add sourness, bitterness, and tannins, which must be balanced in the resulting flavor profile.", + "mouthfeel": "Varies by base style. Fruitoften decreases body, and makes the beer seem lighter on the palate. Some smaller and darker fruits may add a tannic depth, but this astringency should not overwhelm the base beer.", + "comments": "The description of the beer is critical for evaluation; judges should think more about the declared concept than trying to detect each individual ingredient. Balance, drinkability, and execution of the theme are the most important deciding factors. The fruit should complement the original style and not overwhelm it. Base style attributes will be different after the addition of fruit; do not expect the beer to taste identical to the unadulterated base style.Fruit Beers based on a Classic Style should be entered in this style, except Lambic – there is a special style for Fruit Lambic (23F). Fruited sour or mixed fermentation beers without a Classic Style base should be entered in the 28C Wild Specialty Beer. Fruited versions of sour Classic Style beers (e.g., Flanders Red, Oud Bruin, Gose, Berliner Weisse) should be entered in 29A Fruit Beer. Fruit-based versions of Classic Styles where spices are an inherent part of the Classic Style’s definition (e.g., Witbier, Gose) do not count as a Spice Beer for entering purposes.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, fruit", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "21st Amendment Watermelon Wheat, Anderson Valley Blood Orange Gose, Avery Liliko’i Kepolo, Ballast Point Grapefruit Sculpin, Bell’s Cherry Stout, Founders Rübæus", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the type(s) of fruit used. Entrant must specify a description of the beer, identifying either a Base Styleor the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", + "notes": null, + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer, but the fruit will often be reflected in the color.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 92, + "fields": { + "name": "Fruit and Spice Beer", + "category": "Fruit Beer", + "category_id": "29", + "style_id": "29B", + "category_description": "The Fruit Beer category is for beer made with any fruit or combination of fruit under the definitions of this category. The culinary, not botanical, definition of fruit is used here – fleshy, seed-associated structures of plants that are sweet or sour, and edible in the raw state. Examples include pome fruit (apple, pear, quince), stone fruit (cherry, plum, peach, apricot, mango, etc.), berries (any fruit with the word ‘berry’ in it), currants, citrus fruit, dried fruit (dates, prunes, raisins, etc.), tropical fruit (banana, pineapple, mango, guava, passionfruit, papaya, etc.), figs, pomegranate, prickly pear, and so on. It does not mean spices, herbs, or vegetables as defined in Category 30 – especially botanical fruit treated as culinary vegetables. Basically, if you have to justify a fruit using the word “technically” as part of the description, then that’s not what we mean.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", + "overall_impression": "A tasteful union of fruit, spice, and beer, but still recognizable as beer. The fruit and spice character should each be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "aroma": "Varies by base style. The fruit and spice character should be noticeable in the aroma; however, note that some fruit and spices (e.g., raspberries, cherries, cinnamon, ginger) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) – allow for a range of fruit and spice character and intensity from subtle to aggressive. Hop aroma may be lower than in the base style to better show the specialty character. The specialty ingredients should add an extra complexity, but not be so prominent as to unbalance the resulting presentation.", + "appearance": "Varies by base style and special ingredients. Lighter-colored beer should show distinctive ingredient colors, including in the head. The color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. Variable clarity, although haze is generally undesirable. Some ingredients may impact head retention.", + "flavor": "Varies by base style. As with aroma, distinctive fruit and spice flavors should be noticeable, and may range in intensity from subtle to aggressive. The fruit character should not be so artificial or inappropriately overpowering as to suggest a spiced fruit juice drink. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation byproducts, such as esters, should be appropriate to the base style, but be harmonious and balanced with the distinctive fruit and spice flavors present. Fruit generally add flavor not sweetness, since fruit sugars usually fully ferment, thus lightening the flavor and drying out the finish. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality. Some ingredients may add sourness, bitterness, and tannins, which must be balanced in the resulting flavor profile.", + "mouthfeel": "Varies by base style. Fruitoften decreases body, and makes the beer seem lighter on the palate. Some smaller and darker fruits may add a tannic depth, but this astringency should not overwhelm the base beer. SHVs may increase or decrease body. Some SHVs may add a bit of astringency, although a “raw” spice character is undesirable.", + "comments": "The description of the beer is critical for evaluation; judges should think more about the declared concept than trying to detect each individual ingredient. Balance, drinkability, and execution of the theme are the most important deciding factors. The specialty ingredients should complement the original style and not overwhelm it. Base style attributes will be different after the addition of fruit and spices; do not expect the beer to taste identical to the unadulterated base style.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, fruit, spice", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Cigar City Margarita Gose, Firestone Walker Chocolate Cherry Stout, Golden Road Spicy Mango Cart, Kona Island Colada Cream Ale, New Glarus Blueberry Cocoa Stout, Sun King Orange Vanilla Sunlight", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the type of fruit, and the type of SHV used; individual SHV ingredients do not need to be specified if a well-known blend of spices is used (e.g., apple pie spice).Entrant must specify a description of the beer, either a Base Styleor the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", + "notes": "Use the definitions of Fruit in the preamble to Category 29 and Spice in the preamble to Category 30; any combination of ingredients valid in Styles 29A and 30A are allowable in this category. For this style, the word ‘spice’ means ‘any SHV’.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer, but the fruit will often be reflected in the color.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 93, + "fields": { + "name": "Specialty Fruit Beer", + "category": "Fruit Beer", + "category_id": "29", + "style_id": "29C", + "category_description": "The Fruit Beer category is for beer made with any fruit or combination of fruit under the definitions of this category. The culinary, not botanical, definition of fruit is used here – fleshy, seed-associated structures of plants that are sweet or sour, and edible in the raw state. Examples include pome fruit (apple, pear, quince), stone fruit (cherry, plum, peach, apricot, mango, etc.), berries (any fruit with the word ‘berry’ in it), currants, citrus fruit, dried fruit (dates, prunes, raisins, etc.), tropical fruit (banana, pineapple, mango, guava, passionfruit, papaya, etc.), figs, pomegranate, prickly pear, and so on. It does not mean spices, herbs, or vegetables as defined in Category 30 – especially botanical fruit treated as culinary vegetables. Basically, if you have to justify a fruit using the word “technically” as part of the description, then that’s not what we mean.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", + "overall_impression": "A appealing combination of fruit, sugar, and beer, but still recognizable as a beer. The fruit and sugar character should both be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "aroma": "Same as Fruit Beer, except that some additional fermentables (e.g., honey, molasses) may add an aroma component. Whatever additional aroma component is present should be in balance with the fruit and the beer components, and be a pleasant combination.", + "appearance": "Same as Fruit Beer.", + "flavor": "Same as Fruit Beer, except that some additional fermentables (e.g., honey, molasses) may add a flavor component. Whatever additional flavor component is present should be in balance with the fruit and the beer components, and be a pleasant combination. Added sugars should not have a raw, unfermented flavor. Some added sugars will have unfermentable elements that may provide a fuller and sweeter finish; fully fermentable sugars may thin out the finish.", + "mouthfeel": "Same as Fruit Beer, although depending on the type of sugar added, could increase or decrease the body.", + "comments": "If the additional fermentables or processes do not add a distinguishable character to the beer, enter it as one of the other (non-Specialty) Fruit Beer styles and omit a description of the extra ingredients or processes.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, fruit", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "The Bruery Goses are Red,New Planet Raspberry Ale, Tired Hands Strawberry Milkshake IPA, WeldWerks Piña Colada IPA", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the type of fruit used. The entrant must specify the type of additional ingredient (per the introduction) or special process employed.Entrant must specify a description of the beer, identifying either a Base Styleor the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", + "notes": "A Specialty Fruit Beer is a Fruit Beer with some additional ingredients, such as fermentable sugars (e.g., honey, brown sugar, invert sugar), sweeteners (e.g., lactose), adjuncts, alternative grains, or other special ingredients added, or some additional process applied. A Specialty Fruit Beer can use any style within the Fruit Beer category as a base style (currently, 29A, 29B, or 29D).", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer, but the fruit will often be reflected in the color.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 94, + "fields": { + "name": "Grape Ale", + "category": "Fruit Beer", + "category_id": "29", + "style_id": "29D", + "category_description": "The Fruit Beer category is for beer made with any fruit or combination of fruit under the definitions of this category. The culinary, not botanical, definition of fruit is used here – fleshy, seed-associated structures of plants that are sweet or sour, and edible in the raw state. Examples include pome fruit (apple, pear, quince), stone fruit (cherry, plum, peach, apricot, mango, etc.), berries (any fruit with the word ‘berry’ in it), currants, citrus fruit, dried fruit (dates, prunes, raisins, etc.), tropical fruit (banana, pineapple, mango, guava, passionfruit, papaya, etc.), figs, pomegranate, prickly pear, and so on. It does not mean spices, herbs, or vegetables as defined in Category 30 – especially botanical fruit treated as culinary vegetables. Basically, if you have to justify a fruit using the word “technically” as part of the description, then that’s not what we mean.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", + "overall_impression": "Combines the profile of a sparkling wine and a relatively neutral base beer allowing the aromatic qualities of the grape to blend pleasantly with hop and yeast aromatics. Can be in a range from refreshing to complex.", + "aroma": "Aromatic characteristics of the varietal grape are noticeable but should not dominate. The grape character should meld well with the underlyingbase malt character. While hop aroma is usually restrained, it can range from medium-low to entirely absent. Fermentation is usually quite clean but can have delicate spice and fruity esters. Banana, bubblegum, and the like are considered faults.", + "appearance": "Color can range from pale golden to ruby but thoseusing red grapestend towards burgundy. These darker colors may also come from using cooked or concentrated grape products, never from specialty dark grains. White to reddish head with generally a medium-low retention. Clarity is generally good. Never hazy.", + "flavor": "As with the aroma, grape character may range from subtle to medium-high intensity, and be most prominent. Fruit flavors (stone, tropical, berries, etc.) as appropriate for the variety of grape. Darker red grapes can contribute more rustic flavors (e.g.,earthy, tobacco, leather). The malt character is supportive, not robust and usually of the pale, lightly kilned varieties. Very low levels of pale crystal malts are allowed but roasted or strong chocolate character is always inappropriate. Bitterness is generally low and hop flavors can be low to non-existent. Mild tart notes, due to variety and amount of grape used, is common and may help to improve the digestibility but should not near ‘sour’ threshold. Complementary oak is optional but a funky Brett character should not be present. Clean fermentation.", + "mouthfeel": "Medium-high to high carbonation improves the perception of aroma. Body is generally from low to medium and some acidity can contribute to increased perception of dryness. Finish is exceedingly dry and crisp. Strong examples may show some warming.", + "comments": "Strengths can be as low as 4.5% or as high as 12.5%, but most commonly in the range listed. Perception of color varies widely based on tint of added fruit.", + "history": "Initially brewed at Birrificio Montegioco and Birrificio Barley in 2006-2007. Became more popular after being published in the 2015 Guidelines as Italian Grape Ale (IGA), and inspired many local variations in other countries.Characteristic", + "style_comparison": "Similar base asseveral Belgian styles, likeBelgian Blonde, Saison, and Belgian Single, but with grapes. Higher strength examples are similar to Belgian Tripel or Belgian Golden Strong Ale, but with grapes. Not funky like Fruit Lambic.", + "tags": "specialty-beer, fruit", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05900", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "10.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00400", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "4.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "8.00000", + "ingredients": "Pils or pale base malt, limited pale crystal or wheat malts. Grape must(red or white varieties, typically fresh must) is usually 15 – 20% of the total grist, but can exceed 40%. The must is fermented with the beer, not a blending of wine and beer. Fruity-spicy yeast are most common but neutral varieties can be used. Hops should be selected to complement the overall profile. This beer is not dry-hopped.Oak is allowable, but not required, and it should not be overpowering, or at levels stronger than found in wine.", + "examples": "Montegioco Open Mind, Birrificio del Forte Il Tralcio, Luppolajo Mons Rubus, Firestone Walker Feral Vinifera, pFriem Family Brewers Druif, 4 Árvores Abbondanza", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the type of grape used. The entrant mayprovide additional information about the base style or characteristic ingredients.", + "notes": "Originally a local Italian style that subsequently inspired brewers in grape-growing regions worldwide to produce versions showcasing local varietals. See X3 Italian Grape Ale for the local version.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 95, + "fields": { + "name": "Spice, Herb, or Vegetable Beer", + "category": "Spiced Beer", + "category_id": "30", + "style_id": "30A", + "category_description": "We use the common or culinary definitions of spices, herbs, and vegetables, not botanical or scientific ones. In general, spices are the dried seeds, seed pods, fruit, roots, bark, etc. of plants used for flavoring food. Herbs are leafy plants or parts of plants (leaves, flowers, petals, stalks) used for flavoring food. Vegetables are savory or less sweet edible plant products, used primarily for cooking or sometimes eating raw. Vegetables can include some botanical fruit. This category explicitly includes all culinary spices, herbs, and vegetables, as well as nuts (or anything with ‘nut’ in the name, including coconut), chile peppers, coffee, chocolate, spruce tips, rose hips, hibiscus, fruit peels/zest (but not juice), rhubarb, and the like. It does not include culinary fruit or grains. Flavorful fermentable sugars and syrups (e.g., agave nectar, maple syrup, molasses, sorghum, treacle, honey) or sweeteners (e.g., lactose) can be included only in combination with other allowable ingredients, and should not have a dominant character. Any combination of allowable ingredients may also be entered. See Category 29 for a definition and examples of fruit.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", + "overall_impression": "An appealing fusion of spices, herbs, or vegetables (SHVs) and beer, but still recognizable as beer. The SHV character should be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "aroma": "Varies by base style. The SHV character should be noticeable in the aroma; however, some SHVs (e.g., ginger, cinnamon, rosemary) have stronger aromas and are more distinctive than others (e.g., most vegetables) – allow for a range of SHV character and intensity from subtle to aggressive. Hop aroma may be lower than in the base style to better show the SHV character. The SHVs should add an extra complexity, but not be so prominent as to unbalance the resulting presentation.", + "appearance": "Varies by base style and special ingredients. Lighter-colored beer may show distinctive ingredient colors, including in the head. Variable clarity, although haze is generally undesirable. Some ingredients may impact head retention.", + "flavor": "Varies by base style. As with aroma, distinctive SHV flavors should be noticeable, and may range in intensity from subtle to aggressive. Some SHVs are inherently bitter and may result in a beer more bitter than the declared base style. Bitterness, hop and malt flavors, alcohol content, and fermentation byproducts, such as esters, should be appropriate for the base style, but be harmonious and balanced with the distinctive SHV flavors present.", + "mouthfeel": "Varies by base style. SHVs may increase or decrease body. Some SHVs may add a bit of astringency, although a “raw” spice character is undesirable.", + "comments": "The description of the beer is critical for evaluation; judges should think more about the declared concept than trying to detect each individual ingredient. Balance, drinkability, and execution of the theme are the most important deciding factors. The SHVs should complement the original style and not overwhelm it. Base style attributes will be different after the addition of SHVs; do not expect the beer to taste identical to the unadulterated base style.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, spice", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Alesmith Speedway Stout, Elysian Avatar Jasmine IPA, Founders Breakfast Stout, Rogue Yellow Snow Pilsner, Traquair Jacobite Ale, Young’s Double Chocolate Stout", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the type of spices, herbs, or vegetables used, but individual ingredients do not need to be specified if a well-known spice blend is used (e.g., apple pie spice, curry powder, chili powder). Entrant must specify a description of the beer, identifying either a Base Style or the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", + "notes": "Often called Spice Beer, regardless of whether spices, herbs, or vegetables are used.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 96, + "fields": { + "name": "Autumn Seasonal Beer", + "category": "Spiced Beer", + "category_id": "30", + "style_id": "30B", + "category_description": "We use the common or culinary definitions of spices, herbs, and vegetables, not botanical or scientific ones. In general, spices are the dried seeds, seed pods, fruit, roots, bark, etc. of plants used for flavoring food. Herbs are leafy plants or parts of plants (leaves, flowers, petals, stalks) used for flavoring food. Vegetables are savory or less sweet edible plant products, used primarily for cooking or sometimes eating raw. Vegetables can include some botanical fruit. This category explicitly includes all culinary spices, herbs, and vegetables, as well as nuts (or anything with ‘nut’ in the name, including coconut), chile peppers, coffee, chocolate, spruce tips, rose hips, hibiscus, fruit peels/zest (but not juice), rhubarb, and the like. It does not include culinary fruit or grains. Flavorful fermentable sugars and syrups (e.g., agave nectar, maple syrup, molasses, sorghum, treacle, honey) or sweeteners (e.g., lactose) can be included only in combination with other allowable ingredients, and should not have a dominant character. Any combination of allowable ingredients may also be entered. See Category 29 for a definition and examples of fruit.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", + "overall_impression": "A malty, spiced beer that often has a moderately rich body and slightly warming finish suggesting a good accompaniment for the cool fall season, and often evocative of harvest or Thanksgiving traditions.", + "aroma": "Malty, spicy, and balanced. A wide range is possible, as long as it evokes the harvest theme. The declared ingredients and concept set the expectation. Hops are often subtle. Alcohol is often present, but smooth and supportive. The components should be well-integrated, and create a coherent presentation.See Flavor section for spice, malt, sugar, and vegetable character.", + "appearance": "Medium amber to coppery-brown; lighter versions are more common. Clear, if not opaque. Well-formed, persistent,off-white to tan head. Some versions with squashes will take on an unusual hue for beer, with orange-like hints.", + "flavor": "Malty, spicy, and balanced. Allow for brewer creativity in meeting the theme objective. Warming or sweet spices common. Rich, toasty malty flavors are common, and may include caramel, toasted bread or pie crust, biscuit, or nut flavors. May include distinctive sugar flavors, like molasses, honey, or brown sugar. Flavor derived from squash-based vegetables are often elusive, often only providing a richer sweetness.The special ingredients should be supportive and balanced, not overshadowing the base beer. Bitterness and hop flavor are usually restrained to not interfere with the special character. Usually finishes somewhat full and satisfying, occasionallywith a light alcohol flavor. Roasted malt characteristics are typically absent.", + "mouthfeel": "Body is usually medium to full, and may be chewy. Moderately low to moderately high carbonation. Age character allowable. Warming alcohol allowable.", + "comments": "Using the sensory profile of products that suggest the harvest season, like pumpkin pie, apple pie, or candied yams, balanced with a supportive, often malty base beer. The description of the beer is critical for evaluation; judges should think more about the declared concept than trying to detect each individual ingredient. Balance, drinkability, and execution of the theme are the most important deciding factors.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, spice", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Spices are required, and often include those evocative of the fall, harvest, or Thanksgiving season (e.g., allspice, nutmeg, cinnamon, cloves, ginger) but any combination is possible and creativity is encouraged. Flavorful adjuncts are common (e.g., molasses, invert sugar, brown sugar, honey, maple syrup). Squash-type or gourd-type vegetables (most frequently pumpkin) are often used.", + "examples": "Dogfish Head Punkin Ale, Elysian Punkuccino, Rogue Pumpkin Patch Ale, Schlafly Pumpkin Ale, UFO Pumpkin, Weyerbacher Imperial Pumpkin", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the type of spices, herbs, or vegetables used; individual ingredients do not need to be specified if a well-known blend of spices is used (e.g., pumpkin pie spice). Entrant must specify a description of the beer, identifying either a Base Styleor the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", + "notes": "Autumn Seasonal Beers are beers that suggest cool weather and the autumn harvest season, and may include pumpkins, gourds, or other squashes, and associated spices.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer. ABV is generally above 5%, and most examples are somewhat amber-copper in color.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 97, + "fields": { + "name": "Winter Seasonal Beer", + "category": "Spiced Beer", + "category_id": "30", + "style_id": "30C", + "category_description": "We use the common or culinary definitions of spices, herbs, and vegetables, not botanical or scientific ones. In general, spices are the dried seeds, seed pods, fruit, roots, bark, etc. of plants used for flavoring food. Herbs are leafy plants or parts of plants (leaves, flowers, petals, stalks) used for flavoring food. Vegetables are savory or less sweet edible plant products, used primarily for cooking or sometimes eating raw. Vegetables can include some botanical fruit. This category explicitly includes all culinary spices, herbs, and vegetables, as well as nuts (or anything with ‘nut’ in the name, including coconut), chile peppers, coffee, chocolate, spruce tips, rose hips, hibiscus, fruit peels/zest (but not juice), rhubarb, and the like. It does not include culinary fruit or grains. Flavorful fermentable sugars and syrups (e.g., agave nectar, maple syrup, molasses, sorghum, treacle, honey) or sweeteners (e.g., lactose) can be included only in combination with other allowable ingredients, and should not have a dominant character. Any combination of allowable ingredients may also be entered. See Category 29 for a definition and examples of fruit.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", + "overall_impression": "A stronger, darker, spiced beer that often has a rich body and warming finish suggesting a good accompaniment for the cold winter season.", + "aroma": "Malty, spicy, fruity, and balanced. A wide range is possible, as long as it evokes the holiday theme. The declared ingredients and concept set the expectation. Fruit is often dark or dried in character. Hops are often subtle. Alcohol is often present, but smooth and supportive. Malty and sugary aromas tend to be greater in the balance, and support the spices. The components should be well-integrated, and create a coherent presentation.See Flavor section for spice, malt, sugar, and fruit character.", + "appearance": "Medium amber to very dark brown; darker versions are more common. Clear, if not opaque. Usually clear, although darker versions may be virtually opaque. Well-formed, persistent, off-white to tan head.", + "flavor": "Malty, spicy, fruity, and balanced. Allow for brewer creativity in meeting the theme objective. Warming or sweet spices common. Rich, sweet malty flavors are common, and may include caramel, toast, nutty, or chocolate flavors. May include dried fruit or dried fruit peel flavors such as raisin, plum, fig, cherry, orange peel, or lemon peel. May include distinctive sugar flavors, like molasses, honey, or brown sugar. The special ingredients should be supportive and balanced, not overshadowing the base beer. Bitterness and hop flavor are usually restrained to not interfere with special character. Usually finishes rather full and satisfying, often with a light alcohol flavor. Roasted malt characteristics are rare, and not usually stronger than chocolate.", + "mouthfeel": "Body is usually medium to full, often with a malty chewiness. Moderately low to moderately high carbonation. Age character allowable. Warming alcohol allowable.", + "comments": "Using the sensory profile of products that suggest the holiday season, such asChristmas cookies, gingerbread, English-type Christmas pudding, rum cakes, eggnog, evergreen trees, potpourri, or mulling spices, balanced with a supportive, often malty, warming, and darker base beer. The description of the beer is critical for evaluation; judges should think more about the declared concept than trying to detect each individual ingredient. Balance, drinkability, and execution of the theme are the most important deciding factors.", + "history": "The winter holiday season is a traditional time when old friends get together, where beer of a somewhat higher alcohol content and richness is served. Many breweries offer seasonal products that may be darker, stronger, spiced, or otherwise more characterful than their year-round beers. Spiced versions are an American or Belgian tradition, since English or German breweries traditionally do not use spices in their beer. Many American craft examples were inspired by Anchor Our Special Ale, first produced in 1975.", + "style_comparison": null, + "tags": "specialty-beer, spice", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Spices are required, and often include those evocative of the Christmas season (e.g., allspice, nutmeg, cinnamon, cloves, ginger) but any combination is possible and creativity is encouraged. Fruit peel (e.g., oranges, lemon) may be used, as may subtle additions of other fruits (often dried or dark fruit). Flavorful adjuncts are often used (e.g., molasses, treacle, invert sugar, brown sugar, honey, maple syrup).Usually ales, although strong dark lagers exist.", + "examples": "Anchor Christmas Ale, Great Lakes Christmas Ale, Harpoon Winter Warmer, Rogue Santa’s Private Reserve, Schlafly Christmas Ale, Troeg’s The Mad Elf", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the type of spices, sugars, fruits, or additional fermentables used; individual ingredients do not need to be specified if a well-known blend of spices is used (e.g., mulling spice). Entrant must specify a description of the beer, identifying either a Base Styleor the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", + "notes": "Winter Seasonal Beers are beers that suggest cold weather and the Christmas holiday season, and may include holiday spices, specialty sugars, and other products that are reminiscent of the festive season.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer. ABV is generally above 6%, and most examples are somewhat dark in color.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 98, + "fields": { + "name": "Specialty Spice Beer", + "category": "Spiced Beer", + "category_id": "30", + "style_id": "30D", + "category_description": "We use the common or culinary definitions of spices, herbs, and vegetables, not botanical or scientific ones. In general, spices are the dried seeds, seed pods, fruit, roots, bark, etc. of plants used for flavoring food. Herbs are leafy plants or parts of plants (leaves, flowers, petals, stalks) used for flavoring food. Vegetables are savory or less sweet edible plant products, used primarily for cooking or sometimes eating raw. Vegetables can include some botanical fruit. This category explicitly includes all culinary spices, herbs, and vegetables, as well as nuts (or anything with ‘nut’ in the name, including coconut), chile peppers, coffee, chocolate, spruce tips, rose hips, hibiscus, fruit peels/zest (but not juice), rhubarb, and the like. It does not include culinary fruit or grains. Flavorful fermentable sugars and syrups (e.g., agave nectar, maple syrup, molasses, sorghum, treacle, honey) or sweeteners (e.g., lactose) can be included only in combination with other allowable ingredients, and should not have a dominant character. Any combination of allowable ingredients may also be entered. See Category 29 for a definition and examples of fruit.See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients with the base beer.", + "overall_impression": "An appealing combinationof spices, herbs, or vegetables (SHVs), sugars, and beer, but still recognizable as beer. The SHV and sugar character should both be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "aroma": "Same as SHVBeer, except that some additional fermentables (e.g., honey, molasses) may add an aroma component. Whatever additional aroma component is present should be in balance with the SHV and the beer components, and be a pleasant combination.", + "appearance": "Same as Spice, Herb, or VegetableBeer.", + "flavor": "Same as SHVBeer, except that some additional fermentables (e.g., honey, molasses) may add a flavor component. Whatever additional flavor component is present should be in balance with the SHV and the beer components, and be a pleasant combination. Added sugars should not have a raw, unfermented flavor. Some added sugars will have unfermentable elements that may provide a fuller and sweeter finish; fully fermentable sugars may thin out the finish.", + "mouthfeel": "Same as SHVBeer, although depending on the type of sugar added, could increase or decrease the body.", + "comments": "If the additional fermentables or processes do not add a distinguishable character to the beer, enter it as one of the other (non-Specialty) Spiced Beer styles and omit a description of the extra ingredients or processes.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, spice", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "New Belgium Honey Orange Tripel, Westbrook It’s Tiki Time", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the type of SHVs used, but individual ingredients do not need to be specified if a well-known spice blend is used (e.g., apple pie spice, curry powder, chili powder). The entrant must specify the type of additional ingredient (per the introduction) or special process employed.Entrant must specify a description of the beer, identifying either a Base Styleor the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", + "notes": "A Specialty Spice Beer is a 30A Spice, Herb, or Vegetable(SHV) Beer with some additional ingredients, such as fermentable sugars (e.g., honey, brown sugar, invert sugar, maple syrup), sweeteners (e.g., lactose), adjuncts, alternative grains, or other special ingredients added, or some additional process applied.30B Autumn and 30C Winter Seasonal Beers already allow additional ingredients, and should not be used as a base in this style.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 99, + "fields": { + "name": "Alternative Grain Beer", + "category": "Alternative Fermentables Beer", + "category_id": "31", + "style_id": "31A", + "category_description": "This category contains Specialty-TypeBeers usingeither grain or sugar to add a distinctive character. See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients to the base beer.", + "overall_impression": "A base beer enhanced by or featuring the character of additional grains. The specific character depends greatly on the added grains.", + "aroma": "Same as base beer style. The added grain will lend a particular character, although with some grains the beer will simply seem a bit more grainy or nutty, and some may have a relatively neutral character.", + "appearance": "Same as base beer style, although some additional haze may be noticeable.", + "flavor": "Same as base beer style. The additional grain should be noticeable in flavor, although it may not be necessarily identifiable. Some grains add an additional grainy, bready, or nutty flavor, while others simply enhance the flavor of the base beer. Some grains add a dryness to the finish.", + "mouthfeel": "Same as the base beer, although many additional grains (e.g., oats, rye) increase body and viscosity, while some (e.g., GF grains) create a thinner beer.", + "comments": "The additional grain should be apparent somewhere in the sensory profile. If the alternative grain does not provide a noticeable distinguishable character to the beer, enter it as the base style. This style should not be used for styles where the alternative grain is fundamental to the style definition (e.g., Rye IPA, Oatmeal Stout, Rice- or Corn-based International Lager). Note that sake is not beer, and is not intended for this category.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Blue/Point Rastafarye Ale, Green’s India Pale Ale, Lakefront New Grist, New Planet Pale Ale, Rogue Morimoto Soba Ale, Voodoo Swimming Jeans", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the type of alternative grain used. Entrant must specify a description of the beer, identifying either a Base Style or the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", + "notes": "An Alternative Grain Beer is a standard beer (Classic Style or not) with additional or non-standard brewing grains (e.g., rye, oats, buckwheat, spelt, millet, sorghum, rice) added or used exclusively. Gluten-free (GF) beers made from completely gluten-free ingredients may be entered here, while GF beers using process-based gluten removal should be entered in their respective base style categories.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 100, + "fields": { + "name": "Alternative Sugar Beer", + "category": "Alternative Fermentables Beer", + "category_id": "31", + "style_id": "31B", + "category_description": "This category contains Specialty-TypeBeers usingeither grain or sugar to add a distinctive character. See the Introduction to Specialty-Type Beer section for additional comments, particularly on evaluating the balance of added ingredients to the base beer.", + "overall_impression": "A tasteful integration of sugar and beer, but still recognizable as beer. The sugar character should both be evident and in balance with the beer, not so forward as to suggest an artificial product.", + "aroma": "Same as the base beer, except that some additional fermentables (e.g., honey, molasses) may add an aroma, which should be a pleasant, balanced combination with the beer.", + "appearance": "Same as the base beer, although some sugars will bring additional, usually darker, colors.", + "flavor": "Same as the base beer, except that some additional fermentables (e.g., honey, molasses) may add a flavor, which should be a pleasant, balanced combination with the beer. Added sugars should not have a raw, unfermented flavor. Some unfermentable sugars provide a fuller finish, while fully fermentable sugars can thin out the finish.", + "mouthfeel": "Same as the base beer, although depending on the type of sugar added, could increase or decrease the body.", + "comments": "The additional sugar should be apparent somewhere in the sensory profile. If the sugars do not add a distinguishable character to the beer, enter it in the base style category. A honey-based beer should not have so much honey that it is perceived more like a mead with beer (i.e., a braggot) than a honey beer. This style should not be used for styles where the alternative sugar is fundamental to the style definition, or where a small amount of neutral-flavored sugar is used simply to increase gravity, increase attenuation, or lighten flavor or body; those beers should be entered as the normal base style.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Bell’s Hopslam, Cervejaria Colorado Appia, Fifth Hammer Break of Jawn, Groundswell Piloncillo, Long Trail Harvest, New Glarus Cabin Fever", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the type of sugar used. Entrant must specify a description of the beer, identifying either a Base Style or the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", + "notes": "An Alternative Sugar Beer is a standard beer (Classic Style or not) with addedsweeteners, including fermentable sugars (e.g., honey, brown sugar, invert sugar, molasses, treacle, maple syrup, sorghum), unfermentable sugars (e.g., lactose), sugar alcohols (e.g., sorbitol), and any other sweetener (natural or artificial) that affects the flavor profile. The beers may or may not have any residual sweetness; it depends on the type of sugar, but flavor contributions are expected.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the underlying base beer.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 101, + "fields": { + "name": "Classic Style Smoked Beer", + "category": "Smoked Beer", + "category_id": "32", + "style_id": "32A", + "category_description": "This category contains Specialty-TypeBeers that have a smoke character.", + "overall_impression": "A well-balanced fusion of the malt and hops of the base beer style with a pleasant and agreeable smoke character.", + "aroma": "A pleasant balance between the expected aroma of the base beer and smoked malt. The smoke character ranges from low to assertive, and may show varietal wood smoke character (e.g., alder, oak, beechwood). The balance between the smoke and beer can vary – they do not need to be equal in intensity. However, the resulting mix should be appealing. Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate.", + "appearance": "Variable. The appearance should reflect the base beer style, although the color is often a bit darker than expected for the plain base style.", + "flavor": "Similar to the aroma, with a balance between the base beer and low to assertive smoked malt. Varietal woods can produce different flavor profiles. The balance between smoke and beer can vary, but the resulting blend should be enjoyable. Smoke can add some additional dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury, medicinal, or phenolic smoke-derived flavors are inappropriate.", + "mouthfeel": "Varies with the base beer style. Significant astringent, phenolic, smoke-derived harshness is a fault.", + "comments": "Use this style for beers other than Bamberg-style Rauchbier (i.e., beechwood-smoked Märzen), which has its own style. Judges should evaluate these beers mostly on the overall balance, and how well the smoke character enhances the base beer.", + "history": "The process of using smoked malts has been adapted by craft brewers to many styles. German brewers have traditionally used smoked malts in Bock, Doppelbock, Weissbier, Munich Dunkel, Schwarzbier, Munich Helles, Pils, and other specialty styles.", + "style_comparison": null, + "tags": "specialty-beer, smoke", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Different materials used to smoke malt result in unique flavor and aroma characteristics. Beechwood, or other hardwood (e.g., oak, maple, mesquite, alder, pecan, apple, cherry, other fruitwoods) smoked malts may be used. These may be reminiscent of certain smoked foods (e.g., hickory with ribs, maple with bacon or sausage, and alder with salmon). Evergreen wood should never be used since it adds a medicinal, piney flavor to the malt. Noticeable peat-smoked malt is universally undesirable due to its sharp, piercing phenols and dirt-like earthiness. The remaining ingredients vary with the base style. If smoked malts are combined with other unusual ingredients (e.g., fruits, vegetables, spices, honey) in noticeable quantities, the resulting beer should be entered in the 32B Specialty Smoked Beer.", + "examples": "Alaskan Smoked Porter, Schlenkerla Oak Smoke Doppelbock, Schlenkerla Rauchbier Weizen,SchlenkerlaRauchbier Ur-Bock, O’Fallon Smoked Porter, Spezial Rauchbier Lagerbier", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify a Base Style. The entrant must specify the type of wood or smoke if a varietal smoke character is noticeable.", + "notes": "Intended for smoked versions of Classic Style beers, except if the Classic Style beer has smoke as an inherent part of its definition (of course, that beer should be entered in its base style, such as Rauchbier).", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "Varies with the base beer style.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 102, + "fields": { + "name": "Specialty Smoked Beer", + "category": "Smoked Beer", + "category_id": "32", + "style_id": "32B", + "category_description": "This category contains Specialty-TypeBeers that have a smoke character.", + "overall_impression": "A well-balanced fusion of the malt and hops of the base specialty beer style with a pleasant and agreeable smoke character.", + "aroma": "A pleasant balance between the expected aroma of the base beer, smoked malt, and any specialty ingredients. The smoke character ranges from low to assertive, and may show varietal wood smoke character (e.g., alder, oak, beechwood). The balance between the smoke, the beer, and any specialty ingredients can vary – they do not need to be equal in intensity. However, the resulting mix should be appealing. Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate.", + "appearance": "Variable. The appearance should reflect the base beer style, although the color is often a bit darker than expected for the plain base style. The use of certain fruits and spices may affect the color and hue of the beer as well.", + "flavor": "Similar to the aroma, with a balance between the base beer, any specialty ingredients, and low to assertive smoked malt. Varietal woods can produce different flavor profiles. The balance between smoke, beer, and any specialty ingredients can vary, but the resulting blend should be enjoyable. Smoke can add some additional dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury, medicinal, or phenolic smoke-derived flavors are inappropriate.", + "mouthfeel": "Varies with the base beer style. Significant astringent, phenolic, smoke-derived harshness is a fault.", + "comments": "Judges should evaluate these beers mostly on the overall balance, and how well the smoke character enhances the base beer and any specialty ingredients.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, smoke", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Same as 32A Classic Style Smoked Beer with the possible addition of specialty ingredients (e.g., fruits, spices, vegetables, honey) in noticeable quantities.", + "examples": "Fat Head’s Up in Smoke, Ommegang Bourbon Barrel Vanilla Smoked Porter", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the type of wood or smoke if a varietal smoke character is noticeable. The entrant must specify the additional ingredients or processes that make this a specialty smoked beer.Entrant must specify a description of the beer, identifying either a base style or the ingredients, specs, or target character of the beer. A general description of the special nature of the beer can cover all the required items.", + "notes": "A Specialty Smoked Beer is either a smoked beer based on something other than a Classic Style (a Specialty-Type style, or a broad style family such as Porter rather than a specific style), OR any type of smoked beer with additional specialty ingredients (fruits, vegetables, spices) or processes employed that transform the beer into something more unique.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "Varies with the base beer style.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 103, + "fields": { + "name": "Commercial Specialty Beer", + "category": "Specialty Beer", + "category_id": "34", + "style_id": "34A", + "category_description": "While there are many Specialty-Type Beers in these guidelines, the Specialty Beer style category is intended for those beers that do not fit anywhere else. Please check each previous Specialty-Type category before entering a beer in one of these styles.", + "overall_impression": "Based on declared beer.", + "aroma": "Based on declared beer.", + "appearance": "Based on declared beer.", + "flavor": "Based on declared beer.", + "mouthfeel": "Based on declared beer.", + "comments": "Intended as a catch-all location for specific beers that are based on unique commercial examples that don’t fit existing styles. Past versions of the Style Guidelines included a Belgian Specialty Ale style; this style fits that general purpose, as well as allowing non-Belgian entries of similar intent.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Orval, La Chouffe", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the name of the commercial beer, specifications (vital statistics) for the beer, and either a brief sensory description or a list of ingredients used in making the beer. Without this information, judges who are unfamiliar with the beer will have no basis for comparison.", + "notes": "This style is intended for reproductions or interpretations of specific commercial beers that don’t fit withindefined styles. Beers entered here do not need to be exact copies. The beer should be judged as to how well it fits the broader style represented by the example beer, not how well it is an exact copy of a specific commercial product. If a Commercial Specialty Beerfitsanother defined style, do not enter it here.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the declared beer.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 104, + "fields": { + "name": "Mixed-Style Beer", + "category": "Specialty Beer", + "category_id": "34", + "style_id": "34B", + "category_description": "While there are many Specialty-Type Beers in these guidelines, the Specialty Beer style category is intended for those beers that do not fit anywhere else. Please check each previous Specialty-Type category before entering a beer in one of these styles.", + "overall_impression": "Based on the declared Base Styles, methods, and ingredients. As with all Specialty-Type Beers, the resulting combination of beer styles needs to be harmonious and balanced, and be pleasant to drink.", + "aroma": "Based on the declared Base Styles.", + "appearance": "Based on the declared Base Styles.", + "flavor": "Based on the declared Base Styles.", + "mouthfeel": "Based on the declared Base Styles.", + "comments": "See preamble for intent.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Birrificio Italiano Tipopils, Firestone Walker Pivo Pils, Jack’s Abby Hoponius Union, Ommegang Helles Superior", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the Base Style or Styles being used, and any special ingredients, processes, or variations involved. The entrant may provide an additional description of the sensory profile of the beer or the vital statistics of the resulting beer.", + "notes": "This style is intended for beers in Existing Styles (previously-defined Classic Style beers or Specialty-Type Beers) that are either:A combination of Existing Styles that are not defined previously in the guidelines, including combination of Specialty-Type Beers not otherwise allowable elsewhere.A variation of an Existing Style using a non-traditional method or process (e.g., dry-hopping, ‘eis’-ing, stein bier) for that style.A variation of an Existing Style using a non-traditional ingredient (e.g., yeast with a non-traditional profile, hops with a different character than described in the Base Style).Out-of-spec variations of an Existing Style (e.g., ‘imperial’ versions, ‘session’ versions, overly-sweet versions, etc.).This style is intended for beers that can’t be entered in previously-listed styles first, including (and especially) the declared Base Style of beer. However, if the unusual method, process, or ingredient results in a beer that now fits within another defined style, the beer should be entered there. Note that some styles already allow for different strengths (e.g., IPAs, Saisons), so those variations should be entered as the appropriate Base Style.Bear in mind that a poorly-made, faulted beer should not be used to define a new style. Drinkability should always be maintained, while allowing for creative new concepts.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the declared beer.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 105, + "fields": { + "name": "Experimental Beer", + "category": "Specialty Beer", + "category_id": "34", + "style_id": "34C", + "category_description": "While there are many Specialty-Type Beers in these guidelines, the Specialty Beer style category is intended for those beers that do not fit anywhere else. Please check each previous Specialty-Type category before entering a beer in one of these styles.", + "overall_impression": "Varies, but should be a unique experience.", + "aroma": "Varies.", + "appearance": "Varies.", + "flavor": "Varies.", + "mouthfeel": "Varies.", + "comments": "This style cannot represent a well-known commercial beer (otherwise it would be a Commercial Specialty Beer) and cannot fit into any other existing Specialty-Type Beer style (including those within this major category).", + "history": null, + "style_comparison": null, + "tags": "specialty-beer", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "None", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": "The entrant must specify the special nature of the experimental beer, including the special ingredients or processes that make it not fit elsewhere in the guidelines. The entrant must provide vital statistics for the beer, and either a brief sensory description or a list of ingredients used in making the beer. Without this information, judges will have no basis for evaluation.", + "notes": "This is explicitly a catch-all category for any beer that does not fit into an Existing Style description. No beer is ever “out of style” in this style, unless it can be entered in another beer stylefirst. This is the last resort for any beer entered into a competition. With the broad definition for previous styles, this style should be rarely used.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": "OG, FG, IBUs, SRM, and ABV will vary depending on the declared beer.", + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 106, + "fields": { + "name": "New Zealand Pilsner", + "category": "New Zealand Styles", + "category_id": "X", + "style_id": "X5", + "category_description": null, + "overall_impression": "A pale, dry, golden-colored, cleanly-fermented beer showcasing the characteristic tropical, citrusy, fruity, grassy New Zealand-type hops. Medium body, soft mouthfeel, and smooth palate and finish, with a neutral to bready malt base provide the support for this very drinkable, refreshing, hop-forward beer.", + "aroma": "Medium to high hop aroma reflective of modern New World hop varieties, often showcasing tropical fruit, citrus (lime, white grapefruit), gooseberry, honeydew melon, with a light green bell pepper or grassy aspect. Medium-low to medium malt in support, with a neutral to bready-crackery quality. Very low DMS acceptable but not required. Neutral, clean yeast character, optionally with a very light sulfury quality. The hop character should be most prominent in the balance, but some malt character must be evident.", + "appearance": "Straw to deep gold in color, but most examples are yellow-gold. Generally quite clear to brilliant clarity; haziness is a fault. Creamy, long-lasting white head.", + "flavor": "Medium to high hop bitterness, cleanly bitter not harsh, most prominent in the balance and lasting into the aftertaste. Medium to high hop flavor with similar characteristics as the aroma (tropical, citrus, gooseberry, melon, grass). Medium to medium-low malt flavor, grainy-sweet, bready, or crackery. Clean fermentation profile (fermentation esters are a fault). Dry to off-dry with a clean, smooth finish and bitter but not harsh aftertaste. The malt may suggest an impression of sweetness but the beer should not be literally sweet. The finish may be dry but not seem crisp or biting. The balance should always be bitter, but the malt flavor must be noticeable.", + "mouthfeel": "Medium to medium-light body. Medium to medium-high carbonation. Smoothness is the most prominent impression. Never harsh nor astringent.", + "comments": "The hop aromatics often have a similar quality as many New Zealand Sauvignon Blanc wines, with tropical fruit, grassy, melon, and lime aromatics. Often brewed as a hybrid style in New Zealand using a neutral ale yeast at cool temperatures. Limiting the sulfur content of the finished product is important since it can clash with the hop character.", + "history": "Largely defined by the original created at Emerson’s Brewery in the mid-1990s, New Zealand Pilsner has expanded in character as the varieties of New Zealand hops have expanded in number and popularity.", + "style_comparison": "Compared to a German Pils, not as crisp and dry in the finish with a softer, maltier presentation and a fuller body. Compared to a Czech Premium Pale Lager, less malt complexity, a cleaner fermentation. Similar in balance to a Kolsch or British Golden Ale, but with a hoppier aroma. Compared to any of these German styles, showcasing New Zealand hop varieties with tropical, citrusy, fruity, grassy characteristics, often with a white wine-like character. Should not be as hoppy or bitter in balance as an IPA.", + "tags": "bitter, pale-color, standard-strength, bottom-fermented, hoppy, pilsner-family, lagered, craft-style, pacific", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05600", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "45.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00900", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "New Zealand hop varieties, such as Motueka, Riwake, Nelson Sauvin, often with Pacific Jade for bittering. Other new world varieties from Australia or the US may be used, if they have similar characteristics. Pale base malts, Pilsner or pale types, perhaps with a small percentage of wheat malt. Fairly low-mineral water, typically with more chloride than sulfate. Clean lager yeast or very neutral ale yeast.", + "examples": "Croucher New Zealand Pilsner, Emerson’s Pilsner, Liberty Halo Pilsner, Panhead Port Road Pilsner, Sawmill Pilsner, Tuatara Mot Eureka", + "style_guide": "BJCP2021", + "type": "beer", + "entry_instructions": null, + "notes": "Suggested style placement: Category 12 (Pale Commonwealth Beer)", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": null, + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 107, + "fields": { + "name": "American Light Lager", + "category": "Standard American Beer", + "category_id": "1", + "style_id": "1A", + "category_description": null, + "overall_impression": "Highly carbonated, very light-bodied, nearly flavorless lager designed to be consumed very cold. Very refreshing and thirst quenching.", + "aroma": "Low to no malt aroma, although it can be perceived as grainy, sweet, or corn-like if present. Hop aroma is light to none, with a spicy or floral hop character if present. While a clean fermentation character is desirable, a light amount of yeast character (particularly a light apple fruitiness) is not a fault. Light DMS 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 and dry finish and a low to very low grainy or corn-like flavor that might be perceived as sweetness due to the low bitterness. Hop flavor ranges from none to low levels, and can have a floral, spicy, or herbal quality (although rarely strong enough to detect). Low to very low hop bitterness. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. High levels of carbonation may accentuate the crispness of the dry finish. Clean lager fermentation character.", + "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.", + "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": null, + "tags": "session-strength, pale-color, bottom-fermented, lagered, north-america, traditional-style, pale-lager-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.02800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "12.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "0.99800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.00800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "2.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "4.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "3.00000", + "ingredients": "Two- or six-row barley with high percentage (up to 40%) of rice or corn as adjuncts. Additional enzymes can further lighten the body and lower carbohydrates.", + "examples": "Bud Light, Coors Light, Keystone Light, Michelob Light, Miller Lite, Old Milwaukee Light", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "Highly carbonated, very light-bodied, nearly flavorless lager designed to be consumed very cold. Very refreshing and thirst quenching. 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.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to no malt aroma, although it can be perceived as grainy, sweet, or corn-like if present. Hop aroma is light to none, with a spicy or floral hop character if present. While a clean fermentation character is desirable, a light amount of yeast character (particularly a light apple fruitiness) is not a fault. Light DMS is not a fault. Very pale straw to pale yellow color. White, frothy head seldom persists. Very clear.Relatively neutral palate with a crisp and dry finish and a low to very low grainy or corn-like flavor that might be perceived as sweetness due to the low bitterness. Hop flavor ranges from none to low levels, and can have a floral, spicy, or herbal quality (although rarely strong enough to detect). Low to very low hop bitterness. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. High levels of carbonation may accentuate the crispness of the dry finish. Clean lager fermentation character. Very light (sometimes watery) body. Very highly carbonated with slight carbonic bite on the tongue. Designed to appeal to as broad a range of the general public as possible. Strong flavors are a fault.", + "comparison": "A lighter-bodied, lower-alcohol, lower calorie version of an American Lager. Less hop character and bitterness than a Leichtbier." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 108, + "fields": { + "name": "American Lager", + "category": "Standard American Beer", + "category_id": "1", + "style_id": "1B", + "category_description": null, + "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 to no malt aroma, although it can be perceived as grainy, sweet or corn-like if present. Hop aroma may range from none to a light, spicy or floral hop presence. While a clean fermentation character is desirable, a light amount of yeast character (particularly a light apple character) is not a fault. Light DMS is also 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 and dry finish and a moderately-low to low grainy or corn-like flavor that might be perceived as sweetness due to the low bitterness. Hop flavor ranges from none to moderately-low levels, and can have a floral, spicy, or herbal quality (although often not strong enough to distinguish). Hop bitterness at low to medium-low level. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. High levels of carbonation may accentuate the crispness of the dry finish. Clean lager fermentation character.", + "mouthfeel": "Low to medium-low body. Very highly carbonated with slight carbonic bite on the tongue.", + "comments": "Strong flavors are a fault. Often what non-craft beer drinkers expect to be served if they order beer in the United States. May be marketed as Pilsner beers outside of Europe, but should not be confused with traditional examples.", + "history": "Although German immigrants had brewed traditional Pilsner-inspired lager beer in the United States since the mid-late 1800s, the modern American lager style was heavily influenced by Prohibition and World War II. Surviving breweries consolidated, expanded distribution, and heavily promoted a beer style that was appealing to a broad range of the population. Became the dominant beer style for many decades, and spawning many international rivals who would develop similarly bland products for the mass market supported by heavy advertising.", + "style_comparison": null, + "tags": "standard-strength, pale-color, bottom-fermented, lagered, north-america, traditional-style, pale-lager-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "18.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00400", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.30000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "4.00000", + "ingredients": "Two- or six-row barley with high percentage (up to 40%) of rice or corn as adjuncts.", + "examples": "Budweiser, Coors Original, Grain Belt Premium Lager, Miller High Life, Pabst Blue Ribbon, Special Export", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "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. Although German immigrants had brewed traditional Pilsner-inspired lager beer in the United States since the mid-late 1800s, the modern American lager style was heavily influenced by Prohibition and World War II. Surviving breweries consolidated, expanded distribution, and heavily promoted a beer style that was appealing to a broad range of the population. Became the dominant beer style for many decades, and spawning many international rivals who would develop similarly bland products for the mass market supported by heavy advertising.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to no malt aroma, although it can be perceived as grainy, sweet or corn-like if present. Hop aroma may range from none to a light, spicy or floral hop presence. While a clean fermentation character is desirable, a light amount of yeast character (particularly a light apple character) is not a fault. Light DMS is also not a fault. Very pale straw to medium yellow color. White, frothy head seldom persists. Very clear.Relatively neutral palate with a crisp and dry finish and a moderately-low to low grainy or corn-like flavor that might be perceived as sweetness due to the low bitterness. Hop flavor ranges from none to moderately-low levels, and can have a floral, spicy, or herbal quality (although often not strong enough to distinguish). Hop bitterness at low to medium-low level. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. High levels of carbonation may accentuate the crispness of the dry finish. Clean lager fermentation character. Low to medium-low body. Very highly carbonated with slight carbonic bite on the tongue. Strong flavors are a fault. Often what non-craft beer drinkers expect to be served if they order beer in the United States. May be marketed as Pilsner beers outside of Europe, but should not be confused with traditional examples.", + "comparison": "Stronger, more flavor and body than a Light American Lager. Less bitterness and flavor than an International Lager. Significantly less flavor, hops, and bitterness than traditional European Pilsners." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 109, + "fields": { + "name": "Cream Ale", + "category": "Standard American Beer", + "category_id": "1", + "style_id": "1C", + "category_description": null, + "overall_impression": "A clean, well-attenuated, flavorful American \"lawnmower\" beer. Easily drinkable and refreshing, with more character than typical American lagers.", + "aroma": "Medium-low to low malt notes, with a sweet, corn-like aroma. Low levels of DMS are allowable, but are not required. Hop aroma medium low to none, and can be of any variety although floral, spicy, or herbal notes are most common. Overall, a subtle aroma with neither hops nor malt dominating. Low fruity esters are optional.", + "appearance": "Pale straw to moderate gold color, although usually on the pale side. Low to medium head with medium to high carbonation. Fair head retention. Brilliant, sparkling clarity.", + "flavor": "Low to medium-low hop bitterness. Low to moderate maltiness and sweetness, varying with gravity and attenuation. Usually well-attenuated. Neither malt nor hops dominate the palate. A low to moderate corny flavor is commonly found, as is light DMS (optional). Finish can vary from somewhat dry to faintly sweet. Low fruity esters are optional. Low to medium-low hop flavor (any variety, but typically floral, spicy, or herbal).", + "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": "Pre-prohibition Cream Ales were slightly stronger, hoppier (including some dry hopping) and more bitter (25-30+ IBUs). These versions should be entered in the historical category. 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 that existed in the 1800s and survived prohibition. An ale version of the American lager style. Produced by ale brewers to compete with lager brewers in Canada and the Northeast, Mid-Atlantic, and Midwest states. Originally known as sparkling or present use ales, lager strains were (and sometimes still are) used by some brewers, but were not historically mixed with ale strains. Many examples are kräusened to achieve carbonation. Cold conditioning isn't traditional, although modern brewers sometimes use it.", + "style_comparison": null, + "tags": "standard-strength, pale-color, any-fermentation, north-america, traditional-style, pale-ale-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "20.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.50000", + "color_maximum_unit": "SRM", + "color_maximum_value": "5.00000", + "ingredients": "American ingredients most commonly used. A grain bill of six-row malt, or a combination of six-row and North American two-row, is common. Adjuncts can include up to 20% maize in the mash, and up to 20% glucose or other sugars in the boil. Any variety of hops can be used for bittering and finishing.", + "examples": "Genesee Cream Ale, Liebotschaner Cream Ale, Little Kings Cream Ale, New Glarus Spotted Cow, Old Style, Sleeman Cream Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A clean, well-attenuated, flavorful American \"lawnmower\" beer. Easily drinkable and refreshing, with more character than typical American lagers. A sparkling or present-use ale that existed in the 1800s and survived prohibition. An ale version of the American lager style. Produced by ale brewers to compete with lager brewers in Canada and the Northeast, Mid-Atlantic, and Midwest states. Originally known as sparkling or present use ales, lager strains were (and sometimes still are) used by some brewers, but were not historically mixed with ale strains. Many examples are kräusened to achieve carbonation. Cold conditioning isn't traditional, although modern brewers sometimes use it.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Medium-low to low malt notes, with a sweet, corn-like aroma. Low levels of DMS are allowable, but are not required. Hop aroma medium low to none, and can be of any variety although floral, spicy, or herbal notes are most common. Overall, a subtle aroma with neither hops nor malt dominating. Low fruity esters are optional. Pale straw to moderate gold color, although usually on the pale side. Low to medium head with medium to high carbonation. Fair head retention. Brilliant, sparkling clarity.Low to medium-low hop bitterness. Low to moderate maltiness and sweetness, varying with gravity and attenuation. Usually well-attenuated. Neither malt nor hops dominate the palate. A low to moderate corny flavor is commonly found, as is light DMS (optional). Finish can vary from somewhat dry to faintly sweet. Low fruity esters are optional. Low to medium-low hop flavor (any variety, but typically floral, spicy, or herbal). 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. Pre-prohibition Cream Ales were slightly stronger, hoppier (including some dry hopping) and more bitter (25-30+ IBUs). These versions should be entered in the historical category. Most commercial examples are in the 1.050–1.053 OG range, and bitterness rarely rises above 20 IBUs.", + "comparison": "Similar to a Standard American Lager, but with more character." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 110, + "fields": { + "name": "American Wheat Beer", + "category": "Standard American Beer", + "category_id": "1", + "style_id": "1D", + "category_description": null, + "overall_impression": "Refreshing wheat beers that can display more hop character and less yeast character than their German cousins. A clean fermentation character allows bready, doughy, or grainy wheat flavors to be complemented by hop flavor and bitterness rather than yeast qualities.", + "aroma": "Low to moderate grainy, bready, or doughy wheat character. A light to moderate malty sweetness is acceptable. Esters can be moderate to none, although should reflect relatively neutral yeast strains; banana is inappropriate. Hop aroma may be low to moderate, and can have a citrusy, spicy, floral, or fruity character. No clove phenols.", + "appearance": "Usually pale yellow to gold. Clarity may range from brilliant to hazy with yeast approximating the German weissbier style of beer. 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 finish quite dry. Low to moderate hop bitterness, which sometimes lasts into the finish. Balance is usually even, but may be slightly bitter. Low to moderate hop flavor (citrusy, spicy, floral, or fruity). Esters can be moderate to none, but should not include banana. No clove phenols. May have a slightly crisp finish.", + "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 in the Alternative Fermentables specialty category.", + "history": "An American craft beer adaptation of the German weissbier style using a cleaner yeast and more hops, first widely popularized by Widmer in the mid-1980s.", + "style_comparison": null, + "tags": "standard-strength, pale-color, any-fermentation, north-america, craft-style, wheat-beer-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Clean American ale or lager yeast (German weissbier yeast is inappropriate). Large proportion of wheat malt (often 30–50%, which is lower than is typical in German weissbiers). American, German, or New World hops are typical.", + "examples": "Bell's Oberon, Boulevard Unfiltered Wheat Beer, Goose Island 312 Urban Wheat Ale, Widmer Hefeweizen", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "Refreshing wheat beers that can display more hop character and less yeast character than their German cousins. A clean fermentation character allows bready, doughy, or grainy wheat flavors to be complemented by hop flavor and bitterness rather than yeast qualities. An American craft beer adaptation of the German weissbier style using a cleaner yeast and more hops, first widely popularized by Widmer in the mid-1980s.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to moderate grainy, bready, or doughy wheat character. A light to moderate malty sweetness is acceptable. Esters can be moderate to none, although should reflect relatively neutral yeast strains; banana is inappropriate. Hop aroma may be low to moderate, and can have a citrusy, spicy, floral, or fruity character. No clove phenols. Usually pale yellow to gold. Clarity may range from brilliant to hazy with yeast approximating the German weissbier style of beer. Big, long-lasting white head.Light to moderately-strong bready, doughy, or grainy wheat flavor, which can linger into the finish. May have a moderate malty sweetness or finish quite dry. Low to moderate hop bitterness, which sometimes lasts into the finish. Balance is usually even, but may be slightly bitter. Low to moderate hop flavor (citrusy, spicy, floral, or fruity). Esters can be moderate to none, but should not include banana. No clove phenols. May have a slightly crisp finish. Medium-light to medium body. Medium-high to high carbonation. Slight creaminess is optional; wheat beers sometimes have a soft, ‘fluffy' impression. 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 in the Alternative Fermentables specialty category.", + "comparison": "More hop character and less yeast character than German weissbier. Never with the banana and clove character of German weissbier. Generally can have the same range and balance as Blonde Ales, but with a wheat character as the primary malt flavor." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 111, + "fields": { + "name": "International Pale Lager", + "category": "International Lager", + "category_id": "2", + "style_id": "2A", + "category_description": null, + "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 malt aroma, which can be grainy-malty or slightly corny-sweet. Hop aroma may range from very low to a medium, spicy or floral hop presence. While a clean fermentation profile is generally most desirable, low levels of yeast character (such as a light apple fruitiness) are not a fault. A light amount of DMS or corn aroma is not a fault.", + "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, with a crisp, dry, well-attenuated finish. The grain character can be somewhat neutral, or show a light bready-crackery quality or up to moderate corny or malty sweetness. Hop flavor ranges from none to medium levels, and often showing a floral, spicy, or herbal character if detected. Hop bitterness at medium-low to medium level. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. Neutral aftertaste with light malt and sometimes hop flavors. A light amount of DMS is not a fault.", + "mouthfeel": "Light to medium body. Moderately high to highly carbonated. Can have a slight carbonic bite on the tongue.", + "comments": "International lagers tend to have fewer adjuncts than standard 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 from being lightstruck in a green bottle is a mishandling 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 United States, 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": null, + "tags": "standard-strength, pale-color, bottom-fermented, lagered, traditional-style, pale-lager-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.60000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Two- or six-row barley. May use rice, corn, or sugar as adjuncts, or may be 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": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A highly-attenuated pale lager without strong flavors, typically well-balanced and highly carbonated. Served cold, it is refreshing and thirst-quenching. In the United States, developed as a premium version of the standard American lager, with a similar history. Outside the United States, 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.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to medium-low malt aroma, which can be grainy-malty or slightly corny-sweet. Hop aroma may range from very low to a medium, spicy or floral hop presence. While a clean fermentation profile is generally most desirable, low levels of yeast character (such as a light apple fruitiness) are not a fault. A light amount of DMS or corn aroma is not a fault. Pale straw to gold color. White, frothy head may not be long lasting. Very clear.Low to moderate levels of grainy-malt flavor, with a crisp, dry, well-attenuated finish. The grain character can be somewhat neutral, or show a light bready-crackery quality or up to moderate corny or malty sweetness. Hop flavor ranges from none to medium levels, and often showing a floral, spicy, or herbal character if detected. Hop bitterness at medium-low to medium level. Balance may vary from slightly malty to slightly bitter, but is relatively close to even. Neutral aftertaste with light malt and sometimes hop flavors. A light amount of DMS is not a fault. Light to medium body. Moderately high to highly carbonated. Can have a slight carbonic bite on the tongue. International lagers tend to have fewer adjuncts than standard 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 from being lightstruck in a green bottle is a mishandling fault, not a characteristic of the 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, although with more of an adjunct quality." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 112, + "fields": { + "name": "International Amber Lager", + "category": "International Lager", + "category_id": "2", + "style_id": "2B", + "category_description": null, + "overall_impression": "A well-attenuated malty amber lager with an interesting caramel or toast quality and restrained bitterness. Usually fairly well-attenuated, often with an adjunct quality. Smooth, easily-drinkable lager character.", + "aroma": "Low to moderate malt aroma which can be grainy, with a very low to moderate caramel-sweet to toasty-malty aroma. Hop aroma can range from low to none with a mildly floral or spicy character. Clean lager profile. A slight DMS or corny aroma is acceptable.", + "appearance": "Golden-amber to reddish-copper color. Bright clarity. White to off-white foam stand which may not last.", + "flavor": "Low to moderate malt profile which can vary from dry to grainy-sweet. Low to moderate levels of caramel and toasty-bready notes can be evident. Low to medium-low corny sweetness is optional, but not a fault. Hop bitterness is low to moderate, and hop flavor is low to moderate with a spicy, herbal, or floral character. The balance can be fairly malty to nearly even, with the bitterness becoming more noticeable but not objectionable. The bitterness level can increase if the malt character increases to match. Clean fermentation profile. Finish is moderately dry with a moderately malty aftertaste.", + "mouthfeel": "Light to medium body. Medium to high carbonation. Smooth; some examples can be creamy.", + "comments": "A wide spectrum of mass-market Amber lagers developed either independently in various countries, or describing rather generic amber beers that may have had more historical relevance but who eventually changed into an indistinguishable product in modern times.", + "history": "Varies by country, but generally represents an adaptation of the mass-market International Lager or an evolution of indigenous styles into a more generic product.", + "style_comparison": null, + "tags": "standard-strength, amber-color, bottom-fermented, lagered, traditional-style, amber-lager-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.60000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "7.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Two-row or six-row base malt. Color malts such as victory, amber, etc. Caramel malt adjuncts. European or American hops or a combination of both.", + "examples": "Brooklyn Lager, Capital Winter Skål, Dos Equis Amber, Schell's Oktoberfest, Yuengling Lager", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A well-attenuated malty amber lager with an interesting caramel or toast quality and restrained bitterness. Usually fairly well-attenuated, often with an adjunct quality. Smooth, easily-drinkable lager character. Varies by country, but generally represents an adaptation of the mass-market International Lager or an evolution of indigenous styles into a more generic product.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to moderate malt aroma which can be grainy, with a very low to moderate caramel-sweet to toasty-malty aroma. Hop aroma can range from low to none with a mildly floral or spicy character. Clean lager profile. A slight DMS or corny aroma is acceptable. Golden-amber to reddish-copper color. Bright clarity. White to off-white foam stand which may not last.Low to moderate malt profile which can vary from dry to grainy-sweet. Low to moderate levels of caramel and toasty-bready notes can be evident. Low to medium-low corny sweetness is optional, but not a fault. Hop bitterness is low to moderate, and hop flavor is low to moderate with a spicy, herbal, or floral character. The balance can be fairly malty to nearly even, with the bitterness becoming more noticeable but not objectionable. The bitterness level can increase if the malt character increases to match. Clean fermentation profile. Finish is moderately dry with a moderately malty aftertaste. Light to medium body. Medium to high carbonation. Smooth; some examples can be creamy. A wide spectrum of mass-market Amber lagers developed either independently in various countries, or describing rather generic amber beers that may have had more historical relevance but who eventually changed into an indistinguishable product in modern times.", + "comparison": "Less well-developed malt flavor than a Vienna lager, often with an adjunct taste." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 113, + "fields": { + "name": "International Dark Lager", + "category": "International Lager", + "category_id": "2", + "style_id": "2C", + "category_description": null, + "overall_impression": "A darker 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": "Little to no malt aroma; may have a light corn character. Medium-low to no roast and caramel malt aroma. Hop aroma may range from none to light spicy or floral hop presence. While a clean fermentation profile is generally most desirable, low levels of yeast character (such as a light apple fruitiness) are not a fault. A light amount of DMS or corn aroma is not a fault.", + "appearance": "Deep amber to 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 malty sweetness with medium-low to no caramel and/or roasted malt flavors (and may include hints of coffee, molasses or cocoa). Hop flavor ranges from none to low levels, and is typically floral, spicy, or herbal. Low to medium hop bitterness. May have a very light fruitiness. Moderately crisp finish. The balance is typically somewhat malty. Burnt or moderately strong roasted malt flavors are a defect.", + "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 and/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": null, + "tags": "standard-strength, dark-color, bottom-fermented, lagered, traditional-style, dark-lager-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05600", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "20.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "14.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Two- or six-row barley, corn, rice, or sugars as adjuncts. Light use of caramel and darker malts. Commercial versions may use coloring agents.", + "examples": "Baltika #4 Original, Devils Backbone Old Virginia Dark, Dixie Blackened Voodoo, Saint Pauli Girl Dark, San Miguel Dark, Session Black Dark Lager, Shiner Bock", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A darker 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. 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.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Little to no malt aroma; may have a light corn character. Medium-low to no roast and caramel malt aroma. Hop aroma may range from none to light spicy or floral hop presence. While a clean fermentation profile is generally most desirable, low levels of yeast character (such as a light apple fruitiness) are not a fault. A light amount of DMS or corn aroma is not a fault. Deep amber to dark brown with bright clarity and ruby highlights. Foam stand may not be long lasting, and is beige to light tan in color.Low to medium malty sweetness with medium-low to no caramel and/or roasted malt flavors (and may include hints of coffee, molasses or cocoa). Hop flavor ranges from none to low levels, and is typically floral, spicy, or herbal. Low to medium hop bitterness. May have a very light fruitiness. Moderately crisp finish. The balance is typically somewhat malty. Burnt or moderately strong roasted malt flavors are a defect. Light to medium-light body. Smooth with a light creaminess. Medium to high carbonation. A broad range of international lagers that are darker than pale, and not assertively bitter and/or roasted.", + "comparison": "Less flavor and richness than Munich Dunkel, Schwarzbier, or other dark lagers. Frequently uses adjuncts, as is typical of other International Lagers." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 114, + "fields": { + "name": "Czech Pale Lager", + "category": "Czech Lager", + "category_id": "3", + "style_id": "3A", + "category_description": null, + "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 hop-derived esters are acceptable, but need not be present. No sulfur.", + "appearance": "Light gold 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. Diacetyl or fruity esters are acceptable at low levels, but need not be present and 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 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": null, + "tags": "session-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.02800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "4.10000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Soft water with low sulfate and carbonate content, Saazer-type hops, Czech Pilsner malt, Czech lager yeast. Low ion water provides a distinctively soft, rounded hop profile despite high hopping rates.", + "examples": "Březňák Světlé výčepní pivo, Notch Session Pils, Pivovar Kout na Šumavě Koutská 10°, Únětické pivo 10°", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "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. Josef Groll initially brewed two types of 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.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "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 hop-derived esters are acceptable, but need not be present. No sulfur. Light gold to deep gold color. Brilliant to very clear, with a long-lasting, creamy white head.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. Diacetyl or fruity esters are acceptable at low levels, but need not be present and should never be overbearing. Medium-light to medium body. Moderate carbonation. The Czech name of the style is světlé výčepní pivo.", + "comparison": "A lighter-bodied, lower-intensity, refreshing, everyday version of Czech Premium Pale Lager." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 115, + "fields": { + "name": "Czech Premium Pale Lager", + "category": "Czech Lager", + "category_id": "3", + "style_id": "3B", + "category_description": null, + "overall_impression": "Rich, characterful, pale Czech lager, with considerable malt and hop character and a long, rounded finish. Complex yet well-balanced and refreshing. The malt flavors are complex for a Pilsner-type beer, and the bitterness is strong but clean and without harshness, which gives a rounded 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 hop-derived esters are acceptable, but need not be present.", + "appearance": "Gold 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 moderate 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 is called a Pilsner, despite how widely adopted this name is worldwide. 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.", + "style_comparison": null, + "tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pilsner-family, balanced, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "45.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01300", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01700", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.50000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Soft water with low sulfate and carbonate content, Saazer-type hops, Czech malt, Czech lager yeast. Low ion water 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áteční ležák, Gambrinus Premium, Kout na Šumavě Koutská 12°, Pilsner Urquell, Pivovar Jihlava Ježek 11°, Primátor Premium, Únětická 12°", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "Rich, characterful, pale Czech lager, with considerable malt and hop character and a long, rounded finish. Complex yet well-balanced and refreshing. The malt flavors are complex for a Pilsner-type beer, and the bitterness is strong but clean and without harshness, which gives a rounded impression that enhances drinkability. 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.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "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 hop-derived esters are acceptable, but need not be present. Gold to deep gold color. Brilliant to very clear clarity. Dense, long-lasting, creamy white head.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 moderate diacetyl and low hop-derived esters are acceptable, but need not be present. Medium body. Moderate to low carbonation. 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 is called a Pilsner, despite how widely adopted this name is worldwide. 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.", + "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." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 116, + "fields": { + "name": "Czech Amber Lager", + "category": "Czech Lager", + "category_id": "3", + "style_id": "3C", + "category_description": null, + "overall_impression": "Malt-driven amber Czech lager with hop character that can vary from low to quite significant. The malt flavors can vary quite a bit, leading to different interpretations ranging from drier, bready, and slightly biscuity to sweeter and somewhat caramelly.", + "aroma": "Moderate intensity, rich malt aroma that can be either bready and Maillard product-dominant or slightly caramelly and candy-like. 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. Diacetyl is optional and can range from low to none.", + "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. 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).", + "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": null, + "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01300", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01700", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.40000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "10.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "16.00000", + "ingredients": "Pilsner and caramel malts, but Vienna and Munich malts may also be used. Low mineral content water, Saazer-type hops, Czech lager yeast.", + "examples": "Bernard Jantarový ležák, Pivovar Vysoký Chlumec Démon, Primátor polotmavý 13°, Strakonický Dudák Klostermann polotmavý ležák 13°", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "Malt-driven amber Czech lager with hop character that can vary from low to quite significant. The malt flavors can vary quite a bit, leading to different interpretations ranging from drier, bready, and slightly biscuity to sweeter and somewhat caramelly. 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.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate intensity, rich malt aroma that can be either bready and Maillard product-dominant or slightly caramelly and candy-like. 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. Diacetyl is optional and can range from low to none. Deep amber to copper color. Clear to bright clarity. Large, off-white, persistent head.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. Medium-full to medium body. Soft and round, often with a gentle creaminess. Moderate to low carbonation. The Czech name of the style is polotmavé pivo, which translates as half dark. 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).", + "comparison": "The style can be similar to a Vienna lager but with Saazer-type hop character, or that approaching an English 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." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 117, + "fields": { + "name": "Czech Dark Lager", + "category": "Czech Lager", + "category_id": "3", + "style_id": "3D", + "category_description": null, + "overall_impression": "A rich, dark, malty Czech lager with a roast character that can vary from almost absent to quite prominent. Malty with an interesting and complex flavor profile, with variable levels of hopping providing 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, spicy hop aroma is optional. Low diacetyl and low 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 and coffee may also be present, with very low to moderate roast character. Spicy hop flavor can be moderately-low to none. Hop bitterness may be moderate to medium-low 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. Many small, new breweries are brewing this style.", + "style_comparison": null, + "tags": "standard-strength, dark-color, bottom-fermented, lagered, central-europe, traditional-style, dark-lager-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "34.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01300", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01700", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.40000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "14.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "35.00000", + "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, Saazer-type hops, Czech lager yeast. Any fruity esters are typically from malt, not yeast.", + "examples": "Bohemian Brewery Cherny Bock 4%, Budweiser Budvar B:Dark tmavý ležák, Devils Backbone Morana, Kout na Šumavě Koutský tmavý speciál 14°, Notch Černé Pivo, Pivovar Březnice Herold, U Fleků Flekovský tmavý 13° ležák", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A rich, dark, malty Czech lager with a roast character that can vary from almost absent to quite prominent. Malty with an interesting and complex flavor profile, with variable levels of hopping providing a range of possible interpretations. The U Fleků brewery has been operating in Prague since 1499. Many small, new breweries are brewing this style.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "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, spicy hop aroma is optional. Low diacetyl and low fruity esters (plums or berries) may be present. Dark copper to almost black color, often with a red or garnet tint. Clear to bright clarity. Large, off-white to tan, persistent head.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 and coffee may also be present, with very low to moderate roast character. Spicy hop flavor can be moderately-low to none. Hop bitterness may be moderate to medium-low 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. 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. 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.", + "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 character (aroma, flavor, and/or bitterness)." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 118, + "fields": { + "name": "Munich Helles", + "category": "Pale Malty European Lager", + "category_id": "4", + "style_id": "4A", + "category_description": null, + "overall_impression": "A clean, malty, gold-colored German lager with a smooth grainy-sweet 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. While a clean aroma is most desirable, a very low background note of DMS is not a fault. Pleasant, clean fermentation profile, with malt dominating the balance. The freshest examples will have more of a malty-sweet aroma.", + "appearance": "Medium 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 hop bitterness. The finish is soft and dry, not crisp and biting. Low to moderately-low spicy, floral or herbal hop flavor. The malt dominates the hops in the palate, finish, and aftertaste, but the hops should be noticeable. There should not be any residual sweetness, simply the impression of maltiness with restrained bitterness. Very fresh examples will seem sweeter due to the fresh, rich malt character that can fade with time. Clean fermentation profile.", + "mouthfeel": "Medium body. Medium carbonation. Smooth, well-lagered character.", + "comments": "A fully-attenuated Pils malt showcase, Helles is a malt-accentuated beer that is not overly sweet, but rather focuses on malt flavor with underlying hop bitterness in a supporting role. Export examples can quickly lose some of the rich malt character that often suggests sweetness. Helles in Munich tends to be lighter in all aspects than those outside the city, which can be more assertive with more body, flavor, and hop character.", + "history": "Created in Munich in 1894 at the Spaten brewery to compete with pale Pilsner-type beers. Currently the most popular style in Southern Germany.", + "style_comparison": null, + "tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04800", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "16.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "22.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.70000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.40000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "5.00000", + "ingredients": "Continental Pilsner malt, traditional German Saazer-type hop varieties, clean German lager yeast.", + "examples": "Augustiner Lagerbier Hell, Bürgerbräu Wolznacher Hell Naturtrüb, Hacker-Pschorr Münchner Gold, Löwenbraü Original, Paulaner Premium Lager, Spaten Premium Lager, Weihenstephaner Original", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A clean, malty, gold-colored German lager with a smooth grainy-sweet 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. Created in Munich in 1894 at the Spaten brewery to compete with pale Pilsner-type beers. Currently the most popular style in Southern Germany.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate grainy-sweet malt aroma. Low to moderately-low spicy, floral, or herbal hop aroma. While a clean aroma is most desirable, a very low background note of DMS is not a fault. Pleasant, clean fermentation profile, with malt dominating the balance. The freshest examples will have more of a malty-sweet aroma. Medium yellow to pale gold. Clear. Persistent creamy white head.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 hop bitterness. The finish is soft and dry, not crisp and biting. Low to moderately-low spicy, floral or herbal hop flavor. The malt dominates the hops in the palate, finish, and aftertaste, but the hops should be noticeable. There should not be any residual sweetness, simply the impression of maltiness with restrained bitterness. Very fresh examples will seem sweeter due to the fresh, rich malt character that can fade with time. Clean fermentation profile. Medium body. Medium carbonation. Smooth, well-lagered character. A fully-attenuated Pils malt showcase, Helles is a malt-accentuated beer that is not overly sweet, but rather focuses on malt flavor with underlying hop bitterness in a supporting role. Export examples can quickly lose some of the rich malt character that often suggests sweetness. Helles in Munich tends to be lighter in all aspects than those outside the city, which can be more assertive with more body, flavor, and hop character.", + "comparison": "Similar in malt balance and bitterness to Munich Dunkel, but less malty-sweet in nature and pale rather than dark. More body and malt presence than a German Pils, with less hop character throughout. Similar malt profile as a German Exportbier, but with less hops in the balance." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 119, + "fields": { + "name": "Festbier", + "category": "Pale Malty European Lager", + "category_id": "4", + "style_id": "4B", + "category_description": null, + "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 character.", + "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 medium gold in color.", + "flavor": "Medium to medium-high malty flavor initially, with a lightly toasty, bread dough quality and an impression of soft sweetness. 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 lager fermentation character. 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.", + "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": null, + "tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05700", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.30000", + "color_minimum_unit": "SRM", + "color_minimum_value": "4.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "7.00000", + "ingredients": "Majority Pils malt, but with some Vienna and/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 Festbier, Löwenbräu Oktoberfestbier, Paulaner Wiesn, Schönramer Gold, Weihenstephaner Festbier", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "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. 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.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "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 character. Deep yellow to deep gold color; should not have amber hues. Bright clarity. Persistent white to off-white foam stand. Most commercial examples are medium gold in color.Medium to medium-high malty flavor initially, with a lightly toasty, bread dough quality and an impression of soft sweetness. 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 lager fermentation character. The taste is mostly of Pils malt, but with slightly toasty hints. The bitterness is supportive, but still should yield a malty, flavorful finish. Medium body, with a smooth, somewhat creamy texture. Medium carbonation. Alcohol strength barely noticeable as warming, if at all. 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.", + "comparison": "Less intense and less richly toasted than a Märzen. More rich-heavy in body than a Helles, with more hop flavor and higher alcohol. Less rich in malt intensity than a Maibock. The malt complexity is similar to a higher-gravity Czech Premium Pale Lager, although without the associated hops." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 120, + "fields": { + "name": "Helles Bock", + "category": "Pale Malty European Lager", + "category_id": "4", + "style_id": "4C", + "category_description": null, + "overall_impression": "A relatively pale, strong, malty German lager beer with a nicely attenuated finish that enhances drinkability. The hop character is generally more apparent than in other bocks.", + "aroma": "Moderate to strong grainy-sweet malt aroma, often with a lightly toasted quality and low Maillard products. Moderately-low to no hop aroma, often with a spicy, herbal, or floral quality. Clean fermentation profile. Fruity esters should be low to none. Very light alcohol may be noticeable. May have a light DMS aroma.", + "appearance": "Deep gold to light amber in color. Bright to clear clarity. Large, creamy, persistent, white head.", + "flavor": "Moderately to moderately strong grainy-sweet malt flavor dominates with some toasty notes and/or Maillard products providing added interest. Little to no caramel flavors. May have a light DMS flavor. Moderate to no hop flavor (spicy, herbal, floral, peppery). 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. A light alcohol warming may be present.", + "comments": "Also known as Mai Bock, but there is some dispute whether Helles (\"pale\") Bock and Mai (\"May\") Bock are synonymous. Most agree that they are identical, but some believe that Maibock is a \"fest\" type beer hitting the upper limits of hopping and color for the range. Any fruitiness is due to Munich and other specialty malts, not yeast-derived esters developed during fermentation. The hops compensate for the lower level of Maillard products.", + "history": "A fairly recent development in comparison to the other members of the bock family. The serving of Maibock is specifically associated with springtime and the month of May.", + "style_comparison": null, + "tags": "high-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, bock-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "23.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01100", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.40000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "11.00000", + "ingredients": "Base of Pils and/or Vienna malt with some Munich malt to add character (although much less than in a traditional bock). No non-malt adjuncts. Saazer-type hops. Clean lager yeast. Decoction mash is typical, but boiling is less than in Dunkles Bock to restrain color development.", + "examples": "Altenmünster Maibock, Ayinger Maibock, Capital Maibock, Blind Tiger Maibock, Einbecker Mai-Urbock, Hacker-Pschorr Hubertus Bock, Mahr's Bock", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A relatively pale, strong, malty German lager beer with a nicely attenuated finish that enhances drinkability. The hop character is generally more apparent than in other bocks. A fairly recent development in comparison to the other members of the bock family. The serving of Maibock is specifically associated with springtime and the month of May.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate to strong grainy-sweet malt aroma, often with a lightly toasted quality and low Maillard products. Moderately-low to no hop aroma, often with a spicy, herbal, or floral quality. Clean fermentation profile. Fruity esters should be low to none. Very light alcohol may be noticeable. May have a light DMS aroma. Deep gold to light amber in color. Bright to clear clarity. Large, creamy, persistent, white head.Moderately to moderately strong grainy-sweet malt flavor dominates with some toasty notes and/or Maillard products providing added interest. Little to no caramel flavors. May have a light DMS flavor. Moderate to no hop flavor (spicy, herbal, floral, peppery). 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. Medium-bodied. Moderate to moderately-high carbonation. Smooth and clean with no harshness or astringency, despite the increased hop bitterness. A light alcohol warming may be present. Also known as Mai Bock, but there is some dispute whether Helles (\"pale\") Bock and Mai (\"May\") Bock are synonymous. Most agree that they are identical, but some believe that Maibock is a \"fest\" type beer hitting the upper limits of hopping and color for the range. Any fruitiness is due to Munich and other specialty malts, not yeast-derived esters developed during fermentation. The hops compensate for the lower level of Maillard products.", + "comparison": "Can be thought of as either a pale version of a Dunkles Bock, or a Munich Helles 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. Has more of a rich malt character and more alcohol than a Festbier." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 121, + "fields": { + "name": "German Leichtbier", + "category": "Pale Bitter European Beer", + "category_id": "5", + "style_id": "5A", + "category_description": null, + "overall_impression": "A pale, highly-attenuated, light-bodied German lager with lower alcohol and calories than normal-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": "Straw to pale gold 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 in the Mixed-Style Beer category.", + "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.", + "style_comparison": null, + "tags": "session-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.02600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.03400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "28.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "2.40000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "5.00000", + "ingredients": "Similar to a German Pils or Helles, continental Pils malt, German lager yeast, Saazer-type hops.", + "examples": "Beck's Light, Bitburger Light, Mahr's Leicht, Paulaner Münchner Hell Leicht, Paulaner Premium Leicht", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A pale, highly-attenuated, light-bodied German lager with lower alcohol and calories than normal-strength beers. Moderately bitter with noticeable malt and hop flavors, the beer is still interesting to drink. 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.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "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. Straw to pale gold in color. Brilliant clarity. Moderate white head with average to below average persistence.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. Light to very light body. Medium to high carbonation. Smooth, well-attenuated. 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 in the Mixed-Style Beer category.", + "comparison": "Like a lower-alcohol, lighter-bodied, slightly less aggressive German Pils or Helles." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 122, + "fields": { + "name": "Kölsch", + "category": "Pale Bitter European Beer", + "category_id": "5", + "style_id": "5B", + "category_description": null, + "overall_impression": "A clean, crisp, delicately-balanced beer usually with a very subtle fruit and hop character. Subdued maltiness throughout leads into a pleasantly well-attenuated and refreshing finish. Freshness makes a huge difference with this beer, as the delicate character can fade quickly with age. Brilliant clarity is characteristic.", + "aroma": "Low to very low malt aroma, with a grainy-sweet character. A pleasant, subtle fruit aroma from fermentation (apple, cherry or pear) is acceptable, but not always present. A low floral, spicy or herbal hop aroma is optional but not out of style. Some yeast strains may give a slight winy or sulfury character (this characteristic is also optional, but not a fault). Overall, the intensity of aromatics is fairly subtle but generally balanced, clean, and fresh.", + "appearance": "Very pale gold to light gold. Very clear (authentic commercial versions are filtered to a brilliant clarity). Has a delicate white head that may not persist.", + "flavor": "Soft, rounded palate comprised of a delicate flavor balance between soft yet attenuated malt, an almost imperceptible fruity sweetness from fermentation, and a medium-low to medium bitterness with a delicate dryness and slight crispness in the finish (but no harsh aftertaste). The malt tends to be grainy-sweet, possibly with a very light bready or honey quality. The hop flavor is variable, and can range from low to moderately-high; most are medium-low to medium intensity and have a floral, spicy, or herbal character. May have a malty-sweet impression at the start, but this is not required. No noticeable residual sweetness. May have a slightly winy, minerally, or sulfury accent that accentuates the dryness and flavor balance. A slight wheat taste is rare but not a fault. Otherwise, very clean.", + "mouthfeel": "Medium-light to medium body (most are medium-light). Medium to medium-high carbonation. Smooth and generally crisp and well-attenuated.", + "comments": "Characterized in Germany as a top-fermented, lagered beer. Each Köln brewery produces a beer of different character, and each interprets the Kölsch Konvention slightly differently. Allow for a range of variation within the style when judging. Note that drier versions may seem hoppier or more bitter than the IBU specifications might suggest. Due to its delicate flavor profile, Kölsch tends to have a relatively short shelf-life; older examples and imports can easily show some oxidation defects. Served in Köln in a tall, narrow 200ml glass called a Stange.", + "history": "Cologne, Germany (Köln) has a top-fermenting brewing tradition since the Middle Ages, but developed the beer now known as Kölsch in the late 1800s to combat encroaching bottom-fermented pale lagers. Kölsch is an appellation protected by the Kölsch Konvention (1986), and is restricted to the 20 or so breweries in and around Köln. The Konvention simply defines the beer as a \"light, highly attenuated, hop-accentuated, clear, top-fermenting Vollbier.\"", + "style_comparison": null, + "tags": "standard-strength, pale-color, top-fermented, lagered, central-europe, traditional-style, pale-ale-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00700", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01100", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.40000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.50000", + "color_maximum_unit": "SRM", + "color_maximum_value": "5.00000", + "ingredients": "Traditional German hops (Hallertau, Tettnang, Spalt or Hersbrucker). German Pils or pale malt. Attenuative, clean ale yeast. Up to 20% wheat malt may be used, but this is quite rare in authentic versions. Current commercial practice is to ferment warm, cold condition for a short period of time, and serve young.", + "examples": "Früh Kölsch, Gaffel Kölsch, Mühlen Kölsch, Reissdorf Kölsch, Sion Kölsch, Sünner Kölsch", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A clean, crisp, delicately-balanced beer usually with a very subtle fruit and hop character. Subdued maltiness throughout leads into a pleasantly well-attenuated and refreshing finish. Freshness makes a huge difference with this beer, as the delicate character can fade quickly with age. Brilliant clarity is characteristic. Cologne, Germany (Köln) has a top-fermenting brewing tradition since the Middle Ages, but developed the beer now known as Kölsch in the late 1800s to combat encroaching bottom-fermented pale lagers. Kölsch is an appellation protected by the Kölsch Konvention (1986), and is restricted to the 20 or so breweries in and around Köln. The Konvention simply defines the beer as a \"light, highly attenuated, hop-accentuated, clear, top-fermenting Vollbier.\"", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to very low malt aroma, with a grainy-sweet character. A pleasant, subtle fruit aroma from fermentation (apple, cherry or pear) is acceptable, but not always present. A low floral, spicy or herbal hop aroma is optional but not out of style. Some yeast strains may give a slight winy or sulfury character (this characteristic is also optional, but not a fault). Overall, the intensity of aromatics is fairly subtle but generally balanced, clean, and fresh. Very pale gold to light gold. Very clear (authentic commercial versions are filtered to a brilliant clarity). Has a delicate white head that may not persist.Soft, rounded palate comprised of a delicate flavor balance between soft yet attenuated malt, an almost imperceptible fruity sweetness from fermentation, and a medium-low to medium bitterness with a delicate dryness and slight crispness in the finish (but no harsh aftertaste). The malt tends to be grainy-sweet, possibly with a very light bready or honey quality. The hop flavor is variable, and can range from low to moderately-high; most are medium-low to medium intensity and have a floral, spicy, or herbal character. May have a malty-sweet impression at the start, but this is not required. No noticeable residual sweetness. May have a slightly winy, minerally, or sulfury accent that accentuates the dryness and flavor balance. A slight wheat taste is rare but not a fault. Otherwise, very clean. Medium-light to medium body (most are medium-light). Medium to medium-high carbonation. Smooth and generally crisp and well-attenuated. Characterized in Germany as a top-fermented, lagered beer. Each Köln brewery produces a beer of different character, and each interprets the Kölsch Konvention slightly differently. Allow for a range of variation within the style when judging. Note that drier versions may seem hoppier or more bitter than the IBU specifications might suggest. Due to its delicate flavor profile, Kölsch tends to have a relatively short shelf-life; older examples and imports can easily show some oxidation defects. Served in Köln in a tall, narrow 200ml glass called a Stange.", + "comparison": "To the untrained taster, easily mistaken for a cream ale or somewhat subtle Pils." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 123, + "fields": { + "name": "German Helles Exportbier", + "category": "Pale Bitter European Beer", + "category_id": "5", + "style_id": "5C", + "category_description": null, + "overall_impression": "A pale, well-balanced, smooth German lager that is slightly stronger than the average beer with a moderate body and a mild, aromatic hop and malt character.", + "aroma": "Low to medium hop aroma, typically floral, spicy, or herbal in character. Moderate grainy-sweet malt aroma. Clean fermentation profile. A slight sulfury note at the start that dissipates is not a fault, neither is a low background note of DMS.", + "appearance": "Light gold to deep gold. Clear. Persistent white head.", + "flavor": "Neither grainy-sweet malt nor floral, spicy, or herbal hops dominate, but both are in good balance with a touch of malty sweetness, providing a smooth yet crisply refreshing beer. Balance continues through the finish and the hop bitterness lingers in aftertaste (although some examples may finish slightly sweet). Clean fermentation character. Some mineral character might be noted from the water, although it usually does not come across as an overt minerally flavor.", + "mouthfeel": "Medium body, medium carbonation. Smooth but crisp.", + "comments": "Sometimes known as Dortmunder or Dortmunder Export. Brewed to a slightly higher starting gravity than other light lagers, providing a firm malty body and underlying maltiness to complement the sulfate-accentuated hop bitterness. The term \"Export\" is a beer strength descriptor under German brewing tradition, and is not strictly synonymous with the \"Dortmunder\" style; beer from other cities or regions can be brewed to Export strength, and labeled as such (even if not necessarily exported).", + "history": "The Dortmunder style developed in the Dortmund industrial region in the 1870s in response to pale Pilsner-type beers, it became very popular after World War II but declined in the 1970s. Other Export-class beers developed independently, and reflected a slightly stronger version of existing beers. The modern German style is typically 12-13 °P.", + "style_comparison": null, + "tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pale-lager-family, balanced,", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05600", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "4.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "7.00000", + "ingredients": "Minerally water with high levels of sulfates, carbonates and chlorides, German or Czech noble hops, Pilsner malt, German lager yeast. Newer commercial versions can contain adjuncts and hop extract.", + "examples": "DAB Original, Dortmunder Kronen, Dortmunder Union Export, Flensburger Gold, Gordon Biersch Golden Export, Great Lakes Dortmunder Gold", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A pale, well-balanced, smooth German lager that is slightly stronger than the average beer with a moderate body and a mild, aromatic hop and malt character. The Dortmunder style developed in the Dortmund industrial region in the 1870s in response to pale Pilsner-type beers, it became very popular after World War II but declined in the 1970s. Other Export-class beers developed independently, and reflected a slightly stronger version of existing beers. The modern German style is typically 12-13 °P.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to medium hop aroma, typically floral, spicy, or herbal in character. Moderate grainy-sweet malt aroma. Clean fermentation profile. A slight sulfury note at the start that dissipates is not a fault, neither is a low background note of DMS. Light gold to deep gold. Clear. Persistent white head.Neither grainy-sweet malt nor floral, spicy, or herbal hops dominate, but both are in good balance with a touch of malty sweetness, providing a smooth yet crisply refreshing beer. Balance continues through the finish and the hop bitterness lingers in aftertaste (although some examples may finish slightly sweet). Clean fermentation character. Some mineral character might be noted from the water, although it usually does not come across as an overt minerally flavor. Medium body, medium carbonation. Smooth but crisp. Sometimes known as Dortmunder or Dortmunder Export. Brewed to a slightly higher starting gravity than other light lagers, providing a firm malty body and underlying maltiness to complement the sulfate-accentuated hop bitterness. The term \"Export\" is a beer strength descriptor under German brewing tradition, and is not strictly synonymous with the \"Dortmunder\" style; beer from other cities or regions can be brewed to Export strength, and labeled as such (even if not necessarily exported).", + "comparison": "Less finishing hops and more body than a Pils but more bitter than a Helles." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 124, + "fields": { + "name": "German Pils", + "category": "Pale Bitter European Beer", + "category_id": "5", + "style_id": "5D", + "category_description": null, + "overall_impression": "A light-bodied, highly-attenuated, gold-colored, bottom-fermented bitter German beer showing excellent head retention and an elegant, floral hop aroma. Crisp, clean, and refreshing, a German Pils showcases the finest quality German malt and hops.", + "aroma": "Medium-low to low grainy-sweet-rich malt character (often with a light honey and slightly toasted cracker quality) and distinctive flowery, spicy, or herbal hops. Clean fermentation profile. May optionally have a very light sulfury note that comes from water as much as yeast. The hops are moderately-low to moderately-high, but should not totally dominate the malt presence. One-dimensional examples are inferior to the more complex qualities when all ingredients are sensed. May have a very low background note of DMS.", + "appearance": "Straw to light gold, brilliant to very clear, with a creamy, long-lasting white head.", + "flavor": "Medium to high hop bitterness dominates the palate and lingers into the aftertaste. Moderate to moderately-low grainy-sweet malt character supports the hop bitterness. Low to high floral, spicy, or herbal hop flavor. Clean fermentation profile. Dry to medium-dry, crisp, well-attenuated finish with a bitter aftertaste and light malt flavor. Examples made with water with higher sulfate levels often will have a low sulfury flavor that accentuates the dryness and lengthens the finish; this is acceptable but not mandatory. Some versions have a soft finish with more of a malt flavor, but still with noticeable hop bitterness and flavor, with the balance still towards bitterness.", + "mouthfeel": "Medium-light body. Medium to high carbonation.", + "comments": "Modern examples of Pils tend to become paler in color, drier in finish, and more bitter as you move from South to North in Germany, often mirroring the increase in sulfate in the water. The Pils found in Bavaria tend to be a bit softer in bitterness with more malt flavor and late hop character, yet still with sufficient hops and crispness of finish to differentiate itself from a Helles. The use of the term ‘Pils' is more common in Germany than ‘Pilsner' to differentiate it from the Czech style, and (some say) to show respect.", + "history": "Adapted from Czech Pilsner to suit brewing conditions in Germany, particularly water with higher mineral content and domestic hop varieties. First brewed in Germany in the early 1870s. Became more popular after WWII as German brewing schools emphasized modern techniques. Along with its sister beer, Czech Pilsner, is the ancestor of the most widely produced beer styles today. Average IBUs of many well-regarded commercial examples have dropped over time.", + "style_comparison": null, + "tags": "standard-strength, pale-color, bottom-fermented, lagered, central-europe, traditional-style, pilsner-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "22.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.40000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "5.00000", + "ingredients": "Continental Pilsner malt, German hop varieties (especially Saazer-type varieties such as Tettnanger, Hallertauer, and Spalt for taste and aroma; Saaz is less common), German lager yeast.", + "examples": "König Pilsener, Left Hand Polestar Pils, Paulaner Premium Pils, Schönramer Pils, Stoudt Pils, Tröegs Sunshine Pils, Trumer Pils", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A light-bodied, highly-attenuated, gold-colored, bottom-fermented bitter German beer showing excellent head retention and an elegant, floral hop aroma. Crisp, clean, and refreshing, a German Pils showcases the finest quality German malt and hops. Adapted from Czech Pilsner to suit brewing conditions in Germany, particularly water with higher mineral content and domestic hop varieties. First brewed in Germany in the early 1870s. Became more popular after WWII as German brewing schools emphasized modern techniques. Along with its sister beer, Czech Pilsner, is the ancestor of the most widely produced beer styles today. Average IBUs of many well-regarded commercial examples have dropped over time.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Medium-low to low grainy-sweet-rich malt character (often with a light honey and slightly toasted cracker quality) and distinctive flowery, spicy, or herbal hops. Clean fermentation profile. May optionally have a very light sulfury note that comes from water as much as yeast. The hops are moderately-low to moderately-high, but should not totally dominate the malt presence. One-dimensional examples are inferior to the more complex qualities when all ingredients are sensed. May have a very low background note of DMS. Straw to light gold, brilliant to very clear, with a creamy, long-lasting white head.Medium to high hop bitterness dominates the palate and lingers into the aftertaste. Moderate to moderately-low grainy-sweet malt character supports the hop bitterness. Low to high floral, spicy, or herbal hop flavor. Clean fermentation profile. Dry to medium-dry, crisp, well-attenuated finish with a bitter aftertaste and light malt flavor. Examples made with water with higher sulfate levels often will have a low sulfury flavor that accentuates the dryness and lengthens the finish; this is acceptable but not mandatory. Some versions have a soft finish with more of a malt flavor, but still with noticeable hop bitterness and flavor, with the balance still towards bitterness. Medium-light body. Medium to high carbonation. Modern examples of Pils tend to become paler in color, drier in finish, and more bitter as you move from South to North in Germany, often mirroring the increase in sulfate in the water. The Pils found in Bavaria tend to be a bit softer in bitterness with more malt flavor and late hop character, yet still with sufficient hops and crispness of finish to differentiate itself from a Helles. The use of the term ‘Pils' is more common in Germany than ‘Pilsner' to differentiate it from the Czech style, and (some say) to show respect.", + "comparison": "Lighter in body and color, drier, crisper, and more fully attenuated, with more of a lingering bitterness, and with higher carbonation than a Czech Premium Pale Lager. More hop character, malt flavor, and bitterness than International Pale Lagers. More hop character and bitterness with a drier, crisper finish than a Munich Helles; the Helles has more malt flavor, but of the same character as the Pils." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 125, + "fields": { + "name": "Märzen", + "category": "Amber Malty European Lager", + "category_id": "6", + "style_id": "6A", + "category_description": null, + "overall_impression": "An elegant, malty German amber lager with a clean, rich, toasty and bready malt flavor, restrained bitterness, and a dry finish that encourages another drink. The overall malt impression is soft, elegant, and complex, with a rich aftertaste that is never cloying or heavy.", + "aroma": "Moderate intensity aroma of German malt, typically rich, bready, somewhat toasty, with light bread crust notes. Clean lager fermentation character. No hop aroma. Caramel, dry-biscuity, or roasted malt aromas inappropriate. Very light alcohol might be detected, but should never be sharp. Clean, elegant malt richness should be the primary aroma.", + "appearance": "Amber-orange to deep reddish-copper color; should not be golden. Bright clarity, with persistent, off-white foam stand.", + "flavor": "Initial malt flavor often suggests sweetness, but finish is moderately-dry to dry. Distinctive and complex maltiness often includes a bready, toasty aspect. Hop bitterness is moderate, and the hop flavor is low to none (German types: complex, floral, herbal, or spicy). Hops provide sufficient balance that the malty palate and finish do not seem sweet. The aftertaste is malty, with the same elegant, rich malt flavors lingering. Noticeable caramel, biscuit, or roasted flavors are inappropriate. Clean lager fermentation profile.", + "mouthfeel": "Medium body, with a smooth, creamy texture that often suggests a fuller mouthfeel. Medium carbonation. Fully attenuated, without a sweet or cloying impression. May be slightly warming, but the strength should be relatively hidden.", + "comments": "Modern domestic German Oktoberfest versions are golden – see the Festbier style for this version. Export German versions (to the United States, at least) are typically orange-amber in color, have a distinctive toasty malt character, and are most often labeled Oktoberfest. American craft versions of Oktoberfest are generally based on this style, and most Americans will recognize this beer as Oktoberfest. Historic versions of the beer tended to be darker, towards the brown color range, but there have been many ‘shades' of Märzen (when the name is used as a strength); this style description specifically refers to the stronger amber lager version. The modern Festbier can be thought of as a pale Märzen by these terms.", + "history": "As the name suggests, brewed as a stronger \"March beer\" in March and lagered in cold caves over the summer. Modern versions trace back to the lager developed by Spaten in 1841, contemporaneous to the development of Vienna lager. However, the Märzen name is much older than 1841; the early ones were dark brown, and in Austria the name implied a strength band (14 °P) rather than a style. The German amber lager version (in the Viennese style of the time) was first served at Oktoberfest in 1872, a tradition that lasted until 1990 when the golden Festbier was adopted as the standard festival beer.", + "style_comparison": null, + "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "24.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.30000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "17.00000", + "ingredients": "Grist varies, although traditional German versions emphasized Munich malt. The notion of elegance is derived from the finest quality ingredients, particularly the base malts. A decoction mash was traditionally used to develop the rich malt profile.", + "examples": "Buergerliches Ur-Saalfelder, Hacker-Pschorr Original Oktoberfest, Paulaner Oktoberfest, Weltenburg Kloster Anno 1050", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "An elegant, malty German amber lager with a clean, rich, toasty and bready malt flavor, restrained bitterness, and a dry finish that encourages another drink. The overall malt impression is soft, elegant, and complex, with a rich aftertaste that is never cloying or heavy. As the name suggests, brewed as a stronger \"March beer\" in March and lagered in cold caves over the summer. Modern versions trace back to the lager developed by Spaten in 1841, contemporaneous to the development of Vienna lager. However, the Märzen name is much older than 1841; the early ones were dark brown, and in Austria the name implied a strength band (14 °P) rather than a style. The German amber lager version (in the Viennese style of the time) was first served at Oktoberfest in 1872, a tradition that lasted until 1990 when the golden Festbier was adopted as the standard festival beer.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate intensity aroma of German malt, typically rich, bready, somewhat toasty, with light bread crust notes. Clean lager fermentation character. No hop aroma. Caramel, dry-biscuity, or roasted malt aromas inappropriate. Very light alcohol might be detected, but should never be sharp. Clean, elegant malt richness should be the primary aroma. Amber-orange to deep reddish-copper color; should not be golden. Bright clarity, with persistent, off-white foam stand.Initial malt flavor often suggests sweetness, but finish is moderately-dry to dry. Distinctive and complex maltiness often includes a bready, toasty aspect. Hop bitterness is moderate, and the hop flavor is low to none (German types: complex, floral, herbal, or spicy). Hops provide sufficient balance that the malty palate and finish do not seem sweet. The aftertaste is malty, with the same elegant, rich malt flavors lingering. Noticeable caramel, biscuit, or roasted flavors are inappropriate. Clean lager fermentation profile. Medium body, with a smooth, creamy texture that often suggests a fuller mouthfeel. Medium carbonation. Fully attenuated, without a sweet or cloying impression. May be slightly warming, but the strength should be relatively hidden. Modern domestic German Oktoberfest versions are golden – see the Festbier style for this version. Export German versions (to the United States, at least) are typically orange-amber in color, have a distinctive toasty malt character, and are most often labeled Oktoberfest. American craft versions of Oktoberfest are generally based on this style, and most Americans will recognize this beer as Oktoberfest. Historic versions of the beer tended to be darker, towards the brown color range, but there have been many ‘shades' of Märzen (when the name is used as a strength); this style description specifically refers to the stronger amber lager version. The modern Festbier can be thought of as a pale Märzen by these terms.", + "comparison": "Not as strong and rich as a Dunkles Bock. More malt depth and richness than a Festbier, with a heavier body and slightly less hops. Less hoppy and equally malty as a Czech Amber Lager." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 126, + "fields": { + "name": "Rauchbier", + "category": "Amber Malty European Lager", + "category_id": "6", + "style_id": "6B", + "category_description": null, + "overall_impression": "An elegant, malty German amber lager with a balanced, complementary beechwood smoke character. Toasty-rich malt in aroma and flavor, restrained bitterness, low to high smoke flavor, clean fermentation profile, and an attenuated finish are characteristic.", + "aroma": "Blend of smoke and malt, with a varying balance and intensity. The beechwood smoke character can range from subtle to fairly strong, and can seem smoky, woody, or bacon-like. The malt character can be low to moderate, and be somewhat rich, toasty, or malty-sweet. The malt and smoke components are often inversely proportional (i.e., when smoke increases, malt decreases, and vice versa). Hop aroma may be very low to none. Clean lager fermentation character.", + "appearance": "This should be a very clear beer, with a large, creamy, rich, tan- to cream-colored head. Medium amber/light copper to dark brown color.", + "flavor": "Generally follows the aroma profile, with a blend of smoke and malt in varying balance and intensity, yet always complementary. Märzen-like qualities should be noticeable, particularly a malty, toasty richness, but the beechwood smoke flavor can be low to high. At higher levels, the smoke can take on a ham- or bacon-like character, which is acceptable as long as it doesn't veer into the greasy range. The palate can be somewhat malty, rich, and sweet, yet the finish tends to be medium-dry to dry with the smoke character sometimes enhancing the dryness of the finish. The aftertaste can reflect both malt richness and smoke flavors, with a balanced presentation desirable. Moderate, balanced, hop bitterness. Moderate to none hop flavor with spicy, floral, or herbal notes. Clean lager fermentation character. Harsh, bitter, burnt, charred, rubbery, sulfury or phenolic smoky characteristics are inappropriate.", + "mouthfeel": "Medium body. Medium to medium-high carbonation. Smooth lager character. Significant astringent, phenolic harshness is inappropriate.", + "comments": "Literally \"smoke beer\" in German. The intensity of smoke character can vary widely; not all examples are highly smoked. Allow for variation in the style when judging. Other examples of smoked beers are available in Germany based on styles such as Dunkles Bock, Weissbier, Dunkel, Schwarzbier, and Helles, including examples such as Spezial Lager; these should be entered in the Classic Style Smoked Beer category. This description specifically refers to the smoked Märzen version.", + "history": "A historical specialty of the city of Bamberg, in the Franconian region of Bavaria in Germany. Beechwood-smoked malt is used to make a Märzen-style amber lager. The smoke character of the malt varies by maltster; some breweries produce their own smoked malt (rauchmalz).", + "style_comparison": null, + "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, malty, smoke", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05700", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01200", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "12.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "German Rauchmalz (beechwood-smoked Vienna-type malt) typically makes up 20-100% of the grain bill, with the remainder being German malts typically used in a Märzen. Some breweries adjust the color slightly with a bit of roasted malt. German lager yeast. German or Czech hops.", + "examples": "Eisenbahn Rauchbier, Kaiserdom Rauchbier, Schlenkerla Rauchbier Märzen, Spezial Rauchbier Märzen Victory Scarlet Fire Rauchbier", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "An elegant, malty German amber lager with a balanced, complementary beechwood smoke character. Toasty-rich malt in aroma and flavor, restrained bitterness, low to high smoke flavor, clean fermentation profile, and an attenuated finish are characteristic. A historical specialty of the city of Bamberg, in the Franconian region of Bavaria in Germany. Beechwood-smoked malt is used to make a Märzen-style amber lager. The smoke character of the malt varies by maltster; some breweries produce their own smoked malt (rauchmalz).", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Blend of smoke and malt, with a varying balance and intensity. The beechwood smoke character can range from subtle to fairly strong, and can seem smoky, woody, or bacon-like. The malt character can be low to moderate, and be somewhat rich, toasty, or malty-sweet. The malt and smoke components are often inversely proportional (i.e., when smoke increases, malt decreases, and vice versa). Hop aroma may be very low to none. Clean lager fermentation character. This should be a very clear beer, with a large, creamy, rich, tan- to cream-colored head. Medium amber/light copper to dark brown color.Generally follows the aroma profile, with a blend of smoke and malt in varying balance and intensity, yet always complementary. Märzen-like qualities should be noticeable, particularly a malty, toasty richness, but the beechwood smoke flavor can be low to high. At higher levels, the smoke can take on a ham- or bacon-like character, which is acceptable as long as it doesn't veer into the greasy range. The palate can be somewhat malty, rich, and sweet, yet the finish tends to be medium-dry to dry with the smoke character sometimes enhancing the dryness of the finish. The aftertaste can reflect both malt richness and smoke flavors, with a balanced presentation desirable. Moderate, balanced, hop bitterness. Moderate to none hop flavor with spicy, floral, or herbal notes. Clean lager fermentation character. Harsh, bitter, burnt, charred, rubbery, sulfury or phenolic smoky characteristics are inappropriate. Medium body. Medium to medium-high carbonation. Smooth lager character. Significant astringent, phenolic harshness is inappropriate. Literally \"smoke beer\" in German. The intensity of smoke character can vary widely; not all examples are highly smoked. Allow for variation in the style when judging. Other examples of smoked beers are available in Germany based on styles such as Dunkles Bock, Weissbier, Dunkel, Schwarzbier, and Helles, including examples such as Spezial Lager; these should be entered in the Classic Style Smoked Beer category. This description specifically refers to the smoked Märzen version.", + "comparison": "Like a Märzen with but with a balanced, sweet, smoky aroma and flavor and a somewhat darker color." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 127, + "fields": { + "name": "Dunkles Bock", + "category": "Amber Malty European Lager", + "category_id": "6", + "style_id": "6C", + "category_description": null, + "overall_impression": "A dark, strong, malty German lager beer that emphasizes the malty-rich and somewhat toasty qualities of continental malts without being sweet in the finish.", + "aroma": "Medium to medium-high bready-malty-rich aroma, often with moderate amounts of rich Maillard products and/or toasty overtones. Virtually no hop aroma. Some alcohol may be noticeable. Clean lager character, although the malts can provide a slight (low to none) dark fruit character, particularly in aged examples.", + "appearance": "Light copper to brown color, often with attractive garnet highlights. Lagering should provide good clarity despite the dark color. Large, creamy, persistent, off-white head.", + "flavor": "Complex, rich maltiness is dominated by the toasty-rich Maillard products. Some caramel notes may be present. Hop bitterness is generally only high enough to support the malt flavors, allowing a bit of sweetness to linger into the finish. Well-attenuated, not cloying. Clean fermentation profile, although the malt can provide a slight dark fruit character. No hop flavor. No roasted or burnt character.", + "mouthfeel": "Medium to medium-full bodied. Moderate to moderately low carbonation. Some alcohol warmth may be found, but should never be hot. Smooth, without harshness or astringency.", + "comments": "Decoction mashing and long boiling plays an important part of flavor development, as it enhances the caramel and Maillard flavor aspects of the malt. Any fruitiness is due to Munich and other specialty malts, not yeast-derived esters developed during fermentation.", + "history": "Originated in the Northern German city of Einbeck, which was a brewing center and popular exporter in the days of the Hanseatic League (14th to 17th century). Recreated in Munich starting in the 17th century. The name \"bock\" is based on a corruption of the name \"Einbeck\" in the Bavarian dialect, and was thus only used after the beer came to Munich. \"Bock\" also means \"Ram\" in German, and is often used in logos and advertisements.", + "style_comparison": null, + "tags": "high-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, bock-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "27.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01300", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01900", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "14.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Munich and Vienna malts, rarely a tiny bit of dark roasted malts for color adjustment, never any non-malt adjuncts. Continental European hop varieties are used. Clean German lager yeast.", + "examples": "Aass Bock, Einbecker Ur-Bock Dunkel, Great Lakes Rockefeller Bock, Kneitinger Bock, New Glarus Uff-da Bock, Penn Brewery St. Nikolaus Bock", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A dark, strong, malty German lager beer that emphasizes the malty-rich and somewhat toasty qualities of continental malts without being sweet in the finish. Originated in the Northern German city of Einbeck, which was a brewing center and popular exporter in the days of the Hanseatic League (14th to 17th century). Recreated in Munich starting in the 17th century. The name \"bock\" is based on a corruption of the name \"Einbeck\" in the Bavarian dialect, and was thus only used after the beer came to Munich. \"Bock\" also means \"Ram\" in German, and is often used in logos and advertisements.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Medium to medium-high bready-malty-rich aroma, often with moderate amounts of rich Maillard products and/or toasty overtones. Virtually no hop aroma. Some alcohol may be noticeable. Clean lager character, although the malts can provide a slight (low to none) dark fruit character, particularly in aged examples. Light copper to brown color, often with attractive garnet highlights. Lagering should provide good clarity despite the dark color. Large, creamy, persistent, off-white head.Complex, rich maltiness is dominated by the toasty-rich Maillard products. Some caramel notes may be present. Hop bitterness is generally only high enough to support the malt flavors, allowing a bit of sweetness to linger into the finish. Well-attenuated, not cloying. Clean fermentation profile, although the malt can provide a slight dark fruit character. No hop flavor. No roasted or burnt character. Medium to medium-full bodied. Moderate to moderately low carbonation. Some alcohol warmth may be found, but should never be hot. Smooth, without harshness or astringency. Decoction mashing and long boiling plays an important part of flavor development, as it enhances the caramel and Maillard flavor aspects of the malt. Any fruitiness is due to Munich and other specialty malts, not yeast-derived esters developed during fermentation.", + "comparison": "Darker, with a richer malty flavor and less apparent bitterness than a Helles Bock. Less alcohol and malty richness than a Doppelbock. Stronger malt flavors and higher alcohol than a Märzen. Richer, less attenuated, and less hoppy than a Czech Amber Lager." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 128, + "fields": { + "name": "Vienna Lager", + "category": "Amber Bitter European Beer", + "category_id": "7", + "style_id": "7A", + "category_description": null, + "overall_impression": "A moderate-strength amber lager with a soft, smooth maltiness and moderate bitterness, yet finishing relatively dry. The malt flavor is clean, bready-rich, and somewhat toasty, with an elegant impression derived from quality base malts and process, not specialty malts and adjuncts.", + "aroma": "Moderately-intense malt aroma, with toasty and malty-rich aromatics. Clean lager character. Floral, spicy hop aroma may be low to none. A significant caramel or roasted aroma is inappropriate.", + "appearance": "Light reddish amber to copper color. Bright clarity. Large, off-white, persistent head.", + "flavor": "Soft, elegant malt complexity is in the forefront, with a firm enough hop bitterness to provide a balanced finish. The malt flavor tends towards a rich, toasty character, without significant caramel or roast flavors. Fairly dry, crisp finish, with both rich malt and hop bitterness present in the aftertaste. Floral, spicy hop flavor may be low to none. Clean lager fermentation character.", + "mouthfeel": "Medium-light to medium body, with a gentle creaminess. Moderate carbonation. Smooth.", + "comments": "A standard-strength everyday beer, not a beer brewed for festivals. American versions can be a bit stronger, drier and more bitter, while modern European versions tend to be sweeter. Many Mexican amber and dark lagers used to be more authentic, but unfortunately are now more like sweet, adjunct-laden Amber/Dark International Lagers. Regrettably, many modern examples use adjuncts which lessen the rich malt complexity characteristic of the best examples of this style. This style is on the watch list to move to the Historical category in future guidelines; that would allow the classic style to be described while moving the sweeter modern versions to the International Amber or Dark Lager styles.", + "history": "Developed by Anton Dreher in Vienna in 1841, became popular in the mid-late 1800s. Now nearly extinct in its area of origin, the style continues in Mexico where it was brought by Santiago Graf and other Austrian immigrant brewers in the late 1800s. Authentic examples are increasingly hard to find (except perhaps in the craft beer industry) as formerly good examples become sweeter and use more adjuncts.", + "style_comparison": null, + "tags": "standard-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, amber-lager-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.70000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "9.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "15.00000", + "ingredients": "Vienna malt provides a lightly toasty and complex, Maillard-rich malt profile. As with Märzens, only the finest quality malt should be used, along with Continental hops (preferably Saazer types or Styrians). Can use some caramel malts and/or darker malts to add color and sweetness, but caramel malts shouldn't add significant aroma and flavor and dark malts shouldn't provide any roasted character.", + "examples": "Cuauhtémoc Noche Buena, Chuckanut Vienna Lager, Devils Backbone Vienna Lager, Figueroa Mountain Danish-style Red Lager, Heavy Seas Cutlass Amber Lager, Schell's Firebrick", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A moderate-strength amber lager with a soft, smooth maltiness and moderate bitterness, yet finishing relatively dry. The malt flavor is clean, bready-rich, and somewhat toasty, with an elegant impression derived from quality base malts and process, not specialty malts and adjuncts. Developed by Anton Dreher in Vienna in 1841, became popular in the mid-late 1800s. Now nearly extinct in its area of origin, the style continues in Mexico where it was brought by Santiago Graf and other Austrian immigrant brewers in the late 1800s. Authentic examples are increasingly hard to find (except perhaps in the craft beer industry) as formerly good examples become sweeter and use more adjuncts.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderately-intense malt aroma, with toasty and malty-rich aromatics. Clean lager character. Floral, spicy hop aroma may be low to none. A significant caramel or roasted aroma is inappropriate. Light reddish amber to copper color. Bright clarity. Large, off-white, persistent head.Soft, elegant malt complexity is in the forefront, with a firm enough hop bitterness to provide a balanced finish. The malt flavor tends towards a rich, toasty character, without significant caramel or roast flavors. Fairly dry, crisp finish, with both rich malt and hop bitterness present in the aftertaste. Floral, spicy hop flavor may be low to none. Clean lager fermentation character. Medium-light to medium body, with a gentle creaminess. Moderate carbonation. Smooth. A standard-strength everyday beer, not a beer brewed for festivals. American versions can be a bit stronger, drier and more bitter, while modern European versions tend to be sweeter. Many Mexican amber and dark lagers used to be more authentic, but unfortunately are now more like sweet, adjunct-laden Amber/Dark International Lagers. Regrettably, many modern examples use adjuncts which lessen the rich malt complexity characteristic of the best examples of this style. This style is on the watch list to move to the Historical category in future guidelines; that would allow the classic style to be described while moving the sweeter modern versions to the International Amber or Dark Lager styles.", + "comparison": "Lighter malt character, slightly less body, and slightly more bitter in the balance than a Märzen, yet with many of the same malt-derived flavors. The malt character is similar to a Märzen, but less intense and more balanced. Lower in alcohol than Märzen or Festbier. Less rich, less malty and less hop-centered compared to Czech Amber Lager." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 129, + "fields": { + "name": "Altbier", + "category": "Amber Bitter European Beer", + "category_id": "7", + "style_id": "7B", + "category_description": null, + "overall_impression": "A well-balanced, well-attenuated, bitter yet malty, clean, and smooth, amber- to copper-colored German beer. The bitterness is balanced by the malt richness, but the malt intensity and character can range from moderate to high (the bitterness increases with the malt richness).", + "aroma": "Clean yet robust and complex aroma of grainy-rich malt and spicy hops with restrained (low to medium-low) fruity esters. The malt character reflects German base malt varieties, with rich baked bread and nutty-toasty bread crust notes. The hop aroma may vary from moderate to low, and can have a peppery, spicy, floral, herbal or perfumy character associated with Saazer-type hops.", + "appearance": "The color ranges from light amber to deep copper color, stopping short of brown; bronze-orange is most common. Brilliant clarity. Thick, creamy, long-lasting off-white head.", + "flavor": "Assertive hop bitterness well balanced by a sturdy yet clean and crisp malt character. The malt presence is moderated by medium-high to high attenuation, but considerable rich, complex, and somewhat grainy malt flavors can remain. Some fruity esters (especially cherry-like) may survive the lagering period. A long-lasting, medium-dry to dry, bittersweet or nutty finish reflects both the hop bitterness and malt complexity. Spicy, peppery or floral hop flavor can be moderate to low. No roasted malt flavors or harshness. The apparent bitterness level is sometimes masked by the malt character; the bitterness can seem as low as moderate if the finish is not very dry. Light sulfury or minerally character optional.", + "mouthfeel": "Medium-bodied. Smooth. Medium to medium-high carbonation, although can be lower when served from the cask. Astringency low to none. Despite being very full of flavor, is light-bodied enough to be consumed as a gravity-fed session beer in its home brewpubs in Düsseldorf.", + "comments": "A top-fermented lagered beer, fermented at cool ale temperature (59–68 °F), often conditioned at bottom-fermentation temperatures (about 50 °F) and then lagered at cold temperatures to produce a cleaner, smoother palate than is typical for most ales. Zum Uerige is a wonderful beer, but much more aggressively bitter and complex than most other German examples. It may be like the Fuller's ESB of the strong bitter category – well-known but somewhat of a stylistic outlier. Do not judge all Altbiers as if they were Zum Uerige clones; allow for a more balanced bitterness in the beer (25–35 IBUs is more typical for most other German examples). Stronger sticke and doppelsticke beers should not be entered here.", + "history": "The traditional style of beer from Düsseldorf. \"Alt\" refers to the \"old\" style of brewing (i.e., using top-fermenting yeast) that was common before bottom-fermenting lager brewing became popular. Predates the isolation of bottom-fermenting yeast strains, though it approximates many characteristics of bottom-fermenting lager beers. Many of the classic examples can be found in brewpubs in the Altstadt (\"old town\") section of Düsseldorf.", + "style_comparison": null, + "tags": "standard-strength, amber-color, top-fermented, lagered, central-europe, traditional-style, amber-ale-family, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "50.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "11.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "17.00000", + "ingredients": "Grists vary, but usually consist of German base malts (usually Pils, sometimes Munich) with small amounts of crystal, chocolate, and/or black malts used to adjust color. Occasionally will include some wheat, including roasted wheat. Spalt hops are traditional, but other Saazer-type hops can also be used. Clean, highly attenuative ale yeast. A step mash or decoction mash program is traditional.", + "examples": "Bolten Alt, Diebels Alt, Füchschen Alt, Original Schlüssel Alt, Schlösser Alt, Schumacher Alt, Uerige Altbier", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A well-balanced, well-attenuated, bitter yet malty, clean, and smooth, amber- to copper-colored German beer. The bitterness is balanced by the malt richness, but the malt intensity and character can range from moderate to high (the bitterness increases with the malt richness). The traditional style of beer from Düsseldorf. \"Alt\" refers to the \"old\" style of brewing (i.e., using top-fermenting yeast) that was common before bottom-fermenting lager brewing became popular. Predates the isolation of bottom-fermenting yeast strains, though it approximates many characteristics of bottom-fermenting lager beers. Many of the classic examples can be found in brewpubs in the Altstadt (\"old town\") section of Düsseldorf.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Clean yet robust and complex aroma of grainy-rich malt and spicy hops with restrained (low to medium-low) fruity esters. The malt character reflects German base malt varieties, with rich baked bread and nutty-toasty bread crust notes. The hop aroma may vary from moderate to low, and can have a peppery, spicy, floral, herbal or perfumy character associated with Saazer-type hops. The color ranges from light amber to deep copper color, stopping short of brown; bronze-orange is most common. Brilliant clarity. Thick, creamy, long-lasting off-white head.Assertive hop bitterness well balanced by a sturdy yet clean and crisp malt character. The malt presence is moderated by medium-high to high attenuation, but considerable rich, complex, and somewhat grainy malt flavors can remain. Some fruity esters (especially cherry-like) may survive the lagering period. A long-lasting, medium-dry to dry, bittersweet or nutty finish reflects both the hop bitterness and malt complexity. Spicy, peppery or floral hop flavor can be moderate to low. No roasted malt flavors or harshness. The apparent bitterness level is sometimes masked by the malt character; the bitterness can seem as low as moderate if the finish is not very dry. Light sulfury or minerally character optional. Medium-bodied. Smooth. Medium to medium-high carbonation, although can be lower when served from the cask. Astringency low to none. Despite being very full of flavor, is light-bodied enough to be consumed as a gravity-fed session beer in its home brewpubs in Düsseldorf. A top-fermented lagered beer, fermented at cool ale temperature (59–68 °F), often conditioned at bottom-fermentation temperatures (about 50 °F) and then lagered at cold temperatures to produce a cleaner, smoother palate than is typical for most ales. Zum Uerige is a wonderful beer, but much more aggressively bitter and complex than most other German examples. It may be like the Fuller's ESB of the strong bitter category – well-known but somewhat of a stylistic outlier. Do not judge all Altbiers as if they were Zum Uerige clones; allow for a more balanced bitterness in the beer (25–35 IBUs is more typical for most other German examples). Stronger sticke and doppelsticke beers should not be entered here.", + "comparison": "More bitter and malty than international amber lagers. Somewhat similar to California Common, both in production technique and finished flavor and color, though not in ingredients." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 130, + "fields": { + "name": "Kellerbier", + "category": "Amber Bitter European Beer", + "category_id": "7", + "style_id": "7C", + "category_description": null, + "overall_impression": "A young, unfiltered, and unpasteurized beer that is between a Helles and Märzen in color, spicier in the hops with greater attenuation. Interpretations range in color and balance, but remain in the drinkable 4.8% ABV neighborhood. Balance ranges from the dry, spicy and pale-colored interpretations by St. Georgen and Löwenbräu of Buttenheim, to darker and maltier interpretations in the Fränkische Schweiz. This style is above all a method of producing simple drinkable beers for neighbors out of local ingredients to be served fresh. Balance with a focus on drinkability and digestibility is important.", + "aroma": "Moderate intensity of German malt, typically rich, bready, somewhat toasty, with light bread crust notes. Moderately-low to moderate spicy peppery hop aroma. Very low to low diacetyl, occasionally low to moderately-low sulfur and very low green apple or other yeast-derived notes. Caramel, biscuity, or roasted malt aroma is inappropriate.", + "appearance": "Moderately cloudy to clear depending on age, but never extremely cloudy or murky. Gold to deep reddish-amber color. Off-white, creamy head. When served on cask, can have low carbonation and very low head.", + "flavor": "Initial malt flavor may suggest sweetness, but finish is moderately dry to dry, and slightly bitter. Distinctive and complex maltiness often includes a bready-toasty aspect. Hop bitterness is moderate to moderately high, and spicy or herbal hop flavor is low to moderately high. Balance can be either on the malt or hop side, but the finish is not sweet. Noticeable caramel or roasted malt flavors are inappropriate. Very low to low diacetyl. Possible very low green apple or other yeast-derived notes. Smooth, malty aftertaste.", + "mouthfeel": "Medium body, with a creamy texture and medium carbonation. Fully fermented, without a sweet or cloying impression.", + "comments": "The best examples of Amber Kellerbier are served only on tap at many of the small Franconia area breweries (as this is a beer best served fresh and the serving style being an important part of the style). Bottled versions are not likely to have the freshness, hop character and young beer notes exhibited by the draft versions.", + "history": "This was the classic, historical style before it was adapted in other areas. This original, older style of Kellerbier would have simply been beer served from local taverns that did not lager long enough to drop bright. Many breweries in Franconia would use some of this young beer during the summer months, for festivals such as the Annafest (est. 1840) in July in Forchheim, where it was traditional to drink directly from the lagering vessels.", + "style_comparison": null, + "tags": "standard-strength, amber-color, bottom-fermenting, central-europe, traditional-style, balanced, amber-lager-family", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01200", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.40000", + "color_minimum_unit": "SRM", + "color_minimum_value": "7.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "17.00000", + "ingredients": "Grist varies, although traditional German versions emphasized Franconian pale and color malt. The notion of elegance is derived from the high-quality local ingredients, particularly the malts. Spalt or other typically spicy local hops are most common. Frugal Franconian brewers rarely used decoction brewing due to the cost of energy.", + "examples": "(local) Greif, Eichhorn, Nederkeller, Hebendanz (bottled) Buttenheimer Kaiserdom Kellerbier, Kulmbacher Monchshof Kellerbier, Leikeim Kellerbier, Löwenbräu Kellerbier, Mahr's Kellerbier, St. Georgen Kellerbier, Tucher Kellerbier Naturtrub", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify whether the entry is a Pale Kellerbier (based on Helles) or an Amber Kellerbier (based on Märzen). The entrant may specify another type of Kellerbier based on other base styles such as Pils, Bock, Schwarzbier, but should supply a style description for judges. Kellerbier: Pale Kellerbier\n A very common seasonal summer beer brewed by many of the Munich area breweries and served in the beer gardens, where they are very popular.", + "notes": "A young, unfiltered, and unpasteurized beer that is between a Helles and Märzen in color, spicier in the hops with greater attenuation. Interpretations range in color and balance, but remain in the drinkable 4.8% ABV neighborhood. Balance ranges from the dry, spicy and pale-colored interpretations by St. Georgen and Löwenbräu of Buttenheim, to darker and maltier interpretations in the Fränkische Schweiz. This style is above all a method of producing simple drinkable beers for neighbors out of local ingredients to be served fresh. Balance with a focus on drinkability and digestibility is important. This was the classic, historical style before it was adapted in other areas. This original, older style of Kellerbier would have simply been beer served from local taverns that did not lager long enough to drop bright. Many breweries in Franconia would use some of this young beer during the summer months, for festivals such as the Annafest (est. 1840) in July in Forchheim, where it was traditional to drink directly from the lagering vessels.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate intensity of German malt, typically rich, bready, somewhat toasty, with light bread crust notes. Moderately-low to moderate spicy peppery hop aroma. Very low to low diacetyl, occasionally low to moderately-low sulfur and very low green apple or other yeast-derived notes. Caramel, biscuity, or roasted malt aroma is inappropriate. Moderately cloudy to clear depending on age, but never extremely cloudy or murky. Gold to deep reddish-amber color. Off-white, creamy head. When served on cask, can have low carbonation and very low head.Initial malt flavor may suggest sweetness, but finish is moderately dry to dry, and slightly bitter. Distinctive and complex maltiness often includes a bready-toasty aspect. Hop bitterness is moderate to moderately high, and spicy or herbal hop flavor is low to moderately high. Balance can be either on the malt or hop side, but the finish is not sweet. Noticeable caramel or roasted malt flavors are inappropriate. Very low to low diacetyl. Possible very low green apple or other yeast-derived notes. Smooth, malty aftertaste. Medium body, with a creamy texture and medium carbonation. Fully fermented, without a sweet or cloying impression. The best examples of Amber Kellerbier are served only on tap at many of the small Franconia area breweries (as this is a beer best served fresh and the serving style being an important part of the style). Bottled versions are not likely to have the freshness, hop character and young beer notes exhibited by the draft versions.", + "comparison": "Most commonly, this style is a young, unfiltered, unpasteurized, hoppier version of Munich Helles or Märzen. Fränkische Schweiz versions can edge up to dark amber or brown." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 131, + "fields": { + "name": "Munich Dunkel", + "category": "Dark European Lager", + "category_id": "8", + "style_id": "8A", + "category_description": null, + "overall_impression": "Characterized by depth, richness and complexity typical of darker Munich malts with the accompanying Maillard products. Deeply bready-toasty, often with chocolate-like flavors in the freshest examples, but never harsh, roasty, or astringent; a decidedly malt-balanced beer, yet still easily drinkable.", + "aroma": "Rich, elegant, deep malt sweetness, typically like bread crusts (often toasted bread crusts). Hints of chocolate, nuts, caramel, and/or toffee are also acceptable, with fresh traditional versions often showing higher levels of chocolate. Clean fermentation profile. A slight spicy, floral, or herbal hop aroma is acceptable.", + "appearance": "Deep copper to dark brown, often with a red or garnet tint. Creamy, light to medium tan head. Usually clear, although murky unfiltered versions exist.", + "flavor": "Dominated by the soft, rich, and complex flavor of darker Munich malts, usually with overtones reminiscent of toasted bread crusts, but without a burnt-harsh-grainy toastiness. The palate can be moderately malty, although it should not be overwhelming or cloyingly sweet. Mild caramel, toast or nuttiness may be present. Very fresh examples often have a pleasant malty-chocolate character that isn't roasty or sweet. Burnt or bitter flavors from roasted malts are inappropriate, as are pronounced caramel flavors from crystal malt. Hop bitterness is moderately low but perceptible, with the balance tipped firmly towards maltiness. Hop flavor is low to none; if noted, should reflect floral, spicy, or herbal German-type varieties. Aftertaste remains malty, although the hop bitterness may become more apparent in the medium-dry finish. Clean fermentation profile and lager character.", + "mouthfeel": "Medium to medium-full body, providing a soft and dextrinous mouthfeel without being heavy or cloying. Moderate carbonation. The use of continental Munich-type malts should provide a richness, not a harsh or biting astringency.", + "comments": "Unfiltered versions from Germany can taste like liquid bread, with a yeasty, earthy richness not found in exported filtered examples.", + "history": "The classic brown lager style of Munich which developed as a darker, more malt-accented beer than other regional lagers. While originating in Munich, the style became popular throughout Bavaria (especially Franconia). Franconian versions are often darker and more bitter.", + "style_comparison": null, + "tags": "standard-strength, dark-color, bottom-fermented, lagered, central-europe, traditional-style, malty, dark-lager-family", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05600", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "28.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "14.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "28.00000", + "ingredients": "Grist is traditionally made up of German Munich malt (up to 100% in some cases) with the remainder German Pilsner malt. Small amounts of crystal malt can add dextrins and color but should not introduce excessive residual sweetness. Slight additions of roasted malts (such as Carafa or chocolate) may be used to improve color but should not add strong flavors. Traditional German hop varieties and German lager yeast strains should be used. Often decoction mashed (up to a triple decoction) to enhance the malt flavors and create the depth of color.", + "examples": "Ayinger Altbairisch Dunkel, Chuckanut Dunkel Lager, Ettaler Kloster Dunkel, Hacker-Pschorr Alt Munich Dark, Weltenburger Kloster Barock-Dunkel", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "Characterized by depth, richness and complexity typical of darker Munich malts with the accompanying Maillard products. Deeply bready-toasty, often with chocolate-like flavors in the freshest examples, but never harsh, roasty, or astringent; a decidedly malt-balanced beer, yet still easily drinkable. The classic brown lager style of Munich which developed as a darker, more malt-accented beer than other regional lagers. While originating in Munich, the style became popular throughout Bavaria (especially Franconia). Franconian versions are often darker and more bitter.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Rich, elegant, deep malt sweetness, typically like bread crusts (often toasted bread crusts). Hints of chocolate, nuts, caramel, and/or toffee are also acceptable, with fresh traditional versions often showing higher levels of chocolate. Clean fermentation profile. A slight spicy, floral, or herbal hop aroma is acceptable. Deep copper to dark brown, often with a red or garnet tint. Creamy, light to medium tan head. Usually clear, although murky unfiltered versions exist.Dominated by the soft, rich, and complex flavor of darker Munich malts, usually with overtones reminiscent of toasted bread crusts, but without a burnt-harsh-grainy toastiness. The palate can be moderately malty, although it should not be overwhelming or cloyingly sweet. Mild caramel, toast or nuttiness may be present. Very fresh examples often have a pleasant malty-chocolate character that isn't roasty or sweet. Burnt or bitter flavors from roasted malts are inappropriate, as are pronounced caramel flavors from crystal malt. Hop bitterness is moderately low but perceptible, with the balance tipped firmly towards maltiness. Hop flavor is low to none; if noted, should reflect floral, spicy, or herbal German-type varieties. Aftertaste remains malty, although the hop bitterness may become more apparent in the medium-dry finish. Clean fermentation profile and lager character. Medium to medium-full body, providing a soft and dextrinous mouthfeel without being heavy or cloying. Moderate carbonation. The use of continental Munich-type malts should provide a richness, not a harsh or biting astringency. Unfiltered versions from Germany can taste like liquid bread, with a yeasty, earthy richness not found in exported filtered examples.", + "comparison": "Not as intense in maltiness as a bock (and thus more drinkable in quantity). Lacking the more roasted flavors (and often hop bitterness) of a schwarzbier. Richer, more malt-centric, and less hoppy than a Czech Dark Lager." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 132, + "fields": { + "name": "Schwarzbier", + "category": "Dark European Lager", + "category_id": "8", + "style_id": "8B", + "category_description": null, + "overall_impression": "A dark German lager that balances roasted yet smooth malt flavors with moderate hop bitterness. The lighter body, dryness, and lack of a harsh, burnt, or heavy aftertaste helps make this beer quite drinkable.", + "aroma": "Low to moderate malt, with low aromatic malty sweetness and/or hints of roast malt often apparent. The malt can be clean and neutral or moderately rich and bready, and may have a hint of dark caramel. The roast character can be somewhat dark chocolate- or coffee-like but should never be burnt. A low spicy, floral, or herbal hop aroma is optional. Clean lager yeast character, although a light sulfur is possible.", + "appearance": "Medium to very dark brown in color, often with deep ruby to garnet highlights, yet almost never truly black. Very clear. Large, persistent, tan-colored head.", + "flavor": "Light to moderate malt flavor, which can have a clean, neutral character to a moderately rich, bread-malty quality. Light to moderate roasted malt flavors can give a bitter-chocolate palate that lasts into the finish, but which are never burnt. Medium-low to medium bitterness, which can last into the finish. Light to moderate spicy, floral, or herbal hop flavor. Clean lager character. Aftertaste tends to dry out slowly and linger, featuring hop bitterness with a complementary but subtle roastiness in the background. Some residual sweetness is acceptable but not required.", + "mouthfeel": "Medium-light to medium body. Moderate to moderately-high carbonation. Smooth. No harshness or astringency, despite the use of dark, roasted malts.", + "comments": "Literally means \"black beer\" in German. While sometimes called a \"black Pils,\" the beer is rarely as dark as black or as bitter as a Pils; don't expect strongly roasted, porter-like flavors.", + "history": "A regional specialty from Thuringia, Saxony and Franconia in Germany. History is a bit sketchy, but is suspected of being originally a top-fermented beer. Popularity grew after German reunification. Served as the inspiration for black lagers brewed in Japan.", + "style_comparison": null, + "tags": "standard-strength, dark-color, bottom-fermented, lagered, central-europe, traditional-style, balanced, dark-lager-family", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.40000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.40000", + "color_minimum_unit": "SRM", + "color_minimum_value": "17.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "30.00000", + "ingredients": "German Munich malt and/or Pilsner malts for the base, supplemented by a judicious use of roasted malts (such as Carafa types) for the dark color and subtle roast flavors. Huskless dark roasted malts can add roast flavors without burnt flavors. German hop varieties and clean German lager yeasts are traditional.", + "examples": "Devils Backbone Schwartz Bier, Einbecker Schwarzbier, Eisenbahn Dunkel, Köstritzer Schwarzbier, Mönchshof Schwarzbier, Nuezeller Original Badebier", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A dark German lager that balances roasted yet smooth malt flavors with moderate hop bitterness. The lighter body, dryness, and lack of a harsh, burnt, or heavy aftertaste helps make this beer quite drinkable. A regional specialty from Thuringia, Saxony and Franconia in Germany. History is a bit sketchy, but is suspected of being originally a top-fermented beer. Popularity grew after German reunification. Served as the inspiration for black lagers brewed in Japan.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to moderate malt, with low aromatic malty sweetness and/or hints of roast malt often apparent. The malt can be clean and neutral or moderately rich and bready, and may have a hint of dark caramel. The roast character can be somewhat dark chocolate- or coffee-like but should never be burnt. A low spicy, floral, or herbal hop aroma is optional. Clean lager yeast character, although a light sulfur is possible. Medium to very dark brown in color, often with deep ruby to garnet highlights, yet almost never truly black. Very clear. Large, persistent, tan-colored head.Light to moderate malt flavor, which can have a clean, neutral character to a moderately rich, bread-malty quality. Light to moderate roasted malt flavors can give a bitter-chocolate palate that lasts into the finish, but which are never burnt. Medium-low to medium bitterness, which can last into the finish. Light to moderate spicy, floral, or herbal hop flavor. Clean lager character. Aftertaste tends to dry out slowly and linger, featuring hop bitterness with a complementary but subtle roastiness in the background. Some residual sweetness is acceptable but not required. Medium-light to medium body. Moderate to moderately-high carbonation. Smooth. No harshness or astringency, despite the use of dark, roasted malts. Literally means \"black beer\" in German. While sometimes called a \"black Pils,\" the beer is rarely as dark as black or as bitter as a Pils; don't expect strongly roasted, porter-like flavors.", + "comparison": "In comparison with a Munich Dunkel, usually darker in color, drier on the palate, lighter in body, and with a noticeable (but not high) roasted malt edge to balance the malt base. Should not taste like an American Porter made with lager yeast. Drier, less malty, with less hop character than a Czech Dark Lager." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 133, + "fields": { + "name": "Doppelbock", + "category": "Strong European Beer", + "category_id": "9", + "style_id": "9A", + "category_description": null, + "overall_impression": "A strong, rich, and very malty German lager that can have both pale and dark variants. The darker versions have more richly-developed, deeper malt flavors, while the paler versions have slightly more hops and dryness.", + "aroma": "Very strong maltiness. Darker versions will have significant Maillard products and often some toasty aromas. A light caramel aroma is acceptable. Lighter versions will have a strong malt presence with some Maillard products and toasty notes. Virtually no hop aroma, although a light noble hop aroma is acceptable in pale versions. A moderately low malt-derived dark fruit character may be present (but is optional) in dark versions. A very slight chocolate-like aroma may be present in darker versions, but no roasted or burned aromatics should ever be present. Moderate alcohol aroma may be present.", + "appearance": "Deep gold to dark brown in color. Darker versions often have ruby highlights. Lagering should provide good clarity. Large, creamy, persistent head (color varies with base style: white for pale versions, off-white for dark varieties). Stronger versions might have impaired head retention, and can display noticeable legs.", + "flavor": "Very rich and malty. Darker versions will have significant Maillard products and often some toasty flavors. Lighter versions will have a strong malt flavor with some Maillard products and toasty notes. A very slight chocolate flavor is optional in darker versions, but should never be perceived as roasty or burnt. Clean lager character. A moderately low malt-derived dark fruit character is optional in darker versions. Invariably there will be an impression of alcoholic strength, but this should be smooth and warming rather than harsh or burning. Little to no hop flavor (more is acceptable in pale versions). Hop bitterness varies from moderate to moderately low but always allows malt to dominate the flavor. Most versions are fairly malty-sweet, but should have an impression of attenuation. The sweetness comes from low hopping, not from incomplete fermentation. Paler versions generally have a drier finish.", + "mouthfeel": "Medium-full to full body. Moderate to moderately-low carbonation. Very smooth without harshness, astringency. A light alcohol warmth may be noted, but it should never burn.", + "comments": "Most versions are dark colored and may display the caramelizing and Maillard products of decoction mashing, but excellent pale versions also exist. The pale versions will not have the same richness and darker malt flavors of the dark versions, and may be a bit drier, hoppier and more bitter. While most traditional examples are in the lower end of the ranges cited, the style can be considered to have no upper limit for gravity, alcohol and bitterness (thus providing a home for very strong lagers).", + "history": "A Bavarian specialty first brewed in Munich by the monks of St. Francis of Paula. Historical versions were less well-attenuated than modern interpretations, with consequently higher sweetness and lower alcohol levels (and hence was considered \"liquid bread\" by the monks). The term \"doppel (double) bock\" was coined by Munich consumers. Many commercial doppelbocks have names ending in \"-ator,\" either as a tribute to the prototypical Salvator or to take advantage of the beer's popularity. Traditionally dark brown in color; paler examples are a more recent development.", + "style_comparison": null, + "tags": "high-strength, amber-color, pale-color, bottom-fermented, lagered, central-europe, traditional-style, bock-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.11200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "16.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "26.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "7.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "10.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "25.00000", + "ingredients": "Pils and/or Vienna malt for pale versions (with some Munich), Munich and Vienna malts for darker ones and occasionally a tiny bit of darker color malts (such as Carafa). Saazer-type hops. Clean lager yeast. Decoction mashing is traditional.", + "examples": "Dark Versions –Andechser Doppelbock Dunkel, Ayinger Celebrator, Paulaner Salvator, Spaten Optimator, Tröegs Troegenator, Weihenstephaner Korbinian,; Pale Versions – Eggenberg Urbock 23º, EKU 28, Plank Bavarian Heller Doppelbock", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant will specify whether the entry is a pale or a dark variant.", + "notes": "A strong, rich, and very malty German lager that can have both pale and dark variants. The darker versions have more richly-developed, deeper malt flavors, while the paler versions have slightly more hops and dryness. A Bavarian specialty first brewed in Munich by the monks of St. Francis of Paula. Historical versions were less well-attenuated than modern interpretations, with consequently higher sweetness and lower alcohol levels (and hence was considered \"liquid bread\" by the monks). The term \"doppel (double) bock\" was coined by Munich consumers. Many commercial doppelbocks have names ending in \"-ator,\" either as a tribute to the prototypical Salvator or to take advantage of the beer's popularity. Traditionally dark brown in color; paler examples are a more recent development.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Very strong maltiness. Darker versions will have significant Maillard products and often some toasty aromas. A light caramel aroma is acceptable. Lighter versions will have a strong malt presence with some Maillard products and toasty notes. Virtually no hop aroma, although a light noble hop aroma is acceptable in pale versions. A moderately low malt-derived dark fruit character may be present (but is optional) in dark versions. A very slight chocolate-like aroma may be present in darker versions, but no roasted or burned aromatics should ever be present. Moderate alcohol aroma may be present. Deep gold to dark brown in color. Darker versions often have ruby highlights. Lagering should provide good clarity. Large, creamy, persistent head (color varies with base style: white for pale versions, off-white for dark varieties). Stronger versions might have impaired head retention, and can display noticeable legs.Very rich and malty. Darker versions will have significant Maillard products and often some toasty flavors. Lighter versions will have a strong malt flavor with some Maillard products and toasty notes. A very slight chocolate flavor is optional in darker versions, but should never be perceived as roasty or burnt. Clean lager character. A moderately low malt-derived dark fruit character is optional in darker versions. Invariably there will be an impression of alcoholic strength, but this should be smooth and warming rather than harsh or burning. Little to no hop flavor (more is acceptable in pale versions). Hop bitterness varies from moderate to moderately low but always allows malt to dominate the flavor. Most versions are fairly malty-sweet, but should have an impression of attenuation. The sweetness comes from low hopping, not from incomplete fermentation. Paler versions generally have a drier finish. Medium-full to full body. Moderate to moderately-low carbonation. Very smooth without harshness, astringency. A light alcohol warmth may be noted, but it should never burn. Most versions are dark colored and may display the caramelizing and Maillard products of decoction mashing, but excellent pale versions also exist. The pale versions will not have the same richness and darker malt flavors of the dark versions, and may be a bit drier, hoppier and more bitter. While most traditional examples are in the lower end of the ranges cited, the style can be considered to have no upper limit for gravity, alcohol and bitterness (thus providing a home for very strong lagers).", + "comparison": "A stronger, richer, more full-bodied version of either a Dunkles Bock or a Helles Bock. Pale versions will show higher attenuation and less dark fruity character than the darker versions." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 134, + "fields": { + "name": "Eisbock", + "category": "Strong European Beer", + "category_id": "9", + "style_id": "9B", + "category_description": null, + "overall_impression": "A strong, full-bodied, rich, and malty dark German lager often with a viscous quality and strong flavors. Even though flavors are concentrated, the alcohol should be smooth and warming, not burning.", + "aroma": "Dominated by a balance of rich, intense malt and a definite alcohol presence. No hop aroma. May have significant malt-derived dark fruit esters. Alcohol aromas should not be harsh or solventy.", + "appearance": "Deep copper to dark brown in color, often with attractive ruby highlights. Lagering should provide good clarity. Head retention may be moderate to poor. Off-white to deep ivory colored head. Pronounced legs are often evident.", + "flavor": "Rich, sweet malt balanced by a significant alcohol presence. The malt can have Maillard products, toasty qualities, some caramel, and occasionally a slight chocolate flavor. No hop flavor. Hop bitterness just offsets the malt sweetness enough to avoid a cloying character. May have significant malt-derived dark fruit esters. The alcohol should be smooth, not harsh or hot, and should help the hop bitterness balance the strong malt presence. The finish should be of malt and alcohol, and can have a certain dryness from the alcohol. It should not be sticky, syrupy or cloyingly sweet. Clean lager character.", + "mouthfeel": "Full to very full-bodied. Low carbonation. Significant alcohol warmth without sharp hotness. Very smooth without harsh edges from alcohol, bitterness, fusels, or other concentrated flavors.", + "comments": "Extended lagering is often needed post-freezing to smooth the alcohol and enhance the malt and alcohol balance. Pronounced \"ICE-bock.\"", + "history": "A traditional Kulmbach specialty brewed by freezing a doppelbock and removing the ice to concentrate the flavor and alcohol content (as well as any defects).", + "style_comparison": null, + "tags": "very-high-strength, amber-color, bottom-fermented, lagered, central-europe, traditional-style, bock-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.12000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.02000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.03500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "9.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "14.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "18.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "30.00000", + "ingredients": "Same as doppelbock. Commercial eisbocks are generally concentrated anywhere from 7% to 33% (by volume).", + "examples": "Kulmbacher Eisbock", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A strong, full-bodied, rich, and malty dark German lager often with a viscous quality and strong flavors. Even though flavors are concentrated, the alcohol should be smooth and warming, not burning. A traditional Kulmbach specialty brewed by freezing a doppelbock and removing the ice to concentrate the flavor and alcohol content (as well as any defects).", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Dominated by a balance of rich, intense malt and a definite alcohol presence. No hop aroma. May have significant malt-derived dark fruit esters. Alcohol aromas should not be harsh or solventy. Deep copper to dark brown in color, often with attractive ruby highlights. Lagering should provide good clarity. Head retention may be moderate to poor. Off-white to deep ivory colored head. Pronounced legs are often evident.Rich, sweet malt balanced by a significant alcohol presence. The malt can have Maillard products, toasty qualities, some caramel, and occasionally a slight chocolate flavor. No hop flavor. Hop bitterness just offsets the malt sweetness enough to avoid a cloying character. May have significant malt-derived dark fruit esters. The alcohol should be smooth, not harsh or hot, and should help the hop bitterness balance the strong malt presence. The finish should be of malt and alcohol, and can have a certain dryness from the alcohol. It should not be sticky, syrupy or cloyingly sweet. Clean lager character. Full to very full-bodied. Low carbonation. Significant alcohol warmth without sharp hotness. Very smooth without harsh edges from alcohol, bitterness, fusels, or other concentrated flavors. Extended lagering is often needed post-freezing to smooth the alcohol and enhance the malt and alcohol balance. Pronounced \"ICE-bock.\"", + "comparison": "Eisbocks are not simply stronger doppelbocks; the name refers to the process of freezing and concentrating the beer and is not a statement on alcohol; some doppelbocks are stronger than Eisbocks. Not as thick, rich, or sweet as a Wheatwine." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 135, + "fields": { + "name": "Baltic Porter", + "category": "Strong European Beer", + "category_id": "9", + "style_id": "9C", + "category_description": null, + "overall_impression": "A Baltic Porter often has the malt flavors reminiscent of an English porter and the restrained roast of a schwarzbier, but with a higher OG and alcohol content than either. Very complex, with multi-layered malt and dark fruit flavors.", + "aroma": "Rich malty sweetness often containing caramel, toffee, nutty to deep toast, and/or licorice notes. Complex alcohol and ester profile of moderate strength, and reminiscent of plums, prunes, raisins, cherries or currants, occasionally with a vinous Port-like quality. Some darker malt character that is deep chocolate, coffee or molasses but never burnt. No hops. No sourness. Very smooth.", + "appearance": "Dark reddish-copper to opaque dark brown (not black). Thick, persistent tan-colored head. Clear, although darker versions can be opaque.", + "flavor": "As with aroma, has a rich malty sweetness with a complex blend of deep malt, dried fruit esters, and alcohol. Has a prominent yet smooth schwarzbier-like roasted flavor that stops short of burnt. Mouth-filling and very smooth. Clean lager character. Starts sweet but darker malt flavors quickly dominates and persists through finish. Just a touch dry with a hint of roast coffee or licorice in the finish. Malt can have a caramel, toffee, nutty, molasses and/or licorice complexity. Light hints of black currant and dark fruits. Medium-low to medium bitterness from malt and hops, just to provide balance. Hop flavor from slightly spicy hops ranges from none to medium-low.", + "mouthfeel": "Generally quite full-bodied and smooth, with a well-aged alcohol warmth. Medium to medium-high carbonation, making it seem even more mouth-filling. Not heavy on the tongue due to carbonation level.", + "comments": "May also be described today as an Imperial Porter, although heavily roasted or hopped versions are not appropriate for this style. Most versions are in the 7–8.5% ABV range. Danish breweries often refer to them as Stouts, which indicates their historic lineage from the days when Porter was used as a generic name for Porter and Stout.", + "history": "Traditional beer from countries bordering the Baltic Sea, developed indigenously after higher-gravity export brown or imperial stouts from England were established. Historically top-fermented, many breweries adapted the recipes for bottom-fermenting yeast along with the rest of their production.", + "style_comparison": null, + "tags": "high-strength, dark-color, any-fermentation, lagered, eastern-europe, traditional-style, porter-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.09000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "17.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "30.00000", + "ingredients": "Generally lager yeast (cold fermented if using ale yeast, as is required when brewed in Russia). Debittered chocolate or black malt. Munich or Vienna base malt. Continental hops (Saazer-type, typically). May contain crystal malts and/or adjuncts. Brown or amber malt common in historical recipes.", + "examples": "Aldaris Porteris, Baltika #6 Porter, Devils Backbone Danzig, Okocim Porter, Sinebrychoff Porter, Zywiec Porter", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A Baltic Porter often has the malt flavors reminiscent of an English porter and the restrained roast of a schwarzbier, but with a higher OG and alcohol content than either. Very complex, with multi-layered malt and dark fruit flavors. Traditional beer from countries bordering the Baltic Sea, developed indigenously after higher-gravity export brown or imperial stouts from England were established. Historically top-fermented, many breweries adapted the recipes for bottom-fermenting yeast along with the rest of their production.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Rich malty sweetness often containing caramel, toffee, nutty to deep toast, and/or licorice notes. Complex alcohol and ester profile of moderate strength, and reminiscent of plums, prunes, raisins, cherries or currants, occasionally with a vinous Port-like quality. Some darker malt character that is deep chocolate, coffee or molasses but never burnt. No hops. No sourness. Very smooth. Dark reddish-copper to opaque dark brown (not black). Thick, persistent tan-colored head. Clear, although darker versions can be opaque.As with aroma, has a rich malty sweetness with a complex blend of deep malt, dried fruit esters, and alcohol. Has a prominent yet smooth schwarzbier-like roasted flavor that stops short of burnt. Mouth-filling and very smooth. Clean lager character. Starts sweet but darker malt flavors quickly dominates and persists through finish. Just a touch dry with a hint of roast coffee or licorice in the finish. Malt can have a caramel, toffee, nutty, molasses and/or licorice complexity. Light hints of black currant and dark fruits. Medium-low to medium bitterness from malt and hops, just to provide balance. Hop flavor from slightly spicy hops ranges from none to medium-low. Generally quite full-bodied and smooth, with a well-aged alcohol warmth. Medium to medium-high carbonation, making it seem even more mouth-filling. Not heavy on the tongue due to carbonation level. May also be described today as an Imperial Porter, although heavily roasted or hopped versions are not appropriate for this style. Most versions are in the 7–8.5% ABV range. Danish breweries often refer to them as Stouts, which indicates their historic lineage from the days when Porter was used as a generic name for Porter and Stout.", + "comparison": "Much less roasted and smoother than an Imperial Stout, typically with less alcohol. Lacks the roasty qualities of stouts in general, more taking on the roasted-but-not-burnt characteristics of a schwarzbier. Quite fruity compared to other porters. Higher alcohol than other porters." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 136, + "fields": { + "name": "Weissbier", + "category": "German Wheat Beer", + "category_id": "10", + "style_id": "10A", + "category_description": null, + "overall_impression": "A pale, refreshing German wheat beer with high carbonation, dry finish, a fluffy mouthfeel, and a distinctive banana-and-clove yeast character.", + "aroma": "Moderate to strong phenols (usually clove) and fruity esters (typically banana). The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. The hop character ranges from low to none. A light to moderate wheat aroma (which might be perceived as bready or grainy) may be present but other malt characteristics should not. Optional, but acceptable, aromatics can include a light to moderate vanilla character, and/or a faint bubblegum aroma. None of these optional characteristics should be high or dominant, but often can add to the complexity and balance.", + "appearance": "Pale straw to gold in color. A very thick, moussy, long-lasting white head is characteristic. The high protein content of wheat impairs clarity in an unfiltered beer, although the level of haze is somewhat variable.", + "flavor": "Low to moderately strong banana and clove flavor. The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Optionally, a very light to moderate vanilla character and/or faint bubblegum notes can accentuate the banana flavor, sweetness and roundness; neither should be dominant if present. The soft, somewhat bready or grainy flavor of wheat is complementary, as is a slightly grainy-sweet malt character. Hop flavor is very low to none, and hop bitterness is very low to moderately low. Well-rounded, flavorful palate with a relatively dry finish. The perception of sweetness is more due to the absence of hop bitterness than actual residual sweetness; a sweet or heavy finish would significantly impair drinkability.", + "mouthfeel": "Medium-light to medium body; never heavy. Suspended yeast may increase the perception of body. The texture of wheat imparts the sensation of a fluffy, creamy fullness that may progress to a light, spritzy finish aided by high to very high carbonation. Always effervescent.", + "comments": "These are refreshing, fast-maturing beers that are lightly hopped and show a unique banana-and-clove yeast character. These beers often don't age well and are best enjoyed while young and fresh. The version mit hefe is served with suspended yeast; the krystal version is filtered for excellent clarity. The character of a krystal weizen is generally fruitier and less phenolic than that of the weissbier mit hefe. May be known as hefeweizen, particularly in the United States.", + "history": "While Bavaria has a wheat beer tradition dating back hundreds of years, brewing wheat beer used to be a monopoly reserved for Bavarian royalty. Modern weissbier dates from 1872 when Schneider began production. However, pale weissbier only became popular since the 1960s. It is quite popular today, particularly in southern Germany.", + "style_comparison": null, + "tags": "standard-strength, pale-color, top-fermented, central-europe, traditional-style, wheat-beer-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "15.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "By German brewing tradition, at least 50% of the grist must be malted wheat, although some versions use up to 70%; the remainder is typically Pilsner malt. A decoction mash is traditional, although modern brewers typically don't follow this practice. Weizen ale yeast produces the typical spicy and fruity character, although high fermentation temperatures can affect the balance and produce off-flavors.", + "examples": "Ayinger Bräu Weisse, Hacker-Pschorr Weisse, Paulaner Hefe-Weizen Naturtrüb, Schneider Weisse Unser Original, Weihenstephaner Hefeweissbier", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A pale, refreshing German wheat beer with high carbonation, dry finish, a fluffy mouthfeel, and a distinctive banana-and-clove yeast character. While Bavaria has a wheat beer tradition dating back hundreds of years, brewing wheat beer used to be a monopoly reserved for Bavarian royalty. Modern weissbier dates from 1872 when Schneider began production. However, pale weissbier only became popular since the 1960s. It is quite popular today, particularly in southern Germany.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate to strong phenols (usually clove) and fruity esters (typically banana). The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. The hop character ranges from low to none. A light to moderate wheat aroma (which might be perceived as bready or grainy) may be present but other malt characteristics should not. Optional, but acceptable, aromatics can include a light to moderate vanilla character, and/or a faint bubblegum aroma. None of these optional characteristics should be high or dominant, but often can add to the complexity and balance. Pale straw to gold in color. A very thick, moussy, long-lasting white head is characteristic. The high protein content of wheat impairs clarity in an unfiltered beer, although the level of haze is somewhat variable.Low to moderately strong banana and clove flavor. The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Optionally, a very light to moderate vanilla character and/or faint bubblegum notes can accentuate the banana flavor, sweetness and roundness; neither should be dominant if present. The soft, somewhat bready or grainy flavor of wheat is complementary, as is a slightly grainy-sweet malt character. Hop flavor is very low to none, and hop bitterness is very low to moderately low. Well-rounded, flavorful palate with a relatively dry finish. The perception of sweetness is more due to the absence of hop bitterness than actual residual sweetness; a sweet or heavy finish would significantly impair drinkability. Medium-light to medium body; never heavy. Suspended yeast may increase the perception of body. The texture of wheat imparts the sensation of a fluffy, creamy fullness that may progress to a light, spritzy finish aided by high to very high carbonation. Always effervescent. These are refreshing, fast-maturing beers that are lightly hopped and show a unique banana-and-clove yeast character. These beers often don't age well and are best enjoyed while young and fresh. The version mit hefe is served with suspended yeast; the krystal version is filtered for excellent clarity. The character of a krystal weizen is generally fruitier and less phenolic than that of the weissbier mit hefe. May be known as hefeweizen, particularly in the United States.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 137, + "fields": { + "name": "Dunkles Weissbier", + "category": "German Wheat Beer", + "category_id": "10", + "style_id": "10B", + "category_description": null, + "overall_impression": "A moderately dark German wheat beer with a distinctive banana-and-clove yeast character, supported by a toasted bread or caramel malt flavor. Highly carbonated and refreshing, with a creamy, fluffy texture and light finish that encourages drinking.", + "aroma": "Moderate phenols (usually clove) and fruity esters (usually banana). The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced. Optionally, a low to moderate vanilla character and/or faint bubblegum notes may be present, but should not dominate. Hop aroma ranges from low to none, and may be lightly floral, spicy, or herbal. A light to moderate wheat aroma (which might be perceived as bready, doughy or grainy) may be present and is often accompanied by a caramel, bread crust, or richer malt aroma. The malt aroma may moderate the phenols and esters somewhat.", + "appearance": "Light copper to mahogany brown in color. A very thick, moussy, long-lasting off-white head is characteristic. The high protein content of wheat impairs clarity in this traditionally unfiltered style, although the level of haze is somewhat variable. Suspended yeast sediment can contribute to cloudiness.", + "flavor": "Low to moderately strong banana and clove flavor. The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Optionally, a very light to moderate vanilla character and/or faint bubblegum notes can accentuate the banana flavor, sweetness and roundness; neither should be dominant if present. The soft, somewhat bready, doughy, or grainy flavor of wheat is complementary, as is a richer caramel, toast, or bread crust flavor. The malty richness can be low to medium-high, and supports the yeast character. A roasted malt character is inappropriate. A spicy, herbal, or floral hop flavor is very low to none, and hop bitterness is very low to low. Well-rounded, flavorful, often somewhat malty palate with a relatively dry finish.", + "mouthfeel": "Medium-light to medium-full body. The texture of wheat as well as yeast in suspension imparts the sensation of a fluffy, creamy fullness that may progress to a lighter finish, aided by moderate to high carbonation. Effervescent.", + "comments": "The presence of Munich and/or Vienna-type barley malts gives this style a deep, rich barley malt character not found in a weissbier. Often known as dunkelweizen, particularly in the United States.", + "history": "Bavaria has a wheat beer brewing traditional hundreds of years old, but the brewing right was reserved for Bavarian royalty until the late 1700s. Old-fashioned Bavarian wheat beer was often dark, as were most beer of the day. Pale weissbier started to become popular in the 1960s, but traditional dark wheat beer remained somewhat of an old person's drink.", + "style_comparison": null, + "tags": "standard-strength, amber-color, top-fermented, central-europe, traditional-style, wheat-beer-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05600", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "10.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "18.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "14.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "23.00000", + "ingredients": "By German brewing tradition, at least 50% of the grist must be malted wheat, although some versions use up to 70%; the remainder is usually Munich, Vienna, or dark or caramel wheat malts, or Pilsner malt with color malt. A decoction mash is traditional, but infrequently used today. Weizen ale yeasts produce the typical spicy and fruity character, although extreme fermentation temperatures can affect the balance and produce off-flavors.", + "examples": "Ayinger Ur-Weisse, Ettaler Weissbier Dunkel, Franziskaner Hefe-Weisse Dunkel, Hacker-Pschorr Weisse Dark, Tucher Dunkles Hefe Weizen, Weihenstephaner Hefeweissbier Dunkel", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A moderately dark German wheat beer with a distinctive banana-and-clove yeast character, supported by a toasted bread or caramel malt flavor. Highly carbonated and refreshing, with a creamy, fluffy texture and light finish that encourages drinking. Bavaria has a wheat beer brewing traditional hundreds of years old, but the brewing right was reserved for Bavarian royalty until the late 1700s. Old-fashioned Bavarian wheat beer was often dark, as were most beer of the day. Pale weissbier started to become popular in the 1960s, but traditional dark wheat beer remained somewhat of an old person's drink.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate phenols (usually clove) and fruity esters (usually banana). The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced. Optionally, a low to moderate vanilla character and/or faint bubblegum notes may be present, but should not dominate. Hop aroma ranges from low to none, and may be lightly floral, spicy, or herbal. A light to moderate wheat aroma (which might be perceived as bready, doughy or grainy) may be present and is often accompanied by a caramel, bread crust, or richer malt aroma. The malt aroma may moderate the phenols and esters somewhat. Light copper to mahogany brown in color. A very thick, moussy, long-lasting off-white head is characteristic. The high protein content of wheat impairs clarity in this traditionally unfiltered style, although the level of haze is somewhat variable. Suspended yeast sediment can contribute to cloudiness.Low to moderately strong banana and clove flavor. The balance and intensity of the phenol and ester components can vary but the best examples are reasonably balanced and fairly prominent. Optionally, a very light to moderate vanilla character and/or faint bubblegum notes can accentuate the banana flavor, sweetness and roundness; neither should be dominant if present. The soft, somewhat bready, doughy, or grainy flavor of wheat is complementary, as is a richer caramel, toast, or bread crust flavor. The malty richness can be low to medium-high, and supports the yeast character. A roasted malt character is inappropriate. A spicy, herbal, or floral hop flavor is very low to none, and hop bitterness is very low to low. Well-rounded, flavorful, often somewhat malty palate with a relatively dry finish. Medium-light to medium-full body. The texture of wheat as well as yeast in suspension imparts the sensation of a fluffy, creamy fullness that may progress to a lighter finish, aided by moderate to high carbonation. Effervescent. The presence of Munich and/or Vienna-type barley malts gives this style a deep, rich barley malt character not found in a weissbier. Often known as dunkelweizen, particularly in the United States.", + "comparison": "Reflecting the best yeast and wheat character of a weissbier blended with the malty richness of a Munich dunkel. The banana and clove character is often less apparent than in a weissbier due to the increased maltiness." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 138, + "fields": { + "name": "Weizenbock", + "category": "German Wheat Beer", + "category_id": "10", + "style_id": "10C", + "category_description": null, + "overall_impression": "A strong, malty, fruity, wheat-based ale combining the best malt and yeast flavors of a weissbier (pale or dark) with the malty-rich flavor, strength, and body of a Dunkles Bock or Doppelbock.", + "aroma": "Medium-high to high malty-rich character with a significant bready-grainy wheat component. Paler versions will have a bready-toasty malty richness, while darker versions will have a deeper, richer malt presence with significant Maillard products. The malt component is similar to a helles bock for pale versions (grainy-sweet-rich, lightly toasted) or a dunkles bock for dark versions (bready-malty-rich, highly toasted, optional caramel). The yeast contributes a typical weizen character of banana and spice (clove, vanilla), which can be medium-low to medium-high. Darker versions can have some dark fruit aroma (plums, prunes, grapes, raisins), particularly as they age. A low to moderate alcohol aroma is acceptable, but shouldn't be hot or solventy. No hop aroma. The malt, yeast, and alcohol intertwine to produce a complex, inviting, prominent bouquet.", + "appearance": "Pale and dark versions exist, with pale versions being light gold to light amber, and dark versions being dark amber to dark ruby-brown in color. A very thick, moussy, long-lasting white to off-white (pale versions) or light tan (dark versions) head is characteristic. The high protein content of wheat impairs clarity in this traditionally unfiltered style, although the level of haze is somewhat variable. Suspended yeast sediment can contribute to the cloudiness.", + "flavor": "Similar to the aroma, a medium-high to high malty-rich flavor together with a significant bready-grainy wheat flavor. Paler versions will have a bready, toasty, grainy-sweet malt richness, while darker versions will have deeper, bready-rich or toasted malt flavors with significant Maillard products, optional caramel. Low to moderate banana and spice (clove, vanilla) yeast character. Darker versions can have some dark fruit flavor (plums, prunes, grapes, raisins), particularly as they age. A light chocolate character (but not roast) is optional in darker versions. No hop flavor. A low hop bitterness can give a slightly sweet palate impression, but the beer typically finishes dry (sometimes enhanced by a light alcohol character). The interplay between the malt, yeast, and alcohol adds complexity and interest, which is often enhanced with age.", + "mouthfeel": "Medium-full to full body. A fluffy or creamy texture is typical, as is the mild warming sensation of substantial alcohol content. Moderate to high carbonation.", + "comments": "A Weissbier brewed to bock or doppelbock strength. Schneider also produces an Eisbock version. Pale and dark versions exist, although dark are more common. Pale versions have less rich malt complexity and often more hops, as with doppelbocks. Lightly oxidized Maillard products can produce some rich, intense flavors and aromas that are often seen in aged imported commercial products; fresher versions will not have this character. Well-aged examples might also take on a slight sherry-like complexity.", + "history": "Aventinus, the world's oldest top-fermented wheat doppelbock, was created in 1907 at the Schneider Weisse Brauhaus in Munich.", + "style_comparison": null, + "tags": "high-strength, amber-color, pale-color, top-fermented, central-europe, traditional-style, wheat-beer-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.09000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "25.00000", + "ingredients": "A high percentage of malted wheat is used (by German brewing tradition must be at least 50%, although it may contain up to 70%), with the remainder being Munich- and/or Vienna-type barley malts in darker versions, and more Pils malt in paler versions. Some color malts may be used sparingly. A traditional decoction mash can give the appropriate body without cloying sweetness. Weizen ale yeasts produce the typical spicy and fruity character. Too warm or too cold fermentation will cause the phenols and esters to be out of balance and may create off-flavors. Hop choice is essentially irrelevant, but German varieties are most traditional.", + "examples": "Dark –Eisenbahn Weizenbock, Plank Bavarian Dunkler Weizenbock, Penn Weizenbock, Schneider Unser Aventinus; Pale –Plank Bavarian Heller Weizenbock, Weihenstephaner Vitus", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant will specify whether the entry is a pale or a dark version.", + "notes": "A strong, malty, fruity, wheat-based ale combining the best malt and yeast flavors of a weissbier (pale or dark) with the malty-rich flavor, strength, and body of a Dunkles Bock or Doppelbock. Aventinus, the world's oldest top-fermented wheat doppelbock, was created in 1907 at the Schneider Weisse Brauhaus in Munich.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Medium-high to high malty-rich character with a significant bready-grainy wheat component. Paler versions will have a bready-toasty malty richness, while darker versions will have a deeper, richer malt presence with significant Maillard products. The malt component is similar to a helles bock for pale versions (grainy-sweet-rich, lightly toasted) or a dunkles bock for dark versions (bready-malty-rich, highly toasted, optional caramel). The yeast contributes a typical weizen character of banana and spice (clove, vanilla), which can be medium-low to medium-high. Darker versions can have some dark fruit aroma (plums, prunes, grapes, raisins), particularly as they age. A low to moderate alcohol aroma is acceptable, but shouldn't be hot or solventy. No hop aroma. The malt, yeast, and alcohol intertwine to produce a complex, inviting, prominent bouquet. Pale and dark versions exist, with pale versions being light gold to light amber, and dark versions being dark amber to dark ruby-brown in color. A very thick, moussy, long-lasting white to off-white (pale versions) or light tan (dark versions) head is characteristic. The high protein content of wheat impairs clarity in this traditionally unfiltered style, although the level of haze is somewhat variable. Suspended yeast sediment can contribute to the cloudiness.Similar to the aroma, a medium-high to high malty-rich flavor together with a significant bready-grainy wheat flavor. Paler versions will have a bready, toasty, grainy-sweet malt richness, while darker versions will have deeper, bready-rich or toasted malt flavors with significant Maillard products, optional caramel. Low to moderate banana and spice (clove, vanilla) yeast character. Darker versions can have some dark fruit flavor (plums, prunes, grapes, raisins), particularly as they age. A light chocolate character (but not roast) is optional in darker versions. No hop flavor. A low hop bitterness can give a slightly sweet palate impression, but the beer typically finishes dry (sometimes enhanced by a light alcohol character). The interplay between the malt, yeast, and alcohol adds complexity and interest, which is often enhanced with age. Medium-full to full body. A fluffy or creamy texture is typical, as is the mild warming sensation of substantial alcohol content. Moderate to high carbonation. A Weissbier brewed to bock or doppelbock strength. Schneider also produces an Eisbock version. Pale and dark versions exist, although dark are more common. Pale versions have less rich malt complexity and often more hops, as with doppelbocks. Lightly oxidized Maillard products can produce some rich, intense flavors and aromas that are often seen in aged imported commercial products; fresher versions will not have this character. Well-aged examples might also take on a slight sherry-like complexity.", + "comparison": "Stronger and richer than a Weissbier or Dunkles Weissbier, but with similar yeast character. More directly comparable to the Doppelbock style, with the pale and dark variations. Can vary widely in strength, but most are in the bock to doppelbock range." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 139, + "fields": { + "name": "Ordinary Bitter", + "category": "British Bitter", + "category_id": "11", + "style_id": "11A", + "category_description": null, + "overall_impression": "Low gravity, low alcohol levels, and low carbonation make this an easy-drinking session beer. The malt profile can vary in flavor and intensity, but should never override the overall bitter impression. Drinkability is a critical component of the style", + "aroma": "Low to moderate malt aroma, often (but not always) with a light caramel quality. Bready, biscuity, or lightly toasty malt complexity is common. Mild to moderate fruitiness. Hop aroma can range from moderate to none, typically with a floral, earthy, resiny, and/or fruity character. Generally no diacetyl, although very low levels are allowed.", + "appearance": "Pale amber to light copper color. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.", + "flavor": "Medium to moderately high bitterness. Moderately low to moderately high fruity esters. Moderate to low hop flavor, typically with an earthy, resiny, fruity, and/or floral character. Low to medium maltiness with a dry finish. The malt profile is typically bready, biscuity, or lightly toasty. Low to moderate caramel or toffee flavors are optional. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters and hop flavor. Generally no diacetyl, although very low levels are allowed.", + "mouthfeel": "Light to medium-light body. Low carbonation, although bottled examples can have moderate carbonation.", + "comments": "The lowest gravity member of the British Bitter family, typically known to consumers simply as \"bitter\" (although brewers tend to refer to it as Ordinary Bitter to distinguish it from other members of the family).", + "history": "See comments in category introduction.", + "style_comparison": null, + "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.03900", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00700", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01100", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Pale ale, amber, and/or crystal malts. May use a touch of dark malt for color adjustment. May use sugar adjuncts, corn, or wheat. English finishing hops are most traditional, but any hops are fair game; if American hops are used, a light touch is required. Characterful British yeast.", + "examples": "Adnams Southwold Bitter, Brains Bitter, Fuller's Chiswick Bitter, Greene King IPA, Tetley's Original Bitter, Young's Bitter", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "Low gravity, low alcohol levels, and low carbonation make this an easy-drinking session beer. The malt profile can vary in flavor and intensity, but should never override the overall bitter impression. Drinkability is a critical component of the style See comments in category introduction.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to moderate malt aroma, often (but not always) with a light caramel quality. Bready, biscuity, or lightly toasty malt complexity is common. Mild to moderate fruitiness. Hop aroma can range from moderate to none, typically with a floral, earthy, resiny, and/or fruity character. Generally no diacetyl, although very low levels are allowed. Pale amber to light copper color. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.Medium to moderately high bitterness. Moderately low to moderately high fruity esters. Moderate to low hop flavor, typically with an earthy, resiny, fruity, and/or floral character. Low to medium maltiness with a dry finish. The malt profile is typically bready, biscuity, or lightly toasty. Low to moderate caramel or toffee flavors are optional. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters and hop flavor. Generally no diacetyl, although very low levels are allowed. Light to medium-light body. Low carbonation, although bottled examples can have moderate carbonation. The lowest gravity member of the British Bitter family, typically known to consumers simply as \"bitter\" (although brewers tend to refer to it as Ordinary Bitter to distinguish it from other members of the family).", + "comparison": "Some modern variants are brewed exclusively with pale malt and are known as golden ales, summer ales, or golden bitters. Emphasis is on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 140, + "fields": { + "name": "Best Bitter", + "category": "British Bitter", + "category_id": "11", + "style_id": "11B", + "category_description": null, + "overall_impression": "A flavorful, yet refreshing, session beer. Some examples can be more malt balanced, but this should not override the overall bitter impression. Drinkability is a critical component of the style.", + "aroma": "Low to moderate malt aroma, often (but not always) with a low to medium-low caramel quality. Bready, biscuit, or lightly toasty malt complexity is common. Mild to moderate fruitiness. Hop aroma can range from moderate to none, typically with a floral, earthy, resiny, and/or fruity character. Generally no diacetyl, although very low levels are allowed.", + "appearance": "Pale amber to medium copper color. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.", + "flavor": "Medium to moderately high bitterness. Moderately low to moderately high fruity esters. Moderate to low hop flavor, typically with an earthy, resiny, fruity, and/or floral character. Low to medium maltiness with a dry finish. The malt profile is typically bready, biscuity, or lightly toasty. Low to moderate caramel or toffee flavors are optional. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters and hop flavor. Generally no diacetyl, although very low levels are allowed.", + "mouthfeel": "Medium-light to medium body. Low carbonation, although bottled examples can have moderate carbonation.", + "comments": "More evident malt flavor than in an ordinary bitter, this is a stronger, session-strength ale.", + "history": "See comments in category introduction.", + "style_comparison": null, + "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04800", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "4.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "16.00000", + "ingredients": "Pale ale, amber, and/or crystal malts. May use a touch of dark malt for color adjustment. May use sugar adjuncts, corn or wheat. English finishing hops are most traditional, but any hops are fair game; if American hops are used, a light touch is required. Characterful British yeast.", + "examples": "Adnams SSB, Coniston Bluebird Bitter, Fuller's London Pride, Harvey's Sussex Best Bitter, Shepherd Neame Master Brew Kentish Ale, Timothy Taylor Landlord, Young's Special", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A flavorful, yet refreshing, session beer. Some examples can be more malt balanced, but this should not override the overall bitter impression. Drinkability is a critical component of the style. See comments in category introduction.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to moderate malt aroma, often (but not always) with a low to medium-low caramel quality. Bready, biscuit, or lightly toasty malt complexity is common. Mild to moderate fruitiness. Hop aroma can range from moderate to none, typically with a floral, earthy, resiny, and/or fruity character. Generally no diacetyl, although very low levels are allowed. Pale amber to medium copper color. Good to brilliant clarity. Low to moderate white to off-white head. May have very little head due to low carbonation.Medium to moderately high bitterness. Moderately low to moderately high fruity esters. Moderate to low hop flavor, typically with an earthy, resiny, fruity, and/or floral character. Low to medium maltiness with a dry finish. The malt profile is typically bready, biscuity, or lightly toasty. Low to moderate caramel or toffee flavors are optional. Balance is often decidedly bitter, although the bitterness should not completely overpower the malt flavor, esters and hop flavor. Generally no diacetyl, although very low levels are allowed. Medium-light to medium body. Low carbonation, although bottled examples can have moderate carbonation. More evident malt flavor than in an ordinary bitter, this is a stronger, session-strength ale.", + "comparison": "More alcohol than an ordinary bitter, and often using higher-quality ingredients. Less alcohol than a strong bitter. More caramel or base malt character and color than a British Golden Ale. Emphasis is on the bittering hop addition as opposed to the aggressive middle and late hopping seen in American ales." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 141, + "fields": { + "name": "Strong Bitter", + "category": "British Bitter", + "category_id": "11", + "style_id": "11C", + "category_description": null, + "overall_impression": "An average-strength to moderately-strong British bitter ale. The balance may be fairly even between malt and hops to somewhat bitter. Drinkability is a critical component of the style. A rather broad style that allows for considerable interpretation by the brewer.", + "aroma": "Hop aroma moderately-high to moderately-low, typically with a floral, earthy, resiny, and/or fruity character. Medium to medium-high malt aroma, optionally with a low to moderate caramel component. Medium-low to medium-high fruity esters. Generally no diacetyl, although very low levels are allowed.", + "appearance": "Light amber to deep copper color. Good to brilliant clarity. Low to moderate white to off-white head. A low head is acceptable when carbonation is also low.", + "flavor": "Medium to medium-high bitterness with supporting malt flavors evident. The malt profile is typically bready, biscuity, nutty, or lightly toasty, and optionally has a moderately low to moderate caramel or toffee flavor. Hop flavor moderate to moderately high, typically with a floral, earthy, resiny, and/or fruity character. Hop bitterness and flavor should be noticeable, but should not totally dominate malt flavors. Moderately-low to high fruity esters. Optionally may have low amounts of alcohol. Medium-dry to dry finish. Generally no diacetyl, although very low levels are allowed.", + "mouthfeel": "Medium-light to medium-full body. Low to moderate carbonation, although bottled versions will be higher. Stronger versions may have a slight alcohol warmth but this character should not be too high.", + "comments": "In England today, \"ESB\" is a Fullers trademark, and no one thinks of it as a generic class of beer. It is a unique (but very well-known) beer that has a very strong, complex malt profile not found in other examples, often leading judges to overly penalize traditional English strong bitters. In America, ESB has been co-opted to describe a malty, bitter, reddish, standard-strength (for the US) British-type ale, and is a popular craft beer style. This may cause some judges to think of US brewpub ESBs as representative of this style.", + "history": "See comments in category introduction. Strong bitters can be seen as a higher-gravity version of best bitters (although not necessarily \"more premium\" since best bitters are traditionally the brewer's finest product). British pale ales are generally considered a premium, export-strength pale, bitter beer that roughly approximates a strong bitter, although reformulated for bottling (including increasing carbonation levels). While modern British pale ale is considered a bottled bitter, historically the styles were different.", + "style_comparison": null, + "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "50.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.60000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "18.00000", + "ingredients": "Pale ale, amber, and/or crystal malts, may use a touch of black malt for color adjustment. May use sugar adjuncts, corn or wheat. English finishing hops are most traditional, but any hops are fair game; if American hops are used, a light touch is required. Characterful British yeast. Burton versions use medium to high sulfate water, which can increase the perception of dryness and add a minerally or sulfury aroma and flavor.", + "examples": "Bass Ale, Highland Orkney Blast, Samuel Smith's Old Brewery Pale Ale, Shepherd Neame Bishop's Finger, Shepherd Neame Spitfire, West Berkshire Dr. Hexter's Healer, Whitbread Pale Ale, Young's Ram Rod", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "An average-strength to moderately-strong British bitter ale. The balance may be fairly even between malt and hops to somewhat bitter. Drinkability is a critical component of the style. A rather broad style that allows for considerable interpretation by the brewer. See comments in category introduction. Strong bitters can be seen as a higher-gravity version of best bitters (although not necessarily \"more premium\" since best bitters are traditionally the brewer's finest product). British pale ales are generally considered a premium, export-strength pale, bitter beer that roughly approximates a strong bitter, although reformulated for bottling (including increasing carbonation levels). While modern British pale ale is considered a bottled bitter, historically the styles were different.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Hop aroma moderately-high to moderately-low, typically with a floral, earthy, resiny, and/or fruity character. Medium to medium-high malt aroma, optionally with a low to moderate caramel component. Medium-low to medium-high fruity esters. Generally no diacetyl, although very low levels are allowed. Light amber to deep copper color. Good to brilliant clarity. Low to moderate white to off-white head. A low head is acceptable when carbonation is also low.Medium to medium-high bitterness with supporting malt flavors evident. The malt profile is typically bready, biscuity, nutty, or lightly toasty, and optionally has a moderately low to moderate caramel or toffee flavor. Hop flavor moderate to moderately high, typically with a floral, earthy, resiny, and/or fruity character. Hop bitterness and flavor should be noticeable, but should not totally dominate malt flavors. Moderately-low to high fruity esters. Optionally may have low amounts of alcohol. Medium-dry to dry finish. Generally no diacetyl, although very low levels are allowed. Medium-light to medium-full body. Low to moderate carbonation, although bottled versions will be higher. Stronger versions may have a slight alcohol warmth but this character should not be too high. In England today, \"ESB\" is a Fullers trademark, and no one thinks of it as a generic class of beer. It is a unique (but very well-known) beer that has a very strong, complex malt profile not found in other examples, often leading judges to overly penalize traditional English strong bitters. In America, ESB has been co-opted to describe a malty, bitter, reddish, standard-strength (for the US) British-type ale, and is a popular craft beer style. This may cause some judges to think of US brewpub ESBs as representative of this style.", + "comparison": "More evident malt and hop flavors than in a special or best bitter, as well as more alcohol. Stronger versions may overlap somewhat with British strong ales, although strong bitters will tend to be paler and more bitter. More malt flavor (particularly caramel) and esters than an American Pale Ale, with different finishing hop character." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 142, + "fields": { + "name": "British Golden Ale", + "category": "Pale Commonwealth Beer", + "category_id": "12", + "style_id": "12A", + "category_description": null, + "overall_impression": "A hop-forward, average-strength to moderately-strong pale bitter. Drinkability and a refreshing quality are critical components of the style.", + "aroma": "Hop aroma is moderately low to moderately high, and can use any variety of hops – floral, herbal, or earthy English hops and citrusy American hops are most common. Frequently a single hop varietal will be showcased. Little to no malt aroma; no caramel. Medium-low to low fruity aroma from the hops rather than esters. Little to no diacetyl.", + "appearance": "Straw to golden in color. Good to brilliant clarity. Low to moderate white head. A low head is acceptable when carbonation is also low.", + "flavor": "Medium to medium-high bitterness. Hop flavor is moderate to moderately high of any hop variety, although citrus flavors are increasingly common. Medium-low to low malt character, generally bready with perhaps a little biscuity flavor. Caramel flavors are typically absent. Little to no diacetyl. Hop bitterness and flavor should be pronounced. Moderately-low to low esters. Medium-dry to dry finish. Bitterness increases with alcohol level, but is always balanced.", + "mouthfeel": "Light to medium body. Low to moderate carbonation on draught, although bottled commercial versions will be higher. Stronger versions may have a slight alcohol warmth, but this character should not be too high.", + "comments": "Well-hopped, quenching beer with an emphasis on showcasing hops. Served colder than traditional bitters, this style was originally positioned as a refreshing summer beer, but is now often brewed year-round. Although early on the beers were brewed with English hops, increasingly American citrus-flavored hops are used. Golden Ales are also called Golden Bitters, Summer Ales, or British Blonde Ales. Can be found in cask, keg, and bottle.", + "history": "Modern golden ales were developed in England to take on strongly-marketed lagers. While it is difficult to identify the first, Hop Back's Summer Lightning, first brewed in 1986, is thought by many to have got the style off the ground.", + "style_comparison": null, + "tags": "standard-strength, pale-color, top-fermented, british-isles, craft-style, pale-ale-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05300", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "45.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Low-color pale or lager malt acting as a blank canvas for the hop character. May use sugar adjuncts, corn or wheat. English hops frequently used, although citrusy American varietals are becoming more common. Somewhat clean-fermenting British yeast.", + "examples": "Crouch Vale Brewers Gold, Fuller's Discovery, Golden Hill Exmoor Gold, Hop Back Summer Lightning, Kelham Island Pale Rider, Morland Old Golden Hen, Oakham JHB", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A hop-forward, average-strength to moderately-strong pale bitter. Drinkability and a refreshing quality are critical components of the style. Modern golden ales were developed in England to take on strongly-marketed lagers. While it is difficult to identify the first, Hop Back's Summer Lightning, first brewed in 1986, is thought by many to have got the style off the ground.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Hop aroma is moderately low to moderately high, and can use any variety of hops – floral, herbal, or earthy English hops and citrusy American hops are most common. Frequently a single hop varietal will be showcased. Little to no malt aroma; no caramel. Medium-low to low fruity aroma from the hops rather than esters. Little to no diacetyl. Straw to golden in color. Good to brilliant clarity. Low to moderate white head. A low head is acceptable when carbonation is also low.Medium to medium-high bitterness. Hop flavor is moderate to moderately high of any hop variety, although citrus flavors are increasingly common. Medium-low to low malt character, generally bready with perhaps a little biscuity flavor. Caramel flavors are typically absent. Little to no diacetyl. Hop bitterness and flavor should be pronounced. Moderately-low to low esters. Medium-dry to dry finish. Bitterness increases with alcohol level, but is always balanced. Light to medium body. Low to moderate carbonation on draught, although bottled commercial versions will be higher. Stronger versions may have a slight alcohol warmth, but this character should not be too high. Well-hopped, quenching beer with an emphasis on showcasing hops. Served colder than traditional bitters, this style was originally positioned as a refreshing summer beer, but is now often brewed year-round. Although early on the beers were brewed with English hops, increasingly American citrus-flavored hops are used. Golden Ales are also called Golden Bitters, Summer Ales, or British Blonde Ales. Can be found in cask, keg, and bottle.", + "comparison": "More similar to an American Pale Ale than anything else, although it is often lower in alcohol and usually features British ingredients. Has no caramel and fewer esters compared to British bitters and pale ales. Dry as bitters but with less malt character to support the hops, giving a different balance. Often uses (and features) American hops, more so than most other modern British styles." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 143, + "fields": { + "name": "Australian Sparkling Ale", + "category": "Pale Commonwealth Beer", + "category_id": "12", + "style_id": "12B", + "category_description": null, + "overall_impression": "Smooth and balanced, all components merge together with similar intensities. Moderate flavors showcasing Australian ingredients. Large flavor dimension. Very drinkable, suited to a hot climate. Relies on yeast character.", + "aroma": "Fairly soft, clean aroma with a balanced mix of esters, hops, malt, and yeast – all moderate to low in intensity. The esters are frequently pears and apples, possibly with a very light touch of banana (optional). The hops are earthy, herbaceous, or might show the characteristic iron-like Pride of Ringwood nose. The malt can range from neutral grainy to moderately sweet to lightly bready; no caramel should be evident. Very fresh examples can have a lightly yeasty, sulfury nose.", + "appearance": "Deep yellow to light amber in color, often medium gold. Tall, frothy, persistent white head with tiny bubbles. Noticeable effervescence due to high carbonation. Brilliant clarity if decanted, but typically poured with yeast to have a cloudy appearance. Not typically cloudy unless yeast roused during the pour.", + "flavor": "Medium to low rounded, grainy to bready malt flavor, initially mild to malty-sweet but a medium to medium-high bitterness rises mid-palate to balance the malt. Caramel flavors typically absent. Highly attenuated, giving a dry finish with lingering bitterness, although the body gives an impression of fullness. Medium to medium-high hop flavor, somewhat earthy and possibly herbal, resinous, peppery, or iron-like but not floral, lasting into aftertaste. Medium-high to medium-low esters, often pears and apples. Banana is optional, but should never dominate. May be lightly minerally or sulfury, especially if yeast is present. Should not be bland.", + "mouthfeel": "High to very high carbonation, giving mouth-filling bubbles and a crisp, spritzy carbonic bite. Medium to medium-full body, tending to the higher side if poured with yeast. Smooth but gassy. Stronger versions may have a light alcohol warmth, but lower alcohol versions will not. Very well-attenuated; should not have any residual sweetness.", + "comments": "Coopers has been making their flagship Sparkling Ale since 1862, although the formulation has changed over the years. Presently the beer will have brilliant clarity if decanted, but publicans often pour most of the beer into a glass then swirl the bottle and dump in all the yeast. In some bars, the bottle is rolled along the bar! When served on draught, the brewery instructs publicans to invert the keg to rouse the yeast. A cloudy appearance for the style seems to be a modern consumer preference. Always naturally carbonated, even in the keg. A present-use ale, best enjoyed fresh.", + "history": "Brewing records show that the majority of Australian beer brewed in the 19th century was draught XXX (Mild) and porter. Ale in bottle was originally developed to compete with imported bottled pale ales from British breweries, such as Bass and Wm Younger' Monk. By the early 20th century, bottled pale ale went out of fashion and \"lighter\" lager beers were in vogue. Many Australian Sparkling and Pale Ales were labeled as ales, but were actually bottom-fermented lagers with very similar grists to the ales that they replaced. Coopers of Adelaide, South Australia is the only surviving brewer producing the Sparkling Ale style.", + "style_comparison": null, + "tags": "standard-strength, pale-color, top-fermented, pacific, traditional-style, pale-ale-family, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00400", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.00600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "4.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "7.00000", + "ingredients": "Lightly kilned Australian 2-row pale malt, lager varieties may be used. Small amounts of crystal malt for color adjustment only. Modern examples use no adjuncts, cane sugar for priming only. Historical examples using 45% 2 row, 30% higher protein malt (6 row) would use around 25% sugar to dilute the nitrogen content. Traditionally used Australian hops, Cluster, and Goldings until replaced from mid-1960s by Pride of Ringwood. Highly attenuative Burton-type yeast (Australian-type strain typical). Variable water profile, typically with low carbonate and moderate sulfate.", + "examples": "Coopers Original Pale Ale, Coopers Sparkling Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "Smooth and balanced, all components merge together with similar intensities. Moderate flavors showcasing Australian ingredients. Large flavor dimension. Very drinkable, suited to a hot climate. Relies on yeast character. Brewing records show that the majority of Australian beer brewed in the 19th century was draught XXX (Mild) and porter. Ale in bottle was originally developed to compete with imported bottled pale ales from British breweries, such as Bass and Wm Younger' Monk. By the early 20th century, bottled pale ale went out of fashion and \"lighter\" lager beers were in vogue. Many Australian Sparkling and Pale Ales were labeled as ales, but were actually bottom-fermented lagers with very similar grists to the ales that they replaced. Coopers of Adelaide, South Australia is the only surviving brewer producing the Sparkling Ale style.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Fairly soft, clean aroma with a balanced mix of esters, hops, malt, and yeast – all moderate to low in intensity. The esters are frequently pears and apples, possibly with a very light touch of banana (optional). The hops are earthy, herbaceous, or might show the characteristic iron-like Pride of Ringwood nose. The malt can range from neutral grainy to moderately sweet to lightly bready; no caramel should be evident. Very fresh examples can have a lightly yeasty, sulfury nose. Deep yellow to light amber in color, often medium gold. Tall, frothy, persistent white head with tiny bubbles. Noticeable effervescence due to high carbonation. Brilliant clarity if decanted, but typically poured with yeast to have a cloudy appearance. Not typically cloudy unless yeast roused during the pour.Medium to low rounded, grainy to bready malt flavor, initially mild to malty-sweet but a medium to medium-high bitterness rises mid-palate to balance the malt. Caramel flavors typically absent. Highly attenuated, giving a dry finish with lingering bitterness, although the body gives an impression of fullness. Medium to medium-high hop flavor, somewhat earthy and possibly herbal, resinous, peppery, or iron-like but not floral, lasting into aftertaste. Medium-high to medium-low esters, often pears and apples. Banana is optional, but should never dominate. May be lightly minerally or sulfury, especially if yeast is present. Should not be bland. High to very high carbonation, giving mouth-filling bubbles and a crisp, spritzy carbonic bite. Medium to medium-full body, tending to the higher side if poured with yeast. Smooth but gassy. Stronger versions may have a light alcohol warmth, but lower alcohol versions will not. Very well-attenuated; should not have any residual sweetness. Coopers has been making their flagship Sparkling Ale since 1862, although the formulation has changed over the years. Presently the beer will have brilliant clarity if decanted, but publicans often pour most of the beer into a glass then swirl the bottle and dump in all the yeast. In some bars, the bottle is rolled along the bar! When served on draught, the brewery instructs publicans to invert the keg to rouse the yeast. A cloudy appearance for the style seems to be a modern consumer preference. Always naturally carbonated, even in the keg. A present-use ale, best enjoyed fresh.", + "comparison": "Superficially similar to English Pale Ales, although much more highly carbonated, with less caramel, less late hops, and showcasing the signature yeast strain and hop variety. More bitter than IBUs might suggest due to high attenuation, low final gravity, and somewhat coarse hops." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 144, + "fields": { + "name": "English IPA", + "category": "Pale Commonwealth Beer", + "category_id": "12", + "style_id": "12C", + "category_description": null, + "overall_impression": "A hoppy, moderately-strong, very well-attenuated pale British ale with a dry finish and a hoppy aroma and flavor. Classic British ingredients provide the best flavor profile.", + "aroma": "A moderate to moderately-high hop aroma of floral, spicy-peppery or citrus-orange in nature is typical. A slightly grassy dry-hop aroma is acceptable, but not required. A moderately-low caramel-like or toasty malt presence is optional. Low to moderate fruitiness is acceptable. Some versions may have a sulfury note, although this character is not mandatory.", + "appearance": "Color ranges from golden to deep amber, but most are fairly pale. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Moderate-sized, persistent head stand with off-white color.", + "flavor": "Hop flavor is medium to high, with a moderate to assertive hop bitterness. The hop flavor should be similar to the aroma (floral, spicy-peppery, citrus-orange, and/or slightly grassy). Malt flavor should be medium-low to medium, and be somewhat bready, optionally with light to medium-light biscuit-like, toasty, toffee-like and/or caramelly aspects. Medium-low to medium fruitiness. Finish is medium-dry to very dry, and the bitterness may linger into the aftertaste but should not be harsh. The balance is toward the hops, but the malt should still be noticeable in support. If high sulfate water is used, a distinctively minerally, dry finish, some sulfur flavor, and a lingering bitterness are usually present. Some clean alcohol flavor can be noted in stronger versions. Oak is inappropriate in this style.", + "mouthfeel": "Smooth, medium-light to medium-bodied mouthfeel without hop-derived astringency, although moderate to medium-high carbonation can combine to render an overall dry sensation despite a supportive malt presence. A low, smooth alcohol warming can and should be sensed in stronger (but not all) versions.", + "comments": "The attributes of IPA that were important to its arrival in good condition in India were that it was very well-attenuated, and heavily hopped. Simply because this is how IPA was shipped, doesn't mean that other beers such as Porter weren't also sent to India, that IPA was invented to be sent to India, that IPA was more heavily hopped than other keeping beers, or that the alcohol level was unusual for the time. Many modern examples labeled IPA are quite weak in strength. According to CAMRA, \"so-called IPAs with strengths of around 3.5% are not true to style.\" English beer historian Martyn Cornell has commented that beers like this are \"not really distinguishable from an ordinary bitter.\" So we choose to agree with these sources for our guidelines rather than what some modern British breweries are calling an IPA; just be aware of these two main types of IPAs in the British market today.", + "history": "Accounts of its origins vary, but most agree that what became later known as IPA was pale ale prepared for shipment to India in the late 1700s and early 1800s. George Hodgson of the Bow Brewery became well-known as an exporter of IPA during the early 1800s, and is the first name frequently mentioned with its popularity. As with all English beers with a long history, the popularity and formulation of the product changed over time. Burton breweries with their high-sulfate water were able to successfully brew IPA and began their domination of this market by the 1830s, around the time the name India Pale Ale was first used. Strength and popularity declined over time, and the style virtually disappeared in the second half of the 20th century. The name was often used to describe pale ales and bitters, not anything special (a trend that continues in some modern British examples). The style underwent a craft beer rediscovery in the 1980s, and is what is described in these guidelines. Modern examples are inspired by classic versions, but shouldn't be assumed to have an unbroken lineage with the exact same profile. White Shield is probably the example with the longest lineage, tracing to the strong Burton IPAs of old and first brewed in 1829.", + "style_comparison": null, + "tags": "high-strength, pale-color, top-fermented, british-isles, traditional-style, ipa-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "40.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "60.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Pale ale malt. English hops are traditional, particularly as finishing hops. Attenuative British ale yeast. Refined sugar may be used in some versions. Some versions may show a sulfate character from Burton-type water, but this is not essential to the style.", + "examples": "Freeminer Trafalgar IPA, Fuller's Bengal Lancer IPA, Meantime India Pale Ale, Ridgeway IPA, Summit True Brit IPA, Thornbridge Jaipur, Worthington White Shield", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A hoppy, moderately-strong, very well-attenuated pale British ale with a dry finish and a hoppy aroma and flavor. Classic British ingredients provide the best flavor profile. Accounts of its origins vary, but most agree that what became later known as IPA was pale ale prepared for shipment to India in the late 1700s and early 1800s. George Hodgson of the Bow Brewery became well-known as an exporter of IPA during the early 1800s, and is the first name frequently mentioned with its popularity. As with all English beers with a long history, the popularity and formulation of the product changed over time. Burton breweries with their high-sulfate water were able to successfully brew IPA and began their domination of this market by the 1830s, around the time the name India Pale Ale was first used. Strength and popularity declined over time, and the style virtually disappeared in the second half of the 20th century. The name was often used to describe pale ales and bitters, not anything special (a trend that continues in some modern British examples). The style underwent a craft beer rediscovery in the 1980s, and is what is described in these guidelines. Modern examples are inspired by classic versions, but shouldn't be assumed to have an unbroken lineage with the exact same profile. White Shield is probably the example with the longest lineage, tracing to the strong Burton IPAs of old and first brewed in 1829.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "A moderate to moderately-high hop aroma of floral, spicy-peppery or citrus-orange in nature is typical. A slightly grassy dry-hop aroma is acceptable, but not required. A moderately-low caramel-like or toasty malt presence is optional. Low to moderate fruitiness is acceptable. Some versions may have a sulfury note, although this character is not mandatory. Color ranges from golden to deep amber, but most are fairly pale. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Moderate-sized, persistent head stand with off-white color.Hop flavor is medium to high, with a moderate to assertive hop bitterness. The hop flavor should be similar to the aroma (floral, spicy-peppery, citrus-orange, and/or slightly grassy). Malt flavor should be medium-low to medium, and be somewhat bready, optionally with light to medium-light biscuit-like, toasty, toffee-like and/or caramelly aspects. Medium-low to medium fruitiness. Finish is medium-dry to very dry, and the bitterness may linger into the aftertaste but should not be harsh. The balance is toward the hops, but the malt should still be noticeable in support. If high sulfate water is used, a distinctively minerally, dry finish, some sulfur flavor, and a lingering bitterness are usually present. Some clean alcohol flavor can be noted in stronger versions. Oak is inappropriate in this style. Smooth, medium-light to medium-bodied mouthfeel without hop-derived astringency, although moderate to medium-high carbonation can combine to render an overall dry sensation despite a supportive malt presence. A low, smooth alcohol warming can and should be sensed in stronger (but not all) versions. The attributes of IPA that were important to its arrival in good condition in India were that it was very well-attenuated, and heavily hopped. Simply because this is how IPA was shipped, doesn't mean that other beers such as Porter weren't also sent to India, that IPA was invented to be sent to India, that IPA was more heavily hopped than other keeping beers, or that the alcohol level was unusual for the time. Many modern examples labeled IPA are quite weak in strength. According to CAMRA, \"so-called IPAs with strengths of around 3.5% are not true to style.\" English beer historian Martyn Cornell has commented that beers like this are \"not really distinguishable from an ordinary bitter.\" So we choose to agree with these sources for our guidelines rather than what some modern British breweries are calling an IPA; just be aware of these two main types of IPAs in the British market today.", + "comparison": "Generally will have more finish hops and less fruitiness and/or caramel than British pale ales and bitters. Has less hop intensity and a more pronounced malt flavor than typical American versions." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 145, + "fields": { + "name": "Dark Mild", + "category": "Brown British Beer", + "category_id": "13", + "style_id": "13A", + "category_description": null, + "overall_impression": "A dark, low-gravity, malt-focused British session ale readily suited to drinking in quantity. Refreshing, yet flavorful, with a wide range of dark malt or dark sugar expression.", + "aroma": "Low to moderate malt aroma, and may have some fruitiness. The malt expression can take on a wide range of character, which can include caramel, toffee, grainy, toasted, nutty, chocolate, or lightly roasted. Little to no hop aroma, earthy or floral if present. Very low to no diacetyl.", + "appearance": "Copper to dark brown or mahogany color. A few paler examples (medium amber to light brown) exist. Generally clear, although is traditionally unfiltered. Low to moderate off-white to tan head; retention may be poor.", + "flavor": "Generally a malty beer, although may have a very wide range of malt- and yeast-based flavors (e.g., malty, sweet, caramel, toffee, toast, nutty, chocolate, coffee, roast, fruit, licorice, plum, raisin). Can finish sweet to dry. Versions with darker malts may have a dry, roasted finish. Low to moderate bitterness, enough to provide some balance but not enough to overpower the malt. Fruity esters moderate to none. Diacetyl and hop flavor low to none.", + "mouthfeel": "Light to medium body. Generally low to medium-low carbonation. Roast-based versions may have a light astringency. Sweeter versions may seem to have a rather full mouthfeel for the gravity.", + "comments": "Most are low-gravity session beers around 3.2%, although some versions may be made in the stronger (4%+) range for export, festivals, seasonal and/or special occasions. Generally served on cask; session-strength bottled versions don't often travel well. A wide range of interpretations are possible. Pale versions exist, but these are even more rare than dark milds; these guidelines only describe the modern dark version.", + "history": "Historically, ‘mild' was simply an unaged beer, and could be used as an adjective to distinguish between aged or more highly hopped keeping beers. Modern milds trace their roots to the weaker X-type ales of the 1800s, although dark milds did not appear until the 20th century. In current usage, the term implies a lower-strength beer with less hop bitterness than bitters. The guidelines describe the modern British version. The term ‘mild' is currently somewhat out of favor with consumers, and many breweries no longer use it. Increasingly rare. There is no historic connection or relationship between Mild and Porter.", + "style_comparison": null, + "tags": "session-strength, dark-color, top-fermented, british-isles, traditional-style, brown-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.03800", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "10.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "12.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "25.00000", + "ingredients": "Pale British base malts (often fairly dextrinous), crystal malt, dark malts or dark sugar adjuncts, may also include adjuncts such as flaked maize, and may be colored with brewer's caramel. Characterful British ale yeast. Any type of hops, since their character is muted and rarely is noticeable.", + "examples": "Banks's Mild, Cain's Dark Mild, Highgate Dark Mild, Brain's Dark, Moorhouse Black Cat, Rudgate Ruby Mild, Theakston Traditional Mild", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A dark, low-gravity, malt-focused British session ale readily suited to drinking in quantity. Refreshing, yet flavorful, with a wide range of dark malt or dark sugar expression. Historically, ‘mild' was simply an unaged beer, and could be used as an adjective to distinguish between aged or more highly hopped keeping beers. Modern milds trace their roots to the weaker X-type ales of the 1800s, although dark milds did not appear until the 20th century. In current usage, the term implies a lower-strength beer with less hop bitterness than bitters. The guidelines describe the modern British version. The term ‘mild' is currently somewhat out of favor with consumers, and many breweries no longer use it. Increasingly rare. There is no historic connection or relationship between Mild and Porter.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to moderate malt aroma, and may have some fruitiness. The malt expression can take on a wide range of character, which can include caramel, toffee, grainy, toasted, nutty, chocolate, or lightly roasted. Little to no hop aroma, earthy or floral if present. Very low to no diacetyl. Copper to dark brown or mahogany color. A few paler examples (medium amber to light brown) exist. Generally clear, although is traditionally unfiltered. Low to moderate off-white to tan head; retention may be poor.Generally a malty beer, although may have a very wide range of malt- and yeast-based flavors (e.g., malty, sweet, caramel, toffee, toast, nutty, chocolate, coffee, roast, fruit, licorice, plum, raisin). Can finish sweet to dry. Versions with darker malts may have a dry, roasted finish. Low to moderate bitterness, enough to provide some balance but not enough to overpower the malt. Fruity esters moderate to none. Diacetyl and hop flavor low to none. Light to medium body. Generally low to medium-low carbonation. Roast-based versions may have a light astringency. Sweeter versions may seem to have a rather full mouthfeel for the gravity. Most are low-gravity session beers around 3.2%, although some versions may be made in the stronger (4%+) range for export, festivals, seasonal and/or special occasions. Generally served on cask; session-strength bottled versions don't often travel well. A wide range of interpretations are possible. Pale versions exist, but these are even more rare than dark milds; these guidelines only describe the modern dark version.", + "comparison": "Some versions may seem like lower-gravity modern English porters. Much less sweet than London Brown Ale." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 146, + "fields": { + "name": "British Brown Ale", + "category": "Brown British Beer", + "category_id": "13", + "style_id": "13B", + "category_description": null, + "overall_impression": "A malty, brown caramel-centric British ale without the roasted flavors of a Porter.", + "aroma": "Light, sweet malt aroma with toffee, nutty, or light chocolate notes, and a light to heavy caramel quality. A light but appealing floral or earthy hop aroma may also be noticed. A light fruity aroma may be evident, but should not dominate.", + "appearance": "Dark amber to dark reddish-brown color. Clear. Low to moderate off-white to light tan head.", + "flavor": "Gentle to moderate malt sweetness, with a light to heavy caramel character and a medium to dry finish. Malt may also have a nutty, toasted, biscuity, toffee, or light chocolate character. Medium to medium-low bitterness. Malt-hop balance ranges from even to malt-focused; hop flavor low to none (floral or earthy qualities). Low to moderate fruity esters can be present.", + "mouthfeel": "Medium-light to medium body. Medium to medium-high carbonation.", + "comments": "A wide-ranging category with different interpretations possible, ranging from lighter-colored to hoppy to deeper, darker, and caramel-focused; however, none of the versions have strongly roasted flavors. A stronger Double Brown Ale was more popular in the past, but is very hard to find now. While London Brown Ales are marketed using the name Brown Ale, we list those as a different judging style due to the significant difference in balance (especially sweetness) and alcohol strength; that doesn't mean that they aren't in the same family, though.", + "history": "Brown ale has a long history in Great Britain, although several different types of products used that name at various times. Modern brown ale is a 20th century creation as a bottled product; it is not the same as historical products of the same name. A wide range of gravities were brewed, but modern brown ales are generally of the stronger (by current UK standards) interpretation. This style is based on the modern stronger British brown ales, not historical versions or the sweeter London Brown Ale. Predominantly but not exclusively a bottled product currently.", + "style_comparison": null, + "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, brown-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.40000", + "color_minimum_unit": "SRM", + "color_minimum_value": "12.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "British mild ale or pale ale malt base with caramel malts. May also have small amounts darker malts (e.g., chocolate) to provide color and the nutty character. English hop varieties are most authentic.", + "examples": "Maxim Double Maxim, Newcastle Brown Ale, Riggwelter Yorkshire Ale, Samuel Smith's Nut Brown Ale, Wychwood Hobgoblin", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A malty, brown caramel-centric British ale without the roasted flavors of a Porter. Brown ale has a long history in Great Britain, although several different types of products used that name at various times. Modern brown ale is a 20th century creation as a bottled product; it is not the same as historical products of the same name. A wide range of gravities were brewed, but modern brown ales are generally of the stronger (by current UK standards) interpretation. This style is based on the modern stronger British brown ales, not historical versions or the sweeter London Brown Ale. Predominantly but not exclusively a bottled product currently.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Light, sweet malt aroma with toffee, nutty, or light chocolate notes, and a light to heavy caramel quality. A light but appealing floral or earthy hop aroma may also be noticed. A light fruity aroma may be evident, but should not dominate. Dark amber to dark reddish-brown color. Clear. Low to moderate off-white to light tan head.Gentle to moderate malt sweetness, with a light to heavy caramel character and a medium to dry finish. Malt may also have a nutty, toasted, biscuity, toffee, or light chocolate character. Medium to medium-low bitterness. Malt-hop balance ranges from even to malt-focused; hop flavor low to none (floral or earthy qualities). Low to moderate fruity esters can be present. Medium-light to medium body. Medium to medium-high carbonation. A wide-ranging category with different interpretations possible, ranging from lighter-colored to hoppy to deeper, darker, and caramel-focused; however, none of the versions have strongly roasted flavors. A stronger Double Brown Ale was more popular in the past, but is very hard to find now. While London Brown Ales are marketed using the name Brown Ale, we list those as a different judging style due to the significant difference in balance (especially sweetness) and alcohol strength; that doesn't mean that they aren't in the same family, though.", + "comparison": "More malty balance than British Bitters, with more malt flavors from darker grains. Stronger than a Dark Mild. Less roast than an English Porter. Stronger and much less sweet than London Brown Ale." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 147, + "fields": { + "name": "English Porter", + "category": "Brown British Beer", + "category_id": "13", + "style_id": "13C", + "category_description": null, + "overall_impression": "A moderate-strength brown beer with a restrained roasty character and bitterness. May have a range of roasted flavors, generally without burnt qualities, and often has a chocolate-caramel-malty profile.", + "aroma": "Moderate to moderately low bready, biscuity, and toasty malt aroma with mild roastiness, and may have a chocolate quality. May also show some non-roasted malt character in support (caramelly, nutty, toffee-like and/or sweet). May have up to a moderate level of floral or earthy hops. Fruity esters moderate to none. Diacetyl low to none.", + "appearance": "Light brown to dark brown in color, often with ruby highlights when held up to light. Good clarity, although may approach being opaque. Moderate off-white to light tan head with good to fair retention.", + "flavor": "Moderate bready, biscuity, and toasty malt flavor includes a mild to moderate roastiness (frequently with a chocolate character) and often a significant caramel, nutty, and/or toffee character. May have other secondary flavors such as coffee, licorice, biscuits or toast in support. Should not have a significant burnt or harsh roasted flavor, although small amounts may contribute a bitter chocolate complexity. Earthy or floral hop flavor moderate to none. Medium-low to medium hop bitterness will vary the balance from slightly malty to slightly bitter. Usually fairly well-attenuated, although can be somewhat sweet. Diacetyl moderately-low to none. Moderate to low fruity esters.", + "mouthfeel": "Medium-light to medium body. Moderately-low to moderately-high carbonation. Light to moderate creamy texture.", + "comments": "This style description describes the modern version of English porter, not every possible variation over time in every region where it existed. Historical re-creations should be entered in the Historical style category, with an appropriate description describing the profile of the beer. Modern craft examples in the UK are bigger and hoppier.", + "history": "Originating in London around 300 years ago, porter evolved from earlier sweet, Brown Beer popular at the time. Evolved many times with various technological and ingredient developments and consumer preferences driving these changes. Became a highly-popular, widely-exported style in the 1800s before declining around WWI and disappearing in the 1950s. It was re-introduced in the mid-1970s with the start of the craft beer era. The name is said to have been derived from its popularity with the London working class performing various load-carrying tasks of the day. Parent of various regional interpretations over time, and a predecessor to all stouts (which were originally called \"stout porters\"). There is no historic connection or relationship between Mild and Porter.", + "style_comparison": null, + "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, porter-family, malty, roasty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.40000", + "color_minimum_unit": "SRM", + "color_minimum_value": "20.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "30.00000", + "ingredients": "Grists vary, but something producing a dark color is always involved. Chocolate or other dark-roasted malts, caramel malt, brewing sugars, and the like are common. London-type porters often use brown malt as a characteristic flavor.", + "examples": "Burton Bridge Burton Porter, Fuller's London Porter, Nethergate Old Growler Porter, RCH Old Slug Porter, Samuel Smith Taddy Porter", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A moderate-strength brown beer with a restrained roasty character and bitterness. May have a range of roasted flavors, generally without burnt qualities, and often has a chocolate-caramel-malty profile. Originating in London around 300 years ago, porter evolved from earlier sweet, Brown Beer popular at the time. Evolved many times with various technological and ingredient developments and consumer preferences driving these changes. Became a highly-popular, widely-exported style in the 1800s before declining around WWI and disappearing in the 1950s. It was re-introduced in the mid-1970s with the start of the craft beer era. The name is said to have been derived from its popularity with the London working class performing various load-carrying tasks of the day. Parent of various regional interpretations over time, and a predecessor to all stouts (which were originally called \"stout porters\"). There is no historic connection or relationship between Mild and Porter.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate to moderately low bready, biscuity, and toasty malt aroma with mild roastiness, and may have a chocolate quality. May also show some non-roasted malt character in support (caramelly, nutty, toffee-like and/or sweet). May have up to a moderate level of floral or earthy hops. Fruity esters moderate to none. Diacetyl low to none. Light brown to dark brown in color, often with ruby highlights when held up to light. Good clarity, although may approach being opaque. Moderate off-white to light tan head with good to fair retention.Moderate bready, biscuity, and toasty malt flavor includes a mild to moderate roastiness (frequently with a chocolate character) and often a significant caramel, nutty, and/or toffee character. May have other secondary flavors such as coffee, licorice, biscuits or toast in support. Should not have a significant burnt or harsh roasted flavor, although small amounts may contribute a bitter chocolate complexity. Earthy or floral hop flavor moderate to none. Medium-low to medium hop bitterness will vary the balance from slightly malty to slightly bitter. Usually fairly well-attenuated, although can be somewhat sweet. Diacetyl moderately-low to none. Moderate to low fruity esters. Medium-light to medium body. Moderately-low to moderately-high carbonation. Light to moderate creamy texture. This style description describes the modern version of English porter, not every possible variation over time in every region where it existed. Historical re-creations should be entered in the Historical style category, with an appropriate description describing the profile of the beer. Modern craft examples in the UK are bigger and hoppier.", + "comparison": "Differs from an American Porter in that it usually has softer, sweeter and more caramelly flavors, lower gravities, and usually less alcohol; the American Porter will also typically have more of a hop character. More substance and roast than a British Brown Ale. Higher in gravity than a dark mild." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 148, + "fields": { + "name": "Scottish Light", + "category": "Scottish Ale", + "category_id": "14", + "style_id": "14A", + "category_description": null, + "overall_impression": "A malt-focused, generally caramelly beer with perhaps a few esters and occasionally a butterscotch aftertaste. Hops only to balance and support the malt. The malt character can range from dry and grainy to rich, toasty, and caramelly, but is never roasty and especially never has a peat smoke character. Traditionally the darkest of the Scottish ales, sometimes nearly black but lacking any burnt, overtly roasted character.", + "aroma": "Low to medium maltiness, often with flavors of toasted breadcrumbs, lady fingers, and English biscuits. Low to medium caramel and low butterscotch is allowable. Light pome fruitiness in best examples. May have low traditional English hop aroma (earthy, floral, orange-citrus, spicy, etc.). Peat smoke is inappropriate.", + "appearance": "Pale copper to very dark brown. Clear. Low to moderate, creamy off-white.", + "flavor": "Entirely malt-focused, with flavors ranging from pale, bready malt with caramel overtones to rich-toasty malt with roasted accents (but never roasty) or a combination thereof. Fruity esters are not required but add depth yet are never high. Hop bitterness to balance the malt. No to low hop flavor is also allowed and should of traditional English character (earthy, floral, orange-citrus, spicy, etc.). Finish ranges from rich and malty to dry and grainy. A subtle butterscotch character is acceptable; however, burnt sugars are not. The malt-hop balance tilts toward malt. Peat smoke is inappropriate.", + "mouthfeel": "Medium-low to medium body. Low to moderate carbonation. Can be relatively rich and creamy to dry and grainy.", + "comments": "Malt-focused ales that gain the vast majority of their character from specialty malts, never the process. Burning malt or wort sugars via ‘kettle caramelization' is not traditional nor is any blatantly ‘butterscotch' character. Most frequently a draught product. Smoke character is inappropriate as any found traditionally would have come from the peat in the source water. Scottish ales with smoke character should be entered as a Classic Style Smoked Beer.", + "history": null, + "style_comparison": null, + "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.03500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "10.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "20.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "2.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "17.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Originally used Scottish pale malt, grits or flaked maize, and brewers caramel for color. Later adapted to use additional ingredients, such as amber and brown malts, crystal and wheat malts, and roasted grains or dark sugars for color but not for the ‘roasty' flavor. Sugar adjuncts are traditional. Clean or slightly fruity yeast. Peat-smoked malt is inauthentic and inappropriate.", + "examples": "McEwan's 60", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A malt-focused, generally caramelly beer with perhaps a few esters and occasionally a butterscotch aftertaste. Hops only to balance and support the malt. The malt character can range from dry and grainy to rich, toasty, and caramelly, but is never roasty and especially never has a peat smoke character. Traditionally the darkest of the Scottish ales, sometimes nearly black but lacking any burnt, overtly roasted character.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to medium maltiness, often with flavors of toasted breadcrumbs, lady fingers, and English biscuits. Low to medium caramel and low butterscotch is allowable. Light pome fruitiness in best examples. May have low traditional English hop aroma (earthy, floral, orange-citrus, spicy, etc.). Peat smoke is inappropriate. Pale copper to very dark brown. Clear. Low to moderate, creamy off-white.Entirely malt-focused, with flavors ranging from pale, bready malt with caramel overtones to rich-toasty malt with roasted accents (but never roasty) or a combination thereof. Fruity esters are not required but add depth yet are never high. Hop bitterness to balance the malt. No to low hop flavor is also allowed and should of traditional English character (earthy, floral, orange-citrus, spicy, etc.). Finish ranges from rich and malty to dry and grainy. A subtle butterscotch character is acceptable; however, burnt sugars are not. The malt-hop balance tilts toward malt. Peat smoke is inappropriate. Medium-low to medium body. Low to moderate carbonation. Can be relatively rich and creamy to dry and grainy. Malt-focused ales that gain the vast majority of their character from specialty malts, never the process. Burning malt or wort sugars via ‘kettle caramelization' is not traditional nor is any blatantly ‘butterscotch' character. Most frequently a draught product. Smoke character is inappropriate as any found traditionally would have come from the peat in the source water. Scottish ales with smoke character should be entered as a Classic Style Smoked Beer.", + "comparison": "Similar character to a Wee Heavy, but much smaller. Similar in color to a Dark Mild, but a little weaker in strength." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 149, + "fields": { + "name": "Scottish Heavy", + "category": "Scottish Ale", + "category_id": "14", + "style_id": "14B", + "category_description": null, + "overall_impression": "A malt-focused, generally caramelly beer with perhaps a few esters and occasionally a butterscotch aftertaste. Hops only to balance and support the malt. The malt character can range from dry and grainy to rich, toasty, and caramelly, but is never roasty and especially never has a peat smoke character.", + "aroma": "Low to medium maltiness, often with flavors of toasted breadcrumbs, lady fingers, and English biscuits. Low to medium caramel and low butterscotch is allowable. Light pome fruitiness in best examples. May have low traditional English hop aroma (earthy, floral, orange-citrus, spicy, etc.). Peat smoke is inappropriate.", + "appearance": "Pale copper to very dark brown. Clear. Low to moderate, creamy off-white.", + "flavor": "Entirely malt-focused, with flavors ranging from pale, bready malt with caramel overtones to rich-toasty malt with roasted accents (but never roasty) or a combination thereof. Fruity esters are not required but add depth yet are never high. Hop bitterness to balance the malt. No to low hop flavor is also allowed and should of traditional English character (earthy, floral, orange-citrus, spicy, etc.). Finish ranges from rich and malty to dry and grainy. A subtle butterscotch character is acceptable; however, burnt sugars are not. The malt-hop balance tilts toward malt. Peat smoke is inappropriate.", + "mouthfeel": "Medium-low to medium body. Low to moderate carbonation. Can be relatively rich and creamy to dry and grainy.", + "comments": "Malt-focused ales that gain the vast majority of their character from specialty malts, never the process. Burning malt or wort sugars via ‘kettle caramelization' is not traditional nor is any blatantly ‘butterscotch' character. Most frequently a draught product. Smoke character is inappropriate as any found traditionally would have come from the peat in the source water. Scottish ales with smoke character should be entered as a Classic Style Smoked Beer.", + "history": null, + "style_comparison": null, + "tags": "session-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "10.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "20.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.90000", + "color_minimum_unit": "SRM", + "color_minimum_value": "13.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Originally used Scottish pale malt, grits or flaked maize, and brewers caramel for color. Later adapted to use additional ingredients, such as amber and brown malts, crystal and wheat malts, and roasted grains or dark sugars for color but not for the ‘roasty' flavor. Sugar adjuncts are traditional. Clean or slightly fruity yeast. Peat-smoked malt is inauthentic and inappropriate.", + "examples": "Broughton Greenmantle Ale, Caledonia Smooth, McEwan's 70, Orkney Raven Ale, Tennent's Special Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A malt-focused, generally caramelly beer with perhaps a few esters and occasionally a butterscotch aftertaste. Hops only to balance and support the malt. The malt character can range from dry and grainy to rich, toasty, and caramelly, but is never roasty and especially never has a peat smoke character.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to medium maltiness, often with flavors of toasted breadcrumbs, lady fingers, and English biscuits. Low to medium caramel and low butterscotch is allowable. Light pome fruitiness in best examples. May have low traditional English hop aroma (earthy, floral, orange-citrus, spicy, etc.). Peat smoke is inappropriate. Pale copper to very dark brown. Clear. Low to moderate, creamy off-white.Entirely malt-focused, with flavors ranging from pale, bready malt with caramel overtones to rich-toasty malt with roasted accents (but never roasty) or a combination thereof. Fruity esters are not required but add depth yet are never high. Hop bitterness to balance the malt. No to low hop flavor is also allowed and should of traditional English character (earthy, floral, orange-citrus, spicy, etc.). Finish ranges from rich and malty to dry and grainy. A subtle butterscotch character is acceptable; however, burnt sugars are not. The malt-hop balance tilts toward malt. Peat smoke is inappropriate. Medium-low to medium body. Low to moderate carbonation. Can be relatively rich and creamy to dry and grainy. Malt-focused ales that gain the vast majority of their character from specialty malts, never the process. Burning malt or wort sugars via ‘kettle caramelization' is not traditional nor is any blatantly ‘butterscotch' character. Most frequently a draught product. Smoke character is inappropriate as any found traditionally would have come from the peat in the source water. Scottish ales with smoke character should be entered as a Classic Style Smoked Beer.", + "comparison": "Similar character to a Wee Heavy, but much smaller." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 150, + "fields": { + "name": "Scottish Export", + "category": "Scottish Ale", + "category_id": "14", + "style_id": "14C", + "category_description": null, + "overall_impression": "A malt-focused, generally caramelly beer with perhaps a few esters and occasionally a butterscotch aftertaste. Hops only to balance and support the malt. The malt character can range from dry and grainy to rich, toasty, and caramelly, but is never roasty and especially never has a peat smoke character.", + "aroma": "Low to medium maltiness, often with flavors of toasted breadcrumbs, lady fingers, and English biscuits. Low to medium caramel and low butterscotch is allowable. Light pome fruitiness in best examples. May have low traditional English hop aroma (earthy, floral, orange-citrus, spicy, etc.). Peat smoke is inappropriate.", + "appearance": "Pale copper to very dark brown. Clear. Low to moderate, creamy off-white.", + "flavor": "Entirely malt-focused, with flavors ranging from pale, bready malt with caramel overtones to rich-toasty malt with roasted accents (but never roasty) or a combination thereof. Fruity esters are not required but add depth yet are never high. Hop bitterness to balance the malt. No to low hop flavor is also allowed and should of traditional English character (earthy, floral, orange-citrus, spicy, etc.). Finish ranges from rich and malty to dry and grainy. A subtle butterscotch character is acceptable; however, burnt sugars are not. The malt-hop balance tilts toward malt. Peat smoke is inappropriate.", + "mouthfeel": "Medium-low to medium body. Low to moderate carbonation. Can be relatively rich and creamy to dry and grainy.", + "comments": "Malt-focused ales that gain the vast majority of their character from specialty malts, never the process. Burning malt or wort sugars via ‘kettle caramelization' is not traditional nor is any blatantly ‘butterscotch' character. Most frequently a draught product. Smoke character is inappropriate as any found traditionally would have come from the peat in the source water. Scottish ales with smoke character should be entered as a Classic Style Smoked Beer.", + "history": null, + "style_comparison": null, + "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.90000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "13.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Originally used Scottish pale malt, grits or flaked maize, and brewers caramel for color. Later adapted to use additional ingredients, such as amber and brown malts, crystal and wheat malts, and roasted grains or dark sugars for color but not for the ‘roasty' flavor. Sugar adjuncts are traditional. Clean or slightly fruity yeast. Peat-smoked malt is inauthentic and inappropriate.", + "examples": "Belhaven Scottish Ale, Broughton Exciseman's Ale, Orkney Dark Island, Pelican MacPelican's Scottish Style Ale, Weasel Boy Plaid Ferret Scottish Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A malt-focused, generally caramelly beer with perhaps a few esters and occasionally a butterscotch aftertaste. Hops only to balance and support the malt. The malt character can range from dry and grainy to rich, toasty, and caramelly, but is never roasty and especially never has a peat smoke character.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to medium maltiness, often with flavors of toasted breadcrumbs, lady fingers, and English biscuits. Low to medium caramel and low butterscotch is allowable. Light pome fruitiness in best examples. May have low traditional English hop aroma (earthy, floral, orange-citrus, spicy, etc.). Peat smoke is inappropriate. Pale copper to very dark brown. Clear. Low to moderate, creamy off-white.Entirely malt-focused, with flavors ranging from pale, bready malt with caramel overtones to rich-toasty malt with roasted accents (but never roasty) or a combination thereof. Fruity esters are not required but add depth yet are never high. Hop bitterness to balance the malt. No to low hop flavor is also allowed and should of traditional English character (earthy, floral, orange-citrus, spicy, etc.). Finish ranges from rich and malty to dry and grainy. A subtle butterscotch character is acceptable; however, burnt sugars are not. The malt-hop balance tilts toward malt. Peat smoke is inappropriate. Medium-low to medium body. Low to moderate carbonation. Can be relatively rich and creamy to dry and grainy. Malt-focused ales that gain the vast majority of their character from specialty malts, never the process. Burning malt or wort sugars via ‘kettle caramelization' is not traditional nor is any blatantly ‘butterscotch' character. Most frequently a draught product. Smoke character is inappropriate as any found traditionally would have come from the peat in the source water. Scottish ales with smoke character should be entered as a Classic Style Smoked Beer.", + "comparison": "Similar character to a Wee Heavy, but much smaller." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 151, + "fields": { + "name": "Irish Red Ale", + "category": "Irish Beer", + "category_id": "15", + "style_id": "15A", + "category_description": null, + "overall_impression": "An easy-drinking pint, often with subtle flavors. Slightly malty in the balance sometimes with an initial soft toffee/caramel sweetness, a slightly grainy-biscuity palate, and a touch of roasted dryness in the finish. Some versions can emphasize the caramel and sweetness more, while others will favor the grainy palate and roasted dryness.", + "aroma": "Low to moderate malt aroma, either neutral-grainy or with a lightly caramelly-toasty-toffee character. May have a very light buttery character (although this is not required). Hop aroma is low earthy or floral to none (usually not present). Quite clean.", + "appearance": "Medium amber to medium reddish-copper color. Clear. Low off-white to tan colored head, average persistence.", + "flavor": "Moderate to very little caramel malt flavor and sweetness, rarely with a light buttered toast or toffee-like quality. The palate often is fairly neutral and grainy, or can take on a lightly toasty or biscuity note as it finishes with a light taste of roasted grain, which lends a characteristic dryness to the finish. A light earthy or floral hop flavor is optional. Medium to medium-low hop bitterness. Medium-dry to dry finish. Clean and smooth. Little to no esters. The balance tends to be slightly towards the malt, although light use of roasted grains may increase the perception of bitterness slightly.", + "mouthfeel": "Medium-light to medium body, although examples containing low levels of diacetyl may have a slightly slick mouthfeel (not required). Moderate carbonation. Smooth. Moderately attenuated.", + "comments": "Several variations exist within the style, which causes the guidelines to be somewhat broad to accommodate them. Traditional Irish examples are relatively low in hops, are grainy with a slight roast dryness in the finish, fairly neutral in general. Modern export Irish examples are more caramelly and sweet, and might have more esters. American craft versions are often more alcoholic versions of the Irish export examples. An emerging Irish craft beer scene is exploring more bitter versions of traditional examples. Finally, there are some commercial examples that sound Irish but are essentially International Amber Lagers, with sweetish palates and little bitterness. These guidelines are written around the traditional Irish examples, with slight extensions for export Irish versions and modern craft Irish versions.", + "history": "While Ireland has a long ale brewing heritage, the modern Irish Red Ale style is essentially an adaptation or interpretation of the popular English Bitter style with less hopping and a bit of roast to add color and dryness. Rediscovered as a craft beer style in Ireland, today it is an essential part of most brewery lineups, along with a pale ale and a stout.", + "style_comparison": null, + "tags": "standard-strength, amber-color, top-fermented, british-isles, traditional-style, amber-ale-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04600", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "28.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "9.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Generally has a bit of roasted barley or black malt to provide reddish color and dry roasted finish. Pale base malt. Caramel malts were historically imported and more expensive, so not all brewers would use them.", + "examples": "Caffrey's Irish Ale, Franciscan Well Rebel Red, Kilkenny Irish Beer, O'Hara's Irish Red Ale, Porterhouse Red Ale, Samuel Adams Irish Red, Smithwick's Irish Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "An easy-drinking pint, often with subtle flavors. Slightly malty in the balance sometimes with an initial soft toffee/caramel sweetness, a slightly grainy-biscuity palate, and a touch of roasted dryness in the finish. Some versions can emphasize the caramel and sweetness more, while others will favor the grainy palate and roasted dryness. While Ireland has a long ale brewing heritage, the modern Irish Red Ale style is essentially an adaptation or interpretation of the popular English Bitter style with less hopping and a bit of roast to add color and dryness. Rediscovered as a craft beer style in Ireland, today it is an essential part of most brewery lineups, along with a pale ale and a stout.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to moderate malt aroma, either neutral-grainy or with a lightly caramelly-toasty-toffee character. May have a very light buttery character (although this is not required). Hop aroma is low earthy or floral to none (usually not present). Quite clean. Medium amber to medium reddish-copper color. Clear. Low off-white to tan colored head, average persistence.Moderate to very little caramel malt flavor and sweetness, rarely with a light buttered toast or toffee-like quality. The palate often is fairly neutral and grainy, or can take on a lightly toasty or biscuity note as it finishes with a light taste of roasted grain, which lends a characteristic dryness to the finish. A light earthy or floral hop flavor is optional. Medium to medium-low hop bitterness. Medium-dry to dry finish. Clean and smooth. Little to no esters. The balance tends to be slightly towards the malt, although light use of roasted grains may increase the perception of bitterness slightly. Medium-light to medium body, although examples containing low levels of diacetyl may have a slightly slick mouthfeel (not required). Moderate carbonation. Smooth. Moderately attenuated. Several variations exist within the style, which causes the guidelines to be somewhat broad to accommodate them. Traditional Irish examples are relatively low in hops, are grainy with a slight roast dryness in the finish, fairly neutral in general. Modern export Irish examples are more caramelly and sweet, and might have more esters. American craft versions are often more alcoholic versions of the Irish export examples. An emerging Irish craft beer scene is exploring more bitter versions of traditional examples. Finally, there are some commercial examples that sound Irish but are essentially International Amber Lagers, with sweetish palates and little bitterness. These guidelines are written around the traditional Irish examples, with slight extensions for export Irish versions and modern craft Irish versions.", + "comparison": "A less-bitter and hoppy Irish equivalent to an English Bitter, with a dryish finish due to roasted barley. More attenuated with less caramel flavor and body than equivalent-strength Scottish ales." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 152, + "fields": { + "name": "Irish Stout", + "category": "Irish Beer", + "category_id": "15", + "style_id": "15B", + "category_description": null, + "overall_impression": "A black beer with a pronounced roasted flavor, often similar to coffee. The balance can range from fairly even to quite bitter, with the more balanced versions having a little malty sweetness and the bitter versions being quite dry. Draught versions typically are creamy from a nitro pour, but bottled versions will not have this dispense-derived character. The roasted flavor can be dry and coffee-like to somewhat chocolaty.", + "aroma": "Moderate coffee-like aroma typically dominates; may have slight dark chocolate, cocoa and/or roasted grain secondary notes. Esters medium-low to none. Hop aroma low to none, may be lightly earthy or floral, but is typically absent.", + "appearance": "Jet black to very deep brown with garnet highlights in color. According to Guinness, \"Guinness beer may appear black, but it is actually a very dark shade of ruby.\" Opaque. A thick, creamy, long-lasting, tan- to brown-colored head is characteristic when served on nitro, but don't expect the tight, creamy head on a bottled beer.", + "flavor": "Moderate roasted grain or malt flavor with a medium to high hop bitterness. The finish can be dry and coffee-like to moderately balanced with a touch of caramel or malty sweetness. Typically has coffee-like flavors, but also may have a bittersweet or unsweetened chocolate character in the palate, lasting into the finish. Balancing factors may include some creaminess, medium-low to no fruitiness, and medium to no hop flavor (often earthy). The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers.", + "mouthfeel": "Medium-light to medium-full body, with a somewhat creamy character (particularly when served with a nitro pour). Low to moderate carbonation. For the high hop bitterness and significant proportion of dark grains present, this beer is remarkably smooth. May have a light astringency from the roasted grains, although harshness is undesirable.", + "comments": "When a brewery offered a stout and a porter, the stout was always the stronger beer (it was originally called a \"Stout Porter\"). Modern versions are brewed from a lower OG and no longer necessarily reflect a higher strength than porters. This is typically a draught product today; bottled versions are typically brewed from a higher OG and are usually called Extra Stouts. Regional differences exist in Ireland, similar to variability in English Bitters. Dublin-type stouts use roasted barley, are more bitter, and are drier. Cork-type stouts are sweeter, less bitter, and have flavors from chocolate and specialty malts. Commercial examples of this style are almost always associated with a nitro pour. Do not expect traditional bottle-conditioned beers to have the full, creamy texture or very long-lasting head traditionally associated with nitrogen dispense.", + "history": "The style evolved from attempts to capitalize on the success of London porters, but originally reflected a fuller, creamier, more \"stout\" body and strength. Guinness began brewing only porter in 1799, and a \"stouter kind of porter\" around 1810. Irish stout diverged from London single stout (or simply porter) in the late 1800s, with an emphasis on darker malts. Guinness was among the first breweries to use black patent malt for porters and stouts in the 1820s. Guinness began using roasted barley after WWII, while London brewers continued to use brown malt. Guinness started using flaked barley in the 1950s, also increasing attenuation greatly. Guinness Draught was launched as a brand in 1959. Draught cans and bottles were developed in the late 1980s and 1990s.", + "style_comparison": null, + "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, bitter, roasty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "45.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00700", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01100", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "4.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "25.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Guinness is made using roasted barley, flaked barley, and pale malt, but other breweries don't necessarily use roasted barley; they can use chocolate or other dark and specialty malts. Whatever combination of malts or grains is used, the resulting product should be black. Cork-type stouts are perhaps closer to historical London-type stouts in composition with a varied grist not dominated by roasted barley.", + "examples": "Beamish Irish Stout, Guinness Draught, Harpoon Boston Irish Stout, Murphy's Irish Stout, O'Hara's Irish Stout, Porterhouse Wrasslers 4X", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A black beer with a pronounced roasted flavor, often similar to coffee. The balance can range from fairly even to quite bitter, with the more balanced versions having a little malty sweetness and the bitter versions being quite dry. Draught versions typically are creamy from a nitro pour, but bottled versions will not have this dispense-derived character. The roasted flavor can be dry and coffee-like to somewhat chocolaty. The style evolved from attempts to capitalize on the success of London porters, but originally reflected a fuller, creamier, more \"stout\" body and strength. Guinness began brewing only porter in 1799, and a \"stouter kind of porter\" around 1810. Irish stout diverged from London single stout (or simply porter) in the late 1800s, with an emphasis on darker malts. Guinness was among the first breweries to use black patent malt for porters and stouts in the 1820s. Guinness began using roasted barley after WWII, while London brewers continued to use brown malt. Guinness started using flaked barley in the 1950s, also increasing attenuation greatly. Guinness Draught was launched as a brand in 1959. Draught cans and bottles were developed in the late 1980s and 1990s.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate coffee-like aroma typically dominates; may have slight dark chocolate, cocoa and/or roasted grain secondary notes. Esters medium-low to none. Hop aroma low to none, may be lightly earthy or floral, but is typically absent. Jet black to very deep brown with garnet highlights in color. According to Guinness, \"Guinness beer may appear black, but it is actually a very dark shade of ruby.\" Opaque. A thick, creamy, long-lasting, tan- to brown-colored head is characteristic when served on nitro, but don't expect the tight, creamy head on a bottled beer.Moderate roasted grain or malt flavor with a medium to high hop bitterness. The finish can be dry and coffee-like to moderately balanced with a touch of caramel or malty sweetness. Typically has coffee-like flavors, but also may have a bittersweet or unsweetened chocolate character in the palate, lasting into the finish. Balancing factors may include some creaminess, medium-low to no fruitiness, and medium to no hop flavor (often earthy). The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers. Medium-light to medium-full body, with a somewhat creamy character (particularly when served with a nitro pour). Low to moderate carbonation. For the high hop bitterness and significant proportion of dark grains present, this beer is remarkably smooth. May have a light astringency from the roasted grains, although harshness is undesirable. When a brewery offered a stout and a porter, the stout was always the stronger beer (it was originally called a \"Stout Porter\"). Modern versions are brewed from a lower OG and no longer necessarily reflect a higher strength than porters. This is typically a draught product today; bottled versions are typically brewed from a higher OG and are usually called Extra Stouts. Regional differences exist in Ireland, similar to variability in English Bitters. Dublin-type stouts use roasted barley, are more bitter, and are drier. Cork-type stouts are sweeter, less bitter, and have flavors from chocolate and specialty malts. Commercial examples of this style are almost always associated with a nitro pour. Do not expect traditional bottle-conditioned beers to have the full, creamy texture or very long-lasting head traditionally associated with nitrogen dispense.", + "comparison": "Lower strength than an Irish Extra Stout, but with similar flavors. Darker in color (black) than an English porter (brown)." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 153, + "fields": { + "name": "Irish Extra Stout", + "category": "Irish Beer", + "category_id": "15", + "style_id": "15C", + "category_description": null, + "overall_impression": "A fuller-bodied black beer with a pronounced roasted flavor, often similar to coffee and dark chocolate with some malty complexity. The balance can range from moderately bittersweet to bitter, with the more balanced versions having up to moderate malty richness and the bitter versions being quite dry.", + "aroma": "Moderate to moderately high coffee-like aroma, often with slight dark chocolate, cocoa, biscuit, vanilla and/or roasted grain secondary notes. Esters medium-low to none. Hop aroma low to none, may be lightly earthy or spicy, but is typically absent. Malt and roast dominate the aroma.", + "appearance": "Jet black. Opaque. A thick, creamy, tan head is characteristic.", + "flavor": "Moderate to moderately high dark-roasted grain or malt flavor with a medium to medium-high hop bitterness. The finish can be dry and coffee-like to moderately balanced with up to moderate caramel or malty sweetness. Typically has roasted coffee-like flavors, but also often has a dark chocolate character in the palate, lasting into the finish. Background mocha, biscuit, or vanilla flavors are often present and add complexity. Medium-low to no fruitiness. Medium to no hop flavor (often earthy or spicy). The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers.", + "mouthfeel": "Medium-full to full body, with a somewhat creamy character. Moderate carbonation. Very smooth. May have a light astringency from the roasted grains, although harshness is undesirable. A slightly warming character may be detected.", + "comments": "Traditionally a bottled product. Consumers expect a stout to always have a black color; the flavor intensity from whatever made it black is what consumers expect in their beer. Not all breweries make a dry, roasty version typical of Guinness; a more balanced and chocolaty version is equally acceptable.", + "history": "Same roots as Irish stout, but as a stronger product. Guinness Extra Stout (Extra Superior Porter, later Double Stout) was first brewed in 1821, and was primarily a bottled product. Described by Guinness as a \"more full-bodied beer with a deeper characteristic roasted bitterness and a rich, mature texture. Of all the types of Guinness available today, this is the closest to the porter originally brewed by Arthur Guinness.\" Note that in modern times, Guinness Extra Stout has different strengths in different regions; the European version is around 4.2% and fits in the Irish Stout style.", + "style_comparison": null, + "tags": "high-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, bitter, roasty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "35.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "50.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "25.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Similar to Irish Stout.", + "examples": "Guinness Extra Stout (US version), O'Hara's Leann Folláin, Sheaf Stout", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A fuller-bodied black beer with a pronounced roasted flavor, often similar to coffee and dark chocolate with some malty complexity. The balance can range from moderately bittersweet to bitter, with the more balanced versions having up to moderate malty richness and the bitter versions being quite dry. Same roots as Irish stout, but as a stronger product. Guinness Extra Stout (Extra Superior Porter, later Double Stout) was first brewed in 1821, and was primarily a bottled product. Described by Guinness as a \"more full-bodied beer with a deeper characteristic roasted bitterness and a rich, mature texture. Of all the types of Guinness available today, this is the closest to the porter originally brewed by Arthur Guinness.\" Note that in modern times, Guinness Extra Stout has different strengths in different regions; the European version is around 4.2% and fits in the Irish Stout style.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate to moderately high coffee-like aroma, often with slight dark chocolate, cocoa, biscuit, vanilla and/or roasted grain secondary notes. Esters medium-low to none. Hop aroma low to none, may be lightly earthy or spicy, but is typically absent. Malt and roast dominate the aroma. Jet black. Opaque. A thick, creamy, tan head is characteristic.Moderate to moderately high dark-roasted grain or malt flavor with a medium to medium-high hop bitterness. The finish can be dry and coffee-like to moderately balanced with up to moderate caramel or malty sweetness. Typically has roasted coffee-like flavors, but also often has a dark chocolate character in the palate, lasting into the finish. Background mocha, biscuit, or vanilla flavors are often present and add complexity. Medium-low to no fruitiness. Medium to no hop flavor (often earthy or spicy). The level of bitterness is somewhat variable, as is the roasted character and the dryness of the finish; allow for interpretation by brewers. Medium-full to full body, with a somewhat creamy character. Moderate carbonation. Very smooth. May have a light astringency from the roasted grains, although harshness is undesirable. A slightly warming character may be detected. Traditionally a bottled product. Consumers expect a stout to always have a black color; the flavor intensity from whatever made it black is what consumers expect in their beer. Not all breweries make a dry, roasty version typical of Guinness; a more balanced and chocolaty version is equally acceptable.", + "comparison": "Midway between an Irish Stout and a Foreign Extra Stout in strength and flavor intensity, although with a similar balance. More body, richness, and often malt complexity than an Irish Stout. Black in color, not brown like a porter." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 154, + "fields": { + "name": "Sweet Stout", + "category": "Dark British Beer", + "category_id": "16", + "style_id": "16A", + "category_description": null, + "overall_impression": "A very dark, sweet, full-bodied, slightly roasty ale that can suggest coffee-and-cream, or sweetened espresso.", + "aroma": "Mild roasted grain aroma, sometimes with coffee and/or chocolate notes. An impression of cream-like sweetness often exists. Fruitiness can be low to moderately high. Diacetyl low to none. Hop aroma low to none, with floral or earthy notes.", + "appearance": "Very dark brown to black in color. Can be opaque (if not, it should be clear). Creamy tan to brown head.", + "flavor": "Dark roasted grain/malt impression with coffee and/or chocolate flavors dominate the palate. Hop bitterness is moderate. Medium to high sweetness provides a counterpoint to the roasted character and hop bitterness, and lasts into the finish. Low to moderate fruity esters. Diacetyl low to none. The balance between dark grains/malts and sweetness can vary, from quite sweet to moderately dry and somewhat roasty.", + "mouthfeel": "Medium-full to full-bodied and creamy. Low to moderate carbonation. High residual sweetness from unfermented sugars enhances the full-tasting mouthfeel.", + "comments": "Gravities are low in England, higher in exported and US products. Variations exist, with the level of residual sweetness, the intensity of the roast character, and the balance between the two being the variables most subject to interpretation. Some versions in England are very sweet (low attenuation) and also low in ABV (Tennent's Sweetheart Stout is 2%), but is an outlier compared to the other examples. These guidelines mostly describe the higher gravity, more balanced, export versions rather than the low alcohol, very sweet versions that many find quite difficult to drink.", + "history": "An English style of stout developed in the early 1900s. Historically known as \"Milk\" or \"Cream\" stouts, legally this designation is no longer permitted in England (but is acceptable elsewhere). The \"milk\" name is derived from the use of lactose, or milk sugar, as a sweetener. Originally marketed as a tonic for invalids and nursing mothers.", + "style_comparison": null, + "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, malty, roasty, sweet", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01200", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "30.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "The sweetness in most Sweet Stouts comes from a lower bitterness level than most other stouts and a high percentage of unfermentable dextrins. Lactose, an unfermentable sugar, is frequently added to provide additional residual sweetness. Base of pale malt, and may use roasted barley, black malt, chocolate malt, crystal malt, and adjuncts such as maize or brewing sugars.", + "examples": "Bristol Beer Factory Milk Stout, Left Hand Milk Stout, Lancaster Milk Stout, Mackeson's XXX Stout, Marston's Oyster Stout, Samuel Adams Cream Stout", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A very dark, sweet, full-bodied, slightly roasty ale that can suggest coffee-and-cream, or sweetened espresso. An English style of stout developed in the early 1900s. Historically known as \"Milk\" or \"Cream\" stouts, legally this designation is no longer permitted in England (but is acceptable elsewhere). The \"milk\" name is derived from the use of lactose, or milk sugar, as a sweetener. Originally marketed as a tonic for invalids and nursing mothers.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Mild roasted grain aroma, sometimes with coffee and/or chocolate notes. An impression of cream-like sweetness often exists. Fruitiness can be low to moderately high. Diacetyl low to none. Hop aroma low to none, with floral or earthy notes. Very dark brown to black in color. Can be opaque (if not, it should be clear). Creamy tan to brown head.Dark roasted grain/malt impression with coffee and/or chocolate flavors dominate the palate. Hop bitterness is moderate. Medium to high sweetness provides a counterpoint to the roasted character and hop bitterness, and lasts into the finish. Low to moderate fruity esters. Diacetyl low to none. The balance between dark grains/malts and sweetness can vary, from quite sweet to moderately dry and somewhat roasty. Medium-full to full-bodied and creamy. Low to moderate carbonation. High residual sweetness from unfermented sugars enhances the full-tasting mouthfeel. Gravities are low in England, higher in exported and US products. Variations exist, with the level of residual sweetness, the intensity of the roast character, and the balance between the two being the variables most subject to interpretation. Some versions in England are very sweet (low attenuation) and also low in ABV (Tennent's Sweetheart Stout is 2%), but is an outlier compared to the other examples. These guidelines mostly describe the higher gravity, more balanced, export versions rather than the low alcohol, very sweet versions that many find quite difficult to drink.", + "comparison": "Much sweeter and less bitter than other stouts (except the stronger tropical stout). The roast character is mild, not burnt like other stouts. Somewhat similar in balance to oatmeal stouts, albeit with more sweetness." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 155, + "fields": { + "name": "Oatmeal Stout", + "category": "Dark British Beer", + "category_id": "16", + "style_id": "16B", + "category_description": null, + "overall_impression": "A very dark, full-bodied, roasty, malty ale with a complementary oatmeal flavor. The sweetness, balance, and oatmeal impression can vary considerably.", + "aroma": "Mild roasted grain aromas, generally with a coffee-like character. A light malty sweetness can suggest a coffee-and-cream impression. Fruitiness should be low to medium-high. Diacetyl medium-low to none. Hop aroma medium-low to none, earthy or floral. A light grainy-nutty oatmeal aroma is optional.", + "appearance": "Medium brown to black in color. Thick, creamy, persistent tan- to brown-colored head. Can be opaque (if not, it should be clear).", + "flavor": "Similar to the aroma, with a mild roasted coffee to coffee-and-cream flavor, and low to moderately-high fruitiness. Oats and dark roasted grains provide some flavor complexity; the oats can add a nutty, grainy or earthy flavor. Dark grains can combine with malt sweetness to give the impression of milk chocolate or coffee with cream. Medium hop bitterness with the balance toward malt. Medium-sweet to medium-dry finish. Diacetyl medium-low to none. Hop flavor medium-low to none, typically earthy or floral.", + "mouthfeel": "Medium-full to full body, with a smooth, silky, velvety, sometimes an almost oily slickness from the oatmeal. Creamy. Medium to medium-high carbonation.", + "comments": "Generally between Sweet and Irish Stouts in sweetness. Variations exist, from fairly sweet to quite dry, as well as English and American versions (American versions tend to be more hoppy, less sweet, and less fruity). The level of bitterness also varies, as does the oatmeal impression. Light use of oatmeal may give a certain silkiness of body and richness of flavor, while heavy use of oatmeal can be fairly intense in flavor with an almost oily mouthfeel, dryish finish, and slight grainy astringency. When judging, allow for differences in interpretation.", + "history": "A variant of nourishing or invalid stouts of the late 1800s using oatmeal in the grist, similar to the development of sweet stout that used lactose. An original Scottish version used a significant amount of oat malt. Later went through a shady phase where some English brewers would throw a handful of oats into their parti-gyled stouts in order to legally produce a ‘healthy' Oatmeal Stout for marketing purposes. Most popular in England between the World Wars, was revived in the craft beer era for export, which helped lead to its adoption as a popular modern American craft beer style that uses a noticeable (not symbolic) quantity of oats.", + "style_comparison": null, + "tags": "standard-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, balanced, roasty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.90000", + "color_minimum_unit": "SRM", + "color_minimum_value": "22.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Pale, caramel and dark roasted malts (often chocolate) and grains. Oatmeal or malted oats (5-20% or more) used to enhance fullness of body and complexity of flavor. Hops primarily for bittering. Can use brewing sugars or syrups. English ale yeast.", + "examples": "Anderson Valley Barney Flats Oatmeal Stout, Broughton Scottish Oatmeal Stout, Figueroa Mountain Stagecoach Stout, St-Ambroise Oatmeal Stout, Samuel Smith Oatmeal Stout, Young's Oatmeal Stout", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A very dark, full-bodied, roasty, malty ale with a complementary oatmeal flavor. The sweetness, balance, and oatmeal impression can vary considerably. A variant of nourishing or invalid stouts of the late 1800s using oatmeal in the grist, similar to the development of sweet stout that used lactose. An original Scottish version used a significant amount of oat malt. Later went through a shady phase where some English brewers would throw a handful of oats into their parti-gyled stouts in order to legally produce a ‘healthy' Oatmeal Stout for marketing purposes. Most popular in England between the World Wars, was revived in the craft beer era for export, which helped lead to its adoption as a popular modern American craft beer style that uses a noticeable (not symbolic) quantity of oats.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Mild roasted grain aromas, generally with a coffee-like character. A light malty sweetness can suggest a coffee-and-cream impression. Fruitiness should be low to medium-high. Diacetyl medium-low to none. Hop aroma medium-low to none, earthy or floral. A light grainy-nutty oatmeal aroma is optional. Medium brown to black in color. Thick, creamy, persistent tan- to brown-colored head. Can be opaque (if not, it should be clear).Similar to the aroma, with a mild roasted coffee to coffee-and-cream flavor, and low to moderately-high fruitiness. Oats and dark roasted grains provide some flavor complexity; the oats can add a nutty, grainy or earthy flavor. Dark grains can combine with malt sweetness to give the impression of milk chocolate or coffee with cream. Medium hop bitterness with the balance toward malt. Medium-sweet to medium-dry finish. Diacetyl medium-low to none. Hop flavor medium-low to none, typically earthy or floral. Medium-full to full body, with a smooth, silky, velvety, sometimes an almost oily slickness from the oatmeal. Creamy. Medium to medium-high carbonation. Generally between Sweet and Irish Stouts in sweetness. Variations exist, from fairly sweet to quite dry, as well as English and American versions (American versions tend to be more hoppy, less sweet, and less fruity). The level of bitterness also varies, as does the oatmeal impression. Light use of oatmeal may give a certain silkiness of body and richness of flavor, while heavy use of oatmeal can be fairly intense in flavor with an almost oily mouthfeel, dryish finish, and slight grainy astringency. When judging, allow for differences in interpretation.", + "comparison": "Most are like a cross between an Irish Extra Stout and a Sweet Stout with oatmeal added. Several variations exist, with the sweeter versions more like a Sweet Stout with oatmeal instead of lactose, and the drier versions more like a more nutty, flavorful Irish Extra Stout. Both tend to emphasize the body and mouthfeel." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 156, + "fields": { + "name": "Tropical Stout", + "category": "Dark British Beer", + "category_id": "16", + "style_id": "16C", + "category_description": null, + "overall_impression": "A very dark, sweet, fruity, moderately strong ale with smooth roasty flavors without a burnt harshness.", + "aroma": "Sweetness evident, moderate to high intensity. Roasted grain aromas moderate to high, and can have coffee or chocolate notes. Fruitiness medium to high. May have a molasses, licorice, dried fruit, and/or vinous aromatics. Stronger versions can have a subtle clean aroma of alcohol. Hop aroma low to none. Diacetyl low to none.", + "appearance": "Very deep brown to black in color. Clarity usually obscured by deep color (if not opaque, should be clear). Large tan to brown head with good retention.", + "flavor": "Quite sweet with a smooth dark grain flavors, and restrained bitterness. Roasted grain and malt character can be moderate to high with a smooth coffee or chocolate flavor, although the roast character is moderated in the balance by the sweet finish. Moderate to high fruity esters. Can have a sweet, dark rum-like quality. Little to no hop flavor. Medium-low to no diacetyl.", + "mouthfeel": "Medium-full to full body, often with a smooth, creamy character. May give a warming (but never hot) impression from alcohol presence. Moderate to moderately-high carbonation.", + "comments": "Sweetness levels can vary significantly. Surprisingly refreshing in a hot climate.", + "history": "Originally high-gravity stouts brewed for tropical markets, became popular and imitated by local brewers often using local sugars and ingredients.", + "style_comparison": null, + "tags": "high-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, malty, roasty, sweet", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "50.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "30.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Similar to a sweet stout, but with more gravity. Pale and dark roasted malts and grains. Hops mostly for bitterness. May use adjuncts and sugar to boost gravity. Typically made with warm-fermented lager yeast.", + "examples": "ABC Extra Stout, Dragon Stout, Jamaica Stout, Lion Stout, Royal Extra Stout", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A very dark, sweet, fruity, moderately strong ale with smooth roasty flavors without a burnt harshness. Originally high-gravity stouts brewed for tropical markets, became popular and imitated by local brewers often using local sugars and ingredients.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Sweetness evident, moderate to high intensity. Roasted grain aromas moderate to high, and can have coffee or chocolate notes. Fruitiness medium to high. May have a molasses, licorice, dried fruit, and/or vinous aromatics. Stronger versions can have a subtle clean aroma of alcohol. Hop aroma low to none. Diacetyl low to none. Very deep brown to black in color. Clarity usually obscured by deep color (if not opaque, should be clear). Large tan to brown head with good retention.Quite sweet with a smooth dark grain flavors, and restrained bitterness. Roasted grain and malt character can be moderate to high with a smooth coffee or chocolate flavor, although the roast character is moderated in the balance by the sweet finish. Moderate to high fruity esters. Can have a sweet, dark rum-like quality. Little to no hop flavor. Medium-low to no diacetyl. Medium-full to full body, often with a smooth, creamy character. May give a warming (but never hot) impression from alcohol presence. Moderate to moderately-high carbonation. Sweetness levels can vary significantly. Surprisingly refreshing in a hot climate.", + "comparison": "Tastes like a scaled-up sweet stout with higher fruitiness. Similar to some Imperial Stouts without the high bitterness, strong/burnt roastiness, and late hops, and with lower alcohol. Much more sweet and less hoppy than American Stouts. Much sweeter and less bitter than the similar-gravity Export Stouts." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 157, + "fields": { + "name": "Foreign Extra Stout", + "category": "Dark British Beer", + "category_id": "16", + "style_id": "16D", + "category_description": null, + "overall_impression": "A very dark, moderately strong, fairly dry, stout with prominent roast flavors.", + "aroma": "Moderate to high roasted grain aromas, often with coffee, chocolate and/or lightly burnt notes. Low to medium fruitiness. May have a sweet aroma, or molasses, licorice, dried fruit, and/or vinous aromatics. Stronger versions can have a subtle, clean aroma of alcohol. Hop aroma moderately low to none, can be earthy, herbal or floral. Diacetyl low to none.", + "appearance": "Very deep brown to black in color. Clarity usually obscured by deep color (if not opaque, should be clear). Large tan to brown head with good retention.", + "flavor": "Moderate to high roasted grain and malt flavor with a coffee, chocolate, or lightly burnt grain character, although without a sharp bite. Moderately dry. Low to medium esters. Medium to high bitterness. Moderate to no hop flavor, can be earthy, herbal, or floral. Diacetyl medium-low to none.", + "mouthfeel": "Medium-full to full body, often with a smooth, sometimes creamy character. May give a warming (but never hot) impression from alcohol presence. Moderate to moderately-high carbonation.", + "comments": "Also known as Foreign Stout, Export Stout, Foreign Export Stout. Historic versions (before WWI, at least) had the same OG as domestic Extra Stouts, but had a higher ABV because it had a long secondary with Brettanomyces chewing away at it. The difference between domestic and foreign versions were the hopping and length of maturation.", + "history": "Stronger stouts brewed for the export market today, but with a history stretching back to the 18th and 19th centuries when they were more heavily-hopped versions of stronger export stouts. Guinness Foreign Extra Stout (originally, West India Porter, later Foreign Extra Double Stout) was first brewed in 1801 according to Guinness with \"extra hops to give it a distinctive taste and a longer shelf life in hot weather, this is brewed [today] in Africa, Asia and the Caribbean. It [currently] makes up 40% of all the Guinness brewed around the world.\"", + "style_comparison": null, + "tags": "high-strength, dark-color, top-fermented, british-isles, traditional-style, stout-family, balanced, roasty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "50.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "70.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "30.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Pale and dark roasted malts and grains, historically also could have used brown and amber malts. Hops mostly for bitterness, typically English varieties. May use adjuncts and sugar to boost gravity.", + "examples": "Coopers Best Extra Stout, Guinness Foreign Extra Stout, The Kernel Export Stout, Ridgeway Foreign Export Stout, Southwark Old Stout", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A very dark, moderately strong, fairly dry, stout with prominent roast flavors. Stronger stouts brewed for the export market today, but with a history stretching back to the 18th and 19th centuries when they were more heavily-hopped versions of stronger export stouts. Guinness Foreign Extra Stout (originally, West India Porter, later Foreign Extra Double Stout) was first brewed in 1801 according to Guinness with \"extra hops to give it a distinctive taste and a longer shelf life in hot weather, this is brewed [today] in Africa, Asia and the Caribbean. It [currently] makes up 40% of all the Guinness brewed around the world.\"", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate to high roasted grain aromas, often with coffee, chocolate and/or lightly burnt notes. Low to medium fruitiness. May have a sweet aroma, or molasses, licorice, dried fruit, and/or vinous aromatics. Stronger versions can have a subtle, clean aroma of alcohol. Hop aroma moderately low to none, can be earthy, herbal or floral. Diacetyl low to none. Very deep brown to black in color. Clarity usually obscured by deep color (if not opaque, should be clear). Large tan to brown head with good retention.Moderate to high roasted grain and malt flavor with a coffee, chocolate, or lightly burnt grain character, although without a sharp bite. Moderately dry. Low to medium esters. Medium to high bitterness. Moderate to no hop flavor, can be earthy, herbal, or floral. Diacetyl medium-low to none. Medium-full to full body, often with a smooth, sometimes creamy character. May give a warming (but never hot) impression from alcohol presence. Moderate to moderately-high carbonation. Also known as Foreign Stout, Export Stout, Foreign Export Stout. Historic versions (before WWI, at least) had the same OG as domestic Extra Stouts, but had a higher ABV because it had a long secondary with Brettanomyces chewing away at it. The difference between domestic and foreign versions were the hopping and length of maturation.", + "comparison": "Similar in balance to an Irish Extra Stout, but with more alcohol. Not as big or intense as a Russian Imperial Stout. Lacking the strong bitterness and high late hops of American Stouts. Similar gravity as Tropical Stout, but with a drier finish, higher bitterness, and less esters." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 158, + "fields": { + "name": "British Strong Ale", + "category": "Strong British Ale", + "category_id": "17", + "style_id": "17A", + "category_description": null, + "overall_impression": "An ale of respectable alcoholic strength, traditionally bottled-conditioned and cellared. Can have a wide range of interpretations, but most will have varying degrees of malty richness, late hops and bitterness, fruity esters, and alcohol warmth. Judges should allow for a significant range in character, as long as the beer is within the alcohol strength range and has an interesting ‘British' character, it likely fits the style. The malt and adjunct flavors and intensity can vary widely, but any combination should result in an agreeable palate experience.", + "aroma": "Malty-sweet with fruity esters, often with a complex blend of dried-fruit, caramel, nuts, toffee, and/or other specialty malt aromas. Some alcohol notes are acceptable, but shouldn't be hot or solventy. Hop aromas can vary widely, but typically have earthy, resiny, fruity, and/or floral notes. The balance can vary widely, but most examples will have a blend of malt, fruit, hops, and alcohol in varying intensities.", + "appearance": "Deep gold to dark reddish-brown color (many are fairly dark). Generally clear, although darker versions may be almost opaque. Moderate to low cream- to light tan-colored head; average retention.", + "flavor": "Medium to high malt character often rich with nutty, toffee, or caramel flavors. Light chocolate notes are sometimes found in darker beers. May have interesting flavor complexity from brewing sugars. Balance is often malty, but may be well hopped, which affects the impression of maltiness. Moderate fruity esters are common, often with a dark fruit or dried fruit character. The finish may vary from medium dry to somewhat sweet. Alcoholic strength should be evident, though not overwhelming. Diacetyl low to none, and is generally not desirable.", + "mouthfeel": "Medium to full, chewy body. Alcohol warmth is often evident and always welcome. Low to moderate carbonation. Smooth texture.", + "comments": "As an entry category more than a style, the strength and character of examples can vary widely. Fits in the style space between normal gravity beers (strong bitters, brown ales, English porters) and barleywines. Can include pale malty-hoppy beers, English winter warmers, strong dark milds, smaller Burton ales, and other unique beers in the general gravity range that don't fit other categories. Traditionally a bottle-conditioned product suitable for cellaring.", + "history": "The heritage varies since this category generally reflects a grouping of unrelated minor styles with limited production. Some are historical recreations while others are modern. Some directly descend from older styles such as Burton ales, while others maintain a historical connection with older beers. As a grouping, the notion is relatively modern since beers of this strength category would not have been abnormal in past centuries. Do not use this category grouping to infer historical relationships between examples; this is almost a modern British specialty category where the ‘special' attribute is alcohol level.", + "style_comparison": null, + "tags": "high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.08000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "60.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Grists vary, often based on pale malt with caramel and specialty malts. Some darker examples suggest that dark malts (e.g., chocolate, black malt) may be appropriate, though sparingly so as to avoid an overly roasted character. Sugary adjuncts are common, as are starchy adjuncts (maize, flaked barley, wheat). Finishing hops are traditionally English.", + "examples": "Fuller's 1845, Harvey's Elizabethan Ale, J.W. Lees Manchester Star, Samuel Smith's Winter Welcome, Young's Winter Warmer", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "An ale of respectable alcoholic strength, traditionally bottled-conditioned and cellared. Can have a wide range of interpretations, but most will have varying degrees of malty richness, late hops and bitterness, fruity esters, and alcohol warmth. Judges should allow for a significant range in character, as long as the beer is within the alcohol strength range and has an interesting ‘British' character, it likely fits the style. The malt and adjunct flavors and intensity can vary widely, but any combination should result in an agreeable palate experience. The heritage varies since this category generally reflects a grouping of unrelated minor styles with limited production. Some are historical recreations while others are modern. Some directly descend from older styles such as Burton ales, while others maintain a historical connection with older beers. As a grouping, the notion is relatively modern since beers of this strength category would not have been abnormal in past centuries. Do not use this category grouping to infer historical relationships between examples; this is almost a modern British specialty category where the ‘special' attribute is alcohol level.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Malty-sweet with fruity esters, often with a complex blend of dried-fruit, caramel, nuts, toffee, and/or other specialty malt aromas. Some alcohol notes are acceptable, but shouldn't be hot or solventy. Hop aromas can vary widely, but typically have earthy, resiny, fruity, and/or floral notes. The balance can vary widely, but most examples will have a blend of malt, fruit, hops, and alcohol in varying intensities. Deep gold to dark reddish-brown color (many are fairly dark). Generally clear, although darker versions may be almost opaque. Moderate to low cream- to light tan-colored head; average retention.Medium to high malt character often rich with nutty, toffee, or caramel flavors. Light chocolate notes are sometimes found in darker beers. May have interesting flavor complexity from brewing sugars. Balance is often malty, but may be well hopped, which affects the impression of maltiness. Moderate fruity esters are common, often with a dark fruit or dried fruit character. The finish may vary from medium dry to somewhat sweet. Alcoholic strength should be evident, though not overwhelming. Diacetyl low to none, and is generally not desirable. Medium to full, chewy body. Alcohol warmth is often evident and always welcome. Low to moderate carbonation. Smooth texture. As an entry category more than a style, the strength and character of examples can vary widely. Fits in the style space between normal gravity beers (strong bitters, brown ales, English porters) and barleywines. Can include pale malty-hoppy beers, English winter warmers, strong dark milds, smaller Burton ales, and other unique beers in the general gravity range that don't fit other categories. Traditionally a bottle-conditioned product suitable for cellaring.", + "comparison": "Significant overlap in gravity with old ales, but not having a stale or aged character. A wide range of interpretations is possible. Should not be as rich or strong as an English Barleywine. Stronger than the stronger everyday beers (strong bitters, brown ales, porters). More specialty malt and/or sugar character than American Strong Ales." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 159, + "fields": { + "name": "Old Ale", + "category": "Strong British Ale", + "category_id": "17", + "style_id": "17B", + "category_description": null, + "overall_impression": "An ale of moderate to fairly significant alcoholic strength, bigger than standard beers, though usually not as strong or rich as barleywine. Often tilted towards a maltier balance. \"It should be a warming beer of the type that is best drunk in half pints by a warm fire on a cold winter's night\" – Michael Jackson.", + "aroma": "Malty-sweet with fruity esters, often with a complex blend of dried-fruit, vinous, caramelly, molasses, nutty, toffee, light treacle, and/or other specialty malt aromas. Some alcohol and oxidative notes are acceptable, akin to those found in Sherry or Port. Hop aromas not usually present due to extended aging.", + "appearance": "Light amber to very dark reddish-brown color (most are fairly dark). Age and oxidation may darken the beer further. May be almost opaque (if not, should be clear). Moderate to low cream- to light tan-colored head; may be adversely affected by alcohol and age.", + "flavor": "Medium to high malt character with a luscious malt complexity, often with nutty, caramelly and/or molasses-like flavors. Light chocolate or roasted malt flavors are optional, but should never be prominent. Balance is often malty-sweet, but may be well hopped (the impression of bitterness often depends on amount of aging). Moderate to high fruity esters are common, and may take on a dried-fruit or vinous character. The finish may vary from dry to somewhat sweet. Extended aging may contribute oxidative flavors similar to a fine old Sherry, Port or Madeira. Alcoholic strength should be evident, though not overwhelming. Diacetyl low to none. Some wood-aged or blended versions may have a lactic or Brettanomyces character; but this is optional and should not be too strong. Any acidity or tannin from age should be well-integrated and contribute to complexity in the flavor profile, not be a dominant experience.", + "mouthfeel": "Medium to full, chewy body, although older examples may be lower in body due to continued attenuation during conditioning. Alcohol warmth is often evident and always welcome. Low to moderate carbonation, depending on age and conditioning. Light acidity may be present, as well as some tannin if wood-aged; both are optional.", + "comments": "Strength and character varies widely. The predominant defining quality for this style is the impression of age, which can manifest itself in different ways (complexity, lactic, Brett, oxidation, leather, vinous qualities, etc.). Even if these qualities are otherwise faults, if the resulting character of the beer is still pleasantly drinkable and complex, then those characteristics are acceptable. In no way should those allowable characteristics be interpreted as making an undrinkably off beer as somehow in style. Old Peculier is a fairly unique type of beer that is quite different than other Old Ales.", + "history": "Historically, an aged ale used as stock ales for blending or enjoyed at full strength (stale or stock refers to beers that were aged or stored for a significant period of time). There are at least two definite types in Britain today, weaker draught ones that are similar aged milds of around 4.5%, and stronger ones that are often 6-8% or more.", + "style_comparison": null, + "tags": "high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty, aged", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.08800", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "60.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "10.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Composition varies, although generally similar to British Strong Ales. The age character is the biggest driver of the final style profile, which is more handling than brewing. May be aged in wood, but should not have a strong wood character.", + "examples": "Burton Bridge Olde Expensive, Gale's Prize Old Ale, Greene King Strong Suffolk Ale, Marston Owd Roger, Theakston Old Peculier", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "An ale of moderate to fairly significant alcoholic strength, bigger than standard beers, though usually not as strong or rich as barleywine. Often tilted towards a maltier balance. \"It should be a warming beer of the type that is best drunk in half pints by a warm fire on a cold winter's night\" – Michael Jackson. Historically, an aged ale used as stock ales for blending or enjoyed at full strength (stale or stock refers to beers that were aged or stored for a significant period of time). There are at least two definite types in Britain today, weaker draught ones that are similar aged milds of around 4.5%, and stronger ones that are often 6-8% or more.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Malty-sweet with fruity esters, often with a complex blend of dried-fruit, vinous, caramelly, molasses, nutty, toffee, light treacle, and/or other specialty malt aromas. Some alcohol and oxidative notes are acceptable, akin to those found in Sherry or Port. Hop aromas not usually present due to extended aging. Light amber to very dark reddish-brown color (most are fairly dark). Age and oxidation may darken the beer further. May be almost opaque (if not, should be clear). Moderate to low cream- to light tan-colored head; may be adversely affected by alcohol and age.Medium to high malt character with a luscious malt complexity, often with nutty, caramelly and/or molasses-like flavors. Light chocolate or roasted malt flavors are optional, but should never be prominent. Balance is often malty-sweet, but may be well hopped (the impression of bitterness often depends on amount of aging). Moderate to high fruity esters are common, and may take on a dried-fruit or vinous character. The finish may vary from dry to somewhat sweet. Extended aging may contribute oxidative flavors similar to a fine old Sherry, Port or Madeira. Alcoholic strength should be evident, though not overwhelming. Diacetyl low to none. Some wood-aged or blended versions may have a lactic or Brettanomyces character; but this is optional and should not be too strong. Any acidity or tannin from age should be well-integrated and contribute to complexity in the flavor profile, not be a dominant experience. Medium to full, chewy body, although older examples may be lower in body due to continued attenuation during conditioning. Alcohol warmth is often evident and always welcome. Low to moderate carbonation, depending on age and conditioning. Light acidity may be present, as well as some tannin if wood-aged; both are optional. Strength and character varies widely. The predominant defining quality for this style is the impression of age, which can manifest itself in different ways (complexity, lactic, Brett, oxidation, leather, vinous qualities, etc.). Even if these qualities are otherwise faults, if the resulting character of the beer is still pleasantly drinkable and complex, then those characteristics are acceptable. In no way should those allowable characteristics be interpreted as making an undrinkably off beer as somehow in style. Old Peculier is a fairly unique type of beer that is quite different than other Old Ales.", + "comparison": "Roughly overlapping the British Strong Ale and the lower end of the English Barleywine styles, but always having an aged quality. The distinction between an Old Ale and a Barleywine is somewhat arbitrary above 7% ABV, and generally means having a more significant aged quality (particularly from wood). Barleywines tend to develop more of a ‘mature' quality, while Old Ales can show more of the barrel qualities (lactic, Brett, vinous, etc.)." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 160, + "fields": { + "name": "Wee Heavy", + "category": "Strong British Ale", + "category_id": "17", + "style_id": "17C", + "category_description": null, + "overall_impression": "Rich, malty, dextrinous, and usually caramel-sweet, these beers can give an impression that is suggestive of a dessert. Complex secondary malt and alcohol flavors prevent a one-dimensional quality. Strength and maltiness can vary, but should not be cloying or syrupy.", + "aroma": "Deeply malty, with a strong caramel component. Lightly smoky secondary aromas may also be present, adding complexity; peat smoke is inappropriate. Diacetyl should be low to none. Low to moderate esters and alcohol are often present in stronger versions. Hops are very low to none, and can be slightly earthy or floral.", + "appearance": "Light copper to dark brown color, often with deep ruby highlights. Clear. Usually has a large tan head, which may not persist. Legs may be evident in stronger versions.", + "flavor": "Richly malty with significant caramel (particularly in stronger versions). Hints of roasted malt may be present (sometimes perceived as a faint smoke character), as may some nutty character, all of which may last into the finish. Peat smoke is inappropriate. Hop flavors and bitterness are low to medium-low, so the malt presence should dominate the balance. Diacetyl should be low to none. Low to moderate esters and alcohol are usually present. Esters may suggest plums, raisins or dried fruit. The palate is usually full and sweet, but the finish may be sweet to medium-dry, sometimes with a light roasty-grainy note.", + "mouthfeel": "Medium-full to full-bodied, with some versions (but not all) having a thick, chewy viscosity. A smooth, alcoholic warmth is usually present and is quite welcome since it balances the malty sweetness. Moderate carbonation.", + "comments": "Also known as \"strong Scotch ale.\" The term \"wee heavy\" means \"small strong\" and traces to the beer that made the term famous, Fowler's Wee Heavy, a 12 Guinea Ale. Historically, the strongest beer from a Scottish ale parti-gyle.", + "history": "More related to historical brews than modern lower-strength Scottish ales, these beers have their roots in the strong ales of the 1700s and 1800s, although formulations and methods have changed. A premium product, often produced for export. Modern versions have lower starting and finishing gravities than their historical ancestors.", + "style_comparison": null, + "tags": "high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.13000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "17.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.04000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "10.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "14.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "25.00000", + "ingredients": "Well-modified pale malt, with roasted barley for color. May use some crystal malt for color adjustment. Slight smoke character may be present in some versions, but derives from roasted grains or from the boil. Peated malt is absolutely not traditional.", + "examples": "Belhaven Wee Heavy, Gordon Highland Scotch Ale, Inveralmond Blackfriar, McEwan's Scotch Ale, Orkney Skull Splitter, Traquair House Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "Rich, malty, dextrinous, and usually caramel-sweet, these beers can give an impression that is suggestive of a dessert. Complex secondary malt and alcohol flavors prevent a one-dimensional quality. Strength and maltiness can vary, but should not be cloying or syrupy. More related to historical brews than modern lower-strength Scottish ales, these beers have their roots in the strong ales of the 1700s and 1800s, although formulations and methods have changed. A premium product, often produced for export. Modern versions have lower starting and finishing gravities than their historical ancestors.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Deeply malty, with a strong caramel component. Lightly smoky secondary aromas may also be present, adding complexity; peat smoke is inappropriate. Diacetyl should be low to none. Low to moderate esters and alcohol are often present in stronger versions. Hops are very low to none, and can be slightly earthy or floral. Light copper to dark brown color, often with deep ruby highlights. Clear. Usually has a large tan head, which may not persist. Legs may be evident in stronger versions.Richly malty with significant caramel (particularly in stronger versions). Hints of roasted malt may be present (sometimes perceived as a faint smoke character), as may some nutty character, all of which may last into the finish. Peat smoke is inappropriate. Hop flavors and bitterness are low to medium-low, so the malt presence should dominate the balance. Diacetyl should be low to none. Low to moderate esters and alcohol are usually present. Esters may suggest plums, raisins or dried fruit. The palate is usually full and sweet, but the finish may be sweet to medium-dry, sometimes with a light roasty-grainy note. Medium-full to full-bodied, with some versions (but not all) having a thick, chewy viscosity. A smooth, alcoholic warmth is usually present and is quite welcome since it balances the malty sweetness. Moderate carbonation. Also known as \"strong Scotch ale.\" The term \"wee heavy\" means \"small strong\" and traces to the beer that made the term famous, Fowler's Wee Heavy, a 12 Guinea Ale. Historically, the strongest beer from a Scottish ale parti-gyle.", + "comparison": "Somewhat similar to an English Barleywine." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 161, + "fields": { + "name": "English Barleywine", + "category": "Strong British Ale", + "category_id": "17", + "style_id": "17D", + "category_description": null, + "overall_impression": "A showcase of malty richness and complex, intense flavors. Chewy and rich in body, with warming alcohol and a pleasant fruity or hoppy interest. When aged, it can take on port-like flavors. A wintertime sipper.", + "aroma": "Very rich and strongly malty, often with a caramel-like aroma in darker versions or a light toffee character in paler versions. May have moderate to strong fruitiness, often with a dark- or dried-fruit character, particularly in dark versions. The hop aroma may range from mild to assertive, and is typically floral, earthy, or marmalade-like. Alcohol aromatics may be low to moderate, but are soft and rounded. The intensity of these aromatics often subsides with age. The aroma may have a rich character including bready, toasty, toffee, and/or molasses notes. Aged versions may have a sherry-like quality, possibly vinous or port-like aromatics, and generally more muted malt aromas.", + "appearance": "Color may range from rich gold to very dark amber or even dark brown (often has ruby highlights, but should not be opaque). Low to moderate off-white head; may have low head retention. May be cloudy with chill haze at cooler temperatures, but generally clears to good to brilliant clarity as it warms. The color may appear to have great depth, as if viewed through a thick glass lens. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.", + "flavor": "Strong, intense, complex, multi-layered malt flavors ranging from bready, toffee, and biscuity in paler versions through nutty, deep toast, dark caramel, and/or molasses in darker versions. Moderate to high malty sweetness on the palate, although the finish may be moderately sweet to moderately dry (depending on aging). Some oxidative or vinous flavors may be present, and often complex alcohol flavors should be evident. Moderate to fairly high fruitiness, often with a dark- or dried-fruit character. Hop bitterness may range from just enough for balance to a firm presence; balance therefore ranges from malty to somewhat bitter. Pale versions are often more bitter, better attenuated, and might show more hop character than darker versions; however, all versions are malty in the balance. Low to moderately high hop flavor, often floral, earthy, or marmalade-like English varieties.", + "mouthfeel": "Full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). A smooth warmth from aged alcohol should be present. Carbonation may be low to moderate, depending on age and conditioning.", + "comments": "The richest and strongest of modern English Ales. The character of these ales can change significantly over time; both young and old versions should be appreciated for what they are. The malt profile can vary widely; not all examples will have all possible flavors or aromas. Paler varieties won't have the caramel and richer malt flavors, nor will they typically have the darker dried fruits – don't expect flavors and aromatics that are impossible from a beer of that color. Typically written as \"Barley Wine\" in the UK, and \"Barleywine\" in the US.", + "history": "Strong ales of various formulations have long been brewed in England, and were known by several names. The modern barleywine traces back to Bass No. 1, which was first called a barleywine in 1872. Barleywines were darker beers until Tennant (now Whitbread) first produced Gold Label, a gold-colored barleywine in 1951. Usually the strongest ale offered by a brewery, and in recent years many commercial examples are now vintage-dated and offered as a limited-release winter seasonal specialty. The original barleywine style that inspired derivative variations in Belgium, the United States, and elsewhere in the world.", + "style_comparison": null, + "tags": "very-high-strength, amber-color, top-fermented, british-isles, traditional-style, strong-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.08000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.12000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "35.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "70.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.03000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "8.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "12.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "High-quality, well-modified pale malt should form the backbone of the grist, with judicious amounts of caramel malts. Dark malts should be used with great restraint, if at all, as most of the color arises from a lengthy boil. English hops such as Northdown, Target, East Kent Goldings and Fuggles are typical. Characterful British yeast.", + "examples": "Adnams Tally-Ho, Burton Bridge Thomas Sykes Old Ale, Coniston No. 9 Barley Wine, Fuller's Golden Pride, J.W. Lee's Vintage Harvest Ale, Robinson's Old Tom", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A showcase of malty richness and complex, intense flavors. Chewy and rich in body, with warming alcohol and a pleasant fruity or hoppy interest. When aged, it can take on port-like flavors. A wintertime sipper. Strong ales of various formulations have long been brewed in England, and were known by several names. The modern barleywine traces back to Bass No. 1, which was first called a barleywine in 1872. Barleywines were darker beers until Tennant (now Whitbread) first produced Gold Label, a gold-colored barleywine in 1951. Usually the strongest ale offered by a brewery, and in recent years many commercial examples are now vintage-dated and offered as a limited-release winter seasonal specialty. The original barleywine style that inspired derivative variations in Belgium, the United States, and elsewhere in the world.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Very rich and strongly malty, often with a caramel-like aroma in darker versions or a light toffee character in paler versions. May have moderate to strong fruitiness, often with a dark- or dried-fruit character, particularly in dark versions. The hop aroma may range from mild to assertive, and is typically floral, earthy, or marmalade-like. Alcohol aromatics may be low to moderate, but are soft and rounded. The intensity of these aromatics often subsides with age. The aroma may have a rich character including bready, toasty, toffee, and/or molasses notes. Aged versions may have a sherry-like quality, possibly vinous or port-like aromatics, and generally more muted malt aromas. Color may range from rich gold to very dark amber or even dark brown (often has ruby highlights, but should not be opaque). Low to moderate off-white head; may have low head retention. May be cloudy with chill haze at cooler temperatures, but generally clears to good to brilliant clarity as it warms. The color may appear to have great depth, as if viewed through a thick glass lens. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.Strong, intense, complex, multi-layered malt flavors ranging from bready, toffee, and biscuity in paler versions through nutty, deep toast, dark caramel, and/or molasses in darker versions. Moderate to high malty sweetness on the palate, although the finish may be moderately sweet to moderately dry (depending on aging). Some oxidative or vinous flavors may be present, and often complex alcohol flavors should be evident. Moderate to fairly high fruitiness, often with a dark- or dried-fruit character. Hop bitterness may range from just enough for balance to a firm presence; balance therefore ranges from malty to somewhat bitter. Pale versions are often more bitter, better attenuated, and might show more hop character than darker versions; however, all versions are malty in the balance. Low to moderately high hop flavor, often floral, earthy, or marmalade-like English varieties. Full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). A smooth warmth from aged alcohol should be present. Carbonation may be low to moderate, depending on age and conditioning. The richest and strongest of modern English Ales. The character of these ales can change significantly over time; both young and old versions should be appreciated for what they are. The malt profile can vary widely; not all examples will have all possible flavors or aromas. Paler varieties won't have the caramel and richer malt flavors, nor will they typically have the darker dried fruits – don't expect flavors and aromatics that are impossible from a beer of that color. Typically written as \"Barley Wine\" in the UK, and \"Barleywine\" in the US.", + "comparison": "Although often a hoppy beer, the English Barleywine places less emphasis on hop character than the American Barleywine and features English hops. English versions can be darker, maltier, fruitier, and feature richer specialty malt flavors than American Barleywines. Has some overlap British Old Ale on the lower end, but generally does not have the vinous qualities of age; rather, it tends to display the mature, elegant signs of age." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 162, + "fields": { + "name": "Blonde Ale", + "category": "Pale American Ale", + "category_id": "18", + "style_id": "18A", + "category_description": null, + "overall_impression": "Easy-drinking, approachable, malt-oriented American craft beer, often with interesting fruit, hop, or character malt notes. Well-balanced and clean, is a refreshing pint without aggressive flavors.", + "aroma": "Light to moderate sweet malty aroma, possibly with a light bready or caramelly note. Low to moderate fruitiness is optional, but acceptable. May have a low to medium hop aroma, and can reflect almost any hop variety although citrusy, floral, fruity, and spicy notes are common.", + "appearance": "Light yellow to deep gold in color. Clear to brilliant. Low to medium white head with fair to good retention.", + "flavor": "Initial soft malty sweetness, but optionally some light character malt flavor (e.g., bread, toast, biscuit, wheat) can also be present. Caramel flavors typically absent; if present, they are typically low-color caramel notes. Low to medium fruity esters optional, but are welcome. Light to moderate hop flavor (any variety), but shouldn't be overly aggressive. Medium-low to medium bitterness, but the balance is normally towards the malt or even between malt and hops. Finishes medium-dry to slightly malty-sweet; impression of sweetness is often an expression of lower bitterness than actual residual sweetness.", + "mouthfeel": "Medium-light to medium body. Medium to high carbonation. Smooth without being heavy.", + "comments": "Brewpub alternative to standard American lagers, typically offered as an entry-level craft beer.", + "history": "An American craft beer style produced by many microbreweries and brewpubs, particularly those who cannot produce lagers. Regional variations exist (many US West Coast brewpub examples are more assertive, like pale ales) but in most areas this beer is designed as the least challenging beer in their lineup.", + "style_comparison": null, + "tags": "standard-strength, pale-color, any-fermentation, north-america, craft-style, pale-ale-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "28.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01300", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Generally all malt, but can include up to 25% wheat malt and some sugar adjuncts. Any hop variety can be used. Clean American, lightly fruity English, or Kölsch yeast. May also be made with lager yeast, or cold-conditioned. Some versions may have honey, spices and/or fruit added, although if any of these ingredients are stronger than a background flavor they should be entered in those specialty categories instead.", + "examples": "Kona Big Wave Golden Ale, Pelican Kiwanda Cream Ale, Russian River Aud Blonde, Victory Summer Love, Widmer Citra Summer Blonde Brew", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "Easy-drinking, approachable, malt-oriented American craft beer, often with interesting fruit, hop, or character malt notes. Well-balanced and clean, is a refreshing pint without aggressive flavors. An American craft beer style produced by many microbreweries and brewpubs, particularly those who cannot produce lagers. Regional variations exist (many US West Coast brewpub examples are more assertive, like pale ales) but in most areas this beer is designed as the least challenging beer in their lineup.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Light to moderate sweet malty aroma, possibly with a light bready or caramelly note. Low to moderate fruitiness is optional, but acceptable. May have a low to medium hop aroma, and can reflect almost any hop variety although citrusy, floral, fruity, and spicy notes are common. Light yellow to deep gold in color. Clear to brilliant. Low to medium white head with fair to good retention.Initial soft malty sweetness, but optionally some light character malt flavor (e.g., bread, toast, biscuit, wheat) can also be present. Caramel flavors typically absent; if present, they are typically low-color caramel notes. Low to medium fruity esters optional, but are welcome. Light to moderate hop flavor (any variety), but shouldn't be overly aggressive. Medium-low to medium bitterness, but the balance is normally towards the malt or even between malt and hops. Finishes medium-dry to slightly malty-sweet; impression of sweetness is often an expression of lower bitterness than actual residual sweetness. Medium-light to medium body. Medium to high carbonation. Smooth without being heavy. Brewpub alternative to standard American lagers, typically offered as an entry-level craft beer.", + "comparison": "Typically has more flavor than American Lagers and Cream Ales. Less bitterness than an American Pale Ale." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 163, + "fields": { + "name": "American Pale Ale", + "category": "Pale American Ale", + "category_id": "18", + "style_id": "18B", + "category_description": null, + "overall_impression": "A pale, refreshing and hoppy ale, yet with sufficient supporting malt to make the beer balanced and drinkable. The clean hop presence can reflect classic or modern American or New World hop varieties with a wide range of characteristics. An average-strength hop-forward pale American craft beer, generally balanced to be more accessible than modern American IPAs.", + "aroma": "Moderate to strong hop aroma from American or New World hop varieties with a wide range of possible characteristics, including citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon. None of these specific characteristics are required, but hops should be apparent. Low to moderate maltiness supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuit, caramelly). Fruity esters vary from moderate to none. Dry hopping (if used) may add grassy notes, although this character should not be excessive.", + "appearance": "Pale golden to light amber. Moderately large white to off-white head with good retention. Generally quite clear, although dry-hopped versions may be slightly hazy.", + "flavor": "Moderate to high hop flavor, typically showing an American or New World hop character (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc.). Low to moderate clean grainy-malt character supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuity). The balance is typically towards the late hops and bitterness, but the malt presence should be supportive, not distracting. Caramel flavors are often absent or fairly restrained (but are acceptable as long as they don't clash with the hops). Fruity yeast esters can be moderate to none, although many hop varieties are quite fruity. Moderate to high hop bitterness with a medium to dry finish. Hop flavor and bitterness often lingers into the finish, but the aftertaste should generally be clean and not harsh. Dry hopping (if used) may add grassy notes, although this character should not be excessive.", + "mouthfeel": "Medium-light to medium body. Moderate to high carbonation. Overall smooth finish without astringency and harshness.", + "comments": "New hop varieties and usage methods continue to be developed. Judges should allow for characteristics of modern hops in this style, as well as classic varieties. Becoming more of an international craft style, with local adaptations appearing in many countries with an emerging craft beer market. Hopping styles can vary from the classic large bitterness addition, to more modern late hop-bursted examples; all variations are allowable.", + "history": "A modern American craft beer era adaptation of English pale ale, reflecting indigenous ingredients (hops, malt, yeast, and water). Prior to the explosion in popularity of IPAs, was traditionally the most well-known and popular of American craft beers.", + "style_comparison": null, + "tags": "standard-strength, pale-color, top-fermented, north-america, craft-style, pale-ale-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "50.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "5.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "10.00000", + "ingredients": "Pale ale malt, typically North American two-row. American or New World hops, with a wide range of allowable characteristics. American or English ale yeast (neutral to lightly fruity). Specialty grains may add character and complexity, but generally make up a relatively small portion of the grist. Grains that add malt flavor and richness, light sweetness, and toasty or bready notes are often used (along with late hops) to differentiate brands.", + "examples": "Ballast Point Grunion Pale Ale, Firestone Walker Pale 31, Great Lakes Burning River, Sierra Nevada Pale Ale, Stone Pale Ale, Tröegs Pale Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A pale, refreshing and hoppy ale, yet with sufficient supporting malt to make the beer balanced and drinkable. The clean hop presence can reflect classic or modern American or New World hop varieties with a wide range of characteristics. An average-strength hop-forward pale American craft beer, generally balanced to be more accessible than modern American IPAs. A modern American craft beer era adaptation of English pale ale, reflecting indigenous ingredients (hops, malt, yeast, and water). Prior to the explosion in popularity of IPAs, was traditionally the most well-known and popular of American craft beers.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate to strong hop aroma from American or New World hop varieties with a wide range of possible characteristics, including citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon. None of these specific characteristics are required, but hops should be apparent. Low to moderate maltiness supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuit, caramelly). Fruity esters vary from moderate to none. Dry hopping (if used) may add grassy notes, although this character should not be excessive. Pale golden to light amber. Moderately large white to off-white head with good retention. Generally quite clear, although dry-hopped versions may be slightly hazy.Moderate to high hop flavor, typically showing an American or New World hop character (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc.). Low to moderate clean grainy-malt character supports the hop presentation, and may optionally show small amounts of specialty malt character (bready, toasty, biscuity). The balance is typically towards the late hops and bitterness, but the malt presence should be supportive, not distracting. Caramel flavors are often absent or fairly restrained (but are acceptable as long as they don't clash with the hops). Fruity yeast esters can be moderate to none, although many hop varieties are quite fruity. Moderate to high hop bitterness with a medium to dry finish. Hop flavor and bitterness often lingers into the finish, but the aftertaste should generally be clean and not harsh. Dry hopping (if used) may add grassy notes, although this character should not be excessive. Medium-light to medium body. Moderate to high carbonation. Overall smooth finish without astringency and harshness. New hop varieties and usage methods continue to be developed. Judges should allow for characteristics of modern hops in this style, as well as classic varieties. Becoming more of an international craft style, with local adaptations appearing in many countries with an emerging craft beer market. Hopping styles can vary from the classic large bitterness addition, to more modern late hop-bursted examples; all variations are allowable.", + "comparison": "Typically lighter in color, cleaner in fermentation by-products, and having less caramel flavors than English counterparts. There can be some overlap in color between American pale ale and American amber ale. The American pale ale will generally be cleaner, have a less caramelly malt profile, less body, and often more finishing hops. Less bitterness in the balance and alcohol strength than an American IPA. More balanced and drinkable, and less intensely hop-focused and bitter than session-strength American IPAs (aka Session IPAs)." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 164, + "fields": { + "name": "American Amber Ale", + "category": "Amber And Brown American Beer", + "category_id": "19", + "style_id": "19A", + "category_description": null, + "overall_impression": "An amber, hoppy, moderate-strength American craft beer with a caramel malty flavor. The balance can vary quite a bit, with some versions being fairly malty and others being aggressively hoppy. Hoppy and bitter versions should not have clashing flavors with the caramel malt profile.", + "aroma": "Low to moderate hop aroma with characteristics typical of American or New World hop varieties (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon). A citrusy hop character is common, but not required. Moderately-low to moderately-high maltiness (usually with a moderate caramel character), which can either support, balance, or sometimes mask the hop presentation. Esters vary from moderate to none.", + "appearance": "Amber to coppery-brown in color. Moderately large off-white head with good retention. Generally quite clear, although dry-hopped versions may be slightly hazy.", + "flavor": "Moderate to high hop flavor with characteristics typical of American or New World hop varieties (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon). A citrusy hop character is common, but not required. Malt flavors are moderate to strong, and usually show an initial malty sweetness followed by a moderate caramel flavor (and sometimes other character malts in lesser amounts). Malt and hop bitterness are usually balanced and mutually supportive, but can vary either way. Fruity esters can be moderate to none. Caramel sweetness and hop flavor/bitterness can linger somewhat into the medium to full finish.", + "mouthfeel": "Medium to medium-full body. Medium to high carbonation. Overall smooth finish without astringency. Stronger versions may have a slight alcohol warmth.", + "comments": "Can overlap in color with darker American pale ales, but with a different malt flavor and balance. Regional variations exist with some being fairly mainstream and others being quite aggressive in hopping. Stronger and more bitter versions are now split into the Red IPA style.", + "history": "A modern American craft beer style developed as a variation from American Pale Ales. Known simply as Red Ales in some regions, these beers were popularized in the hop-loving Northern California and the Pacific Northwest areas before spreading nationwide.", + "style_comparison": null, + "tags": "standard-strength, amber-color, top-fermented, north-america, craft-style, amber-ale-family, balanced, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "10.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "17.00000", + "ingredients": "Pale ale malt, typically North American two-row. Medium to dark crystal malts. May also contain specialty grains which add additional character and uniqueness. American or New World hops, often with citrusy flavors, are common but others may also be used.", + "examples": "Deschutes Cinder Cone Red, Full Sail Amber, Kona Lavaman Red Ale, North Coast Ruedrich's Red Seal Ale, Rogue American Amber Ale, Tröegs HopBack Amber Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "An amber, hoppy, moderate-strength American craft beer with a caramel malty flavor. The balance can vary quite a bit, with some versions being fairly malty and others being aggressively hoppy. Hoppy and bitter versions should not have clashing flavors with the caramel malt profile. A modern American craft beer style developed as a variation from American Pale Ales. Known simply as Red Ales in some regions, these beers were popularized in the hop-loving Northern California and the Pacific Northwest areas before spreading nationwide.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to moderate hop aroma with characteristics typical of American or New World hop varieties (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon). A citrusy hop character is common, but not required. Moderately-low to moderately-high maltiness (usually with a moderate caramel character), which can either support, balance, or sometimes mask the hop presentation. Esters vary from moderate to none. Amber to coppery-brown in color. Moderately large off-white head with good retention. Generally quite clear, although dry-hopped versions may be slightly hazy.Moderate to high hop flavor with characteristics typical of American or New World hop varieties (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, or melon). A citrusy hop character is common, but not required. Malt flavors are moderate to strong, and usually show an initial malty sweetness followed by a moderate caramel flavor (and sometimes other character malts in lesser amounts). Malt and hop bitterness are usually balanced and mutually supportive, but can vary either way. Fruity esters can be moderate to none. Caramel sweetness and hop flavor/bitterness can linger somewhat into the medium to full finish. Medium to medium-full body. Medium to high carbonation. Overall smooth finish without astringency. Stronger versions may have a slight alcohol warmth. Can overlap in color with darker American pale ales, but with a different malt flavor and balance. Regional variations exist with some being fairly mainstream and others being quite aggressive in hopping. Stronger and more bitter versions are now split into the Red IPA style.", + "comparison": "Darker, more caramelly, more body, and generally less bitter in the balance than American Pale Ales. Less alcohol, bitterness, and hop character than Red IPAs. Less strength, malt, and hop character than American Strong Ales. Should not have a strong chocolate or roast character that might suggest an American brown ale (although small amounts are OK)." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 165, + "fields": { + "name": "California Common", + "category": "Amber And Brown American Beer", + "category_id": "19", + "style_id": "19B", + "category_description": null, + "overall_impression": "A lightly fruity beer with firm, grainy maltiness, interesting toasty and caramel flavors, and showcasing rustic, traditional American hop characteristics.", + "aroma": "Typically showcases rustic, traditional American hops (often with woody, rustic or minty qualities) in moderate to high strength. Light fruitiness acceptable. Low to moderate caramel and/or toasty malt aromatics support the hops.", + "appearance": "Medium amber to light copper color. Generally clear. Moderate off-white head with good retention.", + "flavor": "Moderately malty with a pronounced hop bitterness. The malt character is usually toasty (not roasted) and caramelly. Low to moderately high hop flavor, usually showing rustic, traditional American hop qualities (often woody, rustic, minty). Finish fairly dry and crisp, with a lingering hop bitterness and a firm, grainy malt flavor. Light fruity esters are acceptable, but otherwise clean.", + "mouthfeel": "Medium-bodied. Medium to medium-high carbonation.", + "comments": "This style is narrowly defined around the prototypical Anchor Steam example, although allowing other typical ingredients of the era. Northern Brewer hops are not a strict requirement for the style; modern American and New World-type hops (especially citrusy ones) are inappropriate, however.", + "history": "American West Coast original, brewed originally as Steam Beer in the Gold Rush era. Large shallow open fermenters (coolships) were traditionally used to compensate for the absence of refrigeration and to take advantage of the cool ambient temperatures in the San Francisco Bay area. Fermented with a lager yeast, but one that was selected to ferment relatively clean beer at warmer temperatures. Modern versions are based on Anchor Brewing re-launching the style in the 1970s.", + "style_comparison": null, + "tags": "standard-strength, amber-color, bottom-fermented, north-america, traditional-style, amber-lager-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "45.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01100", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "10.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Pale ale malt, non-citrusy hops (often Northern Brewer), small amounts of toasted malt and/or crystal malts. Lager yeast; however, some strains (often with the mention of \"California\" in the name) work better than others at the warmer fermentation temperatures (55 to 60 °F) typically used. Note that some German yeast strains produce inappropriate sulfury character.", + "examples": "Anchor Steam, Flying Dog Old Scratch Amber Lager, Schlafly Pi Common, Steamworks Steam Engine Lager", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A lightly fruity beer with firm, grainy maltiness, interesting toasty and caramel flavors, and showcasing rustic, traditional American hop characteristics. American West Coast original, brewed originally as Steam Beer in the Gold Rush era. Large shallow open fermenters (coolships) were traditionally used to compensate for the absence of refrigeration and to take advantage of the cool ambient temperatures in the San Francisco Bay area. Fermented with a lager yeast, but one that was selected to ferment relatively clean beer at warmer temperatures. Modern versions are based on Anchor Brewing re-launching the style in the 1970s.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Typically showcases rustic, traditional American hops (often with woody, rustic or minty qualities) in moderate to high strength. Light fruitiness acceptable. Low to moderate caramel and/or toasty malt aromatics support the hops. Medium amber to light copper color. Generally clear. Moderate off-white head with good retention.Moderately malty with a pronounced hop bitterness. The malt character is usually toasty (not roasted) and caramelly. Low to moderately high hop flavor, usually showing rustic, traditional American hop qualities (often woody, rustic, minty). Finish fairly dry and crisp, with a lingering hop bitterness and a firm, grainy malt flavor. Light fruity esters are acceptable, but otherwise clean. Medium-bodied. Medium to medium-high carbonation. This style is narrowly defined around the prototypical Anchor Steam example, although allowing other typical ingredients of the era. Northern Brewer hops are not a strict requirement for the style; modern American and New World-type hops (especially citrusy ones) are inappropriate, however.", + "comparison": "Superficially similar to an American Amber Ale, but with specific choices for malt and hopping – the hop flavor/aroma is traditional (not modern) American hops, malt flavors are more toasty, the hopping is always assertive, and a warm-fermented lager yeast is used. Less attenuated, less carbonated and less fruity than Australian Sparkling ale." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 166, + "fields": { + "name": "American Brown Ale", + "category": "Amber And Brown American Beer", + "category_id": "19", + "style_id": "19C", + "category_description": null, + "overall_impression": "A malty but hoppy beer frequently with chocolate and caramel flavors. The hop flavor and aroma complements and enhances the malt rather than clashing with it.", + "aroma": "Moderate malty-sweet to malty-rich aroma with chocolate, caramel, nutty, and/or toasty qualities. Hop aroma is typically low to moderate, of almost any variety that complements the malt. Some interpretations of the style may feature a stronger hop aroma, an American or New World hop character (citrusy, fruity, tropical, etc.), and/or a fresh dry-hopped aroma (all are optional). Fruity esters are moderate to very low. The dark malt character is more robust than other brown ales, yet stops short of being overly porter-like. The malt and hops are generally balanced.", + "appearance": "Light to very dark brown color. Clear. Low to moderate off-white to light tan head.", + "flavor": "Medium to moderately-high malty-sweet or malty-rich flavor with chocolate, caramel, nutty, and/or toasty malt complexity, with medium to medium-high bitterness. The medium to medium-dry finish provides an aftertaste having both malt and hops. Hop flavor can be light to moderate, and may optionally have a citrusy, fruity, or tropical character, although any hop flavor that complements the malt is acceptable. Very low to moderate fruity esters.", + "mouthfeel": "Medium to medium-full body. More bitter versions may have a dry, resiny impression. Moderate to moderately-high carbonation.", + "comments": "Most commercial American Browns are not as aggressive as the original homebrewed versions, and some modern craft-brewed examples. This style reflects the current commercial offerings typically marketed as American Brown Ales rather than the hoppier, stronger homebrew versions from the early days of homebrewing. These IPA-strength brown ales should be entered in the Specialty IPA as Brown IPAs.", + "history": "An American style from the modern craft beer era. Derived from English Brown Ales, but with more hops. Pete's Wicked Ale was one of the first and best known examples, and inspired many imitations. Popular with homebrewers, where very hoppy versions were sometimes called Texas Brown Ales (this is now more appropriately a Brown IPA).", + "style_comparison": null, + "tags": "standard-strength, dark-color, top-fermented, north-america, craft-style, brown-ale-family, balanced, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.20000", + "color_minimum_unit": "SRM", + "color_minimum_value": "18.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "35.00000", + "ingredients": "Well-modified pale malt, plus crystal and darker malts (typically chocolate). American hops are typical, but continental or New World hops can also be used.", + "examples": "Anchor Brekle's Brown, Big Sky Moose Drool Brown Ale, Brooklyn Brown Ale, Bell's Best Brown, Cigar City Maduro Brown Ale, Smuttynose Old Brown Dog Ale, Telluride Face Down Brown", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A malty but hoppy beer frequently with chocolate and caramel flavors. The hop flavor and aroma complements and enhances the malt rather than clashing with it. An American style from the modern craft beer era. Derived from English Brown Ales, but with more hops. Pete's Wicked Ale was one of the first and best known examples, and inspired many imitations. Popular with homebrewers, where very hoppy versions were sometimes called Texas Brown Ales (this is now more appropriately a Brown IPA).", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate malty-sweet to malty-rich aroma with chocolate, caramel, nutty, and/or toasty qualities. Hop aroma is typically low to moderate, of almost any variety that complements the malt. Some interpretations of the style may feature a stronger hop aroma, an American or New World hop character (citrusy, fruity, tropical, etc.), and/or a fresh dry-hopped aroma (all are optional). Fruity esters are moderate to very low. The dark malt character is more robust than other brown ales, yet stops short of being overly porter-like. The malt and hops are generally balanced. Light to very dark brown color. Clear. Low to moderate off-white to light tan head.Medium to moderately-high malty-sweet or malty-rich flavor with chocolate, caramel, nutty, and/or toasty malt complexity, with medium to medium-high bitterness. The medium to medium-dry finish provides an aftertaste having both malt and hops. Hop flavor can be light to moderate, and may optionally have a citrusy, fruity, or tropical character, although any hop flavor that complements the malt is acceptable. Very low to moderate fruity esters. Medium to medium-full body. More bitter versions may have a dry, resiny impression. Moderate to moderately-high carbonation. Most commercial American Browns are not as aggressive as the original homebrewed versions, and some modern craft-brewed examples. This style reflects the current commercial offerings typically marketed as American Brown Ales rather than the hoppier, stronger homebrew versions from the early days of homebrewing. These IPA-strength brown ales should be entered in the Specialty IPA as Brown IPAs.", + "comparison": "More chocolate and caramel type flavors than American Pale or Amber Ales, typically with less prominent bitterness in the balance. Less bitterness, alcohol, and hop character than Brown IPAs. More bitter and generally hoppier than English Brown Ales, with a richer malt presence, usually higher alcohol, and American/New World hop character." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 167, + "fields": { + "name": "American Porter", + "category": "American Porter And Stout", + "category_id": "20", + "style_id": "20A", + "category_description": null, + "overall_impression": "A substantial, malty dark beer with a complex and flavorful dark malt character.", + "aroma": "Medium-light to medium-strong dark malt aroma, often with a lightly burnt character. Optionally may also show some additional malt character in support (grainy, bready, toffee-like, caramelly, chocolate, coffee, rich, and/or sweet). Hop aroma low to high, often with a resiny, earthy, or floral character. May be dry-hopped. Fruity esters are moderate to none.", + "appearance": "Medium brown to very dark brown, often with ruby- or garnet-like highlights. Can approach black in color. Clarity may be difficult to discern in such a dark beer, but when not opaque will be clear (particularly when held up to the light). Full, tan-colored head with moderately good head retention.", + "flavor": "Moderately strong malt flavor usually features a lightly burnt malt character (and sometimes chocolate and/or coffee flavors) with a bit of grainy, dark malt dryness in the finish. Overall flavor may finish from dry to medium-sweet. May have a sharp character from dark roasted grains, but should not be overly acrid, burnt or harsh. Medium to high bitterness, which can be accentuated by the dark malt. Hop flavor can vary from low to high with a resiny, earthy, or floral character, and balances the dark malt flavors. The dark malt and hops should not clash. Dry-hopped versions may have a resiny flavor. Fruity esters moderate to none.", + "mouthfeel": "Medium to medium-full body. Moderately low to moderately high carbonation. Stronger versions may have a slight alcohol warmth. May have a slight astringency from dark malts, although this character should not be strong.", + "comments": "Although a rather broad style open to brewer interpretation. Dark malt intensity and flavor can vary significantly. May or may not have a strong hop character, and may or may not have significant fermentation by-products; thus may seem to have an \"American\" or \"British\" character.", + "history": "A stronger, more aggressive version of pre-prohibition porters and/or English porters developed in the modern craft beer era. Historical versions existed, particularly on the US East Coast, some of which are still being produced (see the Historical Beer, Pre-Prohibition Porter). This style describes the modern craft version.", + "style_comparison": null, + "tags": "standard-strength, dark-color, top-fermented, north-america, craft-style, porter-family, bitter, roasty, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "50.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01200", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "22.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "May contain several malts, prominently dark malts, which often include black malt (chocolate malt is also often used). American hops typically used for bittering, but US or UK finishing hops can be used; a clashing citrus quality is generally undesirable. Ale yeast can either be clean US versions or characterful English varieties.", + "examples": "Anchor Porter, Boulevard Bully! Porter, Deschutes Black Butte Porter, Founders Porter, Great Lakes Edmund Fitzgerald Porter, Smuttynose Robust Porter, Sierra Nevada Porter", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A substantial, malty dark beer with a complex and flavorful dark malt character. A stronger, more aggressive version of pre-prohibition porters and/or English porters developed in the modern craft beer era. Historical versions existed, particularly on the US East Coast, some of which are still being produced (see the Historical Beer, Pre-Prohibition Porter). This style describes the modern craft version.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Medium-light to medium-strong dark malt aroma, often with a lightly burnt character. Optionally may also show some additional malt character in support (grainy, bready, toffee-like, caramelly, chocolate, coffee, rich, and/or sweet). Hop aroma low to high, often with a resiny, earthy, or floral character. May be dry-hopped. Fruity esters are moderate to none. Medium brown to very dark brown, often with ruby- or garnet-like highlights. Can approach black in color. Clarity may be difficult to discern in such a dark beer, but when not opaque will be clear (particularly when held up to the light). Full, tan-colored head with moderately good head retention.Moderately strong malt flavor usually features a lightly burnt malt character (and sometimes chocolate and/or coffee flavors) with a bit of grainy, dark malt dryness in the finish. Overall flavor may finish from dry to medium-sweet. May have a sharp character from dark roasted grains, but should not be overly acrid, burnt or harsh. Medium to high bitterness, which can be accentuated by the dark malt. Hop flavor can vary from low to high with a resiny, earthy, or floral character, and balances the dark malt flavors. The dark malt and hops should not clash. Dry-hopped versions may have a resiny flavor. Fruity esters moderate to none. Medium to medium-full body. Moderately low to moderately high carbonation. Stronger versions may have a slight alcohol warmth. May have a slight astringency from dark malts, although this character should not be strong. Although a rather broad style open to brewer interpretation. Dark malt intensity and flavor can vary significantly. May or may not have a strong hop character, and may or may not have significant fermentation by-products; thus may seem to have an \"American\" or \"British\" character.", + "comparison": "More bitter and often stronger with more dark malt qualities and dryness than English Porters or Pre-Prohibition Porters. Less strong and assertive than American Stouts." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 168, + "fields": { + "name": "American Stout", + "category": "American Porter And Stout", + "category_id": "20", + "style_id": "20B", + "category_description": null, + "overall_impression": "A fairly strong, highly roasted, bitter, hoppy dark stout. Has the body and dark flavors typical of stouts with a more aggressive American hop character and bitterness.", + "aroma": "Moderate to strong aroma of roasted malts, often having a roasted coffee or dark chocolate quality. Burnt or charcoal aromas are acceptable at low levels. Medium to very low hop aroma, often with a citrusy or resiny character. Medium to no esters. Light alcohol-derived aromatics are also optional.", + "appearance": "Generally a jet black color, although some may appear very dark brown. Large, persistent head of light tan to light brown in color. Usually opaque.", + "flavor": "Moderate to very high roasted malt flavors, often tasting of coffee, roasted coffee beans, dark or bittersweet chocolate. May have the flavor of slightly burnt coffee grounds, but this character should not be prominent. Low to medium malt sweetness, often with rich chocolate or caramel flavors. Medium to high bitterness. Low to high hop flavor, generally citrusy or resiny. Low to no esters. Medium to dry finish, occasionally with a lightly burnt quality. Alcohol flavors can be present up to medium levels, but smooth.", + "mouthfeel": "Medium to full body. Can be somewhat creamy, particularly if a small amount of oats have been used to enhance mouthfeel. Can have a bit of roast-derived astringency, but this character should not be excessive. Medium-high to high carbonation. Light to moderately strong alcohol warmth, but smooth and not excessively hot.", + "comments": "Breweries express individuality through varying the roasted malt profile, malt sweetness and flavor, and the amount of finishing hops used. Generally has bolder roasted malt flavors and hopping than other traditional stouts (except Imperial Stouts).", + "history": "A modern craft beer and homebrew style that applied an aggressive American hopping regime to a strong traditional English or Irish stout. The homebrew version was previously known as West Coast Stout, which is a common naming scheme for a more highly-hopped beer.", + "style_comparison": null, + "tags": "high-strength, dark-color, top-fermented, north-america, craft-style, stout-family, bitter, roasty, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "35.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "75.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "30.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Common American base malts and yeast. Varied use of dark and roasted malts, as well as caramel-type malts. Adjuncts such as oatmeal may be present in low quantities. American hop varieties.", + "examples": "Avery Out of Bounds Stout, Deschutes Obsidian Stout, North Coast Old No. 38, Rogue Shakespeare Stout, Sierra Nevada Stout", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A fairly strong, highly roasted, bitter, hoppy dark stout. Has the body and dark flavors typical of stouts with a more aggressive American hop character and bitterness. A modern craft beer and homebrew style that applied an aggressive American hopping regime to a strong traditional English or Irish stout. The homebrew version was previously known as West Coast Stout, which is a common naming scheme for a more highly-hopped beer.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate to strong aroma of roasted malts, often having a roasted coffee or dark chocolate quality. Burnt or charcoal aromas are acceptable at low levels. Medium to very low hop aroma, often with a citrusy or resiny character. Medium to no esters. Light alcohol-derived aromatics are also optional. Generally a jet black color, although some may appear very dark brown. Large, persistent head of light tan to light brown in color. Usually opaque.Moderate to very high roasted malt flavors, often tasting of coffee, roasted coffee beans, dark or bittersweet chocolate. May have the flavor of slightly burnt coffee grounds, but this character should not be prominent. Low to medium malt sweetness, often with rich chocolate or caramel flavors. Medium to high bitterness. Low to high hop flavor, generally citrusy or resiny. Low to no esters. Medium to dry finish, occasionally with a lightly burnt quality. Alcohol flavors can be present up to medium levels, but smooth. Medium to full body. Can be somewhat creamy, particularly if a small amount of oats have been used to enhance mouthfeel. Can have a bit of roast-derived astringency, but this character should not be excessive. Medium-high to high carbonation. Light to moderately strong alcohol warmth, but smooth and not excessively hot. Breweries express individuality through varying the roasted malt profile, malt sweetness and flavor, and the amount of finishing hops used. Generally has bolder roasted malt flavors and hopping than other traditional stouts (except Imperial Stouts).", + "comparison": "Like a hoppy, bitter, strongly roasted Extra or Export Stout. Much more roast and body than a Black IPA. Bigger, stronger versions belong in the Russian Imperial Stout style. Stronger and more assertive, particularly in the dark malt/grain additions and hop character, than American Porter." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 169, + "fields": { + "name": "Imperial Stout", + "category": "American Porter And Stout", + "category_id": "20", + "style_id": "20C", + "category_description": null, + "overall_impression": "An intensely-flavored, big, dark ale with a wide range of flavor balances and regional interpretations. Roasty-burnt malt with deep dark or dried fruit flavors, and a warming, bittersweet finish. Despite the intense flavors, the components need to meld together to create a complex, harmonious beer, not a hot mess.", + "aroma": "Rich and complex, with variable amounts of roasted grains, maltiness, fruity esters, hops, and alcohol. The roasted malt character can take on coffee, dark chocolate, or slightly burnt tones and can be light to moderately strong. The malt aroma can be subtle to rich and barleywine-like. May optionally show a slight specialty malt character (e.g., caramel), but this should only add complexity and not dominate. Fruity esters may be low to moderately strong, and may take on a complex, dark fruit (e.g., plums, prunes, raisins) character. Hop aroma can be very low to quite aggressive, and may contain any hop variety. An alcohol character may be present, but shouldn't be sharp, hot, or solventy. Aged versions may have a slight vinous or port-like quality, but shouldn't be sour. The balance can vary with any of the aroma elements taking center stage. Not all possible aromas described need be present; many interpretations are possible. Aging affects the intensity, balance and smoothness of aromatics.", + "appearance": "Color may range from very dark reddish-brown to jet black. Opaque. Deep tan to dark brown head. Generally has a well-formed head, although head retention may be low to moderate. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.", + "flavor": "Rich, deep, complex and frequently quite intense, with variable amounts of roasted malt/grains, maltiness, fruity esters, hop bitterness and flavor, and alcohol. Medium to aggressively high bitterness. Medium-low to high hop flavor (any variety). Moderate to aggressively high roasted malt/grain flavors can suggest bittersweet or unsweetened chocolate, cocoa, and/or strong coffee. A slightly burnt grain, burnt currant or tarry character may be evident. Fruity esters may be low to intense, and can take on a dark fruit character (raisins, plums, or prunes). Malt backbone can be balanced and supportive to rich and barleywine-like, and may optionally show some supporting caramel, bready or toasty flavors. The palate and finish can vary from relatively dry to moderately sweet, usually with some lingering roastiness, hop bitterness and warming character. The balance and intensity of flavors can be affected by aging, with some flavors becoming more subdued over time and some aged, vinous or port-like qualities developing.", + "mouthfeel": "Full to very full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). Gentle smooth warmth from alcohol should be present and noticeable, but not a primary characteristic; in well-conditioned versions, the alcohol can be deceptive. Should not be syrupy or under-attenuated. Carbonation may be low to moderate, depending on age and conditioning.", + "comments": "Traditionally an English style, but it is currently much more popular and widely available in America where it is a craft beer favorite, not a curiosity. Variations exist, with English and American interpretations (predictably, the American versions have more bitterness, roasted character, and finishing hops, while the English varieties reflect a more complex specialty malt character and a more forward ester profile). Not all Imperial Stouts have a clearly ‘English' or ‘American' character; anything in between the two variants are allowable as well, which is why it is counter-productive to designate a sub-type when entering a competition. The wide range of allowable characteristics allow for maximum brewer creativity. Judges must be aware of the broad range of the style, and not try to judge all examples as clones of a specific commercial beer.", + "history": "A style with a long, although not necessarily continuous, heritage. Traces roots to strong English porters brewed for export in the 1700s, and said to have been popular with the Russian Imperial Court. After the Napoleonic wars interrupted trade, these beers were increasingly sold in England. The style eventually all but died out, until being popularly embraced in the modern craft beer era, both in England as a revival and in the United States as a reinterpretation or re-imagination by extending the style with American characteristics.", + "style_comparison": null, + "tags": "very-high-strength, dark-color, top-fermented, british-isles, north-america, traditional-style, craft-style, stout-family, malty, bitter, roasty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.11500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "50.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "90.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.03000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "8.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "12.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "30.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "40.00000", + "ingredients": "Well-modified pale malt, with generous quantities of roasted malts and/or grain. May have a complex grain bill using virtually any variety of malt. Any type of hops may be used. American or English ale yeast.", + "examples": "American –Bell's Expedition Stout, Cigar City Marshal Zhukov's Imperial Stout, Great Divide Yeti Imperial Stout, North Coast Old Rasputin Imperial Stout, Sierra Nevada Narwhal Imperial Stout; English – Courage Imperial Russian Stout, Le Coq Imperial Extra Double Stout, Samuel Smith Imperial Stout", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "An intensely-flavored, big, dark ale with a wide range of flavor balances and regional interpretations. Roasty-burnt malt with deep dark or dried fruit flavors, and a warming, bittersweet finish. Despite the intense flavors, the components need to meld together to create a complex, harmonious beer, not a hot mess. A style with a long, although not necessarily continuous, heritage. Traces roots to strong English porters brewed for export in the 1700s, and said to have been popular with the Russian Imperial Court. After the Napoleonic wars interrupted trade, these beers were increasingly sold in England. The style eventually all but died out, until being popularly embraced in the modern craft beer era, both in England as a revival and in the United States as a reinterpretation or re-imagination by extending the style with American characteristics.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Rich and complex, with variable amounts of roasted grains, maltiness, fruity esters, hops, and alcohol. The roasted malt character can take on coffee, dark chocolate, or slightly burnt tones and can be light to moderately strong. The malt aroma can be subtle to rich and barleywine-like. May optionally show a slight specialty malt character (e.g., caramel), but this should only add complexity and not dominate. Fruity esters may be low to moderately strong, and may take on a complex, dark fruit (e.g., plums, prunes, raisins) character. Hop aroma can be very low to quite aggressive, and may contain any hop variety. An alcohol character may be present, but shouldn't be sharp, hot, or solventy. Aged versions may have a slight vinous or port-like quality, but shouldn't be sour. The balance can vary with any of the aroma elements taking center stage. Not all possible aromas described need be present; many interpretations are possible. Aging affects the intensity, balance and smoothness of aromatics. Color may range from very dark reddish-brown to jet black. Opaque. Deep tan to dark brown head. Generally has a well-formed head, although head retention may be low to moderate. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.Rich, deep, complex and frequently quite intense, with variable amounts of roasted malt/grains, maltiness, fruity esters, hop bitterness and flavor, and alcohol. Medium to aggressively high bitterness. Medium-low to high hop flavor (any variety). Moderate to aggressively high roasted malt/grain flavors can suggest bittersweet or unsweetened chocolate, cocoa, and/or strong coffee. A slightly burnt grain, burnt currant or tarry character may be evident. Fruity esters may be low to intense, and can take on a dark fruit character (raisins, plums, or prunes). Malt backbone can be balanced and supportive to rich and barleywine-like, and may optionally show some supporting caramel, bready or toasty flavors. The palate and finish can vary from relatively dry to moderately sweet, usually with some lingering roastiness, hop bitterness and warming character. The balance and intensity of flavors can be affected by aging, with some flavors becoming more subdued over time and some aged, vinous or port-like qualities developing. Full to very full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). Gentle smooth warmth from alcohol should be present and noticeable, but not a primary characteristic; in well-conditioned versions, the alcohol can be deceptive. Should not be syrupy or under-attenuated. Carbonation may be low to moderate, depending on age and conditioning. Traditionally an English style, but it is currently much more popular and widely available in America where it is a craft beer favorite, not a curiosity. Variations exist, with English and American interpretations (predictably, the American versions have more bitterness, roasted character, and finishing hops, while the English varieties reflect a more complex specialty malt character and a more forward ester profile). Not all Imperial Stouts have a clearly ‘English' or ‘American' character; anything in between the two variants are allowable as well, which is why it is counter-productive to designate a sub-type when entering a competition. The wide range of allowable characteristics allow for maximum brewer creativity. Judges must be aware of the broad range of the style, and not try to judge all examples as clones of a specific commercial beer.", + "comparison": "Like a black barleywine with every dimension of flavor coming into play. More complex, with a broader range of possible flavors than lower-gravity stouts." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 170, + "fields": { + "name": "American IPA", + "category": "IPA", + "category_id": "21", + "style_id": "21A", + "category_description": null, + "overall_impression": "A decidedly hoppy and bitter, moderately strong American pale ale, showcasing modern American or New World hop varieties. The balance is hop-forward, with a clean fermentation profile, dryish finish, and clean, supporting malt allowing a creative range of hop character to shine through.", + "aroma": "A prominent to intense hop aroma featuring one or more characteristics of American or New World hops, such as citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc. Many versions are dry hopped and can have an additional fresh hop aroma; this is desirable but not required. Grassiness should be minimal, if present. A low to medium-low clean, grainy-malty aroma may be found in the background. Fruitiness from yeast may also be detected in some versions, although a neutral fermentation character is also acceptable. A restrained alcohol note may be present, but this character should be minimal at best. Any American or New World hop character is acceptable; new hop varieties continue to be released and should not constrain this style.", + "appearance": "Color ranges from medium gold to light reddish-amber. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Medium-sized, white to off-white head with good persistence.", + "flavor": "Hop flavor is medium to very high, and should reflect an American or New World hop character, such as citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc. Medium-high to very high hop bitterness. Malt flavor should be low to medium-low, and is generally clean and grainy-malty although some light caramel or toasty flavors are acceptable. Low yeast-derived fruitiness is acceptable but not required. Dry to medium-dry finish; residual sweetness should be low to none. The bitterness and hop flavor may linger into the aftertaste but should not be harsh. A very light, clean alcohol flavor may be noted in stronger versions. May be slightly sulfury, but most examples do not exhibit this character.", + "mouthfeel": "Medium-light to medium body, with a smooth texture. Medium to medium-high carbonation. No harsh hop-derived astringency. Very light, smooth alcohol warming not a fault if it does not intrude into overall balance.", + "comments": "A modern American craft beer interpretation of the historical English style, brewed using American ingredients and attitude. The basis for many modern variations, including the stronger Double IPA as well as IPAs with various other ingredients. Those other IPAs should generally be entered in the Specialty IPA style. Oak is inappropriate in this style; if noticeably oaked, enter in wood-aged category.", + "history": "The first modern American craft beer example is generally believed to be Anchor Liberty Ale, first brewed in 1975 and using whole Cascade hops; the style has pushed beyond that original beer, which now tastes more like an American Pale Ale in comparison. American-made IPAs from earlier eras were not unknown (particularly the well-regarded Ballantine's IPA, an oak-aged beer using an old English recipe). This style is based on the modern craft beer examples.", + "style_comparison": null, + "tags": "high-strength, pale-color, top-fermented, north-america, craft-style, ipa-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "40.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "70.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Pale ale or 2-row brewers malt as the base, American or New World hops, American or English yeast with a clean or slightly fruity profile. Generally all-malt, but mashed at lower temperatures for high attenuation. Sugar additions to aid attenuation are acceptable. Restrained use of crystal malts, if any, as high amounts can lead to a sweet finish and clash with the hop character.", + "examples": "Alpine Duet, Bell's Two-Hearted Ale, Fat Heads Head Hunter IPA, Firestone Walker Union Jack, Lagunitas IPA, Russian River Blind Pig IPA, Stone IPA", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A decidedly hoppy and bitter, moderately strong American pale ale, showcasing modern American or New World hop varieties. The balance is hop-forward, with a clean fermentation profile, dryish finish, and clean, supporting malt allowing a creative range of hop character to shine through. The first modern American craft beer example is generally believed to be Anchor Liberty Ale, first brewed in 1975 and using whole Cascade hops; the style has pushed beyond that original beer, which now tastes more like an American Pale Ale in comparison. American-made IPAs from earlier eras were not unknown (particularly the well-regarded Ballantine's IPA, an oak-aged beer using an old English recipe). This style is based on the modern craft beer examples.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "A prominent to intense hop aroma featuring one or more characteristics of American or New World hops, such as citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc. Many versions are dry hopped and can have an additional fresh hop aroma; this is desirable but not required. Grassiness should be minimal, if present. A low to medium-low clean, grainy-malty aroma may be found in the background. Fruitiness from yeast may also be detected in some versions, although a neutral fermentation character is also acceptable. A restrained alcohol note may be present, but this character should be minimal at best. Any American or New World hop character is acceptable; new hop varieties continue to be released and should not constrain this style. Color ranges from medium gold to light reddish-amber. Should be clear, although unfiltered dry-hopped versions may be a bit hazy. Medium-sized, white to off-white head with good persistence.Hop flavor is medium to very high, and should reflect an American or New World hop character, such as citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc. Medium-high to very high hop bitterness. Malt flavor should be low to medium-low, and is generally clean and grainy-malty although some light caramel or toasty flavors are acceptable. Low yeast-derived fruitiness is acceptable but not required. Dry to medium-dry finish; residual sweetness should be low to none. The bitterness and hop flavor may linger into the aftertaste but should not be harsh. A very light, clean alcohol flavor may be noted in stronger versions. May be slightly sulfury, but most examples do not exhibit this character. Medium-light to medium body, with a smooth texture. Medium to medium-high carbonation. No harsh hop-derived astringency. Very light, smooth alcohol warming not a fault if it does not intrude into overall balance. A modern American craft beer interpretation of the historical English style, brewed using American ingredients and attitude. The basis for many modern variations, including the stronger Double IPA as well as IPAs with various other ingredients. Those other IPAs should generally be entered in the Specialty IPA style. Oak is inappropriate in this style; if noticeably oaked, enter in wood-aged category.", + "comparison": "Stronger and more highly hopped than an American Pale Ale. Compared to an English IPA, has less of the \"English\" character from malt, hops, and yeast (less caramel, bread, and toast; more American/New World hops than English; less yeast-derived esters), less body, and often has a more hoppy balance and is slightly stronger than most examples. Less alcohol than a Double IPA, but with a similar balance." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 171, + "fields": { + "name": "Specialty IPA", + "category": "IPA", + "category_id": "21", + "style_id": "21B", + "category_description": null, + "overall_impression": "Recognizable as an IPA by balance – a hop-forward, bitter, dryish beer – with something else present to distinguish it from the standard categories. Should have good drinkability, regardless of the form. Excessive harshness and heaviness are typically faults, as are strong flavor clashes between the hops and the other specialty ingredients.", + "aroma": "Detectable hop aroma is required; characterization of hops is dependent on the specific type of Specialty IPA. Other aromatics may be present; hop aroma is typically the strongest element.", + "appearance": "Color depends on specific type of Specialty IPA. Most should be clear, although certain styles with high amounts of starchy adjuncts, or unfiltered dry-hopped versions may be slightly hazy. Darker types can be opaque making clarity irrelevant. Good, persistent head stand with color dependent on the specific type of Specialty IPA.", + "flavor": "Hop flavor is typically medium-low to high, with qualities dependent on typical varieties used in the specific Specialty IPA. Hop bitterness is typically medium-high to very high, with qualities dependent on typical varieties used in the specific Specialty IPA. Malt flavor generally low to medium, with qualities dependent on typical varieties used in the specific Specialty IPA. Commonly will have a medium-dry to dry finish. Some clean alcohol flavor can be noted in stronger versions. Various types of Specialty IPAs can show additional malt and yeast characteristics, depending on the type.", + "mouthfeel": "Smooth, medium-light to medium-bodied mouthfeel. Medium carbonation. Some smooth alcohol warming can be sensed in stronger versions.", + "comments": "The choice of yeast strain and hop varieties is critical since many choices will horribly clash.", + "history": "A relatively new style, started showing up in the mid 2000s. Homebrewers and microbreweries simply substituted Belgian yeast in their American IPA recipes. Belgian breweries added more hops to their tripel and pale ale recipes.", + "style_comparison": null, + "tags": "high-strength, pale-color, top-fermented, north-america, craft-style, ipa-family, specialty-family, bitter, hoppy", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Belgian yeast strains used in making tripels and golden strong ales. American examples tend to use American or New World hops while Belgian versions tend to use European hops and only pale malt.", + "examples": "Brewery Vivant Triomphe, Houblon Chouffe, Epic Brainless IPA, Green Flash Le Freak, Stone Cali-Belgique, Urthel Hop It", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "Entrant must specify a strength (session, standard, double); if no strength is specified, standard will be assumed. Entrant must specify specific type of Specialty IPA from the library of known types listed in the Style Guidelines, or as amended by the BJCP web site; or the entrant must describe the type of Specialty IPA and its key characteristics in comment form so judges will know what to expect. Entrants may specify specific hop varieties used, if entrants feel that judges may not recognize the varietal characteristics of newer hops. Entrants may specify a combination of defined IPA types (e.g., Black Rye IPA) without providing additional descriptions. Entrants may use this category for a different strength version of an IPA defined by its own BJCP subcategory (e.g., session-strength American or English IPA) – except where an existing BJCP subcategory already exists for that style (e.g., double [American] IPA). Currently Defined Types: Black IPA, Brown IPA, White IPA, Rye IPA, Belgian IPA, Red IPA\n \n ", + "notes": "Recognizable as an IPA by balance – a hop-forward, bitter, dryish beer – with something else present to distinguish it from the standard categories. Should have good drinkability, regardless of the form. Excessive harshness and heaviness are typically faults, as are strong flavor clashes between the hops and the other specialty ingredients. A relatively new style, started showing up in the mid 2000s. Homebrewers and microbreweries simply substituted Belgian yeast in their American IPA recipes. Belgian breweries added more hops to their tripel and pale ale recipes.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Detectable hop aroma is required; characterization of hops is dependent on the specific type of Specialty IPA. Other aromatics may be present; hop aroma is typically the strongest element. Color depends on specific type of Specialty IPA. Most should be clear, although certain styles with high amounts of starchy adjuncts, or unfiltered dry-hopped versions may be slightly hazy. Darker types can be opaque making clarity irrelevant. Good, persistent head stand with color dependent on the specific type of Specialty IPA.Hop flavor is typically medium-low to high, with qualities dependent on typical varieties used in the specific Specialty IPA. Hop bitterness is typically medium-high to very high, with qualities dependent on typical varieties used in the specific Specialty IPA. Malt flavor generally low to medium, with qualities dependent on typical varieties used in the specific Specialty IPA. Commonly will have a medium-dry to dry finish. Some clean alcohol flavor can be noted in stronger versions. Various types of Specialty IPAs can show additional malt and yeast characteristics, depending on the type. Smooth, medium-light to medium-bodied mouthfeel. Medium carbonation. Some smooth alcohol warming can be sensed in stronger versions. The choice of yeast strain and hop varieties is critical since many choices will horribly clash.", + "comparison": "A cross between an American IPA/Imperial IPA with a Belgian Golden Strong Ale or Tripel. This style is may be spicier, stronger, drier and more fruity than an American IPA." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 172, + "fields": { + "name": "Double IPA", + "category": "Strong American Ale", + "category_id": "22", + "style_id": "22A", + "category_description": null, + "overall_impression": "An intensely hoppy, fairly strong pale ale without the big, rich, complex maltiness and residual sweetness and body of an American barleywine. Strongly hopped, but clean, dry, and lacking harshness. Drinkability is an important characteristic; this should not be a heavy, sipping beer.", + "aroma": "A prominent to intense hop aroma that typically showcases American or New World hop characteristics (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc.). Most versions are dry hopped and can have an additional resinous or grassy aroma, although this is not absolutely required. Some clean malty sweetness may be found in the background. Fruitiness, either from esters or hops, may also be detected in some versions, although a neutral fermentation character is typical. Some alcohol can usually be noted, but it should not have a \"hot\" character.", + "appearance": "Color ranges from golden to light orange-copper; most modern versions are fairly pale. Good clarity, although unfiltered dry-hopped versions may be a bit hazy. Moderate-sized, persistent, white to off-white head.", + "flavor": "Hop flavor is strong and complex, and can reflect the characteristics of modern American or New World hop varieties (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc.). High to absurdly high hop bitterness. Low to medium malt flavor, generally clean and grainy-malty although low levels of caramel or toasty flavors are acceptable. Low to medium fruitiness is acceptable but not required. A long, lingering bitterness is usually present in the aftertaste but should not be harsh. Dry to medium-dry finish; should not finish sweet or heavy. A light, clean, smooth alcohol flavor is not a fault. Oak is inappropriate in this style. May be slightly sulfury, but most examples do not exhibit this character.", + "mouthfeel": "Medium-light to medium body, with a smooth texture. Medium to medium-high carbonation. No harsh hop-derived astringency. Restrained, smooth alcohol warming acceptable.", + "comments": "A showcase for hops, yet remaining quite drinkable. The adjective \"double\" is arbitrary and simply implies a stronger version of an IPA; \"imperial,\" \"extra,\" \"extreme,\" or any other variety of adjectives would be equally valid, although the modern American market seems to have now coalesced around the \"double\" term.", + "history": "An American craft beer innovation first developed in the mid-late 1990s reflecting the trend of American craft brewers \"pushing the envelope\" to satisfy the need of hop aficionados for increasingly intense products. Became more mainstream and popular throughout the 2000s, and inspired additional IPA creativity.", + "style_comparison": null, + "tags": "very-high-strength, pale-color, top-fermented, north-america, craft-style, ipa-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.08500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "60.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "120.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "7.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "10.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Clean 2-row malt is typical as a base grain; an excessively complex grist can be distracting. Crystal-type malts often muddy the hop flavors, and are generally considered undesirable in significant quantities. Sugar or other highly fermentable adjuncts are often used to increase attenuation, as are lower-temperature mash rests. Can use a complex variety of hops, typically American or New World, often with cutting-edge profiles providing distinctive differences. Modern hops with unusual characteristics are not out of style. American yeast that can give a clean or slightly fruity profile.", + "examples": "Avery Maharaja, Fat Heads Hop Juju, Firestone Walker Double Jack, Port Brewing Hop 15, Russian River Pliny the Elder, Stone Ruination IPA, Three Floyds Dreadnaught", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "An intensely hoppy, fairly strong pale ale without the big, rich, complex maltiness and residual sweetness and body of an American barleywine. Strongly hopped, but clean, dry, and lacking harshness. Drinkability is an important characteristic; this should not be a heavy, sipping beer. An American craft beer innovation first developed in the mid-late 1990s reflecting the trend of American craft brewers \"pushing the envelope\" to satisfy the need of hop aficionados for increasingly intense products. Became more mainstream and popular throughout the 2000s, and inspired additional IPA creativity.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "A prominent to intense hop aroma that typically showcases American or New World hop characteristics (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc.). Most versions are dry hopped and can have an additional resinous or grassy aroma, although this is not absolutely required. Some clean malty sweetness may be found in the background. Fruitiness, either from esters or hops, may also be detected in some versions, although a neutral fermentation character is typical. Some alcohol can usually be noted, but it should not have a \"hot\" character. Color ranges from golden to light orange-copper; most modern versions are fairly pale. Good clarity, although unfiltered dry-hopped versions may be a bit hazy. Moderate-sized, persistent, white to off-white head.Hop flavor is strong and complex, and can reflect the characteristics of modern American or New World hop varieties (citrus, floral, pine, resinous, spicy, tropical fruit, stone fruit, berry, melon, etc.). High to absurdly high hop bitterness. Low to medium malt flavor, generally clean and grainy-malty although low levels of caramel or toasty flavors are acceptable. Low to medium fruitiness is acceptable but not required. A long, lingering bitterness is usually present in the aftertaste but should not be harsh. Dry to medium-dry finish; should not finish sweet or heavy. A light, clean, smooth alcohol flavor is not a fault. Oak is inappropriate in this style. May be slightly sulfury, but most examples do not exhibit this character. Medium-light to medium body, with a smooth texture. Medium to medium-high carbonation. No harsh hop-derived astringency. Restrained, smooth alcohol warming acceptable. A showcase for hops, yet remaining quite drinkable. The adjective \"double\" is arbitrary and simply implies a stronger version of an IPA; \"imperial,\" \"extra,\" \"extreme,\" or any other variety of adjectives would be equally valid, although the modern American market seems to have now coalesced around the \"double\" term.", + "comparison": "Bigger than either an English or American IPA in both alcohol strength and overall hop level (bittering and finish). Less malty, lower body, less rich and a greater overall hop intensity than an American Barleywine. Typically not as high in gravity/alcohol as a barleywine, since high alcohol and malt tend to limit drinkability." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 173, + "fields": { + "name": "American Strong Ale", + "category": "Strong American Ale", + "category_id": "22", + "style_id": "22B", + "category_description": null, + "overall_impression": "A strong, full-flavored American ale that challenges and rewards the palate with full malty and hoppy flavors and substantial bitterness. The flavors are bold but complementary, and are stronger and richer than average-strength pale and amber American ales.", + "aroma": "Medium to high hop aroma, most often presenting citrusy or resiny notes although characteristics associated with other American or New World varieties may be found (tropical, stone fruit, melon, etc.). Moderate to bold maltiness supports hop profile, with medium to dark caramel a common presence, bready or toasty possible and background notes of light roast and/or chocolate noticeable in some examples. Generally exhibits clean to moderately fruity ester profile. Moderate alcohol aromatics may be noticeable, but should not be hot, harsh, or solventy.", + "appearance": "Medium amber to deep copper or light brown. Moderate-low to medium-sized off-white to light tan head; may have low head retention. Good clarity. Alcohol level and viscosity may present \"legs\" when glass is swirled.", + "flavor": "Medium to high dextrinous malt with a full range of caramel, toffee, dark fruit flavors. Low to medium toasty, bready, or Maillard-rich malty flavors are optional, and can add complexity. Medium-high to high hop bitterness. The malt gives a medium to high sweet impression on the palate, although the finish may be slightly sweet to somewhat dry. Moderate to high hop flavor. Low to moderate fruity esters. The hop flavors are similar to the aroma (citrusy, resiny, tropical, stone fruit, melon, etc.). Alcohol presence may be noticeable, but sharp or solventy alcohol flavors are undesirable. Roasted malt flavors are allowable but should be a background note; burnt malt flavors are inappropriate. While strongly malty on the palate, the finish should seem bitter to bittersweet. Should not be syrupy and under-attenuated. The aftertaste typically has malt, hops, and alcohol noticeable.", + "mouthfeel": "Medium to full body. An alcohol warmth may be present, but not be excessively hot. Any astringency present should be attributable to bold hop bitterness and should not be objectionable on the palate. Medium-low to medium carbonation.", + "comments": "A fairly broad style that can describe beers labeled in various ways, including modern Double/Imperial Red/Amber Ales and other strong, malty-but-hoppy beers that aren't quite in the Barleywine class. Diverse enough to include what may be viewed as a strong American Amber Ale with room for more interpretations of other \"Imperial\" versions of lower gravity American Ale styles. Many \"East Coast\" type IPAs might fit better in this category if they have considerable crystal malt or otherwise more of a malty-sweet finish.", + "history": "While modern craft versions were developed as \"imperial\" strength versions of American amber or red ales, the style has much in common with historic American stock ales. Strong, malty beers were highly hopped to keep as provision beers prior to prohibition. There is no continuous legacy of brewing stock ales in this manner, but the resemblance is considerable. Stone Arrogant Bastard was born out of a batch of pale ale that was mistakenly made with excess ingredients, thus creating what may have been the prototype for the imperial amber/red ale. Great Lakes first brewed Nosferatu in the early 1990s and called it a stock ale, although they now call it an imperial red ale. So whether by direct historical inspiration or by accident, the style developed independently in the craft beer era and has subsequently become quite popular.", + "style_comparison": null, + "tags": "high-strength, amber-color, top-fermented, north-america, craft-style, strong-ale-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.09000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "50.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "100.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01400", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.30000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "10.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "7.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "19.00000", + "ingredients": "Well-modified pale malt as a base; some character malts would be appropriate, medium to dark crystal malts are typical. Citrusy or piney American hops are common, although any American or New World varieties can be used in quantity, provided they do not clash with the malt character. Generally uses an attenuative American yeast.", + "examples": "Bear Republic Red Rocket Ale, Great Lakes Nosferatu, Terrapin Big Hoppy Monster, Port Brewing Shark Attack Double Red, Stone Arrogant Bastard,", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A strong, full-flavored American ale that challenges and rewards the palate with full malty and hoppy flavors and substantial bitterness. The flavors are bold but complementary, and are stronger and richer than average-strength pale and amber American ales. While modern craft versions were developed as \"imperial\" strength versions of American amber or red ales, the style has much in common with historic American stock ales. Strong, malty beers were highly hopped to keep as provision beers prior to prohibition. There is no continuous legacy of brewing stock ales in this manner, but the resemblance is considerable. Stone Arrogant Bastard was born out of a batch of pale ale that was mistakenly made with excess ingredients, thus creating what may have been the prototype for the imperial amber/red ale. Great Lakes first brewed Nosferatu in the early 1990s and called it a stock ale, although they now call it an imperial red ale. So whether by direct historical inspiration or by accident, the style developed independently in the craft beer era and has subsequently become quite popular.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Medium to high hop aroma, most often presenting citrusy or resiny notes although characteristics associated with other American or New World varieties may be found (tropical, stone fruit, melon, etc.). Moderate to bold maltiness supports hop profile, with medium to dark caramel a common presence, bready or toasty possible and background notes of light roast and/or chocolate noticeable in some examples. Generally exhibits clean to moderately fruity ester profile. Moderate alcohol aromatics may be noticeable, but should not be hot, harsh, or solventy. Medium amber to deep copper or light brown. Moderate-low to medium-sized off-white to light tan head; may have low head retention. Good clarity. Alcohol level and viscosity may present \"legs\" when glass is swirled.Medium to high dextrinous malt with a full range of caramel, toffee, dark fruit flavors. Low to medium toasty, bready, or Maillard-rich malty flavors are optional, and can add complexity. Medium-high to high hop bitterness. The malt gives a medium to high sweet impression on the palate, although the finish may be slightly sweet to somewhat dry. Moderate to high hop flavor. Low to moderate fruity esters. The hop flavors are similar to the aroma (citrusy, resiny, tropical, stone fruit, melon, etc.). Alcohol presence may be noticeable, but sharp or solventy alcohol flavors are undesirable. Roasted malt flavors are allowable but should be a background note; burnt malt flavors are inappropriate. While strongly malty on the palate, the finish should seem bitter to bittersweet. Should not be syrupy and under-attenuated. The aftertaste typically has malt, hops, and alcohol noticeable. Medium to full body. An alcohol warmth may be present, but not be excessively hot. Any astringency present should be attributable to bold hop bitterness and should not be objectionable on the palate. Medium-low to medium carbonation. A fairly broad style that can describe beers labeled in various ways, including modern Double/Imperial Red/Amber Ales and other strong, malty-but-hoppy beers that aren't quite in the Barleywine class. Diverse enough to include what may be viewed as a strong American Amber Ale with room for more interpretations of other \"Imperial\" versions of lower gravity American Ale styles. Many \"East Coast\" type IPAs might fit better in this category if they have considerable crystal malt or otherwise more of a malty-sweet finish.", + "comparison": "Generally not as strong and as rich as an American Barleywine. More malt balanced than an American or Double IPA with more American hop intensity than an English Strong Ale style would tolerate." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 174, + "fields": { + "name": "American Barleywine", + "category": "Strong American Ale", + "category_id": "22", + "style_id": "22C", + "category_description": null, + "overall_impression": "A well-hopped American interpretation of the richest and strongest of the English ales. The hop character should be evident throughout, but does not have to be unbalanced. The alcohol strength and hop bitterness often combine to leave a very long finish.", + "aroma": "Hop character moderate to assertive and often showcases citrusy, fruity, or resiny New World varieties (although other varieties, such as floral, earthy or spicy English varieties or a blend of varieties, may be used). Rich maltiness, with a character that may be sweet, caramelly, bready, or fairly neutral. Low to moderately-strong fruity esters and alcohol aromatics. However, the intensity of aromatics often subsides with age. Hops tend to be nearly equal to malt in the aroma, with alcohol and esters far behind.", + "appearance": "Color may range from light amber to medium copper; may rarely be as dark as light brown. Often has ruby highlights. Moderately-low to large off-white to light tan head; may have low head retention. May be cloudy with chill haze at cooler temperatures, but generally clears to good to brilliant clarity as it warms. The color may appear to have great depth, as if viewed through a thick glass lens. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.", + "flavor": "Strong, rich malt flavor with a noticeable hop flavor and bitterness in the balance. Moderately-low to moderately-high malty sweetness on the palate, although the finish may be somewhat sweet to quite dry (depending on aging). Hop bitterness may range from moderately strong to aggressive. While strongly malty, the balance should always seem bitter. Moderate to high hop flavor (any variety, but often showing a range of New World hop characteristics). Low to moderate fruity esters. Noticeable alcohol presence, but well-integrated. Flavors will smooth out and decline over time, but any oxidized character should be muted (and generally be masked by the hop character). May have some bready or caramelly malt flavors, but these should not be high; roasted or burnt malt flavors are inappropriate.", + "mouthfeel": "Full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). Alcohol warmth should be noticeable but smooth. Should not be syrupy and under-attenuated. Carbonation may be low to moderate, depending on age and conditioning.", + "comments": "Sometimes known as \"Barley Wine\" or \"Barleywine style ale\" (the latter due to legal requirements, not brewery preference).", + "history": "Usually the strongest ale offered by a brewery, often associated with the winter or holiday season and vintage-dated. As with many American craft beer styles, derived from English examples but using American ingredients and featuring a much more forward hop profile. One of the first American craft beer versions was Anchor Old Foghorn, first brewed in 1975. Sierra Nevada Bigfoot, first brewed in 1983, set the standard for the hop-forward style of today. The story goes that when Sierra Nevada first sent Bigfoot out for lab analysis, the lab called and said, \"your barleywine is too bitter\" – to which Sierra Nevada replied, \"thank you.\"", + "style_comparison": null, + "tags": "very-high-strength, amber-color, top-fermented, north-america, craft-style, strong-ale-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.08000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.12000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "50.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "100.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.03000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "8.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "12.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "10.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "19.00000", + "ingredients": "Well-modified pale malt should form the backbone of the grist. Some specialty or character malts may be used. Dark malts should be used with great restraint, if at all, as most of the color arises from a lengthy boil. New World hops are common, although any varieties can be used in quantity. Generally uses an attenuative American ale yeast.", + "examples": "Avery Hog Heaven Barleywine, Anchor Old Foghorn, Great Divide Old Ruffian, Rogue Old Crustacean, Sierra Nevada Bigfoot, Victory Old Horizontal", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A well-hopped American interpretation of the richest and strongest of the English ales. The hop character should be evident throughout, but does not have to be unbalanced. The alcohol strength and hop bitterness often combine to leave a very long finish. Usually the strongest ale offered by a brewery, often associated with the winter or holiday season and vintage-dated. As with many American craft beer styles, derived from English examples but using American ingredients and featuring a much more forward hop profile. One of the first American craft beer versions was Anchor Old Foghorn, first brewed in 1975. Sierra Nevada Bigfoot, first brewed in 1983, set the standard for the hop-forward style of today. The story goes that when Sierra Nevada first sent Bigfoot out for lab analysis, the lab called and said, \"your barleywine is too bitter\" – to which Sierra Nevada replied, \"thank you.\"", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Hop character moderate to assertive and often showcases citrusy, fruity, or resiny New World varieties (although other varieties, such as floral, earthy or spicy English varieties or a blend of varieties, may be used). Rich maltiness, with a character that may be sweet, caramelly, bready, or fairly neutral. Low to moderately-strong fruity esters and alcohol aromatics. However, the intensity of aromatics often subsides with age. Hops tend to be nearly equal to malt in the aroma, with alcohol and esters far behind. Color may range from light amber to medium copper; may rarely be as dark as light brown. Often has ruby highlights. Moderately-low to large off-white to light tan head; may have low head retention. May be cloudy with chill haze at cooler temperatures, but generally clears to good to brilliant clarity as it warms. The color may appear to have great depth, as if viewed through a thick glass lens. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.Strong, rich malt flavor with a noticeable hop flavor and bitterness in the balance. Moderately-low to moderately-high malty sweetness on the palate, although the finish may be somewhat sweet to quite dry (depending on aging). Hop bitterness may range from moderately strong to aggressive. While strongly malty, the balance should always seem bitter. Moderate to high hop flavor (any variety, but often showing a range of New World hop characteristics). Low to moderate fruity esters. Noticeable alcohol presence, but well-integrated. Flavors will smooth out and decline over time, but any oxidized character should be muted (and generally be masked by the hop character). May have some bready or caramelly malt flavors, but these should not be high; roasted or burnt malt flavors are inappropriate. Full-bodied and chewy, with a velvety, luscious texture (although the body may decline with long conditioning). Alcohol warmth should be noticeable but smooth. Should not be syrupy and under-attenuated. Carbonation may be low to moderate, depending on age and conditioning. Sometimes known as \"Barley Wine\" or \"Barleywine style ale\" (the latter due to legal requirements, not brewery preference).", + "comparison": "The American version of the Barleywine tends to have a greater emphasis on hop bitterness, flavor and aroma than the English Barleywine, and often features American hop varieties. Typically paler than the darker English Barleywines (and lacking in the deeper malt flavors) but darker than the golden English Barleywines. Differs from a Double IPA in that the hops are not extreme, the malt is more forward, and the body is fuller and often richer. An American Barleywine typically has more residual sweetness than a Double IPA, which affects the overall drinkability (sipping vs. drinking)." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 175, + "fields": { + "name": "Wheatwine", + "category": "Strong American Ale", + "category_id": "22", + "style_id": "22D", + "category_description": null, + "overall_impression": "A richly textured, high alcohol sipping beer with a significant grainy, bready flavor and sleek body. The emphasis is first on the bready, wheaty flavors with interesting complexity from malt, hops, fruity yeast character and alcohol complexity.", + "aroma": "Hop aroma is mild and can represent just about any late hop aromatic. Moderate to moderately-strong bready, wheaty malt character, often with additional malt complexity such as honey and caramel. A light, clean, alcohol aroma may noted. Low to medium fruity notes may be apparent. Very low levels of diacetyl are acceptable but not required. Weizen yeast character (banana/clove) is inappropriate.", + "appearance": "Color ranges from gold to deep amber, often with garnet or ruby highlights. Low to medium off-white head. The head may have creamy texture, and good retention. Chill haze is allowable, but usually clears up as the beer gets warmer. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.", + "flavor": "Moderate to moderately-high wheaty malt flavor, dominant in the flavor balance over any hop character. Low to moderate bready, toasty, caramel, or honey malt notes are a welcome complexity note, although not required. Hop flavor is low to medium, and can reflect any variety. Moderate to moderately-high fruitiness, often with a dried-fruit character. Hop bitterness may range from low to moderate; balance therefore ranges from malty to evenly balanced. Should not be syrupy and under-attenuated. Some oxidative or vinous flavors may be present, as are light alcohol notes that are clean and smooth but complex. A complementary, supportive oak character is welcome, but not required.", + "mouthfeel": "Medium-full to full bodied and chewy, often with a luscious, velvety texture. Low to moderate carbonation. Light to moderate smooth alcohol warming may also be present.", + "comments": "Dark malts should be used with restraint. Much of the color arises from a lengthy boil. Some commercial examples may be larger than the Vital Statistics, and some may not be brewed every year.", + "history": "A relatively recent American craft beer style that was first brewed at the Rubicon Brewing Company in 1988. Often a winter seasonal, vintage, or one-off release. Breweries frequently experiment with this style, leading to a range of interpretations.", + "style_comparison": null, + "tags": "very-high-strength, amber-color, top-fermented, north-america, craft-style, strong-ale-family, wheat-beer-family, balanced, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.08000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.12000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "30.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "60.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.03000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "8.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "12.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "15.00000", + "ingredients": "Typically brewed with a combination of American two-row and American wheat. Style commonly uses 50% or more wheat malt. Any variety of hops may be used. May be oak-aged.", + "examples": "Rubicon Winter Wheat Wine, Two Brothers Bare Trees Weiss Wine, Smuttynose Wheat Wine, Portsmouth Wheat Wine", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A richly textured, high alcohol sipping beer with a significant grainy, bready flavor and sleek body. The emphasis is first on the bready, wheaty flavors with interesting complexity from malt, hops, fruity yeast character and alcohol complexity. A relatively recent American craft beer style that was first brewed at the Rubicon Brewing Company in 1988. Often a winter seasonal, vintage, or one-off release. Breweries frequently experiment with this style, leading to a range of interpretations.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Hop aroma is mild and can represent just about any late hop aromatic. Moderate to moderately-strong bready, wheaty malt character, often with additional malt complexity such as honey and caramel. A light, clean, alcohol aroma may noted. Low to medium fruity notes may be apparent. Very low levels of diacetyl are acceptable but not required. Weizen yeast character (banana/clove) is inappropriate. Color ranges from gold to deep amber, often with garnet or ruby highlights. Low to medium off-white head. The head may have creamy texture, and good retention. Chill haze is allowable, but usually clears up as the beer gets warmer. High alcohol and viscosity may be visible in \"legs\" when beer is swirled in a glass.Moderate to moderately-high wheaty malt flavor, dominant in the flavor balance over any hop character. Low to moderate bready, toasty, caramel, or honey malt notes are a welcome complexity note, although not required. Hop flavor is low to medium, and can reflect any variety. Moderate to moderately-high fruitiness, often with a dried-fruit character. Hop bitterness may range from low to moderate; balance therefore ranges from malty to evenly balanced. Should not be syrupy and under-attenuated. Some oxidative or vinous flavors may be present, as are light alcohol notes that are clean and smooth but complex. A complementary, supportive oak character is welcome, but not required. Medium-full to full bodied and chewy, often with a luscious, velvety texture. Low to moderate carbonation. Light to moderate smooth alcohol warming may also be present. Dark malts should be used with restraint. Much of the color arises from a lengthy boil. Some commercial examples may be larger than the Vital Statistics, and some may not be brewed every year.", + "comparison": "More than simply a wheat-based barleywine, many versions have very expressive fruity and hoppy notes, while others develop complexity through oak aging. Less emphasis on the hops than American Barleywine. Has roots in American Wheat Beer rather than any German wheat styles, so should not have any German weizen yeast character." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 176, + "fields": { + "name": "Berliner Weisse", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23A", + "category_description": null, + "overall_impression": "A very pale, refreshing, low-alcohol German wheat beer with a clean lactic sourness and a very high carbonation level. A light bread dough malt flavor supports the sourness, which shouldn't seem artificial. Any Brettanomyces funk is restrained.", + "aroma": "A sharply sour character is dominant (moderate to moderately-high). Can have up to a moderately fruity character (often lemony or tart apple). The fruitiness may increase with age and a light flowery character may develop. No hop aroma. The wheat may present as uncooked bread dough in fresher versions; combined with the acidity, may suggest sourdough bread. May optionally have a restrained funky Brettanomyces character.", + "appearance": "Very pale straw in color. Clarity ranges from clear to somewhat hazy. Large, dense, white head with poor retention. Always effervescent.", + "flavor": "Clean lactic sourness dominates and can be quite strong. Some complementary doughy, bready or grainy wheat flavor is generally noticeable. Hop bitterness is undetectable; sourness provides the balance rather than hops. Never vinegary. A restrained citrusy-lemony or tart apple fruitiness may be detected. Very dry finish. Balance dominated by sourness, but some malt flavor should be present. No hop flavor. May optionally have a restrained funky Brettanomyces character.", + "mouthfeel": "Light body. Very high carbonation. No sensation of alcohol. Crisp, juicy acidity.", + "comments": "In Germany, it is classified as a Schankbier denoting a small beer of starting gravity in the range 7-8 °P. Often served with the addition of a shot of sugar syrups (mit schuss) flavored with raspberry (himbeer), woodruff (waldmeister), or Caraway schnapps (Kümmel) to counter the substantial sourness. Has been described by some as the most purely refreshing beer in the world.", + "history": "A regional specialty of Berlin; referred to by Napoleon's troops in 1809 as \"the Champagne of the North\" due to its lively and elegant character. At one point, it was smoked and there used to be Märzen-strength (14 °P) version. Increasingly rare in German, but some American craft breweries now regularly produce the style.", + "style_comparison": null, + "tags": "session-beer, pale-color, top-fermented, central-europe, traditional-style, wheat-beer-family, sour", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.02800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.03200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "3.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "8.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00300", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.00600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "2.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "3.00000", + "ingredients": "Wheat malt content is typically 50% of the grist (as is tradition with all German wheat beers) with the remainder typically being Pilsner malt. A symbiotic fermentation with top-fermenting yeast and Lactobacillus (various strains) provides the sharp sourness, which may be enhanced by blending of beers of different ages during fermentation and by extended cool aging. Hop bitterness is non-existent. Decoction mashing with mash hopping is traditional. German brewing scientists believe that Brettanomyces is essential to get the correct flavor profile, but this character is never strong.", + "examples": "Bayerischer Bahnhof Berliner Style Weisse, Berliner Kindl Weisse, Nodding Head Berliner Weisse, The Bruery Hottenroth", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A very pale, refreshing, low-alcohol German wheat beer with a clean lactic sourness and a very high carbonation level. A light bread dough malt flavor supports the sourness, which shouldn't seem artificial. Any Brettanomyces funk is restrained. A regional specialty of Berlin; referred to by Napoleon's troops in 1809 as \"the Champagne of the North\" due to its lively and elegant character. At one point, it was smoked and there used to be Märzen-strength (14 °P) version. Increasingly rare in German, but some American craft breweries now regularly produce the style.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "A sharply sour character is dominant (moderate to moderately-high). Can have up to a moderately fruity character (often lemony or tart apple). The fruitiness may increase with age and a light flowery character may develop. No hop aroma. The wheat may present as uncooked bread dough in fresher versions; combined with the acidity, may suggest sourdough bread. May optionally have a restrained funky Brettanomyces character. Very pale straw in color. Clarity ranges from clear to somewhat hazy. Large, dense, white head with poor retention. Always effervescent.Clean lactic sourness dominates and can be quite strong. Some complementary doughy, bready or grainy wheat flavor is generally noticeable. Hop bitterness is undetectable; sourness provides the balance rather than hops. Never vinegary. A restrained citrusy-lemony or tart apple fruitiness may be detected. Very dry finish. Balance dominated by sourness, but some malt flavor should be present. No hop flavor. May optionally have a restrained funky Brettanomyces character. Light body. Very high carbonation. No sensation of alcohol. Crisp, juicy acidity. In Germany, it is classified as a Schankbier denoting a small beer of starting gravity in the range 7-8 °P. Often served with the addition of a shot of sugar syrups (mit schuss) flavored with raspberry (himbeer), woodruff (waldmeister), or Caraway schnapps (Kümmel) to counter the substantial sourness. Has been described by some as the most purely refreshing beer in the world.", + "comparison": "Compared to a lambic, is generally not as acidic and has a clean lactic sourness with restrained to below sensory threshold funk. Also lower in alcohol content." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 177, + "fields": { + "name": "Flanders Red Ale", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23B", + "category_description": null, + "overall_impression": "A sour, fruity, red wine-like Belgian-style ale with interesting supportive malt flavors and fruit complexity. The dry finish and tannin completes the mental image of a fine red wine.", + "aroma": "Complex fruity-sour profile with supporting malt that often gives a wine-like impression. Fruitiness is high, and reminiscent of black cherries, oranges, plums or red currants. There are often low to medium-low vanilla and/or chocolate notes. Spicy phenols can be present in low amounts for complexity. The sour aroma ranges from balanced to intense. Prominent vinegary acetic character is inappropriate. No hop aroma. Diacetyl is perceived only in very minor quantities, if at all, as a complementary aroma.", + "appearance": "Deep red, burgundy to reddish-brown in color. Good clarity. White to very pale tan head. Average to good head retention.", + "flavor": "Intense fruitiness commonly includes plum, orange, black cherry or red currant flavors. A mild vanilla and/or chocolate character is often present. Spicy phenols can be present in low amounts for complexity. Sour flavor ranges from complementary to intense, and can have an acidic bite. Malty flavors range from complementary to prominent, and often have a soft toasty-rich quality. Generally as the sour character increases, the malt character blends to more of a background flavor (and vice versa). No hop flavor. Restrained hop bitterness. An acidic, tannic bitterness is often present in low to moderate amounts, and adds an aged red wine-like character and finish. Prominent vinegary acetic character is inappropriate. Diacetyl is perceived only in very minor quantities, if at all, as a complementary flavor. Balanced to the malt side, but dominated by the fruity, sour, wine-like impression.", + "mouthfeel": "Medium bodied. Low to medium carbonation. Low to medium astringency, like a well-aged red wine, often with a prickly acidity. Deceivingly light and crisp on the palate although a somewhat sweet finish is not uncommon.", + "comments": "Long aging and blending of young and well-aged beer often occurs, adding to the smoothness and complexity, though the aged product is sometimes released as a connoisseur's beer. Known as the Burgundy of Belgium, it is more wine-like than any other beer style. The reddish color is a product of the malt although an extended, less-than-rolling portion of the boil may help add an attractive Burgundy hue. Aging will also darken the beer. The Flanders red is more acetic (but never vinegar-like) and the fruity flavors more reminiscent of a red wine than an Oud Bruin. Can have an apparent attenuation of up to 98%.", + "history": "An indigenous beer of West Flanders, typified by the products of the Rodenbach brewery, established in 1820 in West Flanders but reflective of earlier brewing traditions. The beer is aged for up to two years, often in huge oaken barrels which contain the resident bacteria necessary to sour the beer. It was once common in Belgium and England to blend old beer with young to balance the sourness and acidity found in aged beer. While blending of batches for consistency is now common among larger breweries, this type of blending is a fading art.", + "style_comparison": null, + "tags": "standard-strength, amber-color, top-fermenting, western-europe, traditional-style, sour-ale-family, balanced, sour, wood", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05700", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "10.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00200", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.60000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "10.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "16.00000", + "ingredients": "A base of Vienna and/or Munich malts, light to medium cara-malts, and a small amount of Special B are used with up to 20% maize. Low alpha acid continental hops are commonly used (avoid high alpha or distinctive American hops). Saccharomyces, Lactobacillus and Brettanomyces (and acetobacter) contribute to the fermentation and eventual flavor.", + "examples": "Cuvée des Jacobins Rouge, Duchesse de Bourgogne, Rodenbach Grand Cru, Rodenbach Klassiek, Vichtenaar Flemish Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A sour, fruity, red wine-like Belgian-style ale with interesting supportive malt flavors and fruit complexity. The dry finish and tannin completes the mental image of a fine red wine. An indigenous beer of West Flanders, typified by the products of the Rodenbach brewery, established in 1820 in West Flanders but reflective of earlier brewing traditions. The beer is aged for up to two years, often in huge oaken barrels which contain the resident bacteria necessary to sour the beer. It was once common in Belgium and England to blend old beer with young to balance the sourness and acidity found in aged beer. While blending of batches for consistency is now common among larger breweries, this type of blending is a fading art.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Complex fruity-sour profile with supporting malt that often gives a wine-like impression. Fruitiness is high, and reminiscent of black cherries, oranges, plums or red currants. There are often low to medium-low vanilla and/or chocolate notes. Spicy phenols can be present in low amounts for complexity. The sour aroma ranges from balanced to intense. Prominent vinegary acetic character is inappropriate. No hop aroma. Diacetyl is perceived only in very minor quantities, if at all, as a complementary aroma. Deep red, burgundy to reddish-brown in color. Good clarity. White to very pale tan head. Average to good head retention.Intense fruitiness commonly includes plum, orange, black cherry or red currant flavors. A mild vanilla and/or chocolate character is often present. Spicy phenols can be present in low amounts for complexity. Sour flavor ranges from complementary to intense, and can have an acidic bite. Malty flavors range from complementary to prominent, and often have a soft toasty-rich quality. Generally as the sour character increases, the malt character blends to more of a background flavor (and vice versa). No hop flavor. Restrained hop bitterness. An acidic, tannic bitterness is often present in low to moderate amounts, and adds an aged red wine-like character and finish. Prominent vinegary acetic character is inappropriate. Diacetyl is perceived only in very minor quantities, if at all, as a complementary flavor. Balanced to the malt side, but dominated by the fruity, sour, wine-like impression. Medium bodied. Low to medium carbonation. Low to medium astringency, like a well-aged red wine, often with a prickly acidity. Deceivingly light and crisp on the palate although a somewhat sweet finish is not uncommon. Long aging and blending of young and well-aged beer often occurs, adding to the smoothness and complexity, though the aged product is sometimes released as a connoisseur's beer. Known as the Burgundy of Belgium, it is more wine-like than any other beer style. The reddish color is a product of the malt although an extended, less-than-rolling portion of the boil may help add an attractive Burgundy hue. Aging will also darken the beer. The Flanders red is more acetic (but never vinegar-like) and the fruity flavors more reminiscent of a red wine than an Oud Bruin. Can have an apparent attenuation of up to 98%.", + "comparison": "Less malty-rich than an Oud Bruin, often with more of a fruity-tart profile." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 178, + "fields": { + "name": "Oud Bruin", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23C", + "category_description": null, + "overall_impression": "A malty, fruity, aged, somewhat sour Belgian-style brown ale.", + "aroma": "Complex combination of fruity esters and rich malt character. Medium to medium-high esters commonly reminiscent of raisins, plums, figs, dates, black cherries or prunes. Medium low to medium high malt character of caramel, toffee, orange, treacle or chocolate. Spicy phenols can be present in low amounts for complexity. A sherry-like character may be present and generally denotes an aged example. A low sour aroma may be present, and can modestly increase with age but should not grow to a noticeable acetic/vinegary character. Hop aroma absent. Diacetyl is perceived only in very minor quantities, if at all, as a complementary aroma.", + "appearance": "Dark reddish-brown to brown in color. Good clarity. Average to good head retention. Ivory to light tan head color.", + "flavor": "Malty with fruity complexity and typically some caramel character. Medium to medium-high fruitiness commonly includes dark or dried fruit such as raisins, plums, figs, dates, black cherries or prunes. Medium low to medium high malt character of caramel, toffee, orange, treacle or chocolate. Spicy phenols can be present in low amounts for complexity. A slight sourness often becomes more pronounced in well-aged examples, along with some sherry-like character, producing a \"sweet-and-sour\" profile. The sourness should not grow to a notable acetic/vinegary character. Hop flavor absent. Restrained hop bitterness. Low oxidation is appropriate as a point of complexity. Diacetyl is perceived only in very minor quantities, if at all, as a complementary flavor. Balance is malty, but with fruitiness and sourness present. Sweet and tart finish", + "mouthfeel": "Medium to medium-full body. Low to moderate carbonation. No astringency.", + "comments": "Long aging and blending of young and aged beer may occur, adding smoothness and complexity and balancing any harsh, sour character. This style was designed to lay down so examples with a moderate aged character are considered superior to younger examples. As in fruit lambics, Oud Bruin can be used as a base for fruit-flavored beers such as kriek (cherries) or frambozen (raspberries), though these should be entered in the Classic-Style Fruit Beer category.", + "history": "An \"old ale\" tradition, indigenous to East Flanders, typified by the products of the Liefman brewery (now owned by Riva), which has roots back to the 1600s. Historically brewed as a \"provision beer\" that would develop some sourness as it aged. These beers were typically more sour than current commercial examples. While Flanders red beers are aged in oak, the brown beers are warm aged in stainless steel.", + "style_comparison": null, + "tags": "standard-strength, dark-color, top-fermented, western-europe, traditional-style, sour-ale-family, malty, sour", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "15.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "A base of Pils malt with judicious amounts of dark cara malts and a tiny bit of black or roast malt. Often includes maize. Low alpha acid continental hops are typical (avoid high alpha or distinctive American hops). Saccharomyces and Lactobacillus (and acetobacter) contribute to the fermentation and eventual flavor. Lactobacillus reacts poorly to elevated levels of alcohol. Water high in carbonates is typical of its home region and will buffer the acidity of darker malts and the lactic sourness. Magnesium in the water accentuates the sourness.", + "examples": "Ichtegem Oud Bruin, Liefmans Goudenband, Liefmans Liefmans Oud Bruin, Petrus Oud Bruin, Riva Vondel, Vanderghinste Bellegems Bruin", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A malty, fruity, aged, somewhat sour Belgian-style brown ale. An \"old ale\" tradition, indigenous to East Flanders, typified by the products of the Liefman brewery (now owned by Riva), which has roots back to the 1600s. Historically brewed as a \"provision beer\" that would develop some sourness as it aged. These beers were typically more sour than current commercial examples. While Flanders red beers are aged in oak, the brown beers are warm aged in stainless steel.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Complex combination of fruity esters and rich malt character. Medium to medium-high esters commonly reminiscent of raisins, plums, figs, dates, black cherries or prunes. Medium low to medium high malt character of caramel, toffee, orange, treacle or chocolate. Spicy phenols can be present in low amounts for complexity. A sherry-like character may be present and generally denotes an aged example. A low sour aroma may be present, and can modestly increase with age but should not grow to a noticeable acetic/vinegary character. Hop aroma absent. Diacetyl is perceived only in very minor quantities, if at all, as a complementary aroma. Dark reddish-brown to brown in color. Good clarity. Average to good head retention. Ivory to light tan head color.Malty with fruity complexity and typically some caramel character. Medium to medium-high fruitiness commonly includes dark or dried fruit such as raisins, plums, figs, dates, black cherries or prunes. Medium low to medium high malt character of caramel, toffee, orange, treacle or chocolate. Spicy phenols can be present in low amounts for complexity. A slight sourness often becomes more pronounced in well-aged examples, along with some sherry-like character, producing a \"sweet-and-sour\" profile. The sourness should not grow to a notable acetic/vinegary character. Hop flavor absent. Restrained hop bitterness. Low oxidation is appropriate as a point of complexity. Diacetyl is perceived only in very minor quantities, if at all, as a complementary flavor. Balance is malty, but with fruitiness and sourness present. Sweet and tart finish Medium to medium-full body. Low to moderate carbonation. No astringency. Long aging and blending of young and aged beer may occur, adding smoothness and complexity and balancing any harsh, sour character. This style was designed to lay down so examples with a moderate aged character are considered superior to younger examples. As in fruit lambics, Oud Bruin can be used as a base for fruit-flavored beers such as kriek (cherries) or frambozen (raspberries), though these should be entered in the Classic-Style Fruit Beer category.", + "comparison": "A deeper malt character distinguishes these beers from Flanders red ales. The Oud Bruin is less acetic and maltier than a Flanders Red, and the fruity flavors are more malt-oriented." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 179, + "fields": { + "name": "Lambic", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23D", + "category_description": null, + "overall_impression": "A fairly sour, often moderately funky wild Belgian wheat beer with sourness taking the place of hop bitterness in the balance. Traditionally spontaneously fermented in the Brussels area and served uncarbonated, the refreshing acidity makes for a very pleasant café drink.", + "aroma": "A decidedly sour aroma is often dominant in young examples, but may become more subdued with age as it blends with aromas described as barnyard, earthy, goaty, hay, horsey, and horse blanket. A mild citrus-fruity aroma is considered favorable. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. Older versions are commonly fruity with aromas of apples or even honey. No hop aroma.", + "appearance": "Pale yellow to deep golden in color; age tends to darken the beer. Clarity is hazy to good. Younger versions are often cloudy, while older ones are generally clear. White colored head generally has poor retention.", + "flavor": "Young examples are often noticeably lactic-sour, but aging can bring this character more in balance with the malt, wheat and barnyard characteristics. Fruity flavors are simpler in young lambics and more complex in the older examples, where they are reminiscent of apples or other light fruits, rhubarb, or honey. Some citrus flavor (often grapefruit) is occasionally noticeable, and is desirable. The malt and wheat character are typically low with some bready-grainy notes. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is low to none, and generally undetectable; sourness provides the balance. Typically has a dry finish. No hop flavor.", + "mouthfeel": "Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from feeling like water. As a rule of thumb, lambic dries with age, which makes dryness a reasonable indicator of age. Has a medium to high tart, puckering quality without being sharply astringent. Traditional versions are virtually to completely uncarbonated, but bottled examples can pick up moderate carbonation with age.", + "comments": "Straight lambics are single-batch, unblended beers. Since they are unblended, the straight lambic is often a true product of the \"house character\" of a brewery and will be more variable than a gueuze. They are generally served young (6 months) and on tap as cheap, easy-drinking beers without any filling carbonation. Younger versions tend to be one-dimensionally sour since a complex Brett character often takes upwards of a year to develop. An enteric character is often indicative of a lambic that is too young. A noticeable vinegary or cidery character is considered a fault by Belgian brewers. Since the wild yeast and bacteria will ferment ALL sugars, they are typically bottled only when they have completely fermented.", + "history": "Spontaneously fermented wild ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing tradition several centuries old. The number of producers is constantly dwindling.", + "style_comparison": null, + "tags": "standard-strength, pale-color, wild-fermented, western-europe, traditional-style, wheat-beer-family, sour", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "0.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "10.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00100", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "7.00000", + "ingredients": "Unmalted wheat (30-40%), Pilsner malt and aged hops (3 years) are used. The aged hops are used more for preservative effects than bitterness, and makes actual bitterness levels difficult to estimate. Traditionally these beers are spontaneously fermented with naturally occurring yeast and bacteria in predominately oaken barrels. The barrels used are neutral with little oak character, so don't expect a fresh or forward oak character – more neutral is typical. Home-brewed and craft-brewed versions are more typically made with pure cultures of yeast commonly including Saccharomyces, Brettanomyces, Pediococcus and Lactobacillus in an attempt to recreate the effects of the dominant microbiota of Brussels and the surrounding countryside of the Senne River valley. Cultures taken from bottles are sometimes used but there is no simple way of knowing what organisms are still viable.", + "examples": "The only bottled version readily available is Cantillon Grand Cru Bruocsella of whatever single batch vintage the brewer deems worthy to bottle. De Cam sometimes bottles their very old (5 years) lambic. In and around Brussels there are specialty cafes that often have draught lambics from traditional brewers or blenders such as Boon, De Cam, Cantillon, Drie Fonteinen, Lindemans, Timmermans and Girardin.", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A fairly sour, often moderately funky wild Belgian wheat beer with sourness taking the place of hop bitterness in the balance. Traditionally spontaneously fermented in the Brussels area and served uncarbonated, the refreshing acidity makes for a very pleasant café drink. Spontaneously fermented wild ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing tradition several centuries old. The number of producers is constantly dwindling.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "A decidedly sour aroma is often dominant in young examples, but may become more subdued with age as it blends with aromas described as barnyard, earthy, goaty, hay, horsey, and horse blanket. A mild citrus-fruity aroma is considered favorable. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. Older versions are commonly fruity with aromas of apples or even honey. No hop aroma. Pale yellow to deep golden in color; age tends to darken the beer. Clarity is hazy to good. Younger versions are often cloudy, while older ones are generally clear. White colored head generally has poor retention.Young examples are often noticeably lactic-sour, but aging can bring this character more in balance with the malt, wheat and barnyard characteristics. Fruity flavors are simpler in young lambics and more complex in the older examples, where they are reminiscent of apples or other light fruits, rhubarb, or honey. Some citrus flavor (often grapefruit) is occasionally noticeable, and is desirable. The malt and wheat character are typically low with some bready-grainy notes. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is low to none, and generally undetectable; sourness provides the balance. Typically has a dry finish. No hop flavor. Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from feeling like water. As a rule of thumb, lambic dries with age, which makes dryness a reasonable indicator of age. Has a medium to high tart, puckering quality without being sharply astringent. Traditional versions are virtually to completely uncarbonated, but bottled examples can pick up moderate carbonation with age. Straight lambics are single-batch, unblended beers. Since they are unblended, the straight lambic is often a true product of the \"house character\" of a brewery and will be more variable than a gueuze. They are generally served young (6 months) and on tap as cheap, easy-drinking beers without any filling carbonation. Younger versions tend to be one-dimensionally sour since a complex Brett character often takes upwards of a year to develop. An enteric character is often indicative of a lambic that is too young. A noticeable vinegary or cidery character is considered a fault by Belgian brewers. Since the wild yeast and bacteria will ferment ALL sugars, they are typically bottled only when they have completely fermented.", + "comparison": "Generally has a more simple sourness and complexity than a gueuze. Traditionally served uncarbonated from pitchers, while gueuze is bottled and very highly carbonated." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 180, + "fields": { + "name": "Gueuze", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23E", + "category_description": null, + "overall_impression": "A complex, pleasantly sour but balanced wild Belgian wheat beer that is highly carbonated and very refreshing. The spontaneous fermentation character can provide a very interesting complexity, with a wide range of wild barnyard, horse blanket, or leather characteristics intermingling with citrusy-fruity flavors and acidity.", + "aroma": "A moderately sour aroma blends with aromas described as barnyard, leather, earthy, goaty, hay, horsey, and horse blanket. While some may be more dominantly sour, balance is the key and denotes a better gueuze. Commonly fruity with aromas of citrus fruits (often grapefruit), apples or other light fruits, rhubarb, or honey. A very mild oak aroma is considered favorable. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. No hop aroma.", + "appearance": "Golden color, with excellent clarity and a thick, rocky, mousse-like, white head that seems to last forever. Always effervescent.", + "flavor": "A moderately sour character is classically in balance with the malt, wheat and barnyard characteristics. A low, complementary sweetness may be present but higher levels are not traditional. While some may be more dominantly sour, balance is the key and denotes a better gueuze. A varied fruit flavor is common, and can have a honey-like character. A mild vanilla and/or oak flavor is occasionally noticeable. The malt is generally low and bready-grainy. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is generally absent but a very low hop bitterness may occasionally be perceived; sourness provides most of the balance. Crisp, dry, and tart finish. No hop flavor.", + "mouthfeel": "Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from feeling like water. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a light warming character. Highly carbonated.", + "comments": "Gueuze is traditionally produced by mixing one, two, and three-year old lambic. \"Young\" lambic contains fermentable sugars while old lambic has the characteristic \"wild\" taste of the Senne River valley. A noticeable vinegary or cidery character is considered a fault by Belgian brewers. A good gueuze is not the most pungent, but possesses a full and tantalizing bouquet, a sharp aroma, and a soft, velvety flavor. Lambic is served uncarbonated, while gueuze is served effervescent. Products marked oude or ville are considered most traditional.", + "history": "Spontaneously fermented wild ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing and blending tradition several centuries old. The number of producers is constantly dwindling and some producers are untraditionally sweetening their products (post-fermentation) to make them more palatable to a wider audience. These guidelines describe the traditional dry product.", + "style_comparison": null, + "tags": "high-strength, pale-color, wild-fermented, western-europe, traditional-style, wheat-beer-family, aged, sour", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "0.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "10.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.00600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "7.00000", + "ingredients": "Unmalted wheat (30-40%), Pilsner malt and aged hops (3 years) are used. The aged hops are used more for preservative effects than bitterness, and makes actual bitterness levels difficult to estimate. Traditionally these beers are spontaneously fermented with naturally occurring yeast and bacteria in predominately oaken barrels. The barrels used are old and have little oak character, so don't expect a fresh or forward oak character – more neutral is typical. Home-brewed and craft-brewed versions are more typically made with pure cultures of yeast commonly including Saccharomyces, Brettanomyces, Pediococcus and Lactobacillus in an attempt to recreate the effects of the dominant microbiota of Brussels and the surrounding countryside of the Senne River valley. Cultures taken from bottles are sometimes used but there is no simple way of knowing what organisms are still viable.", + "examples": "Boon Oude Gueuze, Boon Oude Gueuze Mariage Parfait, Cantillon Gueuze, De Cam Gueuze, De Cam/Drei Fonteinen Millennium Gueuze, Drie Fonteinen Oud Gueuze, Girardin Gueuze (Black Label), Hanssens Oude Gueuze, Lindemans Gueuze Cuvée René, Mort Subite (Unfiltered) Gueuze, Oud Beersel Oude Gueuze", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A complex, pleasantly sour but balanced wild Belgian wheat beer that is highly carbonated and very refreshing. The spontaneous fermentation character can provide a very interesting complexity, with a wide range of wild barnyard, horse blanket, or leather characteristics intermingling with citrusy-fruity flavors and acidity. Spontaneously fermented wild ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing and blending tradition several centuries old. The number of producers is constantly dwindling and some producers are untraditionally sweetening their products (post-fermentation) to make them more palatable to a wider audience. These guidelines describe the traditional dry product.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "A moderately sour aroma blends with aromas described as barnyard, leather, earthy, goaty, hay, horsey, and horse blanket. While some may be more dominantly sour, balance is the key and denotes a better gueuze. Commonly fruity with aromas of citrus fruits (often grapefruit), apples or other light fruits, rhubarb, or honey. A very mild oak aroma is considered favorable. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. No hop aroma. Golden color, with excellent clarity and a thick, rocky, mousse-like, white head that seems to last forever. Always effervescent.A moderately sour character is classically in balance with the malt, wheat and barnyard characteristics. A low, complementary sweetness may be present but higher levels are not traditional. While some may be more dominantly sour, balance is the key and denotes a better gueuze. A varied fruit flavor is common, and can have a honey-like character. A mild vanilla and/or oak flavor is occasionally noticeable. The malt is generally low and bready-grainy. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is generally absent but a very low hop bitterness may occasionally be perceived; sourness provides most of the balance. Crisp, dry, and tart finish. No hop flavor. Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from feeling like water. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a light warming character. Highly carbonated. Gueuze is traditionally produced by mixing one, two, and three-year old lambic. \"Young\" lambic contains fermentable sugars while old lambic has the characteristic \"wild\" taste of the Senne River valley. A noticeable vinegary or cidery character is considered a fault by Belgian brewers. A good gueuze is not the most pungent, but possesses a full and tantalizing bouquet, a sharp aroma, and a soft, velvety flavor. Lambic is served uncarbonated, while gueuze is served effervescent. Products marked oude or ville are considered most traditional.", + "comparison": "More complex and carbonated than a lambic. The sourness isn't necessarily higher, but it tends to have more of a well-developed wild character." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 181, + "fields": { + "name": "Fruit Lambic", + "category": "European Sour Ale", + "category_id": "23", + "style_id": "23F", + "category_description": null, + "overall_impression": "A complex, fruity, pleasantly sour, wild wheat ale fermented by a variety of Belgian microbiota, and showcasing the fruit contributions blended with the wild character. The type of fruit can sometimes be hard to identify as fermented and aged fruit characteristics can seem different from the more recognizable fresh fruit aromas and flavors.", + "aroma": "The specified fruit should be the dominant aroma. A low to moderately sour character blends with aromas described as barnyard, earthy, goaty, hay, horsey, and horse blanket (and thus should be recognizable as a lambic). The fruit aroma commonly blends well with the other aromas. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. No hop aroma.", + "appearance": "The variety of fruit generally determines the color, although lighter-colored fruit may have little effect on the color. The color intensity may fade with age. Clarity is often good, although some fruit will not drop bright. A thick rocky, mousse-like head, sometimes a shade of fruit, is generally long-lasting (carbonation-dependent). Carbonation is typically high, but must be specified.", + "flavor": "The specified fruit should be evident. Low to moderately sour flavor, often with an acidic bite in the finish. The classic barnyard characteristics may be low to high. When young, the beer will present its full fruity taste. As it ages, the lambic taste will become dominant at the expense of the fruit character—thus fruit lambics are not intended for long aging. The finish is commonly dry and tart, but a low, complementary sweetness may be present; higher sweetness levels are not traditional but can be included for personal preference (sweetness level must be specified). A mild vanilla and/or oak flavor is occasionally noticeable. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is generally absent; acidity provides the balance. No hop flavor.", + "mouthfeel": "Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from tasting like water. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a light warming character. Carbonation can vary from sparkling to nearly still (must be specified).", + "comments": "Fruit-based lambics are often produced like gueuze by mixing one, two, and three-year old lambic. \"Young\" lambic contains fermentable sugars while old lambic has the characteristic \"wild\" taste of the Senne River valley. Fruit is commonly added halfway through aging and the yeast and bacteria will ferment all sugars from the fruit. Fruit may also be added to unblended lambic. The most traditional styles of fruit lambics include kriek (cherries), framboise (raspberries) and druivenlambik (muscat grapes). IBUs are approximate since aged hops are used; Belgians use hops for anti-bacterial properties more than bittering in lambics.", + "history": "Spontaneously fermented wild ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing and blending tradition several centuries old. The number of producers is constantly dwindling and some are untraditionally sweetening their products (post-fermentation) with sugar or sweet fruit to make them more palatable to a wider audience. Fruit was traditionally added to lambic or gueuze, either by the blender or publican, to increase the variety of beers available in local cafes.", + "style_comparison": null, + "tags": "standard-strength, pale-color, wild-fermented, western-europe, traditional-style, wheat-beer-family, sour, fruit", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "0.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "10.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "7.00000", + "ingredients": "Unmalted wheat (30-40%), Pilsner malt and aged hops (3 years) are used. The aged hops are used more for preservative effects than bitterness, and makes actual bitterness levels difficult to estimate. Traditional products use 10-30% fruit (25%, if cherry). Fruits traditionally used include tart cherries (with pits), raspberries or Muscat grapes. More recent examples include peaches, apricots or merlot grapes. Tart or acidic fruit is traditionally used as its purpose is not to sweeten the beer but to add a new dimension. Traditionally these beers are spontaneously fermented with naturally occurring yeast and bacteria in predominately oaken barrels. The barrels used are old and have little oak character, so don't expect a fresh or forward oak character – more neutral is typical. Home-brewed and craft-brewed versions are more typically made with pure cultures of yeast commonly including Saccharomyces, Brettanomyces, Pediococcus and Lactobacillus in an attempt to recreate the effects of the dominant microbiota of Brussels and the surrounding countryside of the Senne River valley. Cultures taken from bottles are sometimes used but there is no simple way of knowing what organisms are still viable.", + "examples": "Boon Framboise Marriage Parfait, Boon Kriek Mariage Parfait, Boon Oude Kriek, Cantillon Fou' Foune, Cantillon Kriek, Cantillon Lou Pepe Kriek, Cantillon Lou Pepe Framboise, Cantillon Rose de Gambrinus, Cantillon St. Lamvinus, Cantillon Vigneronne, De Cam Oude Kriek, Drie Fonteinen Kriek, Girardin Kriek, Hanssens Oude Kriek, Oud Beersel Kriek, Mort Subite Kriek", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The type of fruit used must be specified. The brewer must declare a carbonation level (low, medium, high) and a sweetness level (low/none, medium, high).", + "notes": "A complex, fruity, pleasantly sour, wild wheat ale fermented by a variety of Belgian microbiota, and showcasing the fruit contributions blended with the wild character. The type of fruit can sometimes be hard to identify as fermented and aged fruit characteristics can seem different from the more recognizable fresh fruit aromas and flavors. Spontaneously fermented wild ales from the area in and around Brussels (the Senne Valley) stem from a farmhouse brewing and blending tradition several centuries old. The number of producers is constantly dwindling and some are untraditionally sweetening their products (post-fermentation) with sugar or sweet fruit to make them more palatable to a wider audience. Fruit was traditionally added to lambic or gueuze, either by the blender or publican, to increase the variety of beers available in local cafes.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "The specified fruit should be the dominant aroma. A low to moderately sour character blends with aromas described as barnyard, earthy, goaty, hay, horsey, and horse blanket (and thus should be recognizable as a lambic). The fruit aroma commonly blends well with the other aromas. An enteric, smoky, cigar-like, or cheesy aroma is unfavorable. No hop aroma. The variety of fruit generally determines the color, although lighter-colored fruit may have little effect on the color. The color intensity may fade with age. Clarity is often good, although some fruit will not drop bright. A thick rocky, mousse-like head, sometimes a shade of fruit, is generally long-lasting (carbonation-dependent). Carbonation is typically high, but must be specified.The specified fruit should be evident. Low to moderately sour flavor, often with an acidic bite in the finish. The classic barnyard characteristics may be low to high. When young, the beer will present its full fruity taste. As it ages, the lambic taste will become dominant at the expense of the fruit character—thus fruit lambics are not intended for long aging. The finish is commonly dry and tart, but a low, complementary sweetness may be present; higher sweetness levels are not traditional but can be included for personal preference (sweetness level must be specified). A mild vanilla and/or oak flavor is occasionally noticeable. An enteric, smoky or cigar-like character is undesirable. Hop bitterness is generally absent; acidity provides the balance. No hop flavor. Light to medium-light body. In spite of the low finishing gravity, the many mouth-filling flavors prevent the beer from tasting like water. Has a low to high tart, puckering quality without being sharply astringent. Some versions have a light warming character. Carbonation can vary from sparkling to nearly still (must be specified). Fruit-based lambics are often produced like gueuze by mixing one, two, and three-year old lambic. \"Young\" lambic contains fermentable sugars while old lambic has the characteristic \"wild\" taste of the Senne River valley. Fruit is commonly added halfway through aging and the yeast and bacteria will ferment all sugars from the fruit. Fruit may also be added to unblended lambic. The most traditional styles of fruit lambics include kriek (cherries), framboise (raspberries) and druivenlambik (muscat grapes). IBUs are approximate since aged hops are used; Belgians use hops for anti-bacterial properties more than bittering in lambics.", + "comparison": "A lambic with fruit, not just a fruit beer; the wild lambic character must be evident." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 182, + "fields": { + "name": "Witbier", + "category": "Belgian Ale", + "category_id": "24", + "style_id": "24A", + "category_description": null, + "overall_impression": "A refreshing, elegant, tasty, moderate-strength wheat-based ale.", + "aroma": "Moderate malty sweetness (often with light notes of honey and/or vanilla) with light, grainy, spicy wheat aromatics, often with a bit of tartness. Moderate perfumy coriander, often with a complex herbal, spicy, or peppery note in the background. Moderate zesty, citrusy-orangey fruitiness. A low spicy-herbal hop aroma is optional, but should never overpower the other characteristics. Vegetal, celery-like, or ham-like aromas are inappropriate. Spices should blend in with fruity, floral and sweet aromas and should not be overly strong.", + "appearance": "Very pale straw to very light gold in color. The beer will be very cloudy from starch haze and/or yeast, which gives it a milky, whitish-yellow appearance. Dense, white, moussy head. Head retention should be quite good.", + "flavor": "Pleasant malty-sweet grain flavor (often with a honey and/or vanilla character) and a zesty, orange-citrusy fruitiness. Refreshingly crisp with a dry, often tart, finish. Can have a low bready wheat flavor. Optionally has a very light lactic-tasting sourness. Herbal-spicy flavors, which may include coriander and other spices, are common should be subtle and balanced, not overpowering. A spicy-earthy hop flavor is low to none, and if noticeable, never gets in the way of the spices. Hop bitterness is low to medium-low, and doesn't interfere with refreshing flavors of fruit and spice, nor does it persist into the finish. Bitterness from orange pith should not be present. Vegetal, celery-like, ham-like, or soapy flavors are inappropriate.", + "mouthfeel": "Medium-light to medium body, often having a smoothness and light creaminess from unmalted wheat and the occasional oats. Despite body and creaminess, finishes dry and often a bit tart. Effervescent character from high carbonation. Refreshing, from carbonation, light acidity, and lack of bitterness in finish. No harshness or astringency from orange pith. Should not be overly dry and thin, nor should it be thick and heavy.", + "comments": "The presence, character and degree of spicing and lactic sourness varies. Overly spiced and/or sour beers are not good examples of the style. Coriander of certain origins might give an inappropriate ham or celery character. The beer tends to be fragile and does not age well, so younger, fresher, properly handled examples are most desirable. Most examples seem to be approximately 5% ABV.", + "history": "A 400-year-old Belgian beer style that died out in the 1950s; it was later revived by Pierre Celis at Hoegaarden, and has grown steadily in popularity over time, both with modern craft brewers and mass-market producers who see it as a somewhat fruity summer seasonal beer.", + "style_comparison": null, + "tags": "standard-strength, pale-color, top-fermented, western-europe, traditional-style, wheat-beer-family, spice", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "8.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "20.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "2.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "4.00000", + "ingredients": "About 50% unmalted wheat and 50% pale barley malt (usually Pils malt) constitute the grist. In some versions, up to 5-10% raw oats may be used. Spices of freshly-ground coriander and Curaçao or sometimes sweet orange peel complement the sweet aroma and are quite characteristic. Other spices (e.g., chamomile, cumin, cinnamon, Grains of Paradise) may be used for complexity but are much less prominent. Ale yeast prone to the production of mild, spicy flavors is very characteristic. In some instances a very limited lactic fermentation, or the actual addition of lactic acid, is done.", + "examples": "Allagash White, Blanche de Bruxelles, Celis White, Hoegaarden Wit, Ommegang Witte, St. Bernardus Witbier, Wittekerke", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A refreshing, elegant, tasty, moderate-strength wheat-based ale. A 400-year-old Belgian beer style that died out in the 1950s; it was later revived by Pierre Celis at Hoegaarden, and has grown steadily in popularity over time, both with modern craft brewers and mass-market producers who see it as a somewhat fruity summer seasonal beer.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate malty sweetness (often with light notes of honey and/or vanilla) with light, grainy, spicy wheat aromatics, often with a bit of tartness. Moderate perfumy coriander, often with a complex herbal, spicy, or peppery note in the background. Moderate zesty, citrusy-orangey fruitiness. A low spicy-herbal hop aroma is optional, but should never overpower the other characteristics. Vegetal, celery-like, or ham-like aromas are inappropriate. Spices should blend in with fruity, floral and sweet aromas and should not be overly strong. Very pale straw to very light gold in color. The beer will be very cloudy from starch haze and/or yeast, which gives it a milky, whitish-yellow appearance. Dense, white, moussy head. Head retention should be quite good.Pleasant malty-sweet grain flavor (often with a honey and/or vanilla character) and a zesty, orange-citrusy fruitiness. Refreshingly crisp with a dry, often tart, finish. Can have a low bready wheat flavor. Optionally has a very light lactic-tasting sourness. Herbal-spicy flavors, which may include coriander and other spices, are common should be subtle and balanced, not overpowering. A spicy-earthy hop flavor is low to none, and if noticeable, never gets in the way of the spices. Hop bitterness is low to medium-low, and doesn't interfere with refreshing flavors of fruit and spice, nor does it persist into the finish. Bitterness from orange pith should not be present. Vegetal, celery-like, ham-like, or soapy flavors are inappropriate. Medium-light to medium body, often having a smoothness and light creaminess from unmalted wheat and the occasional oats. Despite body and creaminess, finishes dry and often a bit tart. Effervescent character from high carbonation. Refreshing, from carbonation, light acidity, and lack of bitterness in finish. No harshness or astringency from orange pith. Should not be overly dry and thin, nor should it be thick and heavy. The presence, character and degree of spicing and lactic sourness varies. Overly spiced and/or sour beers are not good examples of the style. Coriander of certain origins might give an inappropriate ham or celery character. The beer tends to be fragile and does not age well, so younger, fresher, properly handled examples are most desirable. Most examples seem to be approximately 5% ABV.", + "comparison": "Low bitterness level with a balance similar to a Weissbier, but with spice and citrus character coming from additions rather than the yeast." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 183, + "fields": { + "name": "Belgian Pale Ale", + "category": "Belgian Ale", + "category_id": "24", + "style_id": "24B", + "category_description": null, + "overall_impression": "A moderately malty, somewhat fruity, easy-drinking, copper-colored Belgian ale that is somewhat less aggressive in flavor profile than many other Belgian beers. The malt character tends to be a bit biscuity with light toasty, honey-like, or caramelly components; the fruit character is noticeable and complementary to the malt. The bitterness level is generally moderate, but may not seem as high due to the flavorful malt profile.", + "aroma": "Moderate malt aroma, which can be a combination of toasty, biscuity, or nutty, possibly with a touch of light caramel or honey. Moderate to moderately high fruitiness with an orange- or pear-like character. Low to moderate strength hop character (spicy, herbal, or floral) optionally blended with background level peppery, spicy phenols. The hop character is lower in balance than the malt and fruitiness.", + "appearance": "Amber to copper in color. Clarity is very good. Creamy, rocky, white head often fades more quickly than other Belgian beers.", + "flavor": "Has an initial soft, smooth, moderately malty flavor with a variable profile of toasty, biscuity, nutty, light caramel and/or honey notes. Moderate to moderately high fruitiness, sometimes orange- or pear-like. Relatively light (medium-low to low) spicy, herbal, or floral hop character. The hop bitterness is medium-high to medium-low, and is optionally enhanced by low to very low amounts of peppery phenols. There is a dry to balanced finish, with hops becoming more pronounced in the aftertaste of those with a drier finish. Fairly well balanced overall, with no single component being high in intensity; malt and fruitiness are more forward initially with a supportive bitterness and drying character coming on late.", + "mouthfeel": "Medium to medium-light body. Smooth palate. Alcohol level is restrained, and any warming character should be low if present. Medium to medium-high carbonation.", + "comments": "Most commonly found in the Flemish provinces of Antwerp and Brabant. Considered \"everyday\" beers (Category I). Compared to their higher alcohol Category S cousins, they are Belgian \"session beers\" for ease of drinking. Nothing should be too pronounced or dominant; balance is the key. Yeast character generally more subtle than many Belgian beers, with some of the fruitiness being hop-driven.", + "history": "Produced by breweries with roots as far back as the mid-1700s, the most well-known examples were perfected after the Second World War with some influence from Britain, including hops and yeast strains.", + "style_comparison": null, + "tags": "standard-strength, amber-color, top-fermented, western-europe, traditional-style, pale-ale-family, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "8.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Pilsner or pale ale malt contributes the bulk of the grist with (cara) Vienna and Munich malts adding color, body and complexity. Sugar is not commonly used as high gravity is not desired. Saazer-type hops, Styrian Goldings, East Kent Goldings or Fuggles are commonly used. Yeasts prone to moderate production of phenols are often used but fermentation temperatures should be kept moderate to limit this character.", + "examples": "De Koninck, De Ryck Special, Palm Dobble, Palm Speciale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A moderately malty, somewhat fruity, easy-drinking, copper-colored Belgian ale that is somewhat less aggressive in flavor profile than many other Belgian beers. The malt character tends to be a bit biscuity with light toasty, honey-like, or caramelly components; the fruit character is noticeable and complementary to the malt. The bitterness level is generally moderate, but may not seem as high due to the flavorful malt profile. Produced by breweries with roots as far back as the mid-1700s, the most well-known examples were perfected after the Second World War with some influence from Britain, including hops and yeast strains.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate malt aroma, which can be a combination of toasty, biscuity, or nutty, possibly with a touch of light caramel or honey. Moderate to moderately high fruitiness with an orange- or pear-like character. Low to moderate strength hop character (spicy, herbal, or floral) optionally blended with background level peppery, spicy phenols. The hop character is lower in balance than the malt and fruitiness. Amber to copper in color. Clarity is very good. Creamy, rocky, white head often fades more quickly than other Belgian beers.Has an initial soft, smooth, moderately malty flavor with a variable profile of toasty, biscuity, nutty, light caramel and/or honey notes. Moderate to moderately high fruitiness, sometimes orange- or pear-like. Relatively light (medium-low to low) spicy, herbal, or floral hop character. The hop bitterness is medium-high to medium-low, and is optionally enhanced by low to very low amounts of peppery phenols. There is a dry to balanced finish, with hops becoming more pronounced in the aftertaste of those with a drier finish. Fairly well balanced overall, with no single component being high in intensity; malt and fruitiness are more forward initially with a supportive bitterness and drying character coming on late. Medium to medium-light body. Smooth palate. Alcohol level is restrained, and any warming character should be low if present. Medium to medium-high carbonation. Most commonly found in the Flemish provinces of Antwerp and Brabant. Considered \"everyday\" beers (Category I). Compared to their higher alcohol Category S cousins, they are Belgian \"session beers\" for ease of drinking. Nothing should be too pronounced or dominant; balance is the key. Yeast character generally more subtle than many Belgian beers, with some of the fruitiness being hop-driven.", + "comparison": "Fairly similar to pale ales from England (Strong Bitter category), typically with a slightly different yeast character and a more varied malt profile. Less yeast character than many other Belgian beers, though." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 184, + "fields": { + "name": "Bière de Garde", + "category": "Belgian Ale", + "category_id": "24", + "style_id": "24C", + "category_description": null, + "overall_impression": "A fairly strong, malt-accentuated, lagered artisanal beer with a range of malt flavors appropriate for the color. All are malty yet dry, with clean flavors and a smooth character.", + "aroma": "Prominent malty sweetness, often with a complex, light to moderate intensity toasty-bready-rich malt character. Low to moderate esters. Little to no hop aroma (may be a bit spicy, peppery, or herbal). Paler versions will still be malty but will lack richer, deeper aromatics and may have a bit more hops. Generally quite clean, although stronger versions may have a light, spicy alcohol note as it warms.", + "appearance": "Three main variations exist (blond, amber and brown), so color can range from golden-blonde to reddish-bronze to chestnut brown. Clarity is brilliant to fair, although haze is not unexpected in this type of often unfiltered beer. Well-formed head, generally white to off-white (varies by beer color), average persistence.", + "flavor": "Medium to high malt flavor often with a toasty-rich, biscuity, toffee-like or light caramel-sweet character. Malt flavors and complexity tend to increase with beer color. Low to moderate esters and alcohol flavors. Medium-low hop bitterness provides some support, but the balance is always tilted toward the malt. Darker versions will have more of an initial malty-sweet impression than paler versions, but all should be malty in the palate and finish. The malt flavor lasts into the finish, which is medium-dry to dry, never cloying. Low to no hop flavor (spicy, peppery, or herbal), although paler versions can have slightly higher levels of herbal or spicy hop flavor (which can also come from the yeast). Smooth, well-lagered character, even if made with ale yeast. Aftertaste of malt (character appropriate for the color) with some dryness and light alcohol.", + "mouthfeel": "Medium to medium-light (lean) body, often with a smooth, creamy-silky character. Moderate to high carbonation. Moderate alcohol warming, but should be very smooth and never hot.", + "comments": "Three main variations are included in the style: the brown (brune), the blond (blonde), and the amber (ambrée). The darker versions will have more malt character, while the paler versions can have more hops (but still are malt-focused beers). A related style is Bière de Mars, which is brewed in March (Mars) for present use and will not age as well. Attenuation rates are in the 80-85% range. Some fuller-bodied examples exist, but these are somewhat rare. Age and oxidation in imports often increases fruitiness, caramel flavors, and adds corked and musty notes; these are all signs of mishandling, not characteristic elements of the style.", + "history": "Name literally means \"beer which has been kept or lagered.\" A traditional artisanal ale from Northern France brewed in early spring and kept in cold cellars for consumption in warmer weather. It is now brewed year-round.", + "style_comparison": null, + "tags": "high-strength, pale-color, amber-color, any-fermentation, lagered, western-europe, traditional-style, amber-ale-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.08000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "18.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "28.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "6.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "19.00000", + "ingredients": "The \"cellar\" character commonly described in literature is more of a feature of mishandled commercial exports than fresh, authentic products. The somewhat moldy character comes from the corks and/or oxidation in commercial versions, and is incorrectly identified as \"musty\" or \"cellar-like.\" Base malts vary by beer color, but usually include pale, Vienna and Munich types. Darker versions will have richer malt complexity and sweetness from crystal-type malts. Sugar may be used to add flavor and aid in the dry finish. Lager or ale yeast fermented at cool ale temperatures, followed by long cold conditioning. Floral, herbal or spicy continental hops.", + "examples": "Ch'Ti (brown and blond), Jenlain (amber and blond), La Choulette (all 3 versions), St. Amand (brown), Saint Sylvestre 3 Monts (blond), Russian River Perdition", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "Entrant must specify blond, amber, or brown bière de garde. If no color is specified, the judge should attempt to judge based on initial observation, expecting a malt flavor and balance that matches the color.", + "notes": "A fairly strong, malt-accentuated, lagered artisanal beer with a range of malt flavors appropriate for the color. All are malty yet dry, with clean flavors and a smooth character. Name literally means \"beer which has been kept or lagered.\" A traditional artisanal ale from Northern France brewed in early spring and kept in cold cellars for consumption in warmer weather. It is now brewed year-round.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Prominent malty sweetness, often with a complex, light to moderate intensity toasty-bready-rich malt character. Low to moderate esters. Little to no hop aroma (may be a bit spicy, peppery, or herbal). Paler versions will still be malty but will lack richer, deeper aromatics and may have a bit more hops. Generally quite clean, although stronger versions may have a light, spicy alcohol note as it warms. Three main variations exist (blond, amber and brown), so color can range from golden-blonde to reddish-bronze to chestnut brown. Clarity is brilliant to fair, although haze is not unexpected in this type of often unfiltered beer. Well-formed head, generally white to off-white (varies by beer color), average persistence.Medium to high malt flavor often with a toasty-rich, biscuity, toffee-like or light caramel-sweet character. Malt flavors and complexity tend to increase with beer color. Low to moderate esters and alcohol flavors. Medium-low hop bitterness provides some support, but the balance is always tilted toward the malt. Darker versions will have more of an initial malty-sweet impression than paler versions, but all should be malty in the palate and finish. The malt flavor lasts into the finish, which is medium-dry to dry, never cloying. Low to no hop flavor (spicy, peppery, or herbal), although paler versions can have slightly higher levels of herbal or spicy hop flavor (which can also come from the yeast). Smooth, well-lagered character, even if made with ale yeast. Aftertaste of malt (character appropriate for the color) with some dryness and light alcohol. Medium to medium-light (lean) body, often with a smooth, creamy-silky character. Moderate to high carbonation. Moderate alcohol warming, but should be very smooth and never hot. Three main variations are included in the style: the brown (brune), the blond (blonde), and the amber (ambrée). The darker versions will have more malt character, while the paler versions can have more hops (but still are malt-focused beers). A related style is Bière de Mars, which is brewed in March (Mars) for present use and will not age as well. Attenuation rates are in the 80-85% range. Some fuller-bodied examples exist, but these are somewhat rare. Age and oxidation in imports often increases fruitiness, caramel flavors, and adds corked and musty notes; these are all signs of mishandling, not characteristic elements of the style.", + "comparison": "Related to the Belgian Saison style, the main difference is that the Bière de Garde is rounder, richer, malt-focused, and lacks the spicy, bitter character of a Saison." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 185, + "fields": { + "name": "Belgian Blond Ale", + "category": "Strong Belgian Ale", + "category_id": "25", + "style_id": "25A", + "category_description": null, + "overall_impression": "A moderate-strength golden ale that has a subtle fruity-spicy Belgian yeast complexity, slightly malty-sweet flavor, and dry finish.", + "aroma": "Light earthy or spicy hop nose, along with a lightly grainy-sweet malt character. Shows a subtle yeast character that may include spicy phenolics, perfumy or honey-like alcohol, or yeasty, fruity esters (commonly orange-like or lemony). Light sweetness that may have a slightly sugar-like character. Subtle yet complex.", + "appearance": "Light to deep gold color. Generally very clear. Large, dense, and creamy white to off-white head. Good head retention with Belgian lace.", + "flavor": "Smooth, light to moderate grainy-sweet malt flavor initially, but finishes medium-dry to dry with some smooth alcohol becoming evident in the aftertaste. Medium hop and alcohol bitterness to balance. Light hop flavor, can be spicy or earthy. Very soft yeast character (esters and alcohols, which are sometimes perfumy or orange/lemon-like). Light spicy phenolics optional. Some lightly caramelized sugar or honey-like sweetness on palate.", + "mouthfeel": "Medium-high to high carbonation, can give mouth-filling bubbly sensation. Medium body. Light to moderate alcohol warmth, but smooth. Can be somewhat creamy.", + "comments": "Often has an almost lager-like character, which gives it a cleaner profile in comparison to many other Belgian styles. Belgians use the term Blond, while the French spell it Blonde. Most commercial examples are in the 6.5 – 7% ABV range. Many Trappist or artisanal Belgian beers are called Blond but those are not representative of this style.", + "history": "Relatively recent development to further appeal to European Pils drinkers, becoming more popular as it is heavily marketed and widely distributed.", + "style_comparison": null, + "tags": "high-strength, pale-color, top-fermented, western-europe, traditional-style, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "4.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "7.00000", + "ingredients": "Belgian Pils malt, aromatic malts, sugar, Belgian yeast strains that produce complex alcohol, phenolics and perfumy esters, Saazer-type, Styrian Goldings, or East Kent Goldings hops. Spices are not traditionally used, although the ingredients and fermentation by-products may give an impression of spicing (often reminiscent of oranges or lemons). If spices are present, should be a background character only.", + "examples": "Affligem Blond, Grimbergen Blond, La Trappe Blond, Leffe Blond, Val-Dieu Blond", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A moderate-strength golden ale that has a subtle fruity-spicy Belgian yeast complexity, slightly malty-sweet flavor, and dry finish. Relatively recent development to further appeal to European Pils drinkers, becoming more popular as it is heavily marketed and widely distributed.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Light earthy or spicy hop nose, along with a lightly grainy-sweet malt character. Shows a subtle yeast character that may include spicy phenolics, perfumy or honey-like alcohol, or yeasty, fruity esters (commonly orange-like or lemony). Light sweetness that may have a slightly sugar-like character. Subtle yet complex. Light to deep gold color. Generally very clear. Large, dense, and creamy white to off-white head. Good head retention with Belgian lace.Smooth, light to moderate grainy-sweet malt flavor initially, but finishes medium-dry to dry with some smooth alcohol becoming evident in the aftertaste. Medium hop and alcohol bitterness to balance. Light hop flavor, can be spicy or earthy. Very soft yeast character (esters and alcohols, which are sometimes perfumy or orange/lemon-like). Light spicy phenolics optional. Some lightly caramelized sugar or honey-like sweetness on palate. Medium-high to high carbonation, can give mouth-filling bubbly sensation. Medium body. Light to moderate alcohol warmth, but smooth. Can be somewhat creamy. Often has an almost lager-like character, which gives it a cleaner profile in comparison to many other Belgian styles. Belgians use the term Blond, while the French spell it Blonde. Most commercial examples are in the 6.5 – 7% ABV range. Many Trappist or artisanal Belgian beers are called Blond but those are not representative of this style.", + "comparison": "Similar strength as a Dubbel, similar character as a Belgian Strong Golden Ale or Tripel, although a bit sweeter and not as bitter." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 186, + "fields": { + "name": "Saison", + "category": "Strong Belgian Ale", + "category_id": "25", + "style_id": "25B", + "category_description": null, + "overall_impression": "Most commonly, a pale, refreshing, highly-attenuated, moderately-bitter, moderate-strength Belgian ale with a very dry finish. Typically highly carbonated, and using non-barley cereal grains and optional spices for complexity, as complements the expressive yeast character that is fruity, spicy, and not overly phenolic. Less common variations include both lower-alcohol and higher-alcohol products, as well as darker versions with additional malt character.", + "aroma": "Quite aromatic, with fruity, spicy, and hoppy characteristics evident. The esters can be fairly high (moderate to high), and are often reminiscent of citrus fruits such as oranges or lemons. The hops are low to moderate and are often spicy, floral, earthy, or fruity. Stronger versions can have a soft, spicy alcohol note (low intensity). Spicy notes are typically peppery rather than clove-like, and can be up to moderately-strong (typically yeast-derived). Subtle, complementary herb or spice additions are allowable, but should not dominate. The malt character is typically slightly grainy in character and low in intensity. Darker and stronger versions will have more noticeable malt, with darker versions taking characteristics associated with grains of that color (toasty, biscuity, caramelly, chocolate, etc.). In versions where sourness is present instead of bitterness, some of the sour character can be detected (low to moderate).", + "appearance": "Pale versions are often a distinctive pale orange but may be pale golden to amber in color (gold to amber-gold is most common). Darker versions may run from copper to dark brown. Long-lasting, dense, rocky white to ivory head resulting in characteristic Belgian lace on the glass as it fades. Clarity is poor to good, though haze is not unexpected in this type of unfiltered beer. Effervescent.", + "flavor": "Medium-low to medium-high fruity and spicy flavors, supported by a low to medium soft malt character, often with some grainy flavors. Bitterness is typically moderate to high, although sourness can be present in place of bitterness (both should not be strong flavors at the same time). Attenuation is extremely high, which gives a characteristic dry finish essential to the style; a Saison should never finish sweet. The fruity character is frequently citrusy (orange or lemon), and the spices are typically peppery. Allow for a range of balance in the fruity-spicy characteristics; this is often driven by the yeast selection. Hop flavor is low to moderate, and generally spicy or earthy in character. The balance is towards the fruity, spicy, hoppy character, with any bitterness or sourness not overwhelming these flavors. Darker versions will have more malt character, with a range of flavors derived from darker malts (toasty, bready, biscuity, chocolate, etc.) that support the fruity-spicy character of the beer (roasted flavors are not typical). Stronger versions will have more malt flavor in general, as well as a light alcohol impression. Herbs and spices are completely optional, but if present should be used in moderation and not detract from the yeast character. The finish is very dry and the aftertaste is typically bitter and spicy. The hop bitterness can be restrained, although it can seem accentuated due to the high attenuation levels.", + "mouthfeel": "Light to medium body. Alcohol sensation varies with strength, from none in table version to light in standard versions, to moderate in super versions. However, any warming character should be fairly low. Very high carbonation with an effervescent quality. There is enough prickly acidity on the tongue to balance the very dry finish. In versions with sourness, a low to moderate tart character can add a refreshing bite, but not be puckering (optional).", + "comments": "Variations exist in strength and color, but they all have similar characteristics and balance, in particularly the refreshing, highly-attenuated, dry character with high carbonation. There is no correlation between strength and color. The balance can change somewhat with strength and color variations, but the family resemblance to the original artisanal ale should be evident. Pale versions are likely to be more bitter and have more hop character, while darker versions tend to have more malt character and sweetness, yielding a more balanced presentations. Stronger versions often will have more malt flavor, richness, and body simply due to their higher gravity. Although they tend to be very well-attenuated, they may not be perceived to be as dry as standard-strength saisons due to their strength. The Saison yeast character is a must, although maltier and richer versions will tend to mask this character more. Often called Farmhouse ales in the US, but this term is not common in Europe where they are simply part of a larger grouping of artisanal ales.", + "history": "A provision ale originally brewed in Wallonia, the French-speaking part of Belgium, for consumption during the active farming season. Originally a lower-alcohol product so as to not debilitate field workers, but tavern-strength products also existed. Higher-strength and different-colored products appeared after WWII. The best known modern saison, Saison Dupont, was first produced in the 1920s. Originally a rustic, artisanal ale made with local farm-produced ingredients, it is now brewed mostly in larger breweries yet retains the image of its humble origins.", + "style_comparison": null, + "tags": "standard-strength, pale-color, top-fermented, western-europe, traditional-style, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00200", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.00800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "5.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "14.00000", + "ingredients": "Not typically spiced, with the yeast, hops and grain providing the character; but spices are allowed if they provide a complementary character. Continental base malts are typical, but the grist frequently contains other grains such as wheat, oats, rye, or spelt. Adjuncts such as sugar and honey can also serve to add complexity and dry out the beer. Darker versions will typically use richer, darker malts, but not typically roasted types. Saazer-type, Styrian or East Kent Golding hops are commonly used. A wide range of herbs or spices can add complexity and uniqueness, but should always meld well with the yeast and hop character. Brettanomyces is not typical for this style; Saisons with Brett should be entered in the American Wild Ale category.", + "examples": "Ellezelloise Saison, Fantôme Saison, Lefebvre Saison 1900, Saison Dupont Vieille Provision, Saison de Pipaix, Saison Regal, Saison Voisin, Boulevard Tank 7 Farmhouse Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify the strength (table, standard, super) and the color (pale, dark).", + "notes": "Most commonly, a pale, refreshing, highly-attenuated, moderately-bitter, moderate-strength Belgian ale with a very dry finish. Typically highly carbonated, and using non-barley cereal grains and optional spices for complexity, as complements the expressive yeast character that is fruity, spicy, and not overly phenolic. Less common variations include both lower-alcohol and higher-alcohol products, as well as darker versions with additional malt character. A provision ale originally brewed in Wallonia, the French-speaking part of Belgium, for consumption during the active farming season. Originally a lower-alcohol product so as to not debilitate field workers, but tavern-strength products also existed. Higher-strength and different-colored products appeared after WWII. The best known modern saison, Saison Dupont, was first produced in the 1920s. Originally a rustic, artisanal ale made with local farm-produced ingredients, it is now brewed mostly in larger breweries yet retains the image of its humble origins.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Quite aromatic, with fruity, spicy, and hoppy characteristics evident. The esters can be fairly high (moderate to high), and are often reminiscent of citrus fruits such as oranges or lemons. The hops are low to moderate and are often spicy, floral, earthy, or fruity. Stronger versions can have a soft, spicy alcohol note (low intensity). Spicy notes are typically peppery rather than clove-like, and can be up to moderately-strong (typically yeast-derived). Subtle, complementary herb or spice additions are allowable, but should not dominate. The malt character is typically slightly grainy in character and low in intensity. Darker and stronger versions will have more noticeable malt, with darker versions taking characteristics associated with grains of that color (toasty, biscuity, caramelly, chocolate, etc.). In versions where sourness is present instead of bitterness, some of the sour character can be detected (low to moderate). Pale versions are often a distinctive pale orange but may be pale golden to amber in color (gold to amber-gold is most common). Darker versions may run from copper to dark brown. Long-lasting, dense, rocky white to ivory head resulting in characteristic Belgian lace on the glass as it fades. Clarity is poor to good, though haze is not unexpected in this type of unfiltered beer. Effervescent.Medium-low to medium-high fruity and spicy flavors, supported by a low to medium soft malt character, often with some grainy flavors. Bitterness is typically moderate to high, although sourness can be present in place of bitterness (both should not be strong flavors at the same time). Attenuation is extremely high, which gives a characteristic dry finish essential to the style; a Saison should never finish sweet. The fruity character is frequently citrusy (orange or lemon), and the spices are typically peppery. Allow for a range of balance in the fruity-spicy characteristics; this is often driven by the yeast selection. Hop flavor is low to moderate, and generally spicy or earthy in character. The balance is towards the fruity, spicy, hoppy character, with any bitterness or sourness not overwhelming these flavors. Darker versions will have more malt character, with a range of flavors derived from darker malts (toasty, bready, biscuity, chocolate, etc.) that support the fruity-spicy character of the beer (roasted flavors are not typical). Stronger versions will have more malt flavor in general, as well as a light alcohol impression. Herbs and spices are completely optional, but if present should be used in moderation and not detract from the yeast character. The finish is very dry and the aftertaste is typically bitter and spicy. The hop bitterness can be restrained, although it can seem accentuated due to the high attenuation levels. Light to medium body. Alcohol sensation varies with strength, from none in table version to light in standard versions, to moderate in super versions. However, any warming character should be fairly low. Very high carbonation with an effervescent quality. There is enough prickly acidity on the tongue to balance the very dry finish. In versions with sourness, a low to moderate tart character can add a refreshing bite, but not be puckering (optional). Variations exist in strength and color, but they all have similar characteristics and balance, in particularly the refreshing, highly-attenuated, dry character with high carbonation. There is no correlation between strength and color. The balance can change somewhat with strength and color variations, but the family resemblance to the original artisanal ale should be evident. Pale versions are likely to be more bitter and have more hop character, while darker versions tend to have more malt character and sweetness, yielding a more balanced presentations. Stronger versions often will have more malt flavor, richness, and body simply due to their higher gravity. Although they tend to be very well-attenuated, they may not be perceived to be as dry as standard-strength saisons due to their strength. The Saison yeast character is a must, although maltier and richer versions will tend to mask this character more. Often called Farmhouse ales in the US, but this term is not common in Europe where they are simply part of a larger grouping of artisanal ales.", + "comparison": "At standard strengths and pale color (the most common variety), like a more highly-attenuated, hoppy, and bitter Belgian blond ale with a stronger yeast character. At super strength and pale color, similar to a Belgian tripel, but often with more of a grainy, rustic quality and sometimes with a spicier yeast character." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 187, + "fields": { + "name": "Belgian Golden Strong Ale", + "category": "Strong Belgian Ale", + "category_id": "25", + "style_id": "25C", + "category_description": null, + "overall_impression": "A pale, complex, effervescent, strong Belgian-style ale that is highly attenuated and features fruity and hoppy notes in preference to phenolics.", + "aroma": "Complex with significant fruity esters, moderate spiciness and low to moderate alcohol and hop aromas. Esters are reminiscent of lighter fruits such as pears, oranges or apples. Moderate to moderately low spicy, peppery phenols. A low to moderate yet distinctive perfumy, floral hop character is often present. Alcohols are soft, spicy, perfumy and low-to-moderate in intensity. No hot alcohol or solventy aromas. The malt character is light and slightly grainy-sweet to nearly neutral.", + "appearance": "Yellow to medium gold in color. Good clarity. Effervescent. Massive, long-lasting, rocky, often beady, white head resulting in characteristic Belgian lace on the glass as it fades.", + "flavor": "Marriage of fruity, spicy and alcohol flavors supported by a soft malt character. Esters are reminiscent of pears, oranges or apples. Low to moderately low phenols are peppery in character. A low to moderate spicy hop character is often present. Alcohols are soft and spicy, and are low-to-moderate in intensity. Bitterness is typically medium to high from a combination of hop bitterness and yeast-produced phenolics. Substantial carbonation and bitterness leads to a dry finish with a low to moderately bitter aftertaste.", + "mouthfeel": "Very highly carbonated; effervescent. Light to medium body, although lighter than the substantial gravity would suggest. Smooth but noticeable alcohol warmth. No hot alcohol or solventy character.", + "comments": "References to the devil are included in the names of many commercial examples of this style, referring to their potent alcoholic strength and as a tribute to the original example (Duvel). The best examples are complex and delicate. High carbonation helps to bring out the many flavors and to increase the perception of a dry finish. Traditionally bottle-conditioned (or refermented in the bottle).", + "history": "Originally developed by the Moortgat brewery after WWI as a response to the growing popularity of Pilsner beers.", + "style_comparison": null, + "tags": "very-high-strength, pale-color, top-fermented, western-europe, traditional-style, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.09500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "22.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "7.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "10.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Pilsner malt with substantial sugary adjuncts. Saazer-type hops or Styrian Goldings are commonly used. Belgian yeast strains are used – those that produce fruity esters, spicy phenolics and higher alcohols – often aided by slightly warmer fermentation temperatures. Fairly soft water. Spicing is not traditional; if present, should be a background character only.", + "examples": "Brigand, Delirium Tremens, Dulle Teve, Duvel, Judas, Lucifer, Piraat, Russian River Damnation", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A pale, complex, effervescent, strong Belgian-style ale that is highly attenuated and features fruity and hoppy notes in preference to phenolics. Originally developed by the Moortgat brewery after WWI as a response to the growing popularity of Pilsner beers.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Complex with significant fruity esters, moderate spiciness and low to moderate alcohol and hop aromas. Esters are reminiscent of lighter fruits such as pears, oranges or apples. Moderate to moderately low spicy, peppery phenols. A low to moderate yet distinctive perfumy, floral hop character is often present. Alcohols are soft, spicy, perfumy and low-to-moderate in intensity. No hot alcohol or solventy aromas. The malt character is light and slightly grainy-sweet to nearly neutral. Yellow to medium gold in color. Good clarity. Effervescent. Massive, long-lasting, rocky, often beady, white head resulting in characteristic Belgian lace on the glass as it fades.Marriage of fruity, spicy and alcohol flavors supported by a soft malt character. Esters are reminiscent of pears, oranges or apples. Low to moderately low phenols are peppery in character. A low to moderate spicy hop character is often present. Alcohols are soft and spicy, and are low-to-moderate in intensity. Bitterness is typically medium to high from a combination of hop bitterness and yeast-produced phenolics. Substantial carbonation and bitterness leads to a dry finish with a low to moderately bitter aftertaste. Very highly carbonated; effervescent. Light to medium body, although lighter than the substantial gravity would suggest. Smooth but noticeable alcohol warmth. No hot alcohol or solventy character. References to the devil are included in the names of many commercial examples of this style, referring to their potent alcoholic strength and as a tribute to the original example (Duvel). The best examples are complex and delicate. High carbonation helps to bring out the many flavors and to increase the perception of a dry finish. Traditionally bottle-conditioned (or refermented in the bottle).", + "comparison": "Strongly resembles a Tripel, but may be even paler, lighter-bodied and even crisper and drier; the drier finish and lighter body also serves to make the assertive hopping and yeast character more prominent. Tends to use yeast that favor ester development (particularly pome fruit) over spiciness in the balance." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 188, + "fields": { + "name": "Trappist Single", + "category": "Trappist Ale", + "category_id": "26", + "style_id": "26A", + "category_description": null, + "overall_impression": "A pale, bitter, highly attenuated and well carbonated Trappist ale, showing a fruity-spicy Trappist yeast character, a spicy-floral hop profile, and a soft, supportive grainy-sweet malt palate.", + "aroma": "Medium-low to medium-high Trappist yeast character, showing a fruity-spicy character along with medium-low to medium spicy or floral hops, occasionally enhanced by light herbal/citrusy spice additions. Low to medium-low grainy-sweet malt backdrop, which may have a light honey or sugar quality. Fruit expression can vary widely (citrus, pome fruit, stone fruit). Light spicy, yeast-driven phenolics found in the best examples. Bubblegum inappropriate.", + "appearance": "Pale yellow to medium gold color. Generally good clarity, with a moderate-sized, persistent, billowy white head with characteristic lacing.", + "flavor": "Fruity, hoppy, bitter, and dry. Initial malty-sweet impression, with a grainy-sweet soft malt palate, and a dry, hoppy finish. The malt may have a light honeyed biscuit or cracker impression. Moderate spicy or floral hop flavor. Esters can be citrus (orange, lemon, grapefruit), pome fruit (apple, pear), or stone fruit (apricot, peach). Light to moderate spicy, peppery, or clove phenolics. Bitterness rises towards the crisp, dry finish, with an aftertaste of light malt, moderate hops and yeast character.", + "mouthfeel": "Medium-light to medium body. Smooth. Medium-high to high carbonation, can be somewhat prickly. Should not have noticeable alcohol warmth.", + "comments": "Often not labeled or available outside the monastery, or infrequently brewed. Might also be called monk's beer or Brother's beer. Highly attenuated, generally 85% or higher.", + "history": "While Trappist breweries have a tradition of brewing a lower-strength beer as a monk's daily ration, the bitter, pale beer this style describes is a relatively modern invention reflecting current tastes. Westvleteren first brewed theirs in 1999, but replaced older lower-gravity products.", + "style_comparison": null, + "tags": "standard-strength, pale-color, top-fermenting, western-europe, craft-style, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05400", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "45.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00400", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "5.00000", + "ingredients": "Pilsner malt, Belgian Trappist yeast, Saazer-type hops.", + "examples": "Achel 5° Blond, St. Bernardus Extra 4, Westmalle Extra, Westvleteren Blond", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A pale, bitter, highly attenuated and well carbonated Trappist ale, showing a fruity-spicy Trappist yeast character, a spicy-floral hop profile, and a soft, supportive grainy-sweet malt palate. While Trappist breweries have a tradition of brewing a lower-strength beer as a monk's daily ration, the bitter, pale beer this style describes is a relatively modern invention reflecting current tastes. Westvleteren first brewed theirs in 1999, but replaced older lower-gravity products.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Medium-low to medium-high Trappist yeast character, showing a fruity-spicy character along with medium-low to medium spicy or floral hops, occasionally enhanced by light herbal/citrusy spice additions. Low to medium-low grainy-sweet malt backdrop, which may have a light honey or sugar quality. Fruit expression can vary widely (citrus, pome fruit, stone fruit). Light spicy, yeast-driven phenolics found in the best examples. Bubblegum inappropriate. Pale yellow to medium gold color. Generally good clarity, with a moderate-sized, persistent, billowy white head with characteristic lacing.Fruity, hoppy, bitter, and dry. Initial malty-sweet impression, with a grainy-sweet soft malt palate, and a dry, hoppy finish. The malt may have a light honeyed biscuit or cracker impression. Moderate spicy or floral hop flavor. Esters can be citrus (orange, lemon, grapefruit), pome fruit (apple, pear), or stone fruit (apricot, peach). Light to moderate spicy, peppery, or clove phenolics. Bitterness rises towards the crisp, dry finish, with an aftertaste of light malt, moderate hops and yeast character. Medium-light to medium body. Smooth. Medium-high to high carbonation, can be somewhat prickly. Should not have noticeable alcohol warmth. Often not labeled or available outside the monastery, or infrequently brewed. Might also be called monk's beer or Brother's beer. Highly attenuated, generally 85% or higher.", + "comparison": "Like a top-fermented Belgian/Trappist interpretation of a German Pils – pale, hoppy, and well-attenuated, but showing prototypical Belgian yeast character. Has less sweetness, higher attenuation, less character malt, and is more hop-centered than a Belgian Pale Ale. More like a much smaller, more highly hopped tripel than a smaller Belgian Blond Ale." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 189, + "fields": { + "name": "Belgian Dubbel", + "category": "Trappist Ale", + "category_id": "26", + "style_id": "26B", + "category_description": null, + "overall_impression": "A deep reddish-copper, moderately strong, malty, complex Trappist ale with rich malty flavors, dark or dried fruit esters, and light alcohol blended together in a malty presentation that still finishes fairly dry.", + "aroma": "Complex, rich-sweet malty aroma, possibly with hints of chocolate, caramel and/or toast (but never roasted or burnt aromas). Moderate fruity esters (usually including raisins and plums, sometimes also dried cherries). Esters sometimes include banana or apple. Spicy phenols and higher alcohols are common (may include light clove and spice, peppery, rose-like and/or perfumy notes). Spicy qualities can be moderate to very low. Alcohol, if present, is soft and never hot or solventy. Low to no spicy, herbal, or floral hop aroma, typically absent. The malt is most prominent in the balance with esters and a touch of alcohol in support, blending together for a harmonious presentation.", + "appearance": "Dark amber to copper in color, with an attractive reddish depth of color. Generally clear. Large, dense, and long-lasting creamy off-white head.", + "flavor": "Similar qualities as aroma. Rich, complex medium to medium-full rich-sweet malt flavor on the palate yet finishes moderately dry. Complex malt, ester, alcohol and phenol interplay (raisiny flavors are common; dried fruit flavors are welcome; clove or pepper spiciness is optional). Balance is always toward the malt. Medium-low bitterness that doesn't persist into the aftertaste. Low spicy, floral, or herbal hop flavor is optional and not usually present.", + "mouthfeel": "Medium-full body. Medium-high carbonation, which can influence the perception of body. Low alcohol warmth. Smooth, never hot or solventy.", + "comments": "Most commercial examples are in the 6.5 – 7% ABV range. Traditionally bottle-conditioned (or refermented in the bottle).", + "history": "Originated at monasteries in the Middle Ages, and was revived in the mid-1800s after the Napoleonic era.", + "style_comparison": null, + "tags": "high-strength, amber-color, top-fermented, western-europe, traditional-style, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "25.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "10.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "17.00000", + "ingredients": "Belgian yeast strains prone to production of higher alcohols, esters, and phenolics are commonly used. Impression of complex grain bill, although traditional versions are typically Belgian Pils malt with caramelized sugar syrup or other unrefined sugars providing much of the character. Saazer-type, English-type or Styrian Goldings hops commonly used. No spices are traditionally used, although restrained use is allowable (background strength only).", + "examples": "Affligem Dubbel, Chimay Première, Corsendonk Pater, Grimbergen Double, La Trappe Dubbel, St. Bernardus Pater 6, Trappistes Rochefort 6, Westmalle Dubbel", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A deep reddish-copper, moderately strong, malty, complex Trappist ale with rich malty flavors, dark or dried fruit esters, and light alcohol blended together in a malty presentation that still finishes fairly dry. Originated at monasteries in the Middle Ages, and was revived in the mid-1800s after the Napoleonic era.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Complex, rich-sweet malty aroma, possibly with hints of chocolate, caramel and/or toast (but never roasted or burnt aromas). Moderate fruity esters (usually including raisins and plums, sometimes also dried cherries). Esters sometimes include banana or apple. Spicy phenols and higher alcohols are common (may include light clove and spice, peppery, rose-like and/or perfumy notes). Spicy qualities can be moderate to very low. Alcohol, if present, is soft and never hot or solventy. Low to no spicy, herbal, or floral hop aroma, typically absent. The malt is most prominent in the balance with esters and a touch of alcohol in support, blending together for a harmonious presentation. Dark amber to copper in color, with an attractive reddish depth of color. Generally clear. Large, dense, and long-lasting creamy off-white head.Similar qualities as aroma. Rich, complex medium to medium-full rich-sweet malt flavor on the palate yet finishes moderately dry. Complex malt, ester, alcohol and phenol interplay (raisiny flavors are common; dried fruit flavors are welcome; clove or pepper spiciness is optional). Balance is always toward the malt. Medium-low bitterness that doesn't persist into the aftertaste. Low spicy, floral, or herbal hop flavor is optional and not usually present. Medium-full body. Medium-high carbonation, which can influence the perception of body. Low alcohol warmth. Smooth, never hot or solventy. Most commercial examples are in the 6.5 – 7% ABV range. Traditionally bottle-conditioned (or refermented in the bottle).", + "comparison": "Should not be as malty as a bock and should not have crystal malt-type sweetness. Similar in strength and balance as a Belgian Blond, but with a richer malt and ester profile. Less strong and intense as a Belgian Dark Strong Ale." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 190, + "fields": { + "name": "Belgian Tripel", + "category": "Trappist Ale", + "category_id": "26", + "style_id": "26C", + "category_description": null, + "overall_impression": "A pale, somewhat spicy, dry, strong Trappist ale with a pleasant rounded malt flavor and firm bitterness. Quite aromatic, with spicy, fruity, and light alcohol notes combining with the supportive clean malt character to produce a surprisingly drinkable beverage considering the high alcohol level.", + "aroma": "Complex bouquet with moderate to significant spiciness, moderate fruity esters and low alcohol and hop aromas. Generous spicy, peppery, sometimes clove-like phenols. Esters are often reminiscent of citrus fruits such as oranges, but may sometimes have a slight banana character. A low yet distinctive spicy, floral, sometimes perfumy hop character is usually found. Alcohols are soft, spicy and low in intensity. The malt character is light, with a soft, slightly grainy-sweet or slightly honey-like impression. The best examples have a seamless, harmonious interplay between the yeast character, hops, malt, and alcohol.", + "appearance": "Deep yellow to deep gold in color. Good clarity. Effervescent. Long-lasting, creamy, rocky, white head resulting in characteristic Belgian lace on the glass as it fades.", + "flavor": "Marriage of spicy, fruity and alcohol flavors supported by a soft, rounded grainy-sweet malt impression, occasionally with a very light honey note. Low to moderate phenols are peppery in character. Esters are reminiscent of citrus fruit such as orange or sometimes lemon, and are low to moderate. A low to moderate spicy hop character is usually found. Alcohols are soft, spicy, and low in intensity. Bitterness is typically medium to high from a combination of hop bitterness and yeast-produced phenolics. Substantial carbonation and bitterness lends a dry finish with a moderately bitter aftertaste with substantial spicy-fruity yeast character. The grainy-sweet malt flavor does not imply any residual sweetness.", + "mouthfeel": "Medium-light to medium body, although lighter than the substantial gravity would suggest. Highly carbonated. The alcohol content is deceptive, and has little to no obvious warming sensation. Always effervescent.", + "comments": "High in alcohol but does not taste strongly of alcohol. The best examples are sneaky, not obvious. High carbonation and attenuation helps to bring out the many flavors and to increase the perception of a dry finish. Most Trappist versions have at least 30 IBUs and are very dry. Traditionally bottle-conditioned (or refermented in the bottle).", + "history": "Originally popularized by the Trappist monastery at Westmalle.", + "style_comparison": null, + "tags": "high-strength, pale-color, top-fermented, western-europe, traditional-style, bitter", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.08500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00800", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "7.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "4.50000", + "color_maximum_unit": "SRM", + "color_maximum_value": "7.00000", + "ingredients": "Pilsner malt, typically with pale sugar adjuncts. Saazer-type hops or Styrian Goldings are commonly used. Belgian yeast strains are used – those that produce fruity esters, spicy phenolics and higher alcohols – often aided by slightly warmer fermentation temperatures. Spice additions are generally not traditional, and if used, should be a background character only. Fairly soft water.", + "examples": "Affligem Tripel, Chimay Cinq Cents, La Rulles Tripel, La Trappe Tripel, St. Bernardus Tripel, Unibroue La Fin Du Monde, Val-Dieu Triple, Watou Tripel, Westmalle Tripel", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A pale, somewhat spicy, dry, strong Trappist ale with a pleasant rounded malt flavor and firm bitterness. Quite aromatic, with spicy, fruity, and light alcohol notes combining with the supportive clean malt character to produce a surprisingly drinkable beverage considering the high alcohol level. Originally popularized by the Trappist monastery at Westmalle.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Complex bouquet with moderate to significant spiciness, moderate fruity esters and low alcohol and hop aromas. Generous spicy, peppery, sometimes clove-like phenols. Esters are often reminiscent of citrus fruits such as oranges, but may sometimes have a slight banana character. A low yet distinctive spicy, floral, sometimes perfumy hop character is usually found. Alcohols are soft, spicy and low in intensity. The malt character is light, with a soft, slightly grainy-sweet or slightly honey-like impression. The best examples have a seamless, harmonious interplay between the yeast character, hops, malt, and alcohol. Deep yellow to deep gold in color. Good clarity. Effervescent. Long-lasting, creamy, rocky, white head resulting in characteristic Belgian lace on the glass as it fades.Marriage of spicy, fruity and alcohol flavors supported by a soft, rounded grainy-sweet malt impression, occasionally with a very light honey note. Low to moderate phenols are peppery in character. Esters are reminiscent of citrus fruit such as orange or sometimes lemon, and are low to moderate. A low to moderate spicy hop character is usually found. Alcohols are soft, spicy, and low in intensity. Bitterness is typically medium to high from a combination of hop bitterness and yeast-produced phenolics. Substantial carbonation and bitterness lends a dry finish with a moderately bitter aftertaste with substantial spicy-fruity yeast character. The grainy-sweet malt flavor does not imply any residual sweetness. Medium-light to medium body, although lighter than the substantial gravity would suggest. Highly carbonated. The alcohol content is deceptive, and has little to no obvious warming sensation. Always effervescent. High in alcohol but does not taste strongly of alcohol. The best examples are sneaky, not obvious. High carbonation and attenuation helps to bring out the many flavors and to increase the perception of a dry finish. Most Trappist versions have at least 30 IBUs and are very dry. Traditionally bottle-conditioned (or refermented in the bottle).", + "comparison": "May resemble a Belgian Golden Strong Ale but slightly darker and somewhat fuller-bodied, with more emphasis on phenolics and less on esters. Usually has a more rounded malt flavor but should never be sweet." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 191, + "fields": { + "name": "Belgian Dark Strong Ale", + "category": "Trappist Ale", + "category_id": "26", + "style_id": "26D", + "category_description": null, + "overall_impression": "A dark, complex, very strong Belgian ale with a delicious blend of malt richness, dark fruit flavors, and spicy elements. Complex, rich, smooth and dangerous.", + "aroma": "Complex, with a rich-sweet malty presence, significant esters and alcohol, and an optional light to moderate spiciness. The malt is rich and strong, and can have a deep bready-toasty quality often with a deep caramel complexity. The fruity esters are strong to moderately low, and can contain raisin, plum, dried cherry, fig or prune notes. Spicy phenols may be present, but usually have a peppery quality not clove-like; light vanilla is possible. Alcohols are soft, spicy, perfumy and/or rose-like, and are low to moderate in intensity. Hops are not usually present (but a very low spicy, floral, or herbal hop aroma is acceptable). No dark/roast malt aroma. No hot alcohols or solventy aromas.", + "appearance": "Deep amber to deep coppery-brown in color (dark in this context implies more deeply colored than golden). Huge, dense, moussy, persistent cream- to light tan-colored head. Can be clear to somewhat hazy.", + "flavor": "Similar to aroma (same malt, ester, phenol, alcohol, and hop comments apply to flavor as well). Moderately malty-rich on the palate, which can have a sweet impression if bitterness is low. Usually moderately dry to dry finish, although may be up to moderately sweet. Medium-low to moderate bitterness; alcohol provides some of the balance to the malt. Generally malty-rich balance, but can be fairly even with bitterness. The complex and varied flavors should blend smoothly and harmoniously. The finish should not be heavy or syrupy.", + "mouthfeel": "High carbonation but not sharp. Smooth but noticeable alcohol warmth. Body can range from medium-light to medium-full and creamy. Most are medium-bodied.", + "comments": "Authentic Trappist versions tend to be drier (Belgians would say more digestible) than Abbey versions, which can be rather sweet and full-bodied. Traditionally bottle-conditioned (or refermented in the bottle). Sometimes known as a Trappist Quadruple, most are simply known by their strength or color designation.", + "history": "Most versions are unique in character reflecting characteristics of individual breweries, produced in limited quantities and often highly sought-after.", + "style_comparison": null, + "tags": "very-high-strength, amber-color, top-fermented, western-europe, traditional-style, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.11000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "8.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "12.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "12.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Belgian yeast strains prone to production of higher alcohols, esters, and sometimes phenolics are commonly used. Impression of a complex grain bill, although many traditional versions are quite simple, with caramelized sugar syrup or unrefined sugars and yeast providing much of the complexity. Saazer-type, English-type or Styrian Goldings hops commonly used. Spices generally not used; if used, keep subtle and in the background.", + "examples": "Achel Extra Brune, Boulevard The Sixth Glass, Chimay Grande Réserve, Gouden Carolus Grand Cru of the Emperor, Rochefort 8 & 10, St. Bernardus Abt 12, Westvleteren 12", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A dark, complex, very strong Belgian ale with a delicious blend of malt richness, dark fruit flavors, and spicy elements. Complex, rich, smooth and dangerous. Most versions are unique in character reflecting characteristics of individual breweries, produced in limited quantities and often highly sought-after.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Complex, with a rich-sweet malty presence, significant esters and alcohol, and an optional light to moderate spiciness. The malt is rich and strong, and can have a deep bready-toasty quality often with a deep caramel complexity. The fruity esters are strong to moderately low, and can contain raisin, plum, dried cherry, fig or prune notes. Spicy phenols may be present, but usually have a peppery quality not clove-like; light vanilla is possible. Alcohols are soft, spicy, perfumy and/or rose-like, and are low to moderate in intensity. Hops are not usually present (but a very low spicy, floral, or herbal hop aroma is acceptable). No dark/roast malt aroma. No hot alcohols or solventy aromas. Deep amber to deep coppery-brown in color (dark in this context implies more deeply colored than golden). Huge, dense, moussy, persistent cream- to light tan-colored head. Can be clear to somewhat hazy.Similar to aroma (same malt, ester, phenol, alcohol, and hop comments apply to flavor as well). Moderately malty-rich on the palate, which can have a sweet impression if bitterness is low. Usually moderately dry to dry finish, although may be up to moderately sweet. Medium-low to moderate bitterness; alcohol provides some of the balance to the malt. Generally malty-rich balance, but can be fairly even with bitterness. The complex and varied flavors should blend smoothly and harmoniously. The finish should not be heavy or syrupy. High carbonation but not sharp. Smooth but noticeable alcohol warmth. Body can range from medium-light to medium-full and creamy. Most are medium-bodied. Authentic Trappist versions tend to be drier (Belgians would say more digestible) than Abbey versions, which can be rather sweet and full-bodied. Traditionally bottle-conditioned (or refermented in the bottle). Sometimes known as a Trappist Quadruple, most are simply known by their strength or color designation.", + "comparison": "Like a larger dubbel, with a fuller body and increased malt richness. Not as bitter or hoppy as a tripel, but of similar strength." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 192, + "fields": { + "name": "Gose", + "category": "Historical Beer", + "category_id": "27", + "style_id": "27A", + "category_description": null, + "overall_impression": "A highly-carbonated, tart and fruity wheat ale with a restrained coriander and salt character and low bitterness. Very refreshing, with bright flavors and high attenuation.", + "aroma": "Light to moderately fruity aroma of pome fruit. Light sourness, slightly sharp. Noticeable coriander, which can have an aromatic lemony quality, and an intensity up to moderate. Light bready, doughy, yeasty character like uncooked sourdough bread. The acidity and coriander can give a bright, lively impression. The salt may be perceived as a very light, clean sea breeze character or just a general freshness, if noticeable at all.", + "appearance": "Unfiltered, with a moderate to full haze. Moderate to tall sized white head with tight bubbles and good retention. Effervescent. Medium yellow color.", + "flavor": "Moderate to restrained but noticeable sourness, like a squeeze of lemon in iced tea. Moderate bready/doughy malt flavor. Light to moderate fruity character of pome fruit, stone fruit, or lemons. Light to moderate salt character, up to the threshold of taste; the salt should be noticeable (particularly in the initial taste) but not taste overtly salty. Low bitterness, no hop flavor. Dry, fully-attenuated finish, with acidity not hops balancing the malt. Acidity can be more noticeable in the finish, and enhance the refreshing quality of the beer. The acidity should be balanced, not forward (although historical versions could be very sour).", + "mouthfeel": "High to very high carbonation, effervescent. Medium-light to medium-full body. Salt may give a slightly tingly, mouthwatering quality, if perceived at all. The yeast and wheat can give it a little body, but it shouldn't have a heavy feel.", + "comments": "Served in traditional cylindrical glasses. Historical versions may have been more sour than modern examples due to spontaneous fermentation, and may be blended with syrups as is done with Berliner Weisse, or Kümmel, a liqueur flavored with caraway, cumin, and fennel. Modern examples are inoculated with lactobacillus, and are more balanced and generally don't need sweetening. Pronounced GOH-zeh.", + "history": "Minor style associated with Leipzig but originating in the Middle Ages in the town of Goslar on the Gose River. Documented to have been in Leipzig by 1740. Leipzig was said to have 80 Gose houses in 1900. Production declined significantly after WWII, and ceased entirely in 1966. Modern production was revived in the 1980s, but the beer is not widely available.", + "style_comparison": null, + "tags": "standard-strength, pale-color, top-fermented, central-europe, historical-style, wheat-beer-family, sour, spice", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05600", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "5.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "12.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.20000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "4.80000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "4.00000", + "ingredients": "Pilsner and wheat malt, restrained use of salt and coriander seed, lactobacillus. The coriander should have a fresh, citrusy (lemon or bitter orange), bright note, and not be vegetal, celery-like, or ham-like. The salt should have a sea salt or fresh salt character, not a metallic, iodine note.", + "examples": "Anderson Valley Gose, Bayerisch Bahnhof Leipziger Gose, Döllnitzer Ritterguts Gose", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A highly-carbonated, tart and fruity wheat ale with a restrained coriander and salt character and low bitterness. Very refreshing, with bright flavors and high attenuation. Minor style associated with Leipzig but originating in the Middle Ages in the town of Goslar on the Gose River. Documented to have been in Leipzig by 1740. Leipzig was said to have 80 Gose houses in 1900. Production declined significantly after WWII, and ceased entirely in 1966. Modern production was revived in the 1980s, but the beer is not widely available.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Light to moderately fruity aroma of pome fruit. Light sourness, slightly sharp. Noticeable coriander, which can have an aromatic lemony quality, and an intensity up to moderate. Light bready, doughy, yeasty character like uncooked sourdough bread. The acidity and coriander can give a bright, lively impression. The salt may be perceived as a very light, clean sea breeze character or just a general freshness, if noticeable at all. Unfiltered, with a moderate to full haze. Moderate to tall sized white head with tight bubbles and good retention. Effervescent. Medium yellow color.Moderate to restrained but noticeable sourness, like a squeeze of lemon in iced tea. Moderate bready/doughy malt flavor. Light to moderate fruity character of pome fruit, stone fruit, or lemons. Light to moderate salt character, up to the threshold of taste; the salt should be noticeable (particularly in the initial taste) but not taste overtly salty. Low bitterness, no hop flavor. Dry, fully-attenuated finish, with acidity not hops balancing the malt. Acidity can be more noticeable in the finish, and enhance the refreshing quality of the beer. The acidity should be balanced, not forward (although historical versions could be very sour). High to very high carbonation, effervescent. Medium-light to medium-full body. Salt may give a slightly tingly, mouthwatering quality, if perceived at all. The yeast and wheat can give it a little body, but it shouldn't have a heavy feel. Served in traditional cylindrical glasses. Historical versions may have been more sour than modern examples due to spontaneous fermentation, and may be blended with syrups as is done with Berliner Weisse, or Kümmel, a liqueur flavored with caraway, cumin, and fennel. Modern examples are inoculated with lactobacillus, and are more balanced and generally don't need sweetening. Pronounced GOH-zeh.", + "comparison": "Perceived acidity is not as intense as Berliner Weisse or Gueuze. Restrained use of salt, coriander, and lactobacillus – should not taste overtly salty. Coriander aroma can be similar to a witbier. Haziness similar to a Weissbier." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 193, + "fields": { + "name": "Kentucky Common", + "category": "Historical Beer", + "category_id": "27", + "style_id": "27B", + "category_description": null, + "overall_impression": "A darker-colored, light-flavored, malt-accented beer with a dry finish and interesting character malt flavors. Refreshing due to its high carbonation and mild flavors, and highly sessionable due to being served very fresh and with restrained alcohol levels.", + "aroma": "Low to medium grainy, corn-like or sweet maltiness with a low toast, biscuity-grainy, bready, or caramel malt accent. Medium to moderately-low hop aroma, usually floral or spicy in character. Clean fermentation character, with possible faint berry ester. Low levels of DMS are acceptable. No sourness. Malt-forward in the balance.", + "appearance": "Amber-orange to light brown in color. Typically clear, but may have some light haze due to limited conditioning. Foam stand may not be long lasting, and is usually white to beige in color.", + "flavor": "Moderate grainy-sweet maltiness with low to medium-low caramel, toffee, bready, and/or biscuity notes. Generally light palate flavors typical of adjunct beers; a low grainy, corn-like sweetness is common. Medium to low floral or spicy hop flavor. Medium to low hop bitterness, which should neither be coarse nor have a harsh aftertaste. May exhibit light fruitiness. Balance in the finish is towards the malt. May have a lightly flinty or minerally-sulfate flavor in the finish. The finish is fairly dry, including the contributions of roasted grains and minerals. No sourness.", + "mouthfeel": "Medium to medium-light body with a relatively soft mouthfeel. Highly carbonated. Can have a creamy texture.", + "comments": "Modern characterizations of the style often mention a lactic sourness or sour mashing, but extensive brewing records from the larger breweries at the turn of the century have no indication of long acid rests, sour mashing, or extensive conditioning. This is likely a modern homebrewer invention, based on the supposition that since indigenous Bourbon distillers used a sour mash, beer brewers must also have used this process. No contemporaneous records indicate sour mashing or that the beer had a sour profile; rather the opposite, that the beer was brewed as an inexpensive, present-use ale. Enter soured versions in American Wild Ale.", + "history": "A true American original style, Kentucky Common was almost exclusively produced and sold around the Louisville Kentucky metropolitan area from some time after the Civil War up to Prohibition. Its hallmark was that it was inexpensive and quickly produced, typically 6 to 8 days from mash to delivery. The beer was racked into barrels while actively fermenting (1.020 – 1.022) and tightly bunged to allow carbonation in the saloon cellar. There is some speculation that it was a variant of the lighter common or cream ale produced throughout much of the East prior to the Civil War and that the darker grains were added by the mostly Germanic brewers to help acidify the typical carbonate water of the Louisville area, or that they had a preference for darker colored beers. Up until the late 19th century, Kentucky Common was not brewed in the summer months unless cellars, usually used for malting, were used for fermentation. With the advent of ice machines, the larger breweries were able to brew year round. In the period from 1900 to prohibition, about 75% of the beer sold in the Louisville area was Kentucky Common. With prohibition, the style died completely as the few larger breweries that survived were almost exclusively lager producers.", + "style_comparison": null, + "tags": "standard-strength, amber-color, top-fermented, north-america, historical-style, balanced", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05500", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "5.50000", + "color_minimum_unit": "SRM", + "color_minimum_value": "11.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "20.00000", + "ingredients": "Six-row barley malt was used with 35% corn grits to dilute the excessive protein levels along with 1 to 2% each caramel and black malt. Native American hops, usually about .2 pounds per barrel of Western hops for bittering and a similar amount of New York hops (such as Clusters) for flavor (15 minutes prior to knock out). Imported continental Saazer-type hops (.1 pounds per barrel) were added at knock out for aroma. Water in the Louisville area was typically moderate to high in carbonates. Mash water was often pre-boiled to precipitate the carbonate and Gypsum was commonly added. Considering the time from mash in to kegging for delivery was typically 6 to 8 days, clearly aggressive top-fermenting yeasts was used.", + "examples": "Apocalypse Brew Works Ortel's 1912", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A darker-colored, light-flavored, malt-accented beer with a dry finish and interesting character malt flavors. Refreshing due to its high carbonation and mild flavors, and highly sessionable due to being served very fresh and with restrained alcohol levels. A true American original style, Kentucky Common was almost exclusively produced and sold around the Louisville Kentucky metropolitan area from some time after the Civil War up to Prohibition. Its hallmark was that it was inexpensive and quickly produced, typically 6 to 8 days from mash to delivery. The beer was racked into barrels while actively fermenting (1.020 – 1.022) and tightly bunged to allow carbonation in the saloon cellar. There is some speculation that it was a variant of the lighter common or cream ale produced throughout much of the East prior to the Civil War and that the darker grains were added by the mostly Germanic brewers to help acidify the typical carbonate water of the Louisville area, or that they had a preference for darker colored beers. Up until the late 19th century, Kentucky Common was not brewed in the summer months unless cellars, usually used for malting, were used for fermentation. With the advent of ice machines, the larger breweries were able to brew year round. In the period from 1900 to prohibition, about 75% of the beer sold in the Louisville area was Kentucky Common. With prohibition, the style died completely as the few larger breweries that survived were almost exclusively lager producers.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to medium grainy, corn-like or sweet maltiness with a low toast, biscuity-grainy, bready, or caramel malt accent. Medium to moderately-low hop aroma, usually floral or spicy in character. Clean fermentation character, with possible faint berry ester. Low levels of DMS are acceptable. No sourness. Malt-forward in the balance. Amber-orange to light brown in color. Typically clear, but may have some light haze due to limited conditioning. Foam stand may not be long lasting, and is usually white to beige in color.Moderate grainy-sweet maltiness with low to medium-low caramel, toffee, bready, and/or biscuity notes. Generally light palate flavors typical of adjunct beers; a low grainy, corn-like sweetness is common. Medium to low floral or spicy hop flavor. Medium to low hop bitterness, which should neither be coarse nor have a harsh aftertaste. May exhibit light fruitiness. Balance in the finish is towards the malt. May have a lightly flinty or minerally-sulfate flavor in the finish. The finish is fairly dry, including the contributions of roasted grains and minerals. No sourness. Medium to medium-light body with a relatively soft mouthfeel. Highly carbonated. Can have a creamy texture. Modern characterizations of the style often mention a lactic sourness or sour mashing, but extensive brewing records from the larger breweries at the turn of the century have no indication of long acid rests, sour mashing, or extensive conditioning. This is likely a modern homebrewer invention, based on the supposition that since indigenous Bourbon distillers used a sour mash, beer brewers must also have used this process. No contemporaneous records indicate sour mashing or that the beer had a sour profile; rather the opposite, that the beer was brewed as an inexpensive, present-use ale. Enter soured versions in American Wild Ale.", + "comparison": "Like a darker-colored cream ale emphasizing corn, but with some light character malt flavor. Malt flavors and balance are probably closest to modern adjunct-driven international amber or dark lagers, Irish red ales, or Belgian pale ales." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 194, + "fields": { + "name": "Lichtenhainer", + "category": "Historical Beer", + "category_id": "27", + "style_id": "27C", + "category_description": null, + "overall_impression": "A sour, smoked, lower-gravity historical German wheat beer. Complex yet refreshing character due to high attenuation and carbonation, along with low bitterness and moderate sourness.", + "aroma": "Moderately strong fresh smoky aroma, light hints of sourness, medium-low fruity esters, possibly apples or lemons, moderate bready-grainy malt. The smoke character is stronger than the bready notes, and the smoke has a ‘dry' character, like the remnants of an old fire, not a ‘greasy' smoke.", + "appearance": "Tall off-white head, rocky and persistent. Deep yellow to light gold color. Fair clarity, may be somewhat hazy.", + "flavor": "Moderately strong fruity flavor, possibly lemons or apples. Moderate intensity, clean lactic tartness (no funk). Similar smoky character as aroma (dry wood fire), medium strength. Dry finish, with acidity and smoke in the aftertaste. Low bitterness; the acidity is providing the balance, not hops. Fresh, clean palate and slightly puckery aftertaste. The wheat character is on the low side; the smoke and acidity are more prominent in the balance. The lemony-tart/green apple flavor is strongest in the finish, with smoke a close second. Complex.", + "mouthfeel": "Tingly acidity. High carbonation. Medium to medium-light body.", + "comments": "Served young. Smoke and sour is an unusual combination that is not for everyone.", + "history": "Originating in Lichtenhain, in Thüringen (central Germany). Height of popularity was towards the end of the 1800s, and was widely available throughout Thüringen. Like a pre-1840 Berliner Weisse.", + "style_comparison": null, + "tags": "standard-strength, pale-color, top-fermented, central-europe, historical-style, wheat-beer-family, sour, smoke", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03200", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.04000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "5.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "12.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00400", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.00800", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "4.70000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Smoked barley malt, wheat malt, lactobacillus, top-fermenting yeast. Grists vary, but the wheat would typically be 30-50%.", + "examples": null, + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A sour, smoked, lower-gravity historical German wheat beer. Complex yet refreshing character due to high attenuation and carbonation, along with low bitterness and moderate sourness. Originating in Lichtenhain, in Thüringen (central Germany). Height of popularity was towards the end of the 1800s, and was widely available throughout Thüringen. Like a pre-1840 Berliner Weisse.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderately strong fresh smoky aroma, light hints of sourness, medium-low fruity esters, possibly apples or lemons, moderate bready-grainy malt. The smoke character is stronger than the bready notes, and the smoke has a ‘dry' character, like the remnants of an old fire, not a ‘greasy' smoke. Tall off-white head, rocky and persistent. Deep yellow to light gold color. Fair clarity, may be somewhat hazy.Moderately strong fruity flavor, possibly lemons or apples. Moderate intensity, clean lactic tartness (no funk). Similar smoky character as aroma (dry wood fire), medium strength. Dry finish, with acidity and smoke in the aftertaste. Low bitterness; the acidity is providing the balance, not hops. Fresh, clean palate and slightly puckery aftertaste. The wheat character is on the low side; the smoke and acidity are more prominent in the balance. The lemony-tart/green apple flavor is strongest in the finish, with smoke a close second. Complex. Tingly acidity. High carbonation. Medium to medium-light body. Served young. Smoke and sour is an unusual combination that is not for everyone.", + "comparison": "In the same general historical lower-alcohol top-fermenting central European wheat beer family as Gose, Grodziskie, and Berliner weisse, has elements of all of them but having its own unique balance – sour and smoke is not found in any of the other beers. Not as acidic as Berliner weisse, probably more like a smoked Gose without coriander and salt, or a Grodziskie with Gose-like acidity." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 195, + "fields": { + "name": "London Brown Ale", + "category": "Historical Beer", + "category_id": "27", + "style_id": "27D", + "category_description": null, + "overall_impression": "A luscious, sweet, malt-oriented dark brown ale, with caramel and toffee malt complexity and a sweet finish.", + "aroma": "Moderate malty-sweet aroma, often with a rich, caramel or toffee-like character. Low to medium fruity esters, often dark fruit like plums. Very low to no hop aroma, earthy or floral qualities.", + "appearance": "Medium to very dark brown color, but can be nearly black. Nearly opaque, although should be relatively clear if visible. Low to moderate off-white to tan head.", + "flavor": "Deep, caramel or toffee-like malty and sweet flavor on the palate and lasting into the finish. Hints of biscuit and coffee are common. Some fruity esters can be present (typically dark fruit); relatively clean fermentation profile for an English ale. Low hop bitterness. Hop flavor is low to non-existent, possibly earthy or floral in character. Moderately-low to no perceivable roasty or bitter black malt flavor. Moderately sweet finish with a smooth, malty aftertaste. May have a sugary-sweet flavor.", + "mouthfeel": "Medium body, but the residual sweetness may give a heavier impression. Medium-low to medium carbonation. Quite creamy and smooth in texture, particularly for its gravity.", + "comments": "Increasingly rare; Mann's has over 90% market share in Britain, but in an increasingly small segment. Always bottled. Frequently used as a sweet mixer with cask mild and bitter in pubs. Commercial versions can be pasteurized and back-sweetened, which gives more of a sugary-sweet flavor.", + "history": "Developed by Mann's as a bottled product in 1902. Claimed at the time to be \"the sweetest beer in London.\" Pre-WWI versions were around 5% ABV, but same general balance. Declined in popularity in second half of 20th century, and now nearly extinct.", + "style_comparison": null, + "tags": "session-strength, dark-color, top-fermented, british-isles, historical-style, brown-ale-family, malty, sweet", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.03300", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.03800", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "15.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "20.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01200", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "2.80000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.60000", + "color_minimum_unit": "SRM", + "color_minimum_value": "22.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "35.00000", + "ingredients": "English pale ale malt as a base with a healthy proportion of darker caramel malts and often some roasted (black) malt and wheat malt (this is Mann's traditional grist – others can rely on dark sugars for color and flavor). Moderate to high carbonate water. English hop varieties are most authentic, though with low flavor and bitterness almost any type could be used. Post-fermentation sweetening with lactose or artificial sweeteners, or sucrose (if pasteurized).", + "examples": "Harveys Bloomsbury Brown Ale, Mann's Brown Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A luscious, sweet, malt-oriented dark brown ale, with caramel and toffee malt complexity and a sweet finish. Developed by Mann's as a bottled product in 1902. Claimed at the time to be \"the sweetest beer in London.\" Pre-WWI versions were around 5% ABV, but same general balance. Declined in popularity in second half of 20th century, and now nearly extinct.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Moderate malty-sweet aroma, often with a rich, caramel or toffee-like character. Low to medium fruity esters, often dark fruit like plums. Very low to no hop aroma, earthy or floral qualities. Medium to very dark brown color, but can be nearly black. Nearly opaque, although should be relatively clear if visible. Low to moderate off-white to tan head.Deep, caramel or toffee-like malty and sweet flavor on the palate and lasting into the finish. Hints of biscuit and coffee are common. Some fruity esters can be present (typically dark fruit); relatively clean fermentation profile for an English ale. Low hop bitterness. Hop flavor is low to non-existent, possibly earthy or floral in character. Moderately-low to no perceivable roasty or bitter black malt flavor. Moderately sweet finish with a smooth, malty aftertaste. May have a sugary-sweet flavor. Medium body, but the residual sweetness may give a heavier impression. Medium-low to medium carbonation. Quite creamy and smooth in texture, particularly for its gravity. Increasingly rare; Mann's has over 90% market share in Britain, but in an increasingly small segment. Always bottled. Frequently used as a sweet mixer with cask mild and bitter in pubs. Commercial versions can be pasteurized and back-sweetened, which gives more of a sugary-sweet flavor.", + "comparison": "May seem somewhat like a less roasty version of a sweet stout (and lower-gravity, at least for US sweet stout examples) or a sweet version of a dark mild." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 196, + "fields": { + "name": "Piwo Grodziskie", + "category": "Historical Beer", + "category_id": "27", + "style_id": "27E", + "category_description": null, + "overall_impression": "A low-gravity, highly-carbonated, light-bodied ale combining an oak-smoked flavor with a clean hop bitterness. Highly sessionable.", + "aroma": "Low to moderate oak wood smoke is the most prominent aroma component, but can be subtle and hard to detect. A low spicy, herbal, or floral hop aroma is typically present, and should be lower than or equal to the smoke in intensity. Hints of grainy wheat are also detected in the best examples. The aroma is otherwise clean, although light pome fruit esters (especially ripe red apple or pear) are welcome. No acidity. Slight water-derived sulfury notes may be present.", + "appearance": "Pale yellow to medium gold in color with excellent clarity. A tall, billowy, white, tightly-knit head with excellent retention is distinctive. Murkiness is a fault.", + "flavor": "Moderately-low to medium oak smoke flavor up front which carries into the finish; the smoke can be stronger in flavor than in aroma. The smoke character is gentle, should not be acrid, and can lend an impression of sweetness. A moderate to strong bitterness is readily evident which lingers through the finish. The overall balance is toward bitterness. Low but perceptible spicy, herbal, or floral hop flavor. Low grainy wheat character in the background. Light pome fruit esters (red apple or pear) may be present. Dry, crisp finish. No sourness.", + "mouthfeel": "Light in body, with a crisp and dry finish. Carbonation is quite high and can add a slight carbonic bite or prickly sensation. No noticeable alcohol warmth.", + "comments": "Pronounced in English as \"pivo grow-JEES-kee-uh\" (meaning: Grodzisk beer). Known as Grätzer (pronounced \"GRATE-sir\") in German-speaking countries, and in some beer literature. Traditionally made using a multi-step mash, a long boil (~2 hours), and multiple strains of ale yeast. The beer is never filtered but Isinglass is used to clarify before bottle conditioning. Traditionally served in tall conical glassware to accommodate the vigorous foam stand.", + "history": "Developed as a unique style centuries ago in the Polish city of Grodzisk (known as Grätz when ruled by Prussia and Germany). Its fame and popularity rapidly extended to other parts of the world in the late 19th and early 20th century. Regular commercial production declined after WWII and ceased altogether in the early-mid 1990s. This style description describes the traditional version during its period of greatest popularity.", + "style_comparison": null, + "tags": "session-strength, pale-color, top-fermented, central-europe, historical-style, wheat-beer-family, bitter, smoke", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.02800", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.03200", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "35.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01200", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "2.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "3.30000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Grain bill usually consists entirely of oak-smoked wheat malt. Oak-smoked wheat malt has a different (and less intense) smoke character than German beechwood-smoked barley malt; it has a drier, crisper, leaner quality – a bacon/ham smoke flavor is inappropriate. Saazer-type hops (Polish, Czech or German), moderate hardness sulfate water, and a relatively clean and attenuative continental ale yeast fermented at moderate ale temperatures are traditional. German hefeweizen yeast or other strains with a phenol or strong ester character are inappropriate.", + "examples": null, + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A low-gravity, highly-carbonated, light-bodied ale combining an oak-smoked flavor with a clean hop bitterness. Highly sessionable. Developed as a unique style centuries ago in the Polish city of Grodzisk (known as Grätz when ruled by Prussia and Germany). Its fame and popularity rapidly extended to other parts of the world in the late 19th and early 20th century. Regular commercial production declined after WWII and ceased altogether in the early-mid 1990s. This style description describes the traditional version during its period of greatest popularity.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to moderate oak wood smoke is the most prominent aroma component, but can be subtle and hard to detect. A low spicy, herbal, or floral hop aroma is typically present, and should be lower than or equal to the smoke in intensity. Hints of grainy wheat are also detected in the best examples. The aroma is otherwise clean, although light pome fruit esters (especially ripe red apple or pear) are welcome. No acidity. Slight water-derived sulfury notes may be present. Pale yellow to medium gold in color with excellent clarity. A tall, billowy, white, tightly-knit head with excellent retention is distinctive. Murkiness is a fault.Moderately-low to medium oak smoke flavor up front which carries into the finish; the smoke can be stronger in flavor than in aroma. The smoke character is gentle, should not be acrid, and can lend an impression of sweetness. A moderate to strong bitterness is readily evident which lingers through the finish. The overall balance is toward bitterness. Low but perceptible spicy, herbal, or floral hop flavor. Low grainy wheat character in the background. Light pome fruit esters (red apple or pear) may be present. Dry, crisp finish. No sourness. Light in body, with a crisp and dry finish. Carbonation is quite high and can add a slight carbonic bite or prickly sensation. No noticeable alcohol warmth. Pronounced in English as \"pivo grow-JEES-kee-uh\" (meaning: Grodzisk beer). Known as Grätzer (pronounced \"GRATE-sir\") in German-speaking countries, and in some beer literature. Traditionally made using a multi-step mash, a long boil (~2 hours), and multiple strains of ale yeast. The beer is never filtered but Isinglass is used to clarify before bottle conditioning. Traditionally served in tall conical glassware to accommodate the vigorous foam stand.", + "comparison": "Similar in strength to a Berliner Weisse, but never sour. Has a smoked character but less intense than in a Rauchbier." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 197, + "fields": { + "name": "Pre-Prohibition Lager", + "category": "Historical Beer", + "category_id": "27", + "style_id": "27F", + "category_description": null, + "overall_impression": "A clean, refreshing, but bitter pale lager, often showcasing a grainy-sweet corn flavor. All malt or rice-based versions have a crisper, more neutral character. The higher bitterness level is the largest differentiator between this style and most modern mass-market pale lagers, but the more robust flavor profile also sets it apart.", + "aroma": "Low to medium grainy, corn-like or sweet maltiness may be evident (although rice-based beers are more neutral). Medium to moderately high hop aroma, with a range of character from rustic to floral to herbal/spicy; a fruity or citrusy modern hop character is inappropriate. Clean lager character. Low DMS is acceptable. May show some yeast character, as with modern American lagers; allow for a range of subtle supporting yeast notes.", + "appearance": "Yellow to deep gold color. Substantial, long lasting white head. Bright clarity.", + "flavor": "Medium to medium-high maltiness with a grainy flavor, and optionally a corn-like roundness and impression of sweetness. Substantial hop bitterness stands up to the malt and lingers through the dry finish. All malt and rice-based versions are often crisper, drier, and generally lack corn-like flavors. Medium to high hop flavor, with a rustic, floral, or herbal/spicy character. Medium to high hop bitterness, which should neither be overly coarse nor have a harsh aftertaste. Allow for a range of lager yeast character, as with modern American lagers, but generally fairly neutral.", + "mouthfeel": "Medium body with a moderately rich, creamy mouthfeel. Smooth and well-lagered. Medium to high carbonation levels.", + "comments": "The classic American Pilsner was brewed both pre-Prohibition and post-Prohibition with some differences. OGs of 1.050–1.060 would have been appropriate for pre-Prohibition beers while gravities dropped to 1.044–1.048 after Prohibition. Corresponding IBUs dropped from a pre-Prohibition level of 30–40 to 25–30 after Prohibition.", + "history": "A version of Pilsner brewed in the USA by immigrant German brewers who brought the process and yeast with them, but who had to adapt their recipes to work with native hops and malt. This style died out after Prohibition but was resurrected by homebrewers in the 1990s. Few commercial versions are made, so the style still remains mostly a homebrew phenomenon.", + "style_comparison": null, + "tags": "standard-strength, pale-color, bottom-fermented, lagered, north-america, historical-style, pilsner-family, bitter, hoppy", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04400", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "25.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "40.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "3.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "6.00000", + "ingredients": "Six-row barley with 20% to 30% flaked maize (corn) or rice to dilute the excessive protein levels; modern versions may be all malt. Native American hops such as Clusters, traditional continental hops, or modern noble-type crosses are also appropriate. Modern American hops such as Cascade are inappropriate. Water with a high mineral content can lead to an unpleasant coarseness in flavor and harshness in aftertaste. A wide range of lager yeast character can be exhibited, although modern versions tend to be fairly clean.", + "examples": "Anchor California Lager, Coors Batch 19, Little Harpeth Chicken Scratch", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A clean, refreshing, but bitter pale lager, often showcasing a grainy-sweet corn flavor. All malt or rice-based versions have a crisper, more neutral character. The higher bitterness level is the largest differentiator between this style and most modern mass-market pale lagers, but the more robust flavor profile also sets it apart. A version of Pilsner brewed in the USA by immigrant German brewers who brought the process and yeast with them, but who had to adapt their recipes to work with native hops and malt. This style died out after Prohibition but was resurrected by homebrewers in the 1990s. Few commercial versions are made, so the style still remains mostly a homebrew phenomenon.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Low to medium grainy, corn-like or sweet maltiness may be evident (although rice-based beers are more neutral). Medium to moderately high hop aroma, with a range of character from rustic to floral to herbal/spicy; a fruity or citrusy modern hop character is inappropriate. Clean lager character. Low DMS is acceptable. May show some yeast character, as with modern American lagers; allow for a range of subtle supporting yeast notes. Yellow to deep gold color. Substantial, long lasting white head. Bright clarity.Medium to medium-high maltiness with a grainy flavor, and optionally a corn-like roundness and impression of sweetness. Substantial hop bitterness stands up to the malt and lingers through the dry finish. All malt and rice-based versions are often crisper, drier, and generally lack corn-like flavors. Medium to high hop flavor, with a rustic, floral, or herbal/spicy character. Medium to high hop bitterness, which should neither be overly coarse nor have a harsh aftertaste. Allow for a range of lager yeast character, as with modern American lagers, but generally fairly neutral. Medium body with a moderately rich, creamy mouthfeel. Smooth and well-lagered. Medium to high carbonation levels. The classic American Pilsner was brewed both pre-Prohibition and post-Prohibition with some differences. OGs of 1.050–1.060 would have been appropriate for pre-Prohibition beers while gravities dropped to 1.044–1.048 after Prohibition. Corresponding IBUs dropped from a pre-Prohibition level of 30–40 to 25–30 after Prohibition.", + "comparison": "Similar balance and bitterness as modern Czech Premium Pale Lagers, but exhibiting native American grains and hops from the era before US Prohibition. More robust, bitter, and flavorful than modern American pale lagers, and often with higher alcohol." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 198, + "fields": { + "name": "Pre-Prohibition Porter", + "category": "Historical Beer", + "category_id": "27", + "style_id": "27G", + "category_description": null, + "overall_impression": "An American adaptation of English Porter using American ingredients, including adjuncts.", + "aroma": "Base grainy malt aroma with low levels of dark malt (slight burnt or chocolate notes). Low hop aroma. Low to moderate low levels of DMS acceptable. May show low levels of caramel and biscuit aroma. No to very low esters. Light adjunct (licorice, molasses) aroma acceptable. Diacetyl low to none. Clean lager profile acceptable.", + "appearance": "Medium to dark brown, though some examples can be nearly black in color, with ruby or mahogany highlights. Relatively clear. Light to medium tan head which will persist in the glass.", + "flavor": "Grainy base malt flavor, with low levels of chocolate or burnt black malt notes, along with low levels of caramel, biscuit, licorice, and toast notes. Corn/DMS flavor acceptable at low to moderate levels. American hop bitterness low to moderate and American hop flavor low to none. Balance is typically even between malt and hops, with a moderate dry finish.", + "mouthfeel": "Medium light to medium body, moderate carbonation, low to moderate creaminess. May have a slight astringency from the dark malts.", + "comments": "Also sometimes known as Pennsylvania Porter or East Coast Porter.", + "history": "Commercially brewed in Philadelphia during the revolutionary period, the beer gained wide acceptance in the newly formed mid-Atlantic states, and was endorsed by President George Washington.", + "style_comparison": null, + "tags": "standard-strength, dark-color, any-fermentation, north-america, historical-style, porter-family, malty", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "20.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "30.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01600", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "18.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "30.00000", + "ingredients": "Two and six row malt (or a combination of both) are used, along with low percentages of dark malts including black, chocolate, and brown malt (roasted barley is not typically used). Adjuncts are acceptable, including corn, brewers licorice, molasses, and porterine. More historical versions will have up to twenty percent adjuncts. Lager or ale yeast. Emphasis on historical or traditional American bittering hops (Cluster, Willamette, Cascade), though finishing and flavor hops may vary.", + "examples": "Stegmaier Porter, Yuengling Porter", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "An American adaptation of English Porter using American ingredients, including adjuncts. Commercially brewed in Philadelphia during the revolutionary period, the beer gained wide acceptance in the newly formed mid-Atlantic states, and was endorsed by President George Washington.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Base grainy malt aroma with low levels of dark malt (slight burnt or chocolate notes). Low hop aroma. Low to moderate low levels of DMS acceptable. May show low levels of caramel and biscuit aroma. No to very low esters. Light adjunct (licorice, molasses) aroma acceptable. Diacetyl low to none. Clean lager profile acceptable. Medium to dark brown, though some examples can be nearly black in color, with ruby or mahogany highlights. Relatively clear. Light to medium tan head which will persist in the glass.Grainy base malt flavor, with low levels of chocolate or burnt black malt notes, along with low levels of caramel, biscuit, licorice, and toast notes. Corn/DMS flavor acceptable at low to moderate levels. American hop bitterness low to moderate and American hop flavor low to none. Balance is typically even between malt and hops, with a moderate dry finish. Medium light to medium body, moderate carbonation, low to moderate creaminess. May have a slight astringency from the dark malts. Also sometimes known as Pennsylvania Porter or East Coast Porter.", + "comparison": "Smoother and less hoppy-bitter than a (modern) American Porter, less caramelly than an English Porter with more of an adjunct/lager character." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 199, + "fields": { + "name": "Roggenbier", + "category": "Historical Beer", + "category_id": "27", + "style_id": "27H", + "category_description": null, + "overall_impression": "A dunkelweizen made with rye rather than wheat, but with a greater body and light finishing hops.", + "aroma": "Light to moderate spicy rye aroma intermingled with light to moderate weizen yeast aromatics (spicy clove and fruity esters, either banana or citrus). Light spicy, floral, or herbal hops are acceptable.", + "appearance": "Light coppery-orange to very dark reddish or coppery-brown color. Large creamy off-white to tan head, quite dense and persistent (often thick and rocky). Cloudy, hazy appearance.", + "flavor": "Grainy, moderately-low to moderately-strong spicy rye flavor, often having a hearty flavor reminiscent of rye or pumpernickel bread. Medium to medium-low bitterness allows an initial malt sweetness (sometimes with a bit of caramel) to be tasted before yeast and rye character takes over. Low to moderate weizen yeast character (banana, clove), although the balance can vary. Medium-dry, grainy finish with a lightly bitter (from rye) aftertaste. Low to moderate spicy, herbal, or floral hop flavor acceptable, and can persist into aftertaste.", + "mouthfeel": "Medium to medium-full body. High carbonation. Moderately creamy.", + "comments": "Rye is a huskless grain and is difficult to mash, often resulting in a gummy mash texture that is prone to sticking. Rye has been characterized as having the most assertive flavor of all cereal grains. It is inappropriate to add caraway seeds to a roggenbier (as some American brewers do); the rye character is traditionally from the rye grain only.", + "history": "A specialty German rye beer originally brewed in Regensburg, Bavaria. Never a widely popular style, it has all but disappeared in modern times.", + "style_comparison": null, + "tags": "standard-strength, amber-color, top-fermenting, central-europe, historical-style, wheat-beer-family", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.05600", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "10.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "20.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01400", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "4.50000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "14.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "19.00000", + "ingredients": "Malted rye typically constitutes 50% or greater of the grist (some versions have 60-65% rye). Remainder of grist can include pale malt, Munich malt, wheat malt, crystal malt and/or small amounts of debittered dark malts for color adjustment. Weizen yeast provides distinctive banana esters and clove phenols. Light usage of Saazer-type hops in bitterness, flavor and aroma. Lower fermentation temperatures accentuate the clove character by suppressing ester formation. Decoction mash traditionally used (as with weissbiers).", + "examples": "Thurn und Taxis Roggen", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A dunkelweizen made with rye rather than wheat, but with a greater body and light finishing hops. A specialty German rye beer originally brewed in Regensburg, Bavaria. Never a widely popular style, it has all but disappeared in modern times.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Light to moderate spicy rye aroma intermingled with light to moderate weizen yeast aromatics (spicy clove and fruity esters, either banana or citrus). Light spicy, floral, or herbal hops are acceptable. Light coppery-orange to very dark reddish or coppery-brown color. Large creamy off-white to tan head, quite dense and persistent (often thick and rocky). Cloudy, hazy appearance.Grainy, moderately-low to moderately-strong spicy rye flavor, often having a hearty flavor reminiscent of rye or pumpernickel bread. Medium to medium-low bitterness allows an initial malt sweetness (sometimes with a bit of caramel) to be tasted before yeast and rye character takes over. Low to moderate weizen yeast character (banana, clove), although the balance can vary. Medium-dry, grainy finish with a lightly bitter (from rye) aftertaste. Low to moderate spicy, herbal, or floral hop flavor acceptable, and can persist into aftertaste. Medium to medium-full body. High carbonation. Moderately creamy. Rye is a huskless grain and is difficult to mash, often resulting in a gummy mash texture that is prone to sticking. Rye has been characterized as having the most assertive flavor of all cereal grains. It is inappropriate to add caraway seeds to a roggenbier (as some American brewers do); the rye character is traditionally from the rye grain only.", + "comparison": "A more distinctive variant of a dunkelweizen using malted rye instead of malted wheat. American Rye Beers will not have the weizen yeast character, and likely more hops." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 200, + "fields": { + "name": "Sahti", + "category": "Historical Beer", + "category_id": "27", + "style_id": "27I", + "category_description": null, + "overall_impression": "A sweet, heavy, strong traditional Finnish beer with a rye, juniper, and juniper berry flavor and a strong banana-clove yeast character.", + "aroma": "High banana esters with moderate to moderately-high clove-like phenolics. Not sour. May have a low to moderate juniper character. Grainy malt, caramel, and rye in background. Light alcohol aroma. Sweet malt impression.", + "appearance": "Pale yellow to dark brown color; most are medium to dark amber. Generally quite cloudy (unfiltered). Little head, due to low carbonation.", + "flavor": "Strong banana and moderate to moderately-high clove yeast character. Moderate grainy rye flavor. Low bitterness. Fairly sweet finish. Juniper can add a pine-like flavor; juniper berries can add a gin-like flavor; both should be complementary, not dominant. No noticeable hop flavor. Moderate caramel flavor but no roast. Multi-layered and complex, with kind of a wortiness that is unusual in other beer styles. Not sour.", + "mouthfeel": "Thick, viscous, and heavy with protein (no boil means no hot break). Nearly still to medium-low carbonation. Strongly warming from the alcohol level and young age, but often masked by sweetness.", + "comments": "The use of rye doesn't mean that it should taste like caraway (a dominant flavor in rye bread). The use of juniper berries will give a flavor like gin (similarly flavored with juniper berries). The juniper acts a bit like hops in the balance and flavor, providing some counterpoint to the sweet malt.", + "history": "An indigenous traditional style from Finland; a farmhouse tradition for at least 500 years, often brewed for festive occasions like summer weddings, and consumed within a week or two of brewing. A similar tradition exists in Estonia, where the beer is known as koduolu.", + "style_comparison": null, + "tags": "high-strength, amber-color, top-fermented, central-europe, historical-style, spic", + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07600", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.12000", + "international_bitterness_units_minimum_unit": "IBUs", + "international_bitterness_units_minimum_value": "7.00000", + "international_bitterness_units_maximum_unit": "IBUs", + "international_bitterness_units_maximum_value": "15.00000", + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01600", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "7.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "11.00000", + "color_minimum_unit": "SRM", + "color_minimum_value": "4.00000", + "color_maximum_unit": "SRM", + "color_maximum_value": "22.00000", + "ingredients": "Malted barley along with malted and unmalted grains, often rye. Low hops. Juniper boughs used for lautering (traditionally in a hollowed-out log), but often producing a juniper/berry character. Often uses top-fermenting baker's yeast in a fast, warm fermentation (German Weizen yeast is a good substitute). Not boiled; a long mash steep is used, with a separately added hop tea.", + "examples": null, + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": null, + "notes": "A sweet, heavy, strong traditional Finnish beer with a rye, juniper, and juniper berry flavor and a strong banana-clove yeast character. An indigenous traditional style from Finland; a farmhouse tradition for at least 500 years, often brewed for festive occasions like summer weddings, and consumed within a week or two of brewing. A similar tradition exists in Estonia, where the beer is known as koduolu.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "High banana esters with moderate to moderately-high clove-like phenolics. Not sour. May have a low to moderate juniper character. Grainy malt, caramel, and rye in background. Light alcohol aroma. Sweet malt impression. Pale yellow to dark brown color; most are medium to dark amber. Generally quite cloudy (unfiltered). Little head, due to low carbonation.Strong banana and moderate to moderately-high clove yeast character. Moderate grainy rye flavor. Low bitterness. Fairly sweet finish. Juniper can add a pine-like flavor; juniper berries can add a gin-like flavor; both should be complementary, not dominant. No noticeable hop flavor. Moderate caramel flavor but no roast. Multi-layered and complex, with kind of a wortiness that is unusual in other beer styles. Not sour. Thick, viscous, and heavy with protein (no boil means no hot break). Nearly still to medium-low carbonation. Strongly warming from the alcohol level and young age, but often masked by sweetness. The use of rye doesn't mean that it should taste like caraway (a dominant flavor in rye bread). The use of juniper berries will give a flavor like gin (similarly flavored with juniper berries). The juniper acts a bit like hops in the balance and flavor, providing some counterpoint to the sweet malt.", + "comparison": "Strong resemblance to Weizenbocks, but sweet and thick with a rye and juniper character." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 201, + "fields": { + "name": "Brett Beer", + "category": "American Wild Ale", + "category_id": "28", + "style_id": "28A", + "category_description": null, + "overall_impression": "Most often drier and fruitier than the base style suggests. Funky notes range from low to high, depending on the age of the beer and strain(s) of Brett used. Funkiness is generally restrained in younger 100% Brett examples, but tends to increase with age. May possess a light acidity, although this does not come from Brett.", + "aroma": "Variable by base style. Young Brett-fermented beers will possess more fruity notes (e.g., tropical fruit, stone fruit, or citrus), but this is variable by the strain(s) of Brett used. For 100% Brett beers heavily hopped with American hop varieties, the fermentation-derived flavors are often difficult to tease from the hop aromatics. Older 100% Brett beers may start to develop a little funk (e.g., barnyard, wet hay, or slightly earthy or smoky notes), but this character should not dominate. If the beer is fermented with a brewer's yeast in addition to Brett, some of the character of the primary yeast may remain. A faint sourness is acceptable but should not be a prominent character.", + "appearance": "Variable by base style. Clarity can be variable, and depends on the base style and ingredients used. Some haze is not necessarily a fault.", + "flavor": "Variable by base style. Brett character may range from minimal to aggressive. Can be quite fruity (e.g., tropical fruit, berry, stone fruit, citrus), or have some smoky, earthy, or barnyard character. Should not be unpleasantly funky, such as Band-Aid, fetid, nail polish remover, cheese, etc. Light sourness is acceptable with the beer being lightly tart, but should not be truly sour. Always fruitier when young, gaining more funk with age. May not be acetic or lactic. Malt flavors are often less pronounced than in the base style, leaving a beer most often dry and crisp due to high attenuation by the Brett.", + "mouthfeel": "Variable by base style. Generally a light body, lighter than what might be expected from the base style but an overly thin body is a fault. Generally moderate to high carbonation. Head retention is variable.", + "comments": "The base style describes most of the character of these beers, but the addition of Brett ensures a drier, thinner, and funkier product. Younger versions are brighter and fruitier, while older ones possess more depth of funk and may lose more of the base style character. Wood-aged versions should be entered in the Wild Specialty Beer style. The Brett character should always meld with the style; these beers should never be a ‘Brett bomb'. Note that Brett does not produce lactic acid.", + "history": "Modern American craft beer interpretations of Belgian wild ales, or experimentations inspired by Belgian wild ales or historical English beers with Brett. 100% Brett beers gained popularity after the year 2000; Port Brewing Mo Betta Bretta was one of the first celebrated examples.", + "style_comparison": null, + "tags": "wild-fermentation, north-america, craft-style, specialty-beer", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Virtually any style of beer, fermented in any manner, then finished with one or more strains of Brett. Alternatively, a beer made with Brett as the sole fermentation strain.", + "examples": "Boulevard Saison Brett, Hill Farmstead Arthur, Logsdon Seizoen Bretta, Russian River Sanctification, The Bruery Saison Rue, Victory Helios", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify either a base beer style (Classic Style, or a generic style family) or provide a description of the ingredients/specs/desired character. The entrant must specify if a 100% Brett fermentation was conducted. The entrant may specify the strain(s) of Brettanomyces used.", + "notes": "Most often drier and fruitier than the base style suggests. Funky notes range from low to high, depending on the age of the beer and strain(s) of Brett used. Funkiness is generally restrained in younger 100% Brett examples, but tends to increase with age. May possess a light acidity, although this does not come from Brett. Modern American craft beer interpretations of Belgian wild ales, or experimentations inspired by Belgian wild ales or historical English beers with Brett. 100% Brett beers gained popularity after the year 2000; Port Brewing Mo Betta Bretta was one of the first celebrated examples.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Variable by base style. Young Brett-fermented beers will possess more fruity notes (e.g., tropical fruit, stone fruit, or citrus), but this is variable by the strain(s) of Brett used. For 100% Brett beers heavily hopped with American hop varieties, the fermentation-derived flavors are often difficult to tease from the hop aromatics. Older 100% Brett beers may start to develop a little funk (e.g., barnyard, wet hay, or slightly earthy or smoky notes), but this character should not dominate. If the beer is fermented with a brewer's yeast in addition to Brett, some of the character of the primary yeast may remain. A faint sourness is acceptable but should not be a prominent character. Variable by base style. Clarity can be variable, and depends on the base style and ingredients used. Some haze is not necessarily a fault.Variable by base style. Brett character may range from minimal to aggressive. Can be quite fruity (e.g., tropical fruit, berry, stone fruit, citrus), or have some smoky, earthy, or barnyard character. Should not be unpleasantly funky, such as Band-Aid, fetid, nail polish remover, cheese, etc. Light sourness is acceptable with the beer being lightly tart, but should not be truly sour. Always fruitier when young, gaining more funk with age. May not be acetic or lactic. Malt flavors are often less pronounced than in the base style, leaving a beer most often dry and crisp due to high attenuation by the Brett. Variable by base style. Generally a light body, lighter than what might be expected from the base style but an overly thin body is a fault. Generally moderate to high carbonation. Head retention is variable. The base style describes most of the character of these beers, but the addition of Brett ensures a drier, thinner, and funkier product. Younger versions are brighter and fruitier, while older ones possess more depth of funk and may lose more of the base style character. Wood-aged versions should be entered in the Wild Specialty Beer style. The Brett character should always meld with the style; these beers should never be a ‘Brett bomb'. Note that Brett does not produce lactic acid.", + "comparison": "Compared to the same beer style without Brett, a Brett Beer will be drier, more highly attenuated, fruitier, lighter in body, and slightly funkier as it ages. Less sourness and depth than Belgian ‘wild' ales." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 202, + "fields": { + "name": "Mixed-Fermentation Sour Beer", + "category": "American Wild Ale", + "category_id": "28", + "style_id": "28B", + "category_description": null, + "overall_impression": "A sour and/or funky version of a base style of beer.", + "aroma": "Variable by base style. The contribution of non-Saccharomyces microbes should be noticeable to strong, and often contribute a sour and/or funky, wild note. The best examples will display a range of aromatics, rather than a single dominant character. The aroma should be inviting, not harsh or unpleasant.", + "appearance": "Variable by base style. Clarity can be variable; some haze is not a fault. Head retention can be poor due to high levels of acid or anti-foam properties of some lactobacillus strains.", + "flavor": "Variable by base style. Look for an agreeable balance between the base beer and the fermentation character. A range of results is possible from fairly high acidity/funk to a subtle, pleasant, harmonious beer. The best examples are pleasurable to drink with the esters and phenols complementing the malt and/or hops. The wild character can be prominent, but does not need to be dominating in a style with an otherwise strong malt/hop profile. Acidity should be firm yet enjoyable, but should not be biting or vinegary; prominent or objectionable/offensive acetic acid is a fault. Bitterness tends to be low, especially as sourness increases.", + "mouthfeel": "Variable by base style. Generally a light body, almost always lighter than what might be expected from the base style. Generally moderate to high carbonation, although often lower in higher alcohol examples.", + "comments": "These beers may be aged in wood, but any wood character should not be a primary or dominant flavor. Sour beers are typically not bitter as these flavors clash. The base beer style becomes less relevant because the various yeast and bacteria tend to dominate the profile. Inappropriate characteristics include diacetyl, solvent, ropy/viscous texture, and heavy oxidation.", + "history": "Modern American craft beer interpretations of Belgian sour ales, or experimentations inspired by Belgian sour ales.", + "style_comparison": null, + "tags": "wild-fermentation, north-america, craft-style, specialty-beer, sour", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Virtually any style of beer. Usually fermented by Lactobacillus and/or Pediococcus, often in conjunction with Saccharomyces and/or Brettanomyces. Can also be a blend of styles. Wood or barrel aging is very common, but not required.", + "examples": "Boulevard Love Child, Cascade Vlad the Imp Aler, Jester King Le Petit Prince, Jolly Pumpkin Calabaza Blanca, Russian River Temptation, The Bruery Rueuze, The Bruery Tart of Darkness", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify a description of the beer, identifying the yeast/bacteria used and either a base style or the ingredients/specs/target character of the beer.", + "notes": "A sour and/or funky version of a base style of beer. Modern American craft beer interpretations of Belgian sour ales, or experimentations inspired by Belgian sour ales.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Variable by base style. The contribution of non-Saccharomyces microbes should be noticeable to strong, and often contribute a sour and/or funky, wild note. The best examples will display a range of aromatics, rather than a single dominant character. The aroma should be inviting, not harsh or unpleasant. Variable by base style. Clarity can be variable; some haze is not a fault. Head retention can be poor due to high levels of acid or anti-foam properties of some lactobacillus strains.Variable by base style. Look for an agreeable balance between the base beer and the fermentation character. A range of results is possible from fairly high acidity/funk to a subtle, pleasant, harmonious beer. The best examples are pleasurable to drink with the esters and phenols complementing the malt and/or hops. The wild character can be prominent, but does not need to be dominating in a style with an otherwise strong malt/hop profile. Acidity should be firm yet enjoyable, but should not be biting or vinegary; prominent or objectionable/offensive acetic acid is a fault. Bitterness tends to be low, especially as sourness increases. Variable by base style. Generally a light body, almost always lighter than what might be expected from the base style. Generally moderate to high carbonation, although often lower in higher alcohol examples. These beers may be aged in wood, but any wood character should not be a primary or dominant flavor. Sour beers are typically not bitter as these flavors clash. The base beer style becomes less relevant because the various yeast and bacteria tend to dominate the profile. Inappropriate characteristics include diacetyl, solvent, ropy/viscous texture, and heavy oxidation.", + "comparison": "A sour and/or funky version of a base style." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 203, + "fields": { + "name": "Wild Specialty Beer", + "category": "American Wild Ale", + "category_id": "28", + "style_id": "28C", + "category_description": null, + "overall_impression": "A sour and/or funky version of a fruit, herb, or spice beer, or a wild beer aged in wood. If wood-aged, the wood should not be the primary or dominant character.", + "aroma": "Variable by base style. Should show the fruit, sour and/or funk of a wild fermentation, as well as the characteristics of the special ingredients used. The best examples will blend the aromatics from the fermentation with the special ingredients, creating an aroma that may be difficult to attribute precisely.", + "appearance": "Variable by base style, generally showing a color, tint, or hue from any fruit (if used) in both the beer and the head. Clarity can be variable; some haze is not a fault. Head retention is often poor.", + "flavor": "Variable by base style. Should show the fruit, sour and/or funk of a wild fermentation, as well as the characteristics of the special ingredients used. Any fruit sweetness is generally gone, so only the esters typically remain from the fruit. The sour character from the fruit and wild fermentation could be prominent, but should not be overwhelming. The acidity and tannin from any fruit can both enhance the dryness of the beer, so care must be taken with the balance. The acidity should enhance the perception of the fruit flavor, not detract from it. Wood notes, if present, add flavor but should be balanced.", + "mouthfeel": "Variable by base style. Generally a light body, lighter than what might be expected from the base style. Generally moderate to high carbonation; carbonation should balance the base style if one is declared. The presence of tannin from some fruit or wood can provide a slight astringency, enhance the body, or make the beer seem drier than it is.", + "comments": "A wild beer featuring fruit, herbs, spices, or wood based on a style other than lambic. Could be another Classic Style (normally sour or not), or something more generic. These beers may be aged in wood, but any wood character should not be a primary or dominant flavor.", + "history": "Modern American craft beer interpretations of Belgian wild ales, or experimentations inspired by Belgian wild ales.", + "style_comparison": null, + "tags": "wild-fermentation, north-america, craft-style, specialty-beer, sour, fruit", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Virtually any style of beer. Any combination of Saccharomyces, Brettanomyces, Lactobacillus, Pediococcus, or other similar fermenters. Can also be a blend of styles. While cherries, raspberries, and peaches are most common, other fruits can be used as well. Vegetables with fruit-like characteristics (chile, rhubarb, pumpkin, etc.) may also be used. Wood or barrel aging is very common, but not required.", + "examples": "Cascade Bourbonic Plague, Jester King Atrial Rubicite, New Belgium Eric's Ale, New Glarus Belgian Red, Russian River Supplication, The Lost Abbey Cuvee de Tomme", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "Entrant must specify the type of fruit, spice, herb, or wood used. Entrant must specify a description of the beer, identifying the yeast/bacteria used and either a base style or the ingredients/specs/target character of the beer. A general description of the special nature of the beer can cover all the required items.", + "notes": "A sour and/or funky version of a fruit, herb, or spice beer, or a wild beer aged in wood. If wood-aged, the wood should not be the primary or dominant character. Modern American craft beer interpretations of Belgian wild ales, or experimentations inspired by Belgian wild ales.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Variable by base style. Should show the fruit, sour and/or funk of a wild fermentation, as well as the characteristics of the special ingredients used. The best examples will blend the aromatics from the fermentation with the special ingredients, creating an aroma that may be difficult to attribute precisely. Variable by base style, generally showing a color, tint, or hue from any fruit (if used) in both the beer and the head. Clarity can be variable; some haze is not a fault. Head retention is often poor.Variable by base style. Should show the fruit, sour and/or funk of a wild fermentation, as well as the characteristics of the special ingredients used. Any fruit sweetness is generally gone, so only the esters typically remain from the fruit. The sour character from the fruit and wild fermentation could be prominent, but should not be overwhelming. The acidity and tannin from any fruit can both enhance the dryness of the beer, so care must be taken with the balance. The acidity should enhance the perception of the fruit flavor, not detract from it. Wood notes, if present, add flavor but should be balanced. Variable by base style. Generally a light body, lighter than what might be expected from the base style. Generally moderate to high carbonation; carbonation should balance the base style if one is declared. The presence of tannin from some fruit or wood can provide a slight astringency, enhance the body, or make the beer seem drier than it is. A wild beer featuring fruit, herbs, spices, or wood based on a style other than lambic. Could be another Classic Style (normally sour or not), or something more generic. These beers may be aged in wood, but any wood character should not be a primary or dominant flavor.", + "comparison": "Like a fruit, herb, spice, or wood beer, but sour and/or funky." + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 204, + "fields": { + "name": "Fruit Beer", + "category": "Fruit Beer", + "category_id": "29", + "style_id": "29A", + "category_description": null, + "overall_impression": "A harmonious marriage of fruit and beer, but still recognizable as a beer. The fruit character should be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "aroma": "The distinctive aromatics associated with the declared fruit should be noticeable in the aroma; however, note that some fruit (e.g., raspberries, cherries) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) – allow for a range of fruit character and intensity from subtle to aggressive. The additional aromatics should blend well with whatever aromatics are appropriate for the declared base beer style.", + "appearance": "Appearance should be appropriate for the declared base beer and declared fruit. For lighter-colored beers with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. Fruit beers may have some haze or be clear, although haze is a generally undesirable. The head may take on some of the color of the fruit.", + "flavor": "As with aroma, the distinctive flavor character associated with the declared fruit should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying beer is vital, and the fruit character should not be so artificial and/or inappropriately overpowering as to suggest a ‘fruit juice drink.' Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters, should be appropriate to the base beer and be harmonious and balanced with the distinctive fruit flavors present. Remember that fruit generally add flavor not sweetness to fruit beers. The sugar found in fruit is usually fully fermented and contributes to lighter flavors and a drier finish than might be expected for the declared base style. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality.", + "mouthfeel": "Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the declared base beer style. Fruit generally adds fermentables that tend to thin out the beer; the resulting beer may seem lighter than expected for the declared base style. Smaller and darker fruit have a tendency to add a tannic depth that should overwhelm the base beer.", + "comments": "Overall balance is the key to presenting a well-made fruit beer. The fruit should complement the original style and not overwhelm it. The key attributes of the underlying style will be different with the addition of fruit; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, fruit", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Bell's Cherry Stout, Dogfish Head Aprihop, Ebulum Elderberry Black Ale, Founders Rübæus", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify a base style, but the declared style does not have to be a Classic Style. The entrant must specify the type(s) of fruit used. Soured fruit beers that aren't lambics should be entered in the American Wild Ale category.", + "notes": "A harmonious marriage of fruit and beer, but still recognizable as a beer. The fruit character should be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "The distinctive aromatics associated with the declared fruit should be noticeable in the aroma; however, note that some fruit (e.g., raspberries, cherries) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) – allow for a range of fruit character and intensity from subtle to aggressive. The additional aromatics should blend well with whatever aromatics are appropriate for the declared base beer style. Appearance should be appropriate for the declared base beer and declared fruit. For lighter-colored beers with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. Fruit beers may have some haze or be clear, although haze is a generally undesirable. The head may take on some of the color of the fruit.As with aroma, the distinctive flavor character associated with the declared fruit should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying beer is vital, and the fruit character should not be so artificial and/or inappropriately overpowering as to suggest a ‘fruit juice drink.' Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters, should be appropriate to the base beer and be harmonious and balanced with the distinctive fruit flavors present. Remember that fruit generally add flavor not sweetness to fruit beers. The sugar found in fruit is usually fully fermented and contributes to lighter flavors and a drier finish than might be expected for the declared base style. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality. Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the declared base beer style. Fruit generally adds fermentables that tend to thin out the beer; the resulting beer may seem lighter than expected for the declared base style. Smaller and darker fruit have a tendency to add a tannic depth that should overwhelm the base beer. Overall balance is the key to presenting a well-made fruit beer. The fruit should complement the original style and not overwhelm it. The key attributes of the underlying style will be different with the addition of fruit; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 205, + "fields": { + "name": "Fruit and Spice Beer", + "category": "Fruit Beer", + "category_id": "29", + "style_id": "29B", + "category_description": null, + "overall_impression": "A harmonious marriage of fruit, spice, and beer, but still recognizable as a beer. The fruit and spice character should each be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "aroma": "The distinctive aromatics associated with the declared fruit and spices should be noticeable in the aroma; however, note that some fruit (e.g., raspberries, cherries) and some spices (e.g., cinnamon, ginger) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) – allow for a range of fruit and spice character and intensity from subtle to aggressive. The additional aromatics should blend well with whatever aromatics are appropriate for the declared base beer style. The hop aroma may be absent or balanced, depending on the declared base style.", + "appearance": "Appearance should be appropriate for the declared base beer and declared fruit and spices. For lighter-colored beers with fruits or spices that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. May have some haze or be clear, although haze is a generally undesirable. The head may take on some of the color of the fruit or spice.", + "flavor": "As with aroma, the distinctive flavor character associated with the declared fruits and spices should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit and spices with the underlying beer is vital, and the fruit character should not be so artificial and/or inappropriately overpowering as to suggest a spiced fruit juice drink. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters, should be appropriate to the base beer and be harmonious and balanced with the distinctive fruit and spice flavors present. Remember that fruit generally add flavor not sweetness. The sugar found in fruit is usually fully fermented and contributes to lighter flavors and a drier finish than might be expected for the declared base style. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality. Some SHV(s) are inherently bitter and may result in a beer more bitter than the declared base style.", + "mouthfeel": "Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the declared base beer style. Fruit generally adds fermentables that tend to thin out the beer; the resulting beer may seem lighter than expected for the declared base style. Some SHV(s) may add additional body, although fermentable additions may thin out the beer. Some SHV(s) may add a bit of astringency, although a \"raw\" spice character is undesirable.", + "comments": "Overall balance is the key to presenting a well-made fruit and spice beer. The fruit and spice should each complement the original style and not overwhelm it. The key attributes of the underlying style will be different with the addition of fruit and spice; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination. The brewer should recognize that some combinations of base beer styles and fruits/spices work well together while others do not make for harmonious combinations. Whenever fruits, spices, herbs or vegetables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical) – in other words, the beer should read as a spiced fruit beer but without having to tell that specific fruits and spices are present (even if declared).", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, fruit, spice", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": null, + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify a base style; the declared style does not have to be a Classic Style. The entrant must specify the type of fruit and spices, herbs, or vegetables (SHV) used; individual SHV ingredients do not need to be specified if a well-known blend of spices is used (e.g., apple pie spice).", + "notes": "A harmonious marriage of fruit, spice, and beer, but still recognizable as a beer. The fruit and spice character should each be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "The distinctive aromatics associated with the declared fruit and spices should be noticeable in the aroma; however, note that some fruit (e.g., raspberries, cherries) and some spices (e.g., cinnamon, ginger) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) – allow for a range of fruit and spice character and intensity from subtle to aggressive. The additional aromatics should blend well with whatever aromatics are appropriate for the declared base beer style. The hop aroma may be absent or balanced, depending on the declared base style. Appearance should be appropriate for the declared base beer and declared fruit and spices. For lighter-colored beers with fruits or spices that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in beer is often lighter than the flesh of the fruit itself and may take on slightly different shades. May have some haze or be clear, although haze is a generally undesirable. The head may take on some of the color of the fruit or spice.As with aroma, the distinctive flavor character associated with the declared fruits and spices should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit and spices with the underlying beer is vital, and the fruit character should not be so artificial and/or inappropriately overpowering as to suggest a spiced fruit juice drink. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters, should be appropriate to the base beer and be harmonious and balanced with the distinctive fruit and spice flavors present. Remember that fruit generally add flavor not sweetness. The sugar found in fruit is usually fully fermented and contributes to lighter flavors and a drier finish than might be expected for the declared base style. However, residual sweetness is not necessarily a negative characteristic unless it has a raw, unfermented quality. Some SHV(s) are inherently bitter and may result in a beer more bitter than the declared base style. Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the declared base beer style. Fruit generally adds fermentables that tend to thin out the beer; the resulting beer may seem lighter than expected for the declared base style. Some SHV(s) may add additional body, although fermentable additions may thin out the beer. Some SHV(s) may add a bit of astringency, although a \"raw\" spice character is undesirable. Overall balance is the key to presenting a well-made fruit and spice beer. The fruit and spice should each complement the original style and not overwhelm it. The key attributes of the underlying style will be different with the addition of fruit and spice; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination. The brewer should recognize that some combinations of base beer styles and fruits/spices work well together while others do not make for harmonious combinations. Whenever fruits, spices, herbs or vegetables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical) – in other words, the beer should read as a spiced fruit beer but without having to tell that specific fruits and spices are present (even if declared).", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 206, + "fields": { + "name": "Specialty Fruit Beer", + "category": "Fruit Beer", + "category_id": "29", + "style_id": "29C", + "category_description": null, + "overall_impression": "A harmonious marriage of fruit, sugar, and beer, but still recognizable as a beer. The fruit and sugar character should both be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "aroma": "Same as fruit beer, except that some additional fermentables (honey, molasses, etc.) may add an aroma component. Whatever additional aroma component is present should be in balance with the fruit and the beer components, and be a pleasant combination.", + "appearance": "Same as fruit beer.", + "flavor": "Same as fruit beer, except that some additional fermentables (honey, molasses, etc.) may add a flavor component. Whatever additional flavor component is present should be in balance with the fruit and the beer components, and be a pleasant combination. Added sugars should not have a raw, unfermented flavor. Some added sugars will have unfermentable elements that may provide a fuller finish; fully fermentable sugars may thin out the finish.", + "mouthfeel": "Same as fruit beer, although depending on the type of sugar added, could increase or decrease the body.", + "comments": "If the additional fermentables or processes do not add a distinguishable character to the beer, enter it as a normal 29A Fruit Beer and omit a description of the extra ingredients or processes.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, fruit", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "New Planet Raspberry Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify a base style; the declared style does not have to be a Classic Style. The entrant must specify the type of fruit used. The entrant must specify the type of additional fermentable sugar or special process employed.", + "notes": "A harmonious marriage of fruit, sugar, and beer, but still recognizable as a beer. The fruit and sugar character should both be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Same as fruit beer, except that some additional fermentables (honey, molasses, etc.) may add an aroma component. Whatever additional aroma component is present should be in balance with the fruit and the beer components, and be a pleasant combination. Same as fruit beer.Same as fruit beer, except that some additional fermentables (honey, molasses, etc.) may add a flavor component. Whatever additional flavor component is present should be in balance with the fruit and the beer components, and be a pleasant combination. Added sugars should not have a raw, unfermented flavor. Some added sugars will have unfermentable elements that may provide a fuller finish; fully fermentable sugars may thin out the finish. Same as fruit beer, although depending on the type of sugar added, could increase or decrease the body. If the additional fermentables or processes do not add a distinguishable character to the beer, enter it as a normal 29A Fruit Beer and omit a description of the extra ingredients or processes.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 207, + "fields": { + "name": "Spice, Herb, or Vegetable Beer", + "category": "Spiced Beer", + "category_id": "30", + "style_id": "30A", + "category_description": null, + "overall_impression": "A harmonious marriage of SHV and beer, but still recognizable as a beer. The SHV character should be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "aroma": "The character of the particular spices, herbs and/or vegetables (SHV) should be noticeable in the aroma; however, note that some SHV (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., some vegetables) – allow for a range of SHV character and intensity from subtle to aggressive. The individual character of each SHV(s) may not always be identifiable when used in combination. Hop aroma may be absent or balanced with SHV, depending on the style. The SHV(s) should add an extra complexity to the beer, but not be so prominent as to unbalance the resulting presentation.", + "appearance": "Appearance should be appropriate to the declared base beer and declared special ingredients. For lighter-colored beers with spices, herbs or vegetables that exhibit distinctive colors, the colors may be noticeable in the beer and possibly the head. May have some haze or be clear. Head formation may be adversely affected by some ingredients, such as chocolate.", + "flavor": "As with aroma, the distinctive flavor character associated with the particular SHV(s) should be noticeable, and may range in intensity from subtle to aggressive. The individual character of each SHV(s) may not always be identifiable when used in combination. The balance of SHV with the underlying beer is vital, and the SHV character should not be so artificial and/or overpowering as to overwhelm the beer. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters, should be appropriate to the base beer and be harmonious and balanced with the distinctive SHV flavors present. Some SHV(s) are inherently bitter and may result in a beer more bitter than the declared base style.", + "mouthfeel": "Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the base beer style being presented. Some SHV(s) may add additional body, although fermentable additions may thin out the beer. Some SHV(s) may add a bit of astringency, although a \"raw\" spice character is undesirable.", + "comments": "Overall balance is the key to presenting a well-made spice, herb or vegetable (SHV) beer. The SHV(s) should complement the original style and not overwhelm it. The key attributes of the declared base style will be different with the addition of spices, herbs and/or vegetables; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination. The individual character of each SHV may not always be individually identifiable when used in combination.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, spice", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Alesmith Speedway Stout, Bell's Java Stout, Elysian Avatar Jasmine IPA, Founders Breakfast Stout, Rogue Chipotle Ale, Traquair Jacobite Ale, Young's Double Chocolate Stout,", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify a base style, but the declared style does not have to be a Classic Style. The entrant must specify the type of spices, herbs, or vegetables used, but individual ingredients do not need to be specified if a well-known spice blend is used (e.g., apple pie spice, curry powder, chili powder).", + "notes": "A harmonious marriage of SHV and beer, but still recognizable as a beer. The SHV character should be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "The character of the particular spices, herbs and/or vegetables (SHV) should be noticeable in the aroma; however, note that some SHV (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., some vegetables) – allow for a range of SHV character and intensity from subtle to aggressive. The individual character of each SHV(s) may not always be identifiable when used in combination. Hop aroma may be absent or balanced with SHV, depending on the style. The SHV(s) should add an extra complexity to the beer, but not be so prominent as to unbalance the resulting presentation. Appearance should be appropriate to the declared base beer and declared special ingredients. For lighter-colored beers with spices, herbs or vegetables that exhibit distinctive colors, the colors may be noticeable in the beer and possibly the head. May have some haze or be clear. Head formation may be adversely affected by some ingredients, such as chocolate.As with aroma, the distinctive flavor character associated with the particular SHV(s) should be noticeable, and may range in intensity from subtle to aggressive. The individual character of each SHV(s) may not always be identifiable when used in combination. The balance of SHV with the underlying beer is vital, and the SHV character should not be so artificial and/or overpowering as to overwhelm the beer. Hop bitterness, flavor, malt flavors, alcohol content, and fermentation by-products, such as esters, should be appropriate to the base beer and be harmonious and balanced with the distinctive SHV flavors present. Some SHV(s) are inherently bitter and may result in a beer more bitter than the declared base style. Mouthfeel may vary depending on the base beer selected and as appropriate to that base beer. Body and carbonation levels should be appropriate to the base beer style being presented. Some SHV(s) may add additional body, although fermentable additions may thin out the beer. Some SHV(s) may add a bit of astringency, although a \"raw\" spice character is undesirable. Overall balance is the key to presenting a well-made spice, herb or vegetable (SHV) beer. The SHV(s) should complement the original style and not overwhelm it. The key attributes of the declared base style will be different with the addition of spices, herbs and/or vegetables; do not expect the base beer to taste the same as the unadulterated version. Judge the beer based on the pleasantness and balance of the resulting combination. The individual character of each SHV may not always be individually identifiable when used in combination.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 208, + "fields": { + "name": "Autumn Seasonal Beer", + "category": "Spiced Beer", + "category_id": "30", + "style_id": "30B", + "category_description": null, + "overall_impression": "An amber to copper, spiced beer that often has a moderately rich body and slightly warming finish suggesting a good accompaniment for the cool fall season, and often evocative of Thanksgiving traditions.", + "aroma": "A wide range of aromatics is possible, although many examples are reminiscent of pumpkin pie, candied yams, or similar harvest or (US) Thanksgiving themed dishes. Any combination of aromatics that suggests the fall season is welcome. The base beer style often has a malty profile that supports the balanced presentation of the aromatics from spices and possibly other special ingredients. Additional fermentables (e.g., brown sugar, honey, molasses, maple syrup, etc.) may lend their own unique aromatics. Hop aromatics are often absent, subdued, or slightly spicy. Alcohol aromatics may be found in some examples, but this character should be restrained. The overall aroma should be balanced and harmonious, and is often fairly complex and inviting.", + "appearance": "Generally medium amber to coppery-brown (lighter versions are more common). Usually clear, although darker versions may be virtually opaque. Some chill haze is acceptable. Generally has a well-formed head that is often off-white to tan. Some versions with squashes will take on an unusual hue for beer, with orange-like hints.", + "flavor": "Many interpretations are possible; allow for brewer creativity as long as the resulting product is balanced and provides some spice (and optionally, sugar and vegetable) presentation. Spices associated with the fall season are typical (as mentioned in the Aroma section). The spices and optional fermentables should be supportive and blend well with the base beer style. Rich, malty and/or sweet malt-based flavors are common, and may include caramel, toasty, biscuity, or nutty flavors (toasted bread crust or cooked pie crust flavors are welcome). May include distinctive flavors from specific fermentables (molasses, honey, brown sugar, etc.), although these elements are not required. Flavor derived from squash-based vegetables are often elusive. The wide range of special ingredients should be supportive and balanced, not so prominent as to overshadow the base beer. Bitterness and hop flavor are generally restrained so as to not interfere with the spices and special ingredients. Generally finishes rather full and satisfying, and often has some alcohol flavor. Roasted malt characteristics are typically absent.", + "mouthfeel": "A wide range of interpretations is possible. Body is generally medium to full, and a certain malty and/or vegetable-based chewiness is often present. Moderately low to moderately high carbonation is typical. Many examples will show some well-aged, warming alcohol content, but without being overly hot. The beers do not have to be overly strong to show some warming effects.", + "comments": "Overall balance is the key to presenting a well-made Autumn Seasonal beer. The special ingredients should complement the base beer and not overwhelm it. The brewer should recognize that some combinations of base beer styles and special ingredients work well together while others do not make for harmonious combinations. If the base beer is a classic style, the original style should come through in aroma and flavor. Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical) – in other words, the beer should read as a spiced beer but without having to tell that specific spices are present (even if declared).", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, spice", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Spices are required, and often include those evocative of the fall or Thanksgiving season (e.g., allspice, nutmeg, cinnamon, cloves, ginger) but any combination is possible and creativity is encouraged. Flavorful adjuncts are often used (e.g., molasses, invert sugar, brown sugar, honey, maple syrup, etc.). Squash-type or gourd-type vegetables (most frequently pumpkin) are often used.", + "examples": "Dogfish Head Punkin Ale, Schlafly Pumpkin Ale, Southampton Pumpkin Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify a base style, but the declared style does not have to be a Classic Style. The entrant must specify the type of spices, herbs, or vegetables used; individual ingredients do not need to be specified if a well-known blend of spices is used (e.g., pumpkin pie spice). The beer must contain spices, and may contain vegetables and/or sugars.", + "notes": "An amber to copper, spiced beer that often has a moderately rich body and slightly warming finish suggesting a good accompaniment for the cool fall season, and often evocative of Thanksgiving traditions.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "A wide range of aromatics is possible, although many examples are reminiscent of pumpkin pie, candied yams, or similar harvest or (US) Thanksgiving themed dishes. Any combination of aromatics that suggests the fall season is welcome. The base beer style often has a malty profile that supports the balanced presentation of the aromatics from spices and possibly other special ingredients. Additional fermentables (e.g., brown sugar, honey, molasses, maple syrup, etc.) may lend their own unique aromatics. Hop aromatics are often absent, subdued, or slightly spicy. Alcohol aromatics may be found in some examples, but this character should be restrained. The overall aroma should be balanced and harmonious, and is often fairly complex and inviting. Generally medium amber to coppery-brown (lighter versions are more common). Usually clear, although darker versions may be virtually opaque. Some chill haze is acceptable. Generally has a well-formed head that is often off-white to tan. Some versions with squashes will take on an unusual hue for beer, with orange-like hints.Many interpretations are possible; allow for brewer creativity as long as the resulting product is balanced and provides some spice (and optionally, sugar and vegetable) presentation. Spices associated with the fall season are typical (as mentioned in the Aroma section). The spices and optional fermentables should be supportive and blend well with the base beer style. Rich, malty and/or sweet malt-based flavors are common, and may include caramel, toasty, biscuity, or nutty flavors (toasted bread crust or cooked pie crust flavors are welcome). May include distinctive flavors from specific fermentables (molasses, honey, brown sugar, etc.), although these elements are not required. Flavor derived from squash-based vegetables are often elusive. The wide range of special ingredients should be supportive and balanced, not so prominent as to overshadow the base beer. Bitterness and hop flavor are generally restrained so as to not interfere with the spices and special ingredients. Generally finishes rather full and satisfying, and often has some alcohol flavor. Roasted malt characteristics are typically absent. A wide range of interpretations is possible. Body is generally medium to full, and a certain malty and/or vegetable-based chewiness is often present. Moderately low to moderately high carbonation is typical. Many examples will show some well-aged, warming alcohol content, but without being overly hot. The beers do not have to be overly strong to show some warming effects. Overall balance is the key to presenting a well-made Autumn Seasonal beer. The special ingredients should complement the base beer and not overwhelm it. The brewer should recognize that some combinations of base beer styles and special ingredients work well together while others do not make for harmonious combinations. If the base beer is a classic style, the original style should come through in aroma and flavor. Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical) – in other words, the beer should read as a spiced beer but without having to tell that specific spices are present (even if declared).", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 209, + "fields": { + "name": "Winter Seasonal Beer", + "category": "Spiced Beer", + "category_id": "30", + "style_id": "30C", + "category_description": null, + "overall_impression": "A stronger, darker, spiced beer that often has a rich body and warming finish suggesting a good accompaniment for the cold winter season.", + "aroma": "A wide range of aromatics is possible, although many examples are reminiscent of Christmas cookies, gingerbread, English-type Christmas pudding, evergreen trees, or mulling spices. Any combination of aromatics that suggests the holiday season is welcome. The base beer style often has a malty profile that supports the balanced presentation of the aromatics from spices and possibly other special ingredients. Additional fermentables (e.g., honey, molasses, maple syrup, etc.) may lend their own unique aromatics. Hop aromatics are often absent, subdued, or slightly spicy. Some fruit character (often of dried citrus peel, or dried fruit such as raisins or plums) is optional but acceptable. Alcohol aromatics may be found in some examples, but this character should be restrained. The overall aroma should be balanced and harmonious, and is often fairly complex and inviting.", + "appearance": "Generally medium amber to very dark brown (darker versions are more common). Usually clear, although darker versions may be virtually opaque. Some chill haze is acceptable. Generally has a well-formed head that is often off-white to tan.", + "flavor": "Many interpretations are possible; allow for brewer creativity as long as the resulting product is balanced and provides some spice presentation. Spices associated with the holiday season are typical (as mentioned in the Aroma section). The spices and optional fermentables should be supportive and blend well with the base beer style. Rich, malty and/or sweet malt-based flavors are common, and may include caramel, toast, nutty, or chocolate flavors. May include some dried fruit or dried fruit peel flavors such as raisin, plum, fig, orange peel or lemon peel. May include distinctive flavors from specific fermentables (molasses, honey, brown sugar, etc.), although these elements are not required. A light evergreen tree character is optional but found in some examples. The wide range of special ingredients should be supportive and balanced, not so prominent as to overshadow the base beer. Bitterness and hop flavor are generally restrained so as to not interfere with the spices and special ingredients. Generally finishes rather full and satisfying, and often has some alcohol flavor. Roasted malt characteristics are rare, and not usually stronger than chocolate.", + "mouthfeel": "A wide range of interpretations is possible. Body is generally medium to full, and a certain malty chewiness is often present. Moderately low to moderately high carbonation is typical. Many examples will show some well-aged, warming alcohol content, but without being overly hot. The beers do not have to be overly strong to show some warming effects.", + "comments": "Overall balance is the key to presenting a well-made Winter Seasonal Beer. The special ingredients should complement the base beer and not overwhelm it. The brewer should recognize that some combinations of base beer styles and special ingredients work well together while others do not make for harmonious combinations. If the base beer is a classic style, the original style should come through in aroma and flavor. Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical). Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical) – in other words, the beer should read as a spiced beer but without having to tell that specific spices are present (even if declared).", + "history": "Throughout history, beer of a somewhat higher alcohol content and richness has been enjoyed during the winter holidays, when old friends get together to enjoy the season. Many breweries produce unique seasonal offerings that may be darker, stronger, spiced, or otherwise more characterful than their normal beers. Spiced versions are an American or Belgian tradition, since English or German breweries traditionally do not use spices in their beer.", + "style_comparison": null, + "tags": "specialty-beer, spice", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Generally ales, although some dark strong lagers exist. Spices are required, and often include those evocative of the Christmas season (e.g., allspice, nutmeg, cinnamon, cloves, ginger) but any combination is possible and creativity is encouraged. Fruit peel (e.g., oranges, lemon) may be used, as may subtle additions of other fruits. Flavorful adjuncts are often used (e.g., molasses, treacle, invert sugar, brown sugar, honey, maple syrup, etc.).", + "examples": "Anchor Our Special Ale, Goose Island Christmas Ale, Great Lakes Christmas Ale, Harpoon Winter Warmer, Lakefront Holiday Spice Lager Beer, Weyerbacher Winter Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify a base style, but the declared style does not have to be a Classic Style. The entrant must specify the type of spices, sugars, fruits, or additional fermentables used; individual ingredients do not need to be specified if a well-known blend of spices is used (e.g., mulling spice).", + "notes": "A stronger, darker, spiced beer that often has a rich body and warming finish suggesting a good accompaniment for the cold winter season. Throughout history, beer of a somewhat higher alcohol content and richness has been enjoyed during the winter holidays, when old friends get together to enjoy the season. Many breweries produce unique seasonal offerings that may be darker, stronger, spiced, or otherwise more characterful than their normal beers. Spiced versions are an American or Belgian tradition, since English or German breweries traditionally do not use spices in their beer.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "A wide range of aromatics is possible, although many examples are reminiscent of Christmas cookies, gingerbread, English-type Christmas pudding, evergreen trees, or mulling spices. Any combination of aromatics that suggests the holiday season is welcome. The base beer style often has a malty profile that supports the balanced presentation of the aromatics from spices and possibly other special ingredients. Additional fermentables (e.g., honey, molasses, maple syrup, etc.) may lend their own unique aromatics. Hop aromatics are often absent, subdued, or slightly spicy. Some fruit character (often of dried citrus peel, or dried fruit such as raisins or plums) is optional but acceptable. Alcohol aromatics may be found in some examples, but this character should be restrained. The overall aroma should be balanced and harmonious, and is often fairly complex and inviting. Generally medium amber to very dark brown (darker versions are more common). Usually clear, although darker versions may be virtually opaque. Some chill haze is acceptable. Generally has a well-formed head that is often off-white to tan.Many interpretations are possible; allow for brewer creativity as long as the resulting product is balanced and provides some spice presentation. Spices associated with the holiday season are typical (as mentioned in the Aroma section). The spices and optional fermentables should be supportive and blend well with the base beer style. Rich, malty and/or sweet malt-based flavors are common, and may include caramel, toast, nutty, or chocolate flavors. May include some dried fruit or dried fruit peel flavors such as raisin, plum, fig, orange peel or lemon peel. May include distinctive flavors from specific fermentables (molasses, honey, brown sugar, etc.), although these elements are not required. A light evergreen tree character is optional but found in some examples. The wide range of special ingredients should be supportive and balanced, not so prominent as to overshadow the base beer. Bitterness and hop flavor are generally restrained so as to not interfere with the spices and special ingredients. Generally finishes rather full and satisfying, and often has some alcohol flavor. Roasted malt characteristics are rare, and not usually stronger than chocolate. A wide range of interpretations is possible. Body is generally medium to full, and a certain malty chewiness is often present. Moderately low to moderately high carbonation is typical. Many examples will show some well-aged, warming alcohol content, but without being overly hot. The beers do not have to be overly strong to show some warming effects. Overall balance is the key to presenting a well-made Winter Seasonal Beer. The special ingredients should complement the base beer and not overwhelm it. The brewer should recognize that some combinations of base beer styles and special ingredients work well together while others do not make for harmonious combinations. If the base beer is a classic style, the original style should come through in aroma and flavor. Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical). Whenever spices, herbs or additional fermentables are declared, each should be noticeable and distinctive in its own way (although not necessarily individually identifiable; balanced with the other ingredients is still critical) – in other words, the beer should read as a spiced beer but without having to tell that specific spices are present (even if declared).", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 210, + "fields": { + "name": "Alternative Grain Beer", + "category": "Alternative Fermentables Beer", + "category_id": "31", + "style_id": "31A", + "category_description": null, + "overall_impression": "A base beer enhanced by or featuring the character of additional grain or grains. The specific character depends greatly on the character of the added grains.", + "aroma": "Same as base beer style. The added grain will lend a particular character, although with some grains the beer will simply seem a bit more grainy or nutty. The alternative grain should provide the major aroma profile for this beer.", + "appearance": "Same as base beer style, although some additional haze may be noticeable.", + "flavor": "Same as base beer style. The additional grain should be noticeable in flavor, although it may not be necessarily identifiable. However, the alternative grain should provide the major flavor profile for this beer. Different grains have different characters; the additional grain should enhance the flavor of the base beer. Many will add an additional grainy, bready, or nutty flavor.", + "mouthfeel": "Same as the base beer, although many additional grains will tend to increase the body (oats, rye) and increase the viscosity, while some may decrease the body (GF grains) resulting in thinness.", + "comments": "If the alternative grain does not provide a noticeable distinguishable character to the beer, enter it as the base style. This style should not be used for styles where the alternative grain is fundamental to the style definition (e.g., Rye IPA, Oatmeal Stout, Rice- or Corn-based International Lager). Note that sake is not beer, and is not intended for this category.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Green's Indian Pale Ale, Lakefront New Grist, New Planet Pale Ale", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify a base style, but the declared style does not have to be a Classic Style. The entrant must specify the type of alternative grain used.", + "notes": "A base beer enhanced by or featuring the character of additional grain or grains. The specific character depends greatly on the character of the added grains.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Same as base beer style. The added grain will lend a particular character, although with some grains the beer will simply seem a bit more grainy or nutty. The alternative grain should provide the major aroma profile for this beer. Same as base beer style, although some additional haze may be noticeable.Same as base beer style. The additional grain should be noticeable in flavor, although it may not be necessarily identifiable. However, the alternative grain should provide the major flavor profile for this beer. Different grains have different characters; the additional grain should enhance the flavor of the base beer. Many will add an additional grainy, bready, or nutty flavor. Same as the base beer, although many additional grains will tend to increase the body (oats, rye) and increase the viscosity, while some may decrease the body (GF grains) resulting in thinness. If the alternative grain does not provide a noticeable distinguishable character to the beer, enter it as the base style. This style should not be used for styles where the alternative grain is fundamental to the style definition (e.g., Rye IPA, Oatmeal Stout, Rice- or Corn-based International Lager). Note that sake is not beer, and is not intended for this category.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 211, + "fields": { + "name": "Alternative Sugar Beer", + "category": "Alternative Fermentables Beer", + "category_id": "31", + "style_id": "31B", + "category_description": null, + "overall_impression": "A harmonious marriage of sugar and beer, but still recognizable as a beer. The sugar character should both be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "aroma": "Same as the base beer, except that some additional fermentables (honey, molasses, etc.) may add an aroma component. Whatever additional aroma component is present should be in balance with the beer components, and be a pleasant combination.", + "appearance": "Same as the base beer, although some sugars will bring additional colors.", + "flavor": "Same as the base beer, except that some additional fermentables (honey, molasses, etc.) may add a flavor component. Whatever additional flavor component is present should be in balance with the beer components, and be a pleasant combination. Added sugars should not have a raw, unfermented flavor. Some added sugars will have unfermentable elements that may provide a fuller finish; fully fermentable sugars may thin out the finish.", + "mouthfeel": "Same as the base beer, although depending on the type of sugar added, could increase or decrease the body.", + "comments": "If the additional fermentables do not add a distinguishable character to the beer, enter it in the base style category. A honey-based beer should not have so much honey that it reads more like a mead with beer (i.e., a braggot) than a honey beer. This style should not be used for styles where the alternative sugar is fundamental to the style definition, or where a small amount of neutral-flavored sugar is used simply to increase gravity, increase attenuation, or lighten flavor or body; those beers should be entered as the normal base style.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Bell's Hopslam, Fullers Honey Dew, Lagunitas Brown Shugga'", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify a base style, but the declared style does not have to be a Classic Style. The entrant must specify the type of sugar used.", + "notes": "A harmonious marriage of sugar and beer, but still recognizable as a beer. The sugar character should both be evident but in balance with the beer, not so forward as to suggest an artificial product.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Same as the base beer, except that some additional fermentables (honey, molasses, etc.) may add an aroma component. Whatever additional aroma component is present should be in balance with the beer components, and be a pleasant combination. Same as the base beer, although some sugars will bring additional colors.Same as the base beer, except that some additional fermentables (honey, molasses, etc.) may add a flavor component. Whatever additional flavor component is present should be in balance with the beer components, and be a pleasant combination. Added sugars should not have a raw, unfermented flavor. Some added sugars will have unfermentable elements that may provide a fuller finish; fully fermentable sugars may thin out the finish. Same as the base beer, although depending on the type of sugar added, could increase or decrease the body. If the additional fermentables do not add a distinguishable character to the beer, enter it in the base style category. A honey-based beer should not have so much honey that it reads more like a mead with beer (i.e., a braggot) than a honey beer. This style should not be used for styles where the alternative sugar is fundamental to the style definition, or where a small amount of neutral-flavored sugar is used simply to increase gravity, increase attenuation, or lighten flavor or body; those beers should be entered as the normal base style.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 212, + "fields": { + "name": "Classic Style Smoked Beer", + "category": "Smoked Beer", + "category_id": "32", + "style_id": "32A", + "category_description": null, + "overall_impression": "A smoke-enhanced beer showing good balance between the smoke and beer character, while remaining pleasant to drink. Balance in the use of smoke, hops and malt character is exhibited by the better examples.", + "aroma": "The aroma should be a pleasant balance between the expected aroma of the base beer and the smokiness imparted by the use of smoked malts. The intensity and character of the smoke and base beer style can vary, with either being prominent in the balance. Smokiness may vary from low to assertive; however, balance in the overall presentation is the key to well-made examples. The quality and secondary characteristics of the smoke are reflective of the source of the smoke (e.g., alder, oak, beechwood). Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate.", + "appearance": "Variable. The appearance should reflect the base beer style, although the color of the beer is often a bit darker than the plain base style.", + "flavor": "As with aroma, there should be a balance between smokiness and the expected flavor characteristics of the base beer style. Smokiness may vary from low to assertive. Smoky flavors may range from woody to somewhat bacon-like depending on the type of malts used. The balance of underlying beer characteristics and smoke can vary, although the resulting blend should be somewhat balanced and enjoyable. Smoke can add some dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury, medicinal, or phenolic smoky characteristics are generally inappropriate (although some of these characteristics may be present in some base styles; however, the smoked malt shouldn't contribute these flavors).", + "mouthfeel": "Varies with the base beer style. Significant astringent, phenolic smoke-derived harshness is inappropriate.", + "comments": "This style is for any beer that exhibits smoke as a principal flavor and aroma characteristic other than the Bamberg-style Rauchbier (i.e., beechwood-smoked Märzen), which has its own style. Any style of beer can be smoked; the goal is to reach a pleasant balance between the smoke character and the base beer style. Entries should be judged on how well that style is represented, and how well it is balanced with the smoke character. Entries with a specific type or types of smoke cited will be judged on how well that type of smoke is recognizable and marries with the base style. Judges should evaluate the beers mostly on the overall balance, and how well the smoke character enhances the base beer.", + "history": "The process of using smoked malts has been adapted by craft brewers to many styles. German brewers have traditionally used smoked malts in bock, doppelbock, weissbier, dunkel, schwarzbier, helles, Pils, and other specialty styles.", + "style_comparison": null, + "tags": "specialty-beer, smoke", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Different materials used to smoke malt result in unique flavor and aroma characteristics. Beechwood, or other hardwood (oak, maple, mesquite, alder, pecan, apple, cherry, other fruitwoods) smoked malts may be used. The various woods may remind one of certain smoked products due to their food association (e.g., hickory with ribs, maple with bacon or sausage, and alder with salmon). Evergreen wood should never be used since it adds a medicinal, piney flavor to the malt. Noticeable peat-smoked malt is universally undesirable due to its sharp, piercing phenolics and dirt-like earthiness. The remaining ingredients vary with the base style. If smoked malts are combined with other unusual ingredients (fruits, vegetables, spices, honey, etc.) in noticeable quantities, the resulting beer should be entered in the Specialty Smoked Beer.", + "examples": "Alaskan Smoked Porter, Schlenkerla Weizen Rauchbier and Ur-Bock Rauchbier, Spezial Lagerbier, Weissbier and Bockbier, Stone Smoked Porter", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify a Classic Style base beer. The entrant must specify the type of wood or smoke if a varietal smoke character is noticeable.", + "notes": "A smoke-enhanced beer showing good balance between the smoke and beer character, while remaining pleasant to drink. Balance in the use of smoke, hops and malt character is exhibited by the better examples. The process of using smoked malts has been adapted by craft brewers to many styles. German brewers have traditionally used smoked malts in bock, doppelbock, weissbier, dunkel, schwarzbier, helles, Pils, and other specialty styles.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "The aroma should be a pleasant balance between the expected aroma of the base beer and the smokiness imparted by the use of smoked malts. The intensity and character of the smoke and base beer style can vary, with either being prominent in the balance. Smokiness may vary from low to assertive; however, balance in the overall presentation is the key to well-made examples. The quality and secondary characteristics of the smoke are reflective of the source of the smoke (e.g., alder, oak, beechwood). Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate. Variable. The appearance should reflect the base beer style, although the color of the beer is often a bit darker than the plain base style.As with aroma, there should be a balance between smokiness and the expected flavor characteristics of the base beer style. Smokiness may vary from low to assertive. Smoky flavors may range from woody to somewhat bacon-like depending on the type of malts used. The balance of underlying beer characteristics and smoke can vary, although the resulting blend should be somewhat balanced and enjoyable. Smoke can add some dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury, medicinal, or phenolic smoky characteristics are generally inappropriate (although some of these characteristics may be present in some base styles; however, the smoked malt shouldn't contribute these flavors). Varies with the base beer style. Significant astringent, phenolic smoke-derived harshness is inappropriate. This style is for any beer that exhibits smoke as a principal flavor and aroma characteristic other than the Bamberg-style Rauchbier (i.e., beechwood-smoked Märzen), which has its own style. Any style of beer can be smoked; the goal is to reach a pleasant balance between the smoke character and the base beer style. Entries should be judged on how well that style is represented, and how well it is balanced with the smoke character. Entries with a specific type or types of smoke cited will be judged on how well that type of smoke is recognizable and marries with the base style. Judges should evaluate the beers mostly on the overall balance, and how well the smoke character enhances the base beer.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 213, + "fields": { + "name": "Specialty Smoked Beer", + "category": "Smoked Beer", + "category_id": "32", + "style_id": "32B", + "category_description": null, + "overall_impression": "A smoke-enhanced beer showing good balance between the smoke, the beer character, and the added ingredients, while remaining pleasant to drink. Balance in the use of smoke, hops and malt character is exhibited by the better examples.", + "aroma": "The aroma should be a pleasant balance between the expected aroma of the base beer, the smokiness imparted by the use of smoked malts, and any additional ingredients. The intensity and character of the smoke, base beer style, and additional ingredients can vary, with any being more prominent in the balance. Smokiness may vary from low to assertive; however, balance in the overall presentation is the key to well-made examples. The quality and secondary characteristics of the smoke are reflective of the source of the smoke (e.g., alder, oak, beechwood). Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate.", + "appearance": "Variable. The appearance should reflect the base beer style, although the color of the beer is often a bit darker than the plain base style. The use of certain fruits and spices may affect the color and hue of the beer as well.", + "flavor": "As with aroma, there should be a balance between smokiness, the expected flavor characteristics of the base beer style, and the additional ingredients. Smokiness may vary from low to assertive. Smoky flavors may range from woody to somewhat bacon-like depending on the type of malts used. The balance of underlying beer characteristics and smoke can vary, although the resulting blend should be somewhat balanced and enjoyable. Smoke can add some dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury, medicinal, or phenolic smoky characteristics are generally inappropriate (although some of these characteristics may be present in some base styles; however, the smoked malt shouldn't contribute these flavors).", + "mouthfeel": "Varies with the base beer style. Significant astringent, phenolic smoke-derived harshness is inappropriate.", + "comments": "Any style of beer can be smoked; the goal is to reach a pleasant balance between the smoke character and the base beer style. Entries should be judged on how well that style is represented, and how well it is balanced with the smoke character. Entries with a specific type or types of smoke cited will be judged on how well that type of smoke is recognizable and marries with the base style and added ingredients. Judges should evaluate the beers mostly on the overall balance, and how well the smoke character and added ingredients enhances the base beer.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer, smoke", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Different materials used to smoke malt result in unique flavor and aroma characteristics. Beechwood, or other hardwood (oak, maple, mesquite, alder, pecan, apple, cherry, other fruitwoods) smoked malts may be used. The various woods may remind one of certain smoked products due to their food association (e.g., hickory with ribs, maple with bacon or sausage, and alder with salmon). Evergreen wood should never be used since it adds a medicinal, piney flavor to the malt. Noticeable peat-smoked malt is universally undesirable due to its sharp, piercing phenolics and dirt-like earthiness. The beer ingredients vary with the base style. Other unusual ingredients (fruits, vegetables, spices, honey, etc.) used in noticeable quantities.", + "examples": null, + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify a base beer style; the base beer does not have to be a Classic Style. The entrant must specify the type of wood or smoke if a varietal smoke character is noticeable. The entrant must specify the additional ingredients or processes that make this a specialty smoked beer.", + "notes": "A smoke-enhanced beer showing good balance between the smoke, the beer character, and the added ingredients, while remaining pleasant to drink. Balance in the use of smoke, hops and malt character is exhibited by the better examples.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "The aroma should be a pleasant balance between the expected aroma of the base beer, the smokiness imparted by the use of smoked malts, and any additional ingredients. The intensity and character of the smoke, base beer style, and additional ingredients can vary, with any being more prominent in the balance. Smokiness may vary from low to assertive; however, balance in the overall presentation is the key to well-made examples. The quality and secondary characteristics of the smoke are reflective of the source of the smoke (e.g., alder, oak, beechwood). Sharp, phenolic, harsh, rubbery, or burnt smoke-derived aromatics are inappropriate. Variable. The appearance should reflect the base beer style, although the color of the beer is often a bit darker than the plain base style. The use of certain fruits and spices may affect the color and hue of the beer as well.As with aroma, there should be a balance between smokiness, the expected flavor characteristics of the base beer style, and the additional ingredients. Smokiness may vary from low to assertive. Smoky flavors may range from woody to somewhat bacon-like depending on the type of malts used. The balance of underlying beer characteristics and smoke can vary, although the resulting blend should be somewhat balanced and enjoyable. Smoke can add some dryness to the finish. Harsh, bitter, burnt, charred, rubbery, sulfury, medicinal, or phenolic smoky characteristics are generally inappropriate (although some of these characteristics may be present in some base styles; however, the smoked malt shouldn't contribute these flavors). Varies with the base beer style. Significant astringent, phenolic smoke-derived harshness is inappropriate. Any style of beer can be smoked; the goal is to reach a pleasant balance between the smoke character and the base beer style. Entries should be judged on how well that style is represented, and how well it is balanced with the smoke character. Entries with a specific type or types of smoke cited will be judged on how well that type of smoke is recognizable and marries with the base style and added ingredients. Judges should evaluate the beers mostly on the overall balance, and how well the smoke character and added ingredients enhances the base beer.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 214, + "fields": { + "name": "Wood-Aged Beer", + "category": "Wood Beer", + "category_id": "33", + "style_id": "33A", + "category_description": null, + "overall_impression": "A harmonious blend of the base beer style with characteristics from aging in contact with wood. The best examples will be smooth, flavorful, well-balanced and well-aged.", + "aroma": "Varies with base style. A low to moderate wood- or oak-based aroma is usually present. Fresh wood can occasionally impart raw \"green\" aromatics, although this character should never be too strong. Other optional aromatics include a low to moderate vanilla, caramel, toffee, toast, or cocoa character from any char on the wood. Any alcohol character should be smooth and balanced, not hot. Some background oxidation character is optional, and can take on a pleasant, sherry-like character and not be papery or cardboard-like. Should not have added alcohol character.", + "appearance": "Varies with base style. Often darker than the unadulterated base beer style, particularly if toasted/charred barrels are used.", + "flavor": "Varies with base style. Wood usually contributes a woody or oaky flavor, which can occasionally take on a raw \"green\" flavor if new wood is used. Other flavors that may optionally be present include vanilla (from vanillin in the wood); caramel, butterscotch, toasted bread or almonds (from toasted wood); and coffee, chocolate, cocoa (from charred wood). The wood and/or other cask-derived flavors should be balanced, supportive and noticeable, but should not overpower the base beer style. Some background oxidation character is optional, although this should take on a pleasant, sherry-like character and not be papery or cardboard-like.", + "mouthfeel": "Varies with base style. Wood can add tannins to the beer, depending on age of the cask. The tannins can lead to additional astringency (which should never be high), or simply a fuller mouthfeel. Tart or acidic characteristics should be low to none, and never distracting.", + "comments": "The base beer style should be apparent. The wood-based character should be evident, but not so dominant as to unbalance the beer. The intensity of the wood-based flavors is based on the contact time with the wood; the age, condition, and origin and char level of the barrel; and the type of wood. THIS CATEGORY SHOULD NOT BE USED FOR BASE STYLES WHERE WOOD-AGING IS A FUNDAMENTAL REQUIREMENT FOR THE STYLE (e.g., Flanders Red, Lambic, etc.). Beers made using either limited wood aging or products that only provide a subtle background character may be entered in the base beer style categories as long as the wood character isn't prominently featured.", + "history": "A traditional production method that is rarely used by major breweries, and usually only with specialty products. More popular with modern American craft breweries looking for new, distinctive products. Oak cask and barrels are traditional, although other woods are becoming more popular.", + "style_comparison": null, + "tags": "specialty-beer, wood", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Varies with base style. Aged in wooden casks or barrels, or using wood-based additives (wood chips, wood staves, oak essence). Fuller-bodied, higher-gravity base styles often are used since they can best stand up to the additional flavors, although experimentation is encouraged.", + "examples": "Bush Prestige, Cigar City Humidor India Pale Ale, Faust Holzfassgereifter Eisbock, Firestone Walker Double Barrel Ale, Great Divide Oak Aged Yeti Imperial Stout, Petrus Aged Pale, Samuel Smith Yorkshire Stingo", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify the type of wood used and the char level (if charred). The entrant must specify the base style; the base style can be either a classic BJCP style (i.e., a named subcategory) or may be a generic type of beer (e.g., porter, brown ale). If an unusual wood has been used, the entrant must supply a brief description of the sensory aspects the wood adds to beer.", + "notes": "A harmonious blend of the base beer style with characteristics from aging in contact with wood. The best examples will be smooth, flavorful, well-balanced and well-aged. A traditional production method that is rarely used by major breweries, and usually only with specialty products. More popular with modern American craft breweries looking for new, distinctive products. Oak cask and barrels are traditional, although other woods are becoming more popular.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Varies with base style. A low to moderate wood- or oak-based aroma is usually present. Fresh wood can occasionally impart raw \"green\" aromatics, although this character should never be too strong. Other optional aromatics include a low to moderate vanilla, caramel, toffee, toast, or cocoa character from any char on the wood. Any alcohol character should be smooth and balanced, not hot. Some background oxidation character is optional, and can take on a pleasant, sherry-like character and not be papery or cardboard-like. Should not have added alcohol character. Varies with base style. Often darker than the unadulterated base beer style, particularly if toasted/charred barrels are used.Varies with base style. Wood usually contributes a woody or oaky flavor, which can occasionally take on a raw \"green\" flavor if new wood is used. Other flavors that may optionally be present include vanilla (from vanillin in the wood); caramel, butterscotch, toasted bread or almonds (from toasted wood); and coffee, chocolate, cocoa (from charred wood). The wood and/or other cask-derived flavors should be balanced, supportive and noticeable, but should not overpower the base beer style. Some background oxidation character is optional, although this should take on a pleasant, sherry-like character and not be papery or cardboard-like. Varies with base style. Wood can add tannins to the beer, depending on age of the cask. The tannins can lead to additional astringency (which should never be high), or simply a fuller mouthfeel. Tart or acidic characteristics should be low to none, and never distracting. The base beer style should be apparent. The wood-based character should be evident, but not so dominant as to unbalance the beer. The intensity of the wood-based flavors is based on the contact time with the wood; the age, condition, and origin and char level of the barrel; and the type of wood. THIS CATEGORY SHOULD NOT BE USED FOR BASE STYLES WHERE WOOD-AGING IS A FUNDAMENTAL REQUIREMENT FOR THE STYLE (e.g., Flanders Red, Lambic, etc.). Beers made using either limited wood aging or products that only provide a subtle background character may be entered in the base beer style categories as long as the wood character isn't prominently featured.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 215, + "fields": { + "name": "Specialty Wood-Aged Beer", + "category": "Wood Beer", + "category_id": "33", + "style_id": "33B", + "category_description": null, + "overall_impression": "A harmonious blend of the base beer style with characteristics from aging in contact with wood (including alcoholic products previously in contact with the wood). The best examples will be smooth, flavorful, well-balanced and well-aged.", + "aroma": "Varies with base style. A low to moderate wood- or oak-based aroma is usually present. Other aromatics often include a low to moderate vanilla, caramel, toffee, toast, or cocoa character, as well as any aromatics associated with alcohol (distilled spirits, wine, etc.) previously stored in the wood. The added alcohol character should be smooth and balanced, not hot. Some background oxidation character is optional, and can take on a pleasant, sherry-like character and not be papery or cardboard-like.", + "appearance": "Varies with base style. Often darker than the unadulterated base beer style, particularly if whiskey/bourbon barrels are used. Beers aged in wine barrels or other products with distinctive colors may also impart a color to the finished beer.", + "flavor": "Varies with base style. Wood usually contributes a woody or oaky flavor. Other flavors that are typically present include vanilla (from vanillin in the wood); caramel, butterscotch, toasted bread or almonds (from toasted wood); coffee, chocolate, cocoa (from charred wood or bourbon casks); and alcohol flavors from other products previously stored in the wood. The wood and/or other cask-derived flavors should be balanced, supportive and noticeable, but should not overpower the base beer style. Some background oxidation character is optional, although this should take on a pleasant, sherry-like character and not be papery or cardboard-like.", + "mouthfeel": "Varies with base style. Wood can add tannins to the beer, depending on age of the cask. The tannins can lead to additional astringency (which should never be high), or simply a fuller mouthfeel. Usually exhibits additional alcohol warming. Higher alcohol levels should not result in \"hot\" beers; aged, smooth flavors are most desirable. Tart or acidic characteristics should be low to none.", + "comments": "The base beer style should be apparent. The wood-based character should be evident, but not so dominant as to unbalance the beer. The intensity of the wood-based flavors is based on the contact time with the wood; the age, condition, previous usage of the barrel; and the type of wood. Alcoholic products previously stored in the wood should be evident, but should not be so dominant as to unbalance the beer. THIS CATEGORY SHOULD NOT BE USED FOR BASE STYLES WHERE BARREL-AGING IS A FUNDAMENTAL REQUIREMENT FOR THE STYLE (e.g., Flanders Red, Lambic, etc.). Special wood-aged wild ales should be entered in the Wild Specialty style.", + "history": "A traditional production method that is rarely used by major breweries, and usually only with specialty products. Quite popular with modern American craft breweries looking for new, distinctive products. Oak cask and barrels are traditional, although other woods can be used.", + "style_comparison": null, + "tags": "specialty-beer, wood", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": "Varies with base style. Aged in wooden casks or barrels previously used to store alcohol (e.g., whiskey, bourbon, port, sherry, Madeira, wine, etc). Fuller-bodied, higher-gravity base styles often are used since they can best stand up to the additional flavors, although experimentation is encouraged.", + "examples": "Founders Kentucky Breakfast Stout, Goose Island Bourbon County Stout, J.W. Lees Harvest Ale in Port, Sherry, Lagavulin Whisky or Calvados Casks, The Lost Abbey Angel's Share Ale; many microbreweries have specialty beers served only on premises often directly from the cask.", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify the additional alcohol character, with information about the barrel if relevant to the finished flavor profile. The entrant must specify the base style; the base style can be either a classic BJCP style (i.e., a named subcategory) or may be a generic type of beer (e.g., porter, brown ale). If an unusual wood or ingredient has been used, the entrant must supply a brief description of the sensory aspects the ingredients adds to the beer.", + "notes": "A harmonious blend of the base beer style with characteristics from aging in contact with wood (including alcoholic products previously in contact with the wood). The best examples will be smooth, flavorful, well-balanced and well-aged. A traditional production method that is rarely used by major breweries, and usually only with specialty products. Quite popular with modern American craft breweries looking for new, distinctive products. Oak cask and barrels are traditional, although other woods can be used.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Varies with base style. A low to moderate wood- or oak-based aroma is usually present. Other aromatics often include a low to moderate vanilla, caramel, toffee, toast, or cocoa character, as well as any aromatics associated with alcohol (distilled spirits, wine, etc.) previously stored in the wood. The added alcohol character should be smooth and balanced, not hot. Some background oxidation character is optional, and can take on a pleasant, sherry-like character and not be papery or cardboard-like. Varies with base style. Often darker than the unadulterated base beer style, particularly if whiskey/bourbon barrels are used. Beers aged in wine barrels or other products with distinctive colors may also impart a color to the finished beer.Varies with base style. Wood usually contributes a woody or oaky flavor. Other flavors that are typically present include vanilla (from vanillin in the wood); caramel, butterscotch, toasted bread or almonds (from toasted wood); coffee, chocolate, cocoa (from charred wood or bourbon casks); and alcohol flavors from other products previously stored in the wood. The wood and/or other cask-derived flavors should be balanced, supportive and noticeable, but should not overpower the base beer style. Some background oxidation character is optional, although this should take on a pleasant, sherry-like character and not be papery or cardboard-like. Varies with base style. Wood can add tannins to the beer, depending on age of the cask. The tannins can lead to additional astringency (which should never be high), or simply a fuller mouthfeel. Usually exhibits additional alcohol warming. Higher alcohol levels should not result in \"hot\" beers; aged, smooth flavors are most desirable. Tart or acidic characteristics should be low to none. The base beer style should be apparent. The wood-based character should be evident, but not so dominant as to unbalance the beer. The intensity of the wood-based flavors is based on the contact time with the wood; the age, condition, previous usage of the barrel; and the type of wood. Alcoholic products previously stored in the wood should be evident, but should not be so dominant as to unbalance the beer. THIS CATEGORY SHOULD NOT BE USED FOR BASE STYLES WHERE BARREL-AGING IS A FUNDAMENTAL REQUIREMENT FOR THE STYLE (e.g., Flanders Red, Lambic, etc.). Special wood-aged wild ales should be entered in the Wild Specialty style.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 216, + "fields": { + "name": "Clone Beer", + "category": "Specialty Beer", + "category_id": "34", + "style_id": "34A", + "category_description": null, + "overall_impression": "Based on declared clone beer.", + "aroma": "Based on declared clone beer.", + "appearance": "Based on declared clone beer.", + "flavor": "Based on declared clone beer.", + "mouthfeel": "Based on declared clone beer.", + "comments": "Intended as a catch-all location for specific beers that are based on unique commercial examples that don't fit existing styles.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": null, + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify the name of the commercial beer being cloned, specifications (vital statistics) for the beer, and either a brief sensory description or a list of ingredients used in making the beer. Without this information, judges who are unfamiliar with the beer will have no basis for comparison.", + "notes": "Based on declared clone beer.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Based on declared clone beer. Based on declared clone beer.Based on declared clone beer. Based on declared clone beer. Intended as a catch-all location for specific beers that are based on unique commercial examples that don't fit existing styles.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 217, + "fields": { + "name": "Mixed-Style Beer", + "category": "Specialty Beer", + "category_id": "34", + "style_id": "34B", + "category_description": null, + "overall_impression": "Based on the declared base styles. As with all Specialty-Type Beers, the resulting combination of beer styles needs to be harmonious and balanced, and be pleasant to drink.", + "aroma": "Based on the declared base styles.", + "appearance": "Based on the declared base styles.", + "flavor": "Based on the declared base styles.", + "mouthfeel": "Based on the declared base styles.", + "comments": "Intended for Specialty-Type combinations of styles not described elsewhere as Specialty-Type Beers, or as hybrid or fusion beers between other existing styles.", + "history": null, + "style_comparison": null, + "tags": "specialty-beer", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": null, + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify the styles being mixed. The entrant may provide an additional description of the sensory profile of the beer or the vital statistics of the resulting beer.", + "notes": "Based on the declared base styles. As with all Specialty-Type Beers, the resulting combination of beer styles needs to be harmonious and balanced, and be pleasant to drink.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Based on the declared base styles. Based on the declared base styles.Based on the declared base styles. Based on the declared base styles. Intended for Specialty-Type combinations of styles not described elsewhere as Specialty-Type Beers, or as hybrid or fusion beers between other existing styles.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 218, + "fields": { + "name": "Experimental Beer", + "category": "Specialty Beer", + "category_id": "34", + "style_id": "34C", + "category_description": null, + "overall_impression": "Varies, but should be a unique experience.", + "aroma": "Varies.", + "appearance": "Varies.", + "flavor": "Varies.", + "mouthfeel": "Varies.", + "comments": "This style is the ultimate in creativity, since it cannot represent a well-known commercial beer (otherwise it would be a clone beer) and cannot fit into any other existing Specialty-Type style (including those within this major category).", + "history": null, + "style_comparison": null, + "tags": "specialty-beer", + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "None", + "style_guide": "BJCP2015", + "type": "beer", + "entry_instructions": "The entrant must specify the special nature of the experimental beer, including the special ingredients or processes that make it not fit elsewhere in the guidelines. The entrant must provide vital statistics for the beer, and either a brief sensory description or a list of ingredients used in making the beer. Without this information, judges will have no basis for comparison.", + "notes": "Varies, but should be a unique experience.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Varies. Varies.Varies. Varies. This style is the ultimate in creativity, since it cannot represent a well-known commercial beer (otherwise it would be a clone beer) and cannot fit into any other existing Specialty-Type style (including those within this major category).", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 219, + "fields": { + "name": "Dry Mead", + "category": "Traditional Mead", + "category_id": "M1", + "style_id": "M1A", + "category_description": null, + "overall_impression": "Similar in balance, body, finish and flavor intensity to a dry white wine, with a pleasant mixture of subtle honey character, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol, and honey character is the essential final measure of any mead.", + "aroma": "Honey aroma may be subtle, although not always identifiable. Sweetness or significant honey aromatics should not be expected. If a honey variety is declared, the variety should be distinctive (if noticeable). Different types of honey have different intensities and characters. Standard description applies for remainder of characteristics.", + "appearance": "Standard description applies.", + "flavor": "Subtle (if any) honey character, and may feature subtle to noticeable varietal character if a varietal honey is declared (different varieties have different intensities). Residual sweetness levels are minimal to none. Dry finish. May have more noticeable acidity due to low sweetness levels. Tannin levels may make a sweeter mead seem dry. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics.", + "mouthfeel": "Standard description applies, although the body is generally medium to light (but not watery). Note that stronger meads can have a fuller body. Sensations of body should not be accompanied by noticeable residual sweetness. Ingredients: Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. Show meads feature no additives, but this distinction is usually not obvious to judges.", + "comments": null, + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "White Winter Dry Mead, Sky River Dry Mead, Intermiel Bouquet Printanier", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level and strength. Sweetness is assumed to be DRY in this category. Entrants MAY specify honey varieties.", + "notes": "Similar in balance, body, finish and flavor intensity to a dry white wine, with a pleasant mixture of subtle honey character, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol, and honey character is the essential final measure of any mead.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Honey aroma may be subtle, although not always identifiable. Sweetness or significant honey aromatics should not be expected. If a honey variety is declared, the variety should be distinctive (if noticeable). Different types of honey have different intensities and characters. Standard description applies for remainder of characteristics. Standard description applies.Subtle (if any) honey character, and may feature subtle to noticeable varietal character if a varietal honey is declared (different varieties have different intensities). Residual sweetness levels are minimal to none. Dry finish. May have more noticeable acidity due to low sweetness levels. Tannin levels may make a sweeter mead seem dry. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics. Standard description applies, although the body is generally medium to light (but not watery). Note that stronger meads can have a fuller body. Sensations of body should not be accompanied by noticeable residual sweetness. Ingredients: Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. Show meads feature no additives, but this distinction is usually not obvious to judges.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 220, + "fields": { + "name": "Semi-Sweet Mead", + "category": "Traditional Mead", + "category_id": "M1", + "style_id": "M1B", + "category_description": null, + "overall_impression": "Similar in balance, body, finish and flavor intensity to a semi-sweet (or medium-dry) white wine, with a pleasant mixture of honey character, light sweetness, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol, and honey character is the essential final measure of any mead.", + "aroma": "Honey aroma should be noticeable, and can have a light sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). Standard description applies for remainder of characteristics.", + "appearance": "Standard description applies.", + "flavor": "Subtle to moderate honey character, and may feature subtle to noticeable varietal character if a varietal honey is declared (different varieties have different intensities). Residual sweetness levels are subtle to moderate. Medium-dry to lightly sweet finish. Tannin levels may make a sweet mead seem medium-dry. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics.", + "mouthfeel": "Standard description applies, although the body is generally medium-light to medium-full. Note that stronger meads can have a fuller body. Sensations of body should not be accompanied by a residual sweetness that is higher than moderate. Ingredients: Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. Show meads feature no additives, but this distinction is usually not obvious to judges.", + "comments": null, + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Lurgashall English Mead, Redstone Traditional Mountain Honey Wine, Sky River Semi-Sweet Mead, Intermiel Verge d'Or and Mélilot", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level and strength. Sweetness is assumed to be SEMI-SWEET in this category. Entrants MAY specify honey varieties.", + "notes": "Similar in balance, body, finish and flavor intensity to a semi-sweet (or medium-dry) white wine, with a pleasant mixture of honey character, light sweetness, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol, and honey character is the essential final measure of any mead.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Honey aroma should be noticeable, and can have a light sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). Standard description applies for remainder of characteristics. Standard description applies.Subtle to moderate honey character, and may feature subtle to noticeable varietal character if a varietal honey is declared (different varieties have different intensities). Residual sweetness levels are subtle to moderate. Medium-dry to lightly sweet finish. Tannin levels may make a sweet mead seem medium-dry. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics. Standard description applies, although the body is generally medium-light to medium-full. Note that stronger meads can have a fuller body. Sensations of body should not be accompanied by a residual sweetness that is higher than moderate. Ingredients: Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. Show meads feature no additives, but this distinction is usually not obvious to judges.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 221, + "fields": { + "name": "Sweet Mead", + "category": "Traditional Mead", + "category_id": "M1", + "style_id": "M1C", + "category_description": null, + "overall_impression": "Similar in balance, body, finish and flavor intensity to a well-made dessert wine (such as Sauternes), with a pleasant mixture of honey character, residual sweetness, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol, and honey character is the essential final measure of any mead.", + "aroma": "Honey aroma should dominate, and is often moderately to strongly sweet and usually expresses the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). Standard description applies for remainder of characteristics.", + "appearance": "Standard description applies.", + "flavor": "Moderate to significant honey character, and may feature moderate to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Residual sweetness levels are moderate to high. Sweet and full (but not cloying) finish. Balanced acidity and/or tannin helps keep the sweetness agreeable to the palate without being overwhelming. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics.", + "mouthfeel": "Standard description applies, although the body is generally medium-full to full. Note that stronger meads will have a fuller body. Many examples will seem like a dessert wine. Sensations of body should not be accompanied by cloying, raw (unfermented) residual sweetness. Ingredients: Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. Show meads feature no additives, but this distinction is usually not obvious to judges.", + "comments": null, + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Moonlight Sensual, Lurgashall Christmas Mead, Chaucer's Mead, Rabbit's Foot Sweet Wildflower Honey Mead, Intermiel Benoîte", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level and strength. Sweetness is assumed to be SWEET in this category. Entrants MAY specify honey varieties.", + "notes": "Similar in balance, body, finish and flavor intensity to a well-made dessert wine (such as Sauternes), with a pleasant mixture of honey character, residual sweetness, soft fruity esters, and clean alcohol. Complexity, harmony, and balance of sensory elements are most desirable, with no inconsistencies in color, aroma, flavor or aftertaste. The proper balance of sweetness, acidity, alcohol, and honey character is the essential final measure of any mead.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Honey aroma should dominate, and is often moderately to strongly sweet and usually expresses the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). Standard description applies for remainder of characteristics. Standard description applies.Moderate to significant honey character, and may feature moderate to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Residual sweetness levels are moderate to high. Sweet and full (but not cloying) finish. Balanced acidity and/or tannin helps keep the sweetness agreeable to the palate without being overwhelming. Sulfury, harsh or yeasty fermentation characteristics are undesirable. Standard description applies for remainder of characteristics. Standard description applies, although the body is generally medium-full to full. Note that stronger meads will have a fuller body. Many examples will seem like a dessert wine. Sensations of body should not be accompanied by cloying, raw (unfermented) residual sweetness. Ingredients: Standard description applies. Traditional Meads feature the character of a blended honey or a blend of honeys. Varietal meads feature the distinctive character of certain honeys. Show meads feature no additives, but this distinction is usually not obvious to judges.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 222, + "fields": { + "name": "Cyser", + "category": "Fruit Mead", + "category_id": "M2", + "style_id": "M2A", + "category_description": null, + "overall_impression": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Some of the best strong examples have the taste and aroma of an aged Calvados (apple brandy from northern France), while subtle, dry versions can taste similar to many fine white wines. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", + "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and apple/cider character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The apple/cider character should be clean and distinctive; it can express a range of apple-based character ranging from a subtle fruitiness to a single varietal apple character (if declared) to a complex blend of apple aromatics. Some spicy or earthy notes may be present, as may a slightly sulfury character. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Slight spicy phenolics from certain apple varieties are acceptable, as is a light diacetyl character from malolactic fermentation (both are optional). Standard description applies for remainder of characteristics.", + "appearance": "Standard description applies, except with regard to color. Color may range from pale straw to deep golden amber (most are yellow to gold), depending on the variety of honey and blend of apples or ciders used.", + "flavor": "The apple and honey flavor intensity may vary from none to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). Natural acidity and tannin in apples may give some tartness and astringency to balance the sweetness, honey flavor and alcohol. Tannin levels may make a cyser seem drier than the residual sugar levels might suggest. A cyser may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Slight spicy phenolics from certain apple varieties are acceptable, as are a light diacetyl character from malolactic fermentation and a slight sulfur character (all are optional). Standard description applies for remainder of characteristics.", + "mouthfeel": "Standard description applies. Often wine-like. Some natural acidity is usually present (from the blend of apples) and helps balance the overall impression. Some apples can provide natural astringency, but this character should not be excessive. Ingredients: Standard description applies. Cyser is a mead made with the addition of apples or apple juice. Traditionally, cysers are made by the addition of honey to apple juice without additional water.", + "comments": null, + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Moonlight Blossom, White Winter Cyser, Rabbit's Foot Apple Cyser", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MAY specify the varieties of apple used; if specified, a varietal character will be expected. Products with a relatively low proportion of honey are better entered as a Specialty Cider. A spiced cyser should be entered as a Fruit and Spice Mead. A cyser with other fruit should be entered as a Melomel. A cyser with additional ingredients should be entered as an Experimental Mead.", + "notes": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Some of the best strong examples have the taste and aroma of an aged Calvados (apple brandy from northern France), while subtle, dry versions can taste similar to many fine white wines. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and apple/cider character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The apple/cider character should be clean and distinctive; it can express a range of apple-based character ranging from a subtle fruitiness to a single varietal apple character (if declared) to a complex blend of apple aromatics. Some spicy or earthy notes may be present, as may a slightly sulfury character. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Slight spicy phenolics from certain apple varieties are acceptable, as is a light diacetyl character from malolactic fermentation (both are optional). Standard description applies for remainder of characteristics. Standard description applies, except with regard to color. Color may range from pale straw to deep golden amber (most are yellow to gold), depending on the variety of honey and blend of apples or ciders used.The apple and honey flavor intensity may vary from none to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). Natural acidity and tannin in apples may give some tartness and astringency to balance the sweetness, honey flavor and alcohol. Tannin levels may make a cyser seem drier than the residual sugar levels might suggest. A cyser may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Slight spicy phenolics from certain apple varieties are acceptable, as are a light diacetyl character from malolactic fermentation and a slight sulfur character (all are optional). Standard description applies for remainder of characteristics. Standard description applies. Often wine-like. Some natural acidity is usually present (from the blend of apples) and helps balance the overall impression. Some apples can provide natural astringency, but this character should not be excessive. Ingredients: Standard description applies. Cyser is a mead made with the addition of apples or apple juice. Traditionally, cysers are made by the addition of honey to apple juice without additional water.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 223, + "fields": { + "name": "Pyment", + "category": "Fruit Mead", + "category_id": "M2", + "style_id": "M2B", + "category_description": null, + "overall_impression": "In well-made examples of the style, the grape is both distinctively vinous and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. White and red versions can be quite different, and the overall impression should be characteristic of the type of grapes used and suggestive of a similar variety wine. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", + "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and grape/wine character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The grape/wine character should be clean and distinctive; it can express a range of grape-based character ranging from a subtle fruitiness to a single varietal grape character (if declared) to a complex blend of grape or wine aromatics. Some complex, spicy, grassy or earthy notes may be present (as in wine). The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Slight spicy phenolics from certain red grape varieties are acceptable, as is a light diacetyl character from malolactic fermentation in certain white grape varieties (both are optional). Standard description applies for remainder of characteristics.", + "appearance": "Standard description applies, except with regard to color. Color may range from pale straw to deep purple-red, depending on the variety of grapes and honey used. The color should be characteristic of the variety or type of grape used, although white grape varieties may also take on color derived from the honey variety.", + "flavor": "The grape/wine and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). Natural acidity and tannin in grapes may give some tartness and astringency to balance the sweetness, honey flavor and alcohol. A pyment may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Depending on the grape variety, some fruity, spicy, grassy, buttery, earthy, minerally, and/or floral flavors may be present. Some versions (particularly red pyments) may be oak-aged, with additional flavor complexity. Tannin levels may make the pyment seem drier than residual sugar levels might suggest. Standard description applies for remainder of characteristics.", + "mouthfeel": "Standard description applies. Wine-like. Some natural acidity is usually present (from grapes) and helps balance the overall impression. Grape tannin and/or grape skins can add body as well as some astringency, although this character should not be excessive. Use of oak can also add this character. Longer aging can smooth out tannin-based astringency. Ingredients: Standard description applies. A pyment is a mead made with the addition of grapes or grape juices. Alternatively, the pyment may be a homemade grape-based wine sweetened with honey, or a mead mixed with homemade grape-based wine after fermentation.", + "comments": null, + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Celestial Meads Que Syrah, Moonlight Slow Dance, Redstone Pinot Noir and White Pyment Mountain Honey Wines", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MAY specify the varieties of grape used; if specified, a varietal character will be expected. A spiced pyment (hippocras) should be entered as a Fruit and Spice Mead. A pyment made with other fruit should be entered as a Melomel. A pyment with other ingredients should be entered as an Experimental Mead.", + "notes": "In well-made examples of the style, the grape is both distinctively vinous and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. White and red versions can be quite different, and the overall impression should be characteristic of the type of grapes used and suggestive of a similar variety wine. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and grape/wine character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The grape/wine character should be clean and distinctive; it can express a range of grape-based character ranging from a subtle fruitiness to a single varietal grape character (if declared) to a complex blend of grape or wine aromatics. Some complex, spicy, grassy or earthy notes may be present (as in wine). The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Slight spicy phenolics from certain red grape varieties are acceptable, as is a light diacetyl character from malolactic fermentation in certain white grape varieties (both are optional). Standard description applies for remainder of characteristics. Standard description applies, except with regard to color. Color may range from pale straw to deep purple-red, depending on the variety of grapes and honey used. The color should be characteristic of the variety or type of grape used, although white grape varieties may also take on color derived from the honey variety.The grape/wine and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). Natural acidity and tannin in grapes may give some tartness and astringency to balance the sweetness, honey flavor and alcohol. A pyment may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Depending on the grape variety, some fruity, spicy, grassy, buttery, earthy, minerally, and/or floral flavors may be present. Some versions (particularly red pyments) may be oak-aged, with additional flavor complexity. Tannin levels may make the pyment seem drier than residual sugar levels might suggest. Standard description applies for remainder of characteristics. Standard description applies. Wine-like. Some natural acidity is usually present (from grapes) and helps balance the overall impression. Grape tannin and/or grape skins can add body as well as some astringency, although this character should not be excessive. Use of oak can also add this character. Longer aging can smooth out tannin-based astringency. Ingredients: Standard description applies. A pyment is a mead made with the addition of grapes or grape juices. Alternatively, the pyment may be a homemade grape-based wine sweetened with honey, or a mead mixed with homemade grape-based wine after fermentation.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 224, + "fields": { + "name": "Berry Mead", + "category": "Fruit Mead", + "category_id": "M2", + "style_id": "M2C", + "category_description": null, + "overall_impression": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.", + "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s); however, note that some fruit (e.g., raspberries) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw, and/or inappropriately overpowering (considering the character of the fruit). In a blended berry mead, not all fruit may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics.", + "appearance": "Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored meads with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well.", + "flavor": "The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The natural acidity and tannin levels from fruit and fruit skins will vary, and this character is expected to be present in the mead, although in balance with sweetness, honey flavor, and alcohol. Tannin levels may make some meads seem drier than the residual sweetness might suggest. A berry mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial, raw (unfermented), and/or inappropriately overpowering. In a blended berry mead, not all fruit may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics.", + "mouthfeel": "Standard description applies. Most will be wine-like. Some natural acidity and/or tannin are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and tannin levels should be somewhat reflective of the fruit used. Ingredients: Standard description applies. A berry mead is a mead made with the addition of other berries or berry juices, including a blend of berries. There should be an appealing blend of the fruit and honey character but not necessarily an even balance.", + "comments": "Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist. Some fruits, notably darker ones like blackberries, may contribute a tannin presence similar to a red wine.", + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Moonlight Blissful, Wild, Caress, and Mischief, White Winter Blueberry, Raspberry and Strawberry Melomels, Celestial Meads Miel Noir, Redstone Black Raspberry Nectar, Bees Brothers Raspberry Mead, Intermiel Honey Wine and Raspberries, Honey Wine and Blueberries, and Honey Wine and Blackcurrants, Mountain Meadows Cranberry Mead", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the varieties of fruit used. A mead made with both berries and non-berry fruit (including apples and grapes) should be entered as a Melomel. A berry mead that is spiced should be entered as a Fruit and Spice Mead. A berry mead containing other ingredients should be entered as an Experimental Mead.", + "notes": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s); however, note that some fruit (e.g., raspberries) have stronger aromas and are more distinctive than others (e.g., blueberries, strawberries) — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw, and/or inappropriately overpowering (considering the character of the fruit). In a blended berry mead, not all fruit may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics. Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored meads with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well.The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The natural acidity and tannin levels from fruit and fruit skins will vary, and this character is expected to be present in the mead, although in balance with sweetness, honey flavor, and alcohol. Tannin levels may make some meads seem drier than the residual sweetness might suggest. A berry mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial, raw (unfermented), and/or inappropriately overpowering. In a blended berry mead, not all fruit may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics. Standard description applies. Most will be wine-like. Some natural acidity and/or tannin are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and tannin levels should be somewhat reflective of the fruit used. Ingredients: Standard description applies. A berry mead is a mead made with the addition of other berries or berry juices, including a blend of berries. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist. Some fruits, notably darker ones like blackberries, may contribute a tannin presence similar to a red wine.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 225, + "fields": { + "name": "Stone Fruit Mead", + "category": "Fruit Mead", + "category_id": "M2", + "style_id": "M2D", + "category_description": null, + "overall_impression": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.", + "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s); however, note that some fruit (e.g., cherries) have stronger aromas and are more distinctive than others (e.g., peaches) — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw and/or inappropriately overpowering (considering the character of the fruit). In a blended stone fruit mead, not all the fruits may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics.", + "appearance": "Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored meads with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well.", + "flavor": "The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The natural acidity and tannin levels from fruit and fruit skins will vary, and this character is expected to be present in the mead, although in balance with sweetness, honey flavor, and alcohol. Tannin levels may make some meads seem drier than the residual sweetness might suggest. A stone fruit mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial, raw (unfermented), and/or inappropriately overpowering. In a blended stone fruit mead, not all the fruits may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics.", + "mouthfeel": "Standard description applies. Most will be wine-like. Some natural acidity and/or tannin are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and tannin levels should be somewhat reflective of the fruit used. Ingredients: Standard description applies. A stone fruit mead is a mead made with the addition of other stone fruit or stone fruit juices. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. A stone fruit mead can be made with a blend of stone fruits, but not other fruit not allowable in this category.", + "comments": "Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Mountain Meadows Cherry Mead, Moonlight Entice, Sumptuous, Flirt, and Smitten, Redstone Sunshine Nectar", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the varieties of fruit used. A stone fruit mead that is spiced should be entered as a Fruit and Spice Mead. A stone fruit mead that contains non-stone fruit should be entered as a Melomel. A stone fruit mead that contains other ingredients should be entered as an Experimental Mead.", + "notes": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s); however, note that some fruit (e.g., cherries) have stronger aromas and are more distinctive than others (e.g., peaches) — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw and/or inappropriately overpowering (considering the character of the fruit). In a blended stone fruit mead, not all the fruits may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics. Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored meads with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well.The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The natural acidity and tannin levels from fruit and fruit skins will vary, and this character is expected to be present in the mead, although in balance with sweetness, honey flavor, and alcohol. Tannin levels may make some meads seem drier than the residual sweetness might suggest. A stone fruit mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial, raw (unfermented), and/or inappropriately overpowering. In a blended stone fruit mead, not all the fruits may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics. Standard description applies. Most will be wine-like. Some natural acidity and/or tannin are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and tannin levels should be somewhat reflective of the fruit used. Ingredients: Standard description applies. A stone fruit mead is a mead made with the addition of other stone fruit or stone fruit juices. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. A stone fruit mead can be made with a blend of stone fruits, but not other fruit not allowable in this category. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 226, + "fields": { + "name": "Melomel", + "category": "Fruit Mead", + "category_id": "M2", + "style_id": "M2E", + "category_description": null, + "overall_impression": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.", + "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s); however, note that some fruit have stronger aromas and are more distinctive than others — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw (unfermented), and/or inappropriately overpowering (considering the character of the fruit). In a blended fruit melomel, not all the fruits may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics.", + "appearance": "Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored melomels with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well.", + "flavor": "The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The natural acidity and tannin levels from fruit and fruit skins will vary, and this character is expected to be present in the mead, although in balance with sweetness, honey flavor, and alcohol. Tannin levels may make some meads seem drier than the residual sweetness might suggest. A melomel may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial, raw (unfermented), and/or inappropriately overpowering. In a melomel made with a combination of fruits, not all the fruits may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics.", + "mouthfeel": "Standard description applies. Most will be wine-like. Some natural acidity and/or tannin are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and tannin levels should be somewhat reflective of the fruit used. Ingredients: Standard description applies. A melomel is a mead made with the addition of other fruit or fruit juices not specifically reserved for other entry subcategories. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. A melomel can be made with a blend of fruits from multiple Fruit Mead subcategories.", + "comments": "Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Moonlight Desire, Paramour, and Iniquity", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the varieties of fruit used. A melomel that is spiced should be entered as a Fruit and Spice Mead. A melomel containing other ingredients should be entered as an Experimental Mead. Melomels made with either apples or grapes as the only fruit source should be entered as a Cyser or Pyment, respectively. Melomels with apples or grapes, plus other fruit should be entered in this category, not Experimental Mead.", + "notes": "In well-made examples of the style, the fruit is both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruit can result in widely different characteristics; allow for a variation in the final product.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and fruit character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The fruit character should display distinctive aromatics associated with the particular fruit(s); however, note that some fruit have stronger aromas and are more distinctive than others — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw (unfermented), and/or inappropriately overpowering (considering the character of the fruit). In a blended fruit melomel, not all the fruits may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some tartness may be present if naturally occurring in the particular fruit(s), but should not be inappropriately intense. Standard description applies for remainder of characteristics. Standard description applies, except with regard to color. Color may take on a very wide range of colors, depending on the variety of fruit and/or honey used. For lighter-colored melomels with fruits that exhibit distinctive colors, the color should be noticeable. Note that the color of fruit in mead is often lighter than the flesh of the fruit itself and may take on slightly different shades. Meads made with lighter color fruits can also take on color from varietal honeys. In meads that produce a head, the head can take on some of the fruit color as well.The fruit and honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The natural acidity and tannin levels from fruit and fruit skins will vary, and this character is expected to be present in the mead, although in balance with sweetness, honey flavor, and alcohol. Tannin levels may make some meads seem drier than the residual sweetness might suggest. A melomel may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). The distinctive flavor character associated with the particular fruit(s) should be noticeable, and may range in intensity from subtle to aggressive. The balance of fruit with the underlying mead is vital, and the fruit character should not be artificial, raw (unfermented), and/or inappropriately overpowering. In a melomel made with a combination of fruits, not all the fruits may be individually identifiable or of equal intensity. Standard description applies for remainder of characteristics. Standard description applies. Most will be wine-like. Some natural acidity and/or tannin are sometimes present (from certain fruit and/or fruit skin) and helps balance the overall impression. Fruit tannin can add body as well as some astringency. High levels of astringency are undesirable. The acidity and tannin levels should be somewhat reflective of the fruit used. Ingredients: Standard description applies. A melomel is a mead made with the addition of other fruit or fruit juices not specifically reserved for other entry subcategories. There should be an appealing blend of the fruit and honey character but not necessarily an even balance. A melomel can be made with a blend of fruits from multiple Fruit Mead subcategories. Generally a good tannin-sweetness balance is desired, though very dry and very sweet examples do exist.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 227, + "fields": { + "name": "Fruit and Spice Mead", + "category": "Spiced Mead", + "category_id": "M3", + "style_id": "M3A", + "category_description": null, + "overall_impression": "In well-made examples of the style, the fruits and spices are both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruits and spices can result in widely different characteristics; allow for significant variation in the final product.", + "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey, fruit, and spice character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The spice character should display distinctive aromatics associated with the particular spices; however, note that some spices (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., chamomile, lavender) — allow for a range of spice character and intensity from subtle to aggressive. The spice character should be pleasant and supportive, not artificial and inappropriately overpowering (considering the character of the spice). The fruit character should display distinctive aromatics associated with the particular fruit; however, note that some fruits (e.g., raspberry, cherry) have stronger aromas and are more distinctive than others (e.g., peach) — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw (unfermented) and/or inappropriately overpowering (considering the character of the fruit). In a mead with more than one fruit and/or spice, not all fruits and spices may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some spices may produce spicy or peppery phenolics. Standard description applies for remainder of characteristics.", + "appearance": "Standard description applies, except perhaps to note that the color usually won't be affected by spices (although flowers, petals and peppers may provide subtle colors; tea blends may provide significant colors). The fruit may provide significant color, and is generally evocative of the fruit used (although it may be of a lighter shade than the fruit skin).", + "flavor": "The spice flavor intensity may vary from subtle to high; the fruit flavor intensity may vary from subtle to high; the honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The distinctive flavor character associated with the particular spices may range in intensity from subtle to aggressive (although some spices may not be individually recognizable, and can just serve to add a background complexity). Certain spices might add bitter, astringent, phenolic or spicy (hot) flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. The distinctive flavor character associated with the particular fruits may range in intensity from subtle to aggressive (although some fruits may not be individually recognizable, and can just serve to add a background complexity). Certain fruits might add acidic, bitter, astringent or flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. Meads containing more than one fruit or spice should have a pleasant balance of the different fruits and spices, but this does not mean that all fruits and spices need to be of equal intensity or even individual identifiable. The mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Standard description applies for remainder of characteristics.", + "mouthfeel": "Standard description applies. Some fruits and spices may contain tannins that add a bit of body and some astringency, but this character should not be excessive. Ingredients: Standard description applies. See the various Fruit Mead descriptions, as well as the Spice, Herb, or Vegetable Mead description for additional details.", + "comments": "Often, a blend of fruits and spices may give a character greater than the sum of its parts. The better examples of this style often use spices judiciously; when more than one spice are used, they are carefully selected so that they blend harmoniously with the fruit and with each other.", + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Moonlight Kurt's Apple Pie, Mojo, Flame, Fling, and Deviant, Celestial Meads Scheherazade, Rabbit's Foot Private Reserve Pear Mead, Intermiel Rosée", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the types of spices used, (although well-known spice blends may be referred to by common name, such as apple pie spices). Entrants MUST specify the types of fruits used. If only combinations of spices are used, enter as a Spice, Herb, or Vegetable Mead. If only combinations of fruits are used, enter as a Melomel. If other types of ingredients are used, enter as an Experimental Mead.", + "notes": "In well-made examples of the style, the fruits and spices are both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of fruits and spices can result in widely different characteristics; allow for significant variation in the final product.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey, fruit, and spice character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The spice character should display distinctive aromatics associated with the particular spices; however, note that some spices (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., chamomile, lavender) — allow for a range of spice character and intensity from subtle to aggressive. The spice character should be pleasant and supportive, not artificial and inappropriately overpowering (considering the character of the spice). The fruit character should display distinctive aromatics associated with the particular fruit; however, note that some fruits (e.g., raspberry, cherry) have stronger aromas and are more distinctive than others (e.g., peach) — allow for a range of fruit character and intensity from subtle to aggressive. The fruit character should be pleasant and supportive, not artificial, raw (unfermented) and/or inappropriately overpowering (considering the character of the fruit). In a mead with more than one fruit and/or spice, not all fruits and spices may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some spices may produce spicy or peppery phenolics. Standard description applies for remainder of characteristics. Standard description applies, except perhaps to note that the color usually won't be affected by spices (although flowers, petals and peppers may provide subtle colors; tea blends may provide significant colors). The fruit may provide significant color, and is generally evocative of the fruit used (although it may be of a lighter shade than the fruit skin).The spice flavor intensity may vary from subtle to high; the fruit flavor intensity may vary from subtle to high; the honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The distinctive flavor character associated with the particular spices may range in intensity from subtle to aggressive (although some spices may not be individually recognizable, and can just serve to add a background complexity). Certain spices might add bitter, astringent, phenolic or spicy (hot) flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. The distinctive flavor character associated with the particular fruits may range in intensity from subtle to aggressive (although some fruits may not be individually recognizable, and can just serve to add a background complexity). Certain fruits might add acidic, bitter, astringent or flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. Meads containing more than one fruit or spice should have a pleasant balance of the different fruits and spices, but this does not mean that all fruits and spices need to be of equal intensity or even individual identifiable. The mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Standard description applies for remainder of characteristics. Standard description applies. Some fruits and spices may contain tannins that add a bit of body and some astringency, but this character should not be excessive. Ingredients: Standard description applies. See the various Fruit Mead descriptions, as well as the Spice, Herb, or Vegetable Mead description for additional details. Often, a blend of fruits and spices may give a character greater than the sum of its parts. The better examples of this style often use spices judiciously; when more than one spice are used, they are carefully selected so that they blend harmoniously with the fruit and with each other.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 228, + "fields": { + "name": "Spice, Herb or Vegetable Mead", + "category": "Spiced Mead", + "category_id": "M3", + "style_id": "M3B", + "category_description": null, + "overall_impression": "In well-made examples of the style, the spices are both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of spices can result in widely different characteristics; allow for a variation in the final product.", + "aroma": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and spice character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The spice character should display distinctive aromatics associated with the particular spices; however, note that some spices (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., chamomile, lavender) — allow for a range of spice character and intensity from subtle to aggressive. The spice character should be pleasant and supportive, not artificial and inappropriately overpowering (considering the character of the spice). In a blended spice mead, not all spices may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some herbs and spices may produce spicy or peppery phenolics. Standard description applies for remainder of characteristics.", + "appearance": "Standard description applies, except perhaps to note that the color usually won't be affected by spices and herbs (although flowers, petals and peppers may provide subtle colors; tea blends may provide significant colors).", + "flavor": "The spice flavor intensity may vary from subtle to high; the honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The distinctive flavor character associated with the particular spices may range in intensity from subtle to aggressive (although some spices may not be individually recognizable, and can just serve to add a background complexity). Certain herbs and spices might add bitter, astringent, phenolic or spicy (hot) flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. Meads containing more than one spice should have a good balance among the different spices, though some spices will tend to dominate the flavor profile. The mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Standard description applies for remainder of characteristics.", + "mouthfeel": "Standard description applies. Some herbs or spices may contain tannins that add a bit of body and some astringency, but this character should not be excessive. Warming spices and hot peppers/chiles might impart a warming or numbing impression, but this character should not be extreme or make the mead undrinkable. Ingredients: Standard description applies. If spices are used in conjunction with other ingredients such as fruit, cider, or other fruit-based fermentables, then the mead should be entered as a Fruit and Spice Mead. If spices are used in combination with other ingredients, then the mead should be entered as an Experimental Mead.", + "comments": "Often, a blend of spices may give a character greater than the sum of its parts. The better examples of this style use spices subtly; when more than one spice are used, they are carefully selected so that they blend harmoniously. A mead containing only culinary spices or herbs is known as a metheglin.", + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Moonlight Wicked, Breathless, Madagascar, and Seduction, Redstone Vanilla Beans and Cinnamon Sticks Mountain Honey Wine, Bonair Chili Mead, Redstone Juniper Mountain Honey Wine, iQhilika Africa Birds Eye Chili Mead, Mountain Meadows Spice Nectar", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the types of spices used (although well-known spice blends may be referred to by common name, such as apple pie spices).", + "notes": "In well-made examples of the style, the spices are both distinctive and well-incorporated into the honey-sweet-acid-tannin-alcohol balance of the mead. Different types of spices can result in widely different characteristics; allow for a variation in the final product.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Depending on the sweetness and strength, a subtle to distinctly identifiable honey and spice character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The spice character should display distinctive aromatics associated with the particular spices; however, note that some spices (e.g., ginger, cinnamon) have stronger aromas and are more distinctive than others (e.g., chamomile, lavender) — allow for a range of spice character and intensity from subtle to aggressive. The spice character should be pleasant and supportive, not artificial and inappropriately overpowering (considering the character of the spice). In a blended spice mead, not all spices may be individually identifiable or of equal intensity. The honey aroma should be noticeable, and can have a light to significant sweetness that may express the aroma of flower nectar. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). The bouquet should show a pleasant fermentation character, with clean and fresh aromatics being preferred. Stronger and/or sweeter versions will have higher alcohol and sweetness in the nose. Some herbs and spices may produce spicy or peppery phenolics. Standard description applies for remainder of characteristics. Standard description applies, except perhaps to note that the color usually won't be affected by spices and herbs (although flowers, petals and peppers may provide subtle colors; tea blends may provide significant colors).The spice flavor intensity may vary from subtle to high; the honey flavor intensity may vary from subtle to high; the residual sweetness may vary from none to high; and the finish may range from dry to sweet, depending on what sweetness level has been declared (dry to sweet) and strength level has been declared (hydromel to sack). The distinctive flavor character associated with the particular spices may range in intensity from subtle to aggressive (although some spices may not be individually recognizable, and can just serve to add a background complexity). Certain herbs and spices might add bitter, astringent, phenolic or spicy (hot) flavors; if present, these qualities should be related to the declared ingredients (otherwise, they are faults), and they should balance and blend with the honey, sweetness and alcohol. Meads containing more than one spice should have a good balance among the different spices, though some spices will tend to dominate the flavor profile. The mead may have a subtle to strong honey character, and may feature noticeable to prominent varietal character if a varietal honey is declared (different varieties have different intensities). Standard description applies for remainder of characteristics. Standard description applies. Some herbs or spices may contain tannins that add a bit of body and some astringency, but this character should not be excessive. Warming spices and hot peppers/chiles might impart a warming or numbing impression, but this character should not be extreme or make the mead undrinkable. Ingredients: Standard description applies. If spices are used in conjunction with other ingredients such as fruit, cider, or other fruit-based fermentables, then the mead should be entered as a Fruit and Spice Mead. If spices are used in combination with other ingredients, then the mead should be entered as an Experimental Mead. Often, a blend of spices may give a character greater than the sum of its parts. The better examples of this style use spices subtly; when more than one spice are used, they are carefully selected so that they blend harmoniously. A mead containing only culinary spices or herbs is known as a metheglin.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 229, + "fields": { + "name": "Braggot", + "category": "Specialty Mead", + "category_id": "M4", + "style_id": "M4A", + "category_description": null, + "overall_impression": "A harmonious blend of mead and beer, with the distinctive characteristics of both. A wide range of results are possible, depending on the base style of beer, variety of honey and overall sweetness and strength. Beer flavors tend to somewhat mask typical honey flavors found in other meads.", + "aroma": "Depending on the sweetness, strength and base style of beer, a subtle to distinctly identifiable honey and beer character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The honey and beer/malt character should be complementary and balanced, although not always evenly balanced. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). If a base style of beer or type of malt is declared, the aroma might have a subtle to very noticeable character reflective of the beer style (different styles and malts have different intensities and characters). A hop aroma (any variety or intensity) is optional; if present, it should blend harmoniously with the other elements. Standard description applies for remainder of characteristics.", + "appearance": "Standard description does not apply due to beer-like characteristics. Clarity may be good to brilliant, although many braggots are not as clear as other meads. A light to moderate head with some retention is expected if the mead is carbonated. Color may range from light straw to dark brown or black, depending on the variety of malt and honey used. The color should be characteristic of the declared beer style and/or honey used, if a variety is declared. Stronger versions may show signs of body (e.g., legs).", + "flavor": "Displays a balanced character identifiable as both a beer and a mead, although the relative intensity of flavors is greatly affected by the sweetness, strength, base style of beer, and variety of honey used. If a beer style is declared, the braggot should have some character traceable to the style although the flavors will be different due to the presence of honey. If a variety of honey is declared, the braggot should feature a subtle to prominent varietal character (different varieties have different intensities). Stronger and/or sweeter braggots should be expected to have a greater intensity of flavor than drier, lower gravity versions. The finish and aftertaste will vary based on the declared level of sweetness (dry to sweet), and may include both beer and mead components. A wide range of malt characteristics is allowable, from plain base malts to rich caramel and toast flavors to dark chocolate and roast flavors. Hop bitterness and flavor may be present, and may reflect any variety or intensity; however, this optional character should always be both suggestive of the base beer style and well blended with the other flavors. Standard description applies for remainder of characteristics.", + "mouthfeel": "Standard description does not apply due to beer-like characteristics. Smooth mouthfeel without astringency. Body may vary from moderately light to full, depending on sweetness, strength, and the base style of beer. Note that stronger meads will have a fuller body. A very thin or watery body is undesirable, as is a cloying, raw sweetness. A warming sense of well-aged alcohol may be present in stronger examples. Carbonation will vary as described in the standard description. A still braggot will usually have some level of carbonation (like a cask bitter) since a completely flat beer is unappetizing. However, just as an aged barleywine may be still, some braggots can be totally still. Ingredients: A braggot is a mead made with both honey and malt providing flavor and fermentable extract. Originally, and alternatively, a mixture of mead and ale. A braggot can be made with any type of honey, and any type of base beer style. The malt component may be derived from grain or malt extracts. The beer may be hopped or not. If any other ingredients than honey and beer are contained in the braggot, it should be entered as an Experimental Mead. Smoked braggots may be entered in this category if using smoked malt or a smoked beer as the base style; braggots made using other smoked ingredients (e.g., liquid smoke, chipotles) should be entered in the Experimental Mead style.", + "comments": "Sometimes known as bracket or brackett. The fermentable sugars come from a balance of malt or malt extract and honey, although the specific balance is open to creative interpretation by brewers.", + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Rabbit's Foot Diabhal and Bière de Miele, Magic Hat Braggot, Brother Adams Braggot Barleywine Ale, White Winter Traditional Brackett", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MAY specify the base style or beer or types of malt used. Products with a relatively low proportion of honey should be entered as an Alternative Sugar Beer.", + "notes": "A harmonious blend of mead and beer, with the distinctive characteristics of both. A wide range of results are possible, depending on the base style of beer, variety of honey and overall sweetness and strength. Beer flavors tend to somewhat mask typical honey flavors found in other meads.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Depending on the sweetness, strength and base style of beer, a subtle to distinctly identifiable honey and beer character (dry and/or hydromel versions will tend to have lower aromatics than sweet and/or sack versions). The honey and beer/malt character should be complementary and balanced, although not always evenly balanced. If a variety of honey is declared, the aroma might have a subtle to very noticeable varietal character reflective of the honey (different varieties have different intensities and characters). If a base style of beer or type of malt is declared, the aroma might have a subtle to very noticeable character reflective of the beer style (different styles and malts have different intensities and characters). A hop aroma (any variety or intensity) is optional; if present, it should blend harmoniously with the other elements. Standard description applies for remainder of characteristics. Standard description does not apply due to beer-like characteristics. Clarity may be good to brilliant, although many braggots are not as clear as other meads. A light to moderate head with some retention is expected if the mead is carbonated. Color may range from light straw to dark brown or black, depending on the variety of malt and honey used. The color should be characteristic of the declared beer style and/or honey used, if a variety is declared. Stronger versions may show signs of body (e.g., legs).Displays a balanced character identifiable as both a beer and a mead, although the relative intensity of flavors is greatly affected by the sweetness, strength, base style of beer, and variety of honey used. If a beer style is declared, the braggot should have some character traceable to the style although the flavors will be different due to the presence of honey. If a variety of honey is declared, the braggot should feature a subtle to prominent varietal character (different varieties have different intensities). Stronger and/or sweeter braggots should be expected to have a greater intensity of flavor than drier, lower gravity versions. The finish and aftertaste will vary based on the declared level of sweetness (dry to sweet), and may include both beer and mead components. A wide range of malt characteristics is allowable, from plain base malts to rich caramel and toast flavors to dark chocolate and roast flavors. Hop bitterness and flavor may be present, and may reflect any variety or intensity; however, this optional character should always be both suggestive of the base beer style and well blended with the other flavors. Standard description applies for remainder of characteristics. Standard description does not apply due to beer-like characteristics. Smooth mouthfeel without astringency. Body may vary from moderately light to full, depending on sweetness, strength, and the base style of beer. Note that stronger meads will have a fuller body. A very thin or watery body is undesirable, as is a cloying, raw sweetness. A warming sense of well-aged alcohol may be present in stronger examples. Carbonation will vary as described in the standard description. A still braggot will usually have some level of carbonation (like a cask bitter) since a completely flat beer is unappetizing. However, just as an aged barleywine may be still, some braggots can be totally still. Ingredients: A braggot is a mead made with both honey and malt providing flavor and fermentable extract. Originally, and alternatively, a mixture of mead and ale. A braggot can be made with any type of honey, and any type of base beer style. The malt component may be derived from grain or malt extracts. The beer may be hopped or not. If any other ingredients than honey and beer are contained in the braggot, it should be entered as an Experimental Mead. Smoked braggots may be entered in this category if using smoked malt or a smoked beer as the base style; braggots made using other smoked ingredients (e.g., liquid smoke, chipotles) should be entered in the Experimental Mead style. Sometimes known as bracket or brackett. The fermentable sugars come from a balance of malt or malt extract and honey, although the specific balance is open to creative interpretation by brewers.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 230, + "fields": { + "name": "Historical Mead", + "category": "Specialty Mead", + "category_id": "M4", + "style_id": "M4B", + "category_description": null, + "overall_impression": "This mead should exhibit the character of all of the ingredients in varying degrees, and should show a good blending or balance between the various flavor elements. Whatever ingredients are included, the result should be identifiable as a honey-based fermented beverage. Aroma, appearance, flavor, mouthfeel generally follow the standard descriptions, yet note that all the characteristics may vary. Since a wide range of entries are possible, note that the characteristics may reflect combinations of the respective elements of the various sub-categories used in this style. Refer to Category M1 for a detailed description of the character of dry, semi-sweet and sweet mead. If the entered mead is a combination of other existing mead categories, refer to the constituent categories for a detailed description of the character of the component styles.", + "aroma": null, + "appearance": null, + "flavor": null, + "mouthfeel": null, + "comments": null, + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Jadwiga, Saba Tej", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the special nature of the mead, providing a description of the mead for judges if no such description is available from the BJCP.", + "notes": "This mead should exhibit the character of all of the ingredients in varying degrees, and should show a good blending or balance between the various flavor elements. Whatever ingredients are included, the result should be identifiable as a honey-based fermented beverage. Aroma, appearance, flavor, mouthfeel generally follow the standard descriptions, yet note that all the characteristics may vary. Since a wide range of entries are possible, note that the characteristics may reflect combinations of the respective elements of the various sub-categories used in this style. Refer to Category M1 for a detailed description of the character of dry, semi-sweet and sweet mead. If the entered mead is a combination of other existing mead categories, refer to the constituent categories for a detailed description of the character of the component styles.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 231, + "fields": { + "name": "Experimental Mead", + "category": "Specialty Mead", + "category_id": "M4", + "style_id": "M4C", + "category_description": null, + "overall_impression": "This mead should exhibit the character of all of the ingredients in varying degrees, and should show a good blending or balance between the various flavor elements. Whatever ingredients are included, the result should be identifiable as a honey-based fermented beverage. Aroma, appearance, flavor, mouthfeel generally follow the standard descriptions, yet note that all the characteristics may vary. Since a wide range of entries are possible, note that the characteristics may reflect combinations of the respective elements of the various sub-categories used in this style. Refer to Category M1 for a detailed description of the character of dry, semi-sweet and sweet mead. If the entered mead is a combination of other existing mead categories, refer to the constituent categories for a detailed description of the character of the component styles.", + "aroma": null, + "appearance": null, + "flavor": null, + "mouthfeel": null, + "comments": null, + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": null, + "original_gravity_minimum_value": null, + "original_gravity_maximum_unit": null, + "original_gravity_maximum_value": null, + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": null, + "final_gravity_minimum_value": null, + "final_gravity_maximum_unit": null, + "final_gravity_maximum_value": null, + "alcohol_by_volume_minimum_unit": null, + "alcohol_by_volume_minimum_value": null, + "alcohol_by_volume_maximum_unit": null, + "alcohol_by_volume_maximum_value": null, + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "Moonlight Utopian, Hanssens/Lurgashall Mead the Gueuze, White Winter Cherry Bracket, Mountain Meadows Trickster's Treat Agave Mead", + "style_guide": "BJCP2015", + "type": "mead", + "entry_instructions": "See Introduction to Mead Guidelines for entry requirements. Entrants MUST specify carbonation level, strength, and sweetness. Entrants MAY specify honey varieties. Entrants MUST specify the special nature of the mead, whether it is a combination of existing styles, an experimental mead, or some other creation. Any special ingredients that impart an identifiable character MAY be declared.", + "notes": "This mead should exhibit the character of all of the ingredients in varying degrees, and should show a good blending or balance between the various flavor elements. Whatever ingredients are included, the result should be identifiable as a honey-based fermented beverage. Aroma, appearance, flavor, mouthfeel generally follow the standard descriptions, yet note that all the characteristics may vary. Since a wide range of entries are possible, note that the characteristics may reflect combinations of the respective elements of the various sub-categories used in this style. Refer to Category M1 for a detailed description of the character of dry, semi-sweet and sweet mead. If the entered mead is a combination of other existing mead categories, refer to the constituent categories for a detailed description of the character of the component styles.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 232, + "fields": { + "name": "New World Cider", + "category": "Standard Cider And Perry", + "category_id": "C1", + "style_id": "C1A", + "category_description": null, + "overall_impression": "A refreshing drink of some substance – not bland or watery. Sweet ciders must not be cloying. Dry ciders must not be too austere.", + "aroma": null, + "appearance": "Clear to brilliant, pale to medium gold in color.", + "flavor": "Sweet or low-alcohol ciders may have apple aroma and flavor. Dry ciders will be more wine-like with some esters. Sugar and acidity should combine to give a refreshing character. Acidity is medium to high, refreshing, but must not be harsh or biting.", + "mouthfeel": "Medium body. Some tannin should be present for slight to moderate astringency, but little bitterness.", + "comments": "An ideal cider serves well as a \"session\" drink, and suitably accompanies a wide variety of food.", + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06500", + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "0.99500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "8.00000", + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "[US] Uncle John's Fruit House Winery Apple Hard Cider, Tandem Ciders Pretty Penny (MI), Bellwether Spyglass (NY), West County Pippin (MA), White Winter Hard Apple Cider (WI), Wandering Aengus Ciderworks Bloom (OR), Æppeltreow Appely Brut and Doux (WI).", + "style_guide": "BJCP2015", + "type": "cider", + "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 categories). If OG is substantially above typical range, entrant should explain, e.g., particular variety of apple giving high-gravity juice. Varieties: Common (Winesap, Macintosh, Golden Delicious, Braeburn, Jonathan), multi-use (Northern Spy, Russets, Baldwin), crabapples, any suitable wildings.", + "notes": "A refreshing drink of some substance – not bland or watery. Sweet ciders must not be cloying. Dry ciders must not be too austere.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Clear to brilliant, pale to medium gold in color.Sweet or low-alcohol ciders may have apple aroma and flavor. Dry ciders will be more wine-like with some esters. Sugar and acidity should combine to give a refreshing character. Acidity is medium to high, refreshing, but must not be harsh or biting. Medium body. Some tannin should be present for slight to moderate astringency, but little bitterness. An ideal cider serves well as a \"session\" drink, and suitably accompanies a wide variety of food.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 233, + "fields": { + "name": "English Cider", + "category": "Standard Cider And Perry", + "category_id": "C1", + "style_id": "C1B", + "category_description": null, + "overall_impression": "Generally dry, full-bodied, austere. Complex flavor profile, long finish.", + "aroma": null, + "appearance": "Barely cloudy to brilliant. Medium yellow to amber color.", + "flavor": "No overt apple character, but various flavors and esters that suggest apples, particularly tannic varieties. English-style ciders commonly go through MLF (see Introduction/Aroma-and-Flavor) which produces desirable spicy/smoky, phenolic, and farmyard/old-horse characters. These flavor notes are positive but not required. If present, they must not dominate; in particular, the phenolic and farmyard notes should not be heavy. A strong farmyard character without spicy/smoky or phenolic suggests a Brettanomyces contamination, which is a fault. Mousiness is a serious fault.", + "mouthfeel": "Full. Moderate to high tannin, perceived as astringency and some bitterness. Carbonation still to moderate. Bottle-fermented or -conditioned ciders may have high carbonation, up to champagne levels, but not gushing or foaming.", + "comments": "Sweet examples exist, but dry is most traditional, particularly when considering the drying contributions of tannin.", + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07500", + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "0.99500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "6.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.00000", + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "[US] Westcott Bay Traditional Very Dry, Dry and Medium Sweet (WA), Farnum Hill Extra-Dry, Dry, and Farmhouse (NH), Wandering Aengus Oaked Dry (OR), Montana CiderWorks North Fork (MT), Bellwether Heritage (NY). [UK] Oliver's Traditional Dry, Hogan's Dry and Medium Dry, Henney's Dry and Vintage Still, Burrow Hill Medium, Aspall English Imperial.", + "style_guide": "BJCP2015", + "type": "cider", + "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (dry through medium-sweet, 4 levels). Entrants MAY specify variety of apple for a single varietal cider; if specified, varietal character will be expected. Varieties: Kingston Black, Stoke Red, Dabinett, Porter's Perfection, Nehou, Yarlington Mill, Major, various Jerseys, etc.", + "notes": "Generally dry, full-bodied, austere. Complex flavor profile, long finish.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Barely cloudy to brilliant. Medium yellow to amber color.No overt apple character, but various flavors and esters that suggest apples, particularly tannic varieties. English-style ciders commonly go through MLF (see Introduction/Aroma-and-Flavor) which produces desirable spicy/smoky, phenolic, and farmyard/old-horse characters. These flavor notes are positive but not required. If present, they must not dominate; in particular, the phenolic and farmyard notes should not be heavy. A strong farmyard character without spicy/smoky or phenolic suggests a Brettanomyces contamination, which is a fault. Mousiness is a serious fault. Full. Moderate to high tannin, perceived as astringency and some bitterness. Carbonation still to moderate. Bottle-fermented or -conditioned ciders may have high carbonation, up to champagne levels, but not gushing or foaming. Sweet examples exist, but dry is most traditional, particularly when considering the drying contributions of tannin.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 234, + "fields": { + "name": "French Cider", + "category": "Standard Cider And Perry", + "category_id": "C1", + "style_id": "C1C", + "category_description": null, + "overall_impression": "Medium to sweet, full-bodied, rich.", + "aroma": null, + "appearance": "Clear to brilliant, medium yellow to amber color.", + "flavor": "Fruity character/aroma. This may come from slow or arrested fermentation (in the French technique of défécation) or approximated by back-sweetening with juice. Tends to a rich fullness. MLF notes of spicy-smoky, phenolic, and farmyard are common but not required (just as with English style), and must not be pronounced. The French expect more subtle MLF character than do the English.", + "mouthfeel": "Medium to full, mouth-filling. Moderate tannin, perceived mainly as astringency. Carbonation moderate to champagne-like, but at higher levels it must not gush or foam.", + "comments": "Typically made sweet to balance the tannin levels from the traditional apple varieties.", + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06500", + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.01000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "3.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "6.00000", + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "[US] West County Reine de Pomme (MA), [France] Eric Bordelet (various), Etienne Dupont, Etienne Dupont Organic, Bellot", + "style_guide": "BJCP2015", + "type": "cider", + "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (medium to sweet only, 3 levels). Entrants MAY specify variety of apple for a single varietal cider; if specified, varietal character will be expected. Varieties: Nehou, Muscadet de Dieppe, Reine des Pommes, Michelin, etc.", + "notes": "Medium to sweet, full-bodied, rich.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Clear to brilliant, medium yellow to amber color.Fruity character/aroma. This may come from slow or arrested fermentation (in the French technique of défécation) or approximated by back-sweetening with juice. Tends to a rich fullness. MLF notes of spicy-smoky, phenolic, and farmyard are common but not required (just as with English style), and must not be pronounced. The French expect more subtle MLF character than do the English. Medium to full, mouth-filling. Moderate tannin, perceived mainly as astringency. Carbonation moderate to champagne-like, but at higher levels it must not gush or foam. Typically made sweet to balance the tannin levels from the traditional apple varieties.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 235, + "fields": { + "name": "New World Perry", + "category": "Standard Cider And Perry", + "category_id": "C1", + "style_id": "C1D", + "category_description": null, + "overall_impression": "Mild. Medium to medium-sweet. Still to lightly sparkling. Only very slight acetification is acceptable. Mousiness, ropy/oily characters are serious faults.", + "aroma": null, + "appearance": "Slightly cloudy to clear. Generally quite pale.", + "flavor": "There is a pear character, but not obviously fruity. It tends toward that of a young white wine. No bitterness.", + "mouthfeel": "Relatively full, low to moderate tannin apparent as astringency.", + "comments": "Some table pears may contain significant amounts of sorbitol, in which case a dry perry may give an impression of sweetness due to sorbitol in the pears. Perception of sorbitol as sweet is highly variable from one person to the next. Hence, entrants should specify sweetness according to actual residual sugar amount, and judges must be aware that they might perceive more sweetness than how the perry was entered.", + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.06000", + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "7.00000", + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "[US] White Winter Paarynat (WI), Uncle John's Fruit House Winery Perry (MI)", + "style_guide": "BJCP2015", + "type": "cider", + "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 categories). Varieties: Bartlett, Kiefer, Comice, Conference, etc.", + "notes": "Mild. Medium to medium-sweet. Still to lightly sparkling. Only very slight acetification is acceptable. Mousiness, ropy/oily characters are serious faults.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Slightly cloudy to clear. Generally quite pale.There is a pear character, but not obviously fruity. It tends toward that of a young white wine. No bitterness. Relatively full, low to moderate tannin apparent as astringency. Some table pears may contain significant amounts of sorbitol, in which case a dry perry may give an impression of sweetness due to sorbitol in the pears. Perception of sorbitol as sweet is highly variable from one person to the next. Hence, entrants should specify sweetness according to actual residual sugar amount, and judges must be aware that they might perceive more sweetness than how the perry was entered.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 236, + "fields": { + "name": "Traditional Perry", + "category": "Standard Cider And Perry", + "category_id": "C1", + "style_id": "C1E", + "category_description": null, + "overall_impression": "Tannic. Medium to medium-sweet. Still to lightly sparkling. Only very slight acetification is acceptable. Mousiness and ropy/oily characters are serious faults.", + "aroma": null, + "appearance": "Slightly cloudy to clear. Generally quite pale.", + "flavor": "There is a pear character, but not obviously fruity. It tends toward that of a young white wine. Some slight bitterness.", + "mouthfeel": "Relatively full, moderate to high tannin apparent as astringency.", + "comments": "Note that a dry perry may give an impression of sweetness due to sorbitol in the pears, and perception of sorbitol as sweet is highly variable from one person to the next. Hence entrants should specify sweetness according to actual residual sugar amount, and judges must be aware that they might perceive more sweetness than how the perry was entered.", + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.05000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07000", + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.00000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.00000", + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "[US] Æppeltreow Orchard Oriole Perry (WI); [France] Bordelet Poire Authentique and Poire Granit, Christian Drouin Poire, [UK] Oliver's Classic, Blakeney Red, and Herefordshire Dry; Hogan's Vintage Perry.", + "style_guide": "BJCP2015", + "type": "cider", + "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 categories). Entrants MUST state variety of pear(s) used. Varieties: Butt, Gin, Brandy, Barland, Blakeney Red, Thorn, Moorcroft, etc.", + "notes": "Tannic. Medium to medium-sweet. Still to lightly sparkling. Only very slight acetification is acceptable. Mousiness and ropy/oily characters are serious faults.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Slightly cloudy to clear. Generally quite pale.There is a pear character, but not obviously fruity. It tends toward that of a young white wine. Some slight bitterness. Relatively full, moderate to high tannin apparent as astringency. Note that a dry perry may give an impression of sweetness due to sorbitol in the pears, and perception of sorbitol as sweet is highly variable from one person to the next. Hence entrants should specify sweetness according to actual residual sugar amount, and judges must be aware that they might perceive more sweetness than how the perry was entered.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 237, + "fields": { + "name": "New England Cider", + "category": "Specialty Cider And Perry", + "category_id": "C2", + "style_id": "C2A", + "category_description": null, + "overall_impression": null, + "aroma": null, + "appearance": "Clear to brilliant, pale to medium yellow.", + "flavor": "A flavorful cider with robust apple character, strong alcohol, and derivative flavors from sugar additives; traditionally dry.", + "mouthfeel": "Substantial, alcoholic. Moderate tannin.", + "comments": "Additives may include white and brown sugars, molasses, small amounts of honey, and raisins. Additives are intended to raise OG well above that which would be achieved by apples alone. This style is sometimes barrel-aged, in which case there will be oak character as with a barrel-aged wine. If the barrel was formerly used to age spirits, some flavor notes from the spirit (e.g., whisky or rum) may also be present, but must be subtle.", + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.06000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.10000", + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "0.99500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "7.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "13.00000", + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "[US] Snowdrift Semi-Dry (WA), Blackbird Cider Works New England Style (NY).", + "style_guide": "BJCP2015", + "type": "cider", + "entry_instructions": "Entrants MUST specify if the cider was barrel-fermented or aged. Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 levels). Varieties: Northern Spy, Roxbury Russet, Golden Russet, Baldwin, etc.; many traditional New England apples.", + "notes": "", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Clear to brilliant, pale to medium yellow.A flavorful cider with robust apple character, strong alcohol, and derivative flavors from sugar additives; traditionally dry. Substantial, alcoholic. Moderate tannin. Additives may include white and brown sugars, molasses, small amounts of honey, and raisins. Additives are intended to raise OG well above that which would be achieved by apples alone. This style is sometimes barrel-aged, in which case there will be oak character as with a barrel-aged wine. If the barrel was formerly used to age spirits, some flavor notes from the spirit (e.g., whisky or rum) may also be present, but must be subtle.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 238, + "fields": { + "name": "Cider with Other Fruit", + "category": "Specialty Cider And Perry", + "category_id": "C2", + "style_id": "C2B", + "category_description": null, + "overall_impression": "Like a white wine with complex flavors. The apple character must marry with the added fruit so that neither one dominates the other.", + "aroma": null, + "appearance": "Clear to brilliant. Color appropriate to added fruit, but should not show oxidation characteristics. (For example, red berries should give red-to-purple color, not orange.)", + "flavor": "The cider character must be present and must fit with the other fruits. It is a fault if the added fruit(s) completely dominate; a judge might ask, Would this be different if neutral spirits replaced the cider? A fruit cider should not be like an alco-pop. Oxidation is a fault.", + "mouthfeel": "Substantial. May be significantly tannic, depending on fruit added.", + "comments": null, + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07000", + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "0.99500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.00000", + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "[US] West County Blueberry-Apple Wine (MA), Bellwether Cherry Street (NY), Uncle John's Fruit Farm Winery Apple Cherry, Apple Blueberry, and Apricot Apple Hard Cider (MI)", + "style_guide": "BJCP2015", + "type": "cider", + "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 categories). Entrants MUST specify all fruit(s) and/or fruit juice(s) added.", + "notes": "Like a white wine with complex flavors. The apple character must marry with the added fruit so that neither one dominates the other.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Clear to brilliant. Color appropriate to added fruit, but should not show oxidation characteristics. (For example, red berries should give red-to-purple color, not orange.)The cider character must be present and must fit with the other fruits. It is a fault if the added fruit(s) completely dominate; a judge might ask, Would this be different if neutral spirits replaced the cider? A fruit cider should not be like an alco-pop. Oxidation is a fault. Substantial. May be significantly tannic, depending on fruit added.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 239, + "fields": { + "name": "Applewine", + "category": "Specialty Cider And Perry", + "category_id": "C2", + "style_id": "C2C", + "category_description": null, + "overall_impression": "Typically like a dry white wine, balanced, and with low astringency and bitterness.", + "aroma": null, + "appearance": "Clear to brilliant, pale to medium-gold. Cloudiness or hazes are inappropriate.", + "flavor": "Comparable to a New World Cider. Cider character must be distinctive. Very dry to sweet, although often dry.", + "mouthfeel": "Lighter than other ciders, because higher alcohol is derived from addition of sugar rather than juice. Carbonation may range from still to champagne-like.", + "comments": null, + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.07000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.10000", + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "0.99500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "9.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "12.00000", + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "[US] Uncle John's Fruit House Winery Fruit House Apple (MI), McClure's Sweet Apple Wine (IN).", + "style_guide": "BJCP2015", + "type": "cider", + "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 levels).", + "notes": "Typically like a dry white wine, balanced, and with low astringency and bitterness.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Clear to brilliant, pale to medium-gold. Cloudiness or hazes are inappropriate.Comparable to a New World Cider. Cider character must be distinctive. Very dry to sweet, although often dry. Lighter than other ciders, because higher alcohol is derived from addition of sugar rather than juice. Carbonation may range from still to champagne-like.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 240, + "fields": { + "name": "Ice Cider", + "category": "Specialty Cider And Perry", + "category_id": "C2", + "style_id": "C2D", + "category_description": null, + "overall_impression": null, + "aroma": null, + "appearance": "Brilliant. Color is deeper than a standard cider, gold to amber.", + "flavor": "Fruity, smooth, sweet-tart. Acidity must be enough to prevent it being cloying.", + "mouthfeel": "Full body. May be tannic (astringent and/or bitter) but this should be slight, to moderate at most.", + "comments": null, + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.13000", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.18000", + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "1.06000", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.08500", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "7.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "13.00000", + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "[US] various from Eden Ice Cider Company and Champlain Orchards. [Canada] Domaine Pinnacle, Les Vergers de la Colline, and Cidrerie St-Nicolas (Quebec).", + "style_guide": "BJCP2015", + "type": "cider", + "entry_instructions": "Entrants MUST specify starting gravity, final gravity or residual sugar, and alcohol level. Entrants MUST specify carbonation level (3 levels). Varieties: Usually North American classic table fruit such as McIntosh or Cortland.", + "notes": "", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Brilliant. Color is deeper than a standard cider, gold to amber.Fruity, smooth, sweet-tart. Acidity must be enough to prevent it being cloying. Full body. May be tannic (astringent and/or bitter) but this should be slight, to moderate at most.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 241, + "fields": { + "name": "Cider with Herbs/Spices", + "category": "Specialty Cider And Perry", + "category_id": "C2", + "style_id": "C2E", + "category_description": null, + "overall_impression": "Like a white wine with complex flavors. The apple character must marry with the botanicals and give a balanced result.", + "aroma": null, + "appearance": "Clear to brilliant. Color appropriate to added botanicals.", + "flavor": "The cider character must be present and must fit with the botanicals. As with a fruit cider, it is a fault if the botanicals dominate; a judge might ask, Would this be different if neutral spirits replaced the cider? Oxidation of either the base cider or the additions is a fault.", + "mouthfeel": "Average or more. Cider may be tannic from effect of botanicals but must not be bitter from over-extraction.", + "comments": null, + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.07000", + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "0.99500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.01000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "9.00000", + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "[US] Colorado Cider Grasshop-ah (CO), Wandering Aengus Anthem Hops (OR).", + "style_guide": "BJCP2015", + "type": "cider", + "entry_instructions": "Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 categories). Entrants MUST specify all botanicals added. If hops are used, entrant must specify variety/varieties used.", + "notes": "Like a white wine with complex flavors. The apple character must marry with the botanicals and give a balanced result.", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Clear to brilliant. Color appropriate to added botanicals.The cider character must be present and must fit with the botanicals. As with a fruit cider, it is a fault if the botanicals dominate; a judge might ask, Would this be different if neutral spirits replaced the cider? Oxidation of either the base cider or the additions is a fault. Average or more. Cider may be tannic from effect of botanicals but must not be bitter from over-extraction.", + "comparison": null + } +}, +{ + "model": "beer.bjcpstyle", + "pk": 242, + "fields": { + "name": "Specialty Cider/Perry", + "category": "Specialty Cider And Perry", + "category_id": "C2", + "style_id": "C2F", + "category_description": null, + "overall_impression": null, + "aroma": null, + "appearance": "Clear to brilliant. Color should be that of a standard cider unless other ingredients are expected to contribute color.", + "flavor": "The cider character must always be present, and must fit with added ingredients. If a spirit barrel was used, the character of the spirit (rum, whiskey, etc.) must be no more than just recognizable; it must not be a substantial element of the flavor.", + "mouthfeel": "Average body, may show tannic (astringent) or heavy body as determined by other ingredients.", + "comments": null, + "history": null, + "style_comparison": null, + "tags": null, + "original_gravity_minimum_unit": "sg", + "original_gravity_minimum_value": "1.04500", + "original_gravity_maximum_unit": "sg", + "original_gravity_maximum_value": "1.10000", + "international_bitterness_units_minimum_unit": null, + "international_bitterness_units_minimum_value": null, + "international_bitterness_units_maximum_unit": null, + "international_bitterness_units_maximum_value": null, + "final_gravity_minimum_unit": "sg", + "final_gravity_minimum_value": "0.99500", + "final_gravity_maximum_unit": "sg", + "final_gravity_maximum_value": "1.02000", + "alcohol_by_volume_minimum_unit": "%", + "alcohol_by_volume_minimum_value": "5.00000", + "alcohol_by_volume_maximum_unit": "%", + "alcohol_by_volume_maximum_value": "12.00000", + "color_minimum_unit": null, + "color_minimum_value": null, + "color_maximum_unit": null, + "color_maximum_value": null, + "ingredients": null, + "examples": "[US] Finn River Fire Barrel (WA)", + "style_guide": "BJCP2015", + "type": "cider", + "entry_instructions": "Entrants MUST specify all ingredients. Entrants MUST specify carbonation level (3 levels). Entrants MUST specify sweetness (5 categories).", + "notes": "", + "currently_defined_types": null, + "strength_classifications": null, + "vital_statistics": null, + "profile": "Clear to brilliant. Color should be that of a standard cider unless other ingredients are expected to contribute color.The cider character must always be present, and must fit with added ingredients. If a spirit barrel was used, the character of the spirit (rum, whiskey, etc.) must be no more than just recognizable; it must not be a substantial element of the flavor. Average body, may show tannic (astringent) or heavy body as determined by other ingredients.", + "comparison": null + } +} +]