-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrewing.owl
More file actions
2654 lines (1086 loc) · 65.9 KB
/
brewing.owl
File metadata and controls
2654 lines (1086 loc) · 65.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <http://microbrew.it/beer.owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix gn: <http://www.geonames.org/ontology#> .
@prefix mb: <http://microbrew.it/beer.owl#> .
@prefix jms: <http://jena.hpl.hp.com/2003/08/jms#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rss: <http://purl.org/rss/1.0/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix daml: <http://www.daml.org/2001/03/daml+oil#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vcard: <http://www.w3.org/2001/vcard-rdf/3.0#> .
@prefix wgs84_pos: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@base <http://microbrew.it/beer.owl> .
<http://microbrew.it/beer.owl> rdf:type owl:Ontology ;
rdfs:label "Beer Ontology, OWL Lite" ;
rdfs:comment """
An ontology that models types of beer and brewers/brands.
http://purl.org/net/ontology/beer.owl
WordNet beer -- (a general name for alcoholic beverages made by fermenting a cereal (or mixture of cereals) flavored with hops)
http://www.cogsci.princeton.edu/cgi-bin/webwn2.0?stage=1&word=beer
History Based on http://www.csd.abdn.ac.uk/research/AgentCities/ontologies/beer#
2004-04-02 * Converted to OWL-Lite by David and http://www.mindswap.org/2002/owl.html
* Changed concept hierarchy of beers: added top/bottom-fermention.
2004-08-24 * Removed FuzzyMeasure.
* Added some German labels, a Property, some Instances.
@todo * revamp completely, use http://de.wikipedia.org/wiki/Bier
* model constraints
* How about some instances? See http://brewery.org/brewery/library/AlClbinger.html !!
* Percentage as subclass of float?
Hints * model purity requirements (german purity law): barley/wheat (kindof grain): malt, hops, water (and yeast (yet unknown around 1516))
* For the preparation of beer, only malt, hops, yeast and water can be used.
* Typically, beers are made from water, malted barley, hops, fermented by yeast. The addition of other flavorings or sources of sugar is not uncommon.
""" ;
owl:versionInfo "beer_v0.4.owl, based on http://purl.org/net/ontology/beer_v0.3.owl" .
#################################################################
#
# Annotation properties
#
#################################################################
:source rdf:type owl:AnnotationProperty .
:styleLetter rdf:type owl:AnnotationProperty .
:styleNumber rdf:type owl:AnnotationProperty .
#################################################################
#
# Datatypes
#
#################################################################
#################################################################
#
# Object Properties
#
#################################################################
### http://microbrew.it/beer.owl#OWLObjectPropertyImpl_3892a08b_dec0_4b18_b4ac_ec473bd0efc0
:OWLObjectPropertyImpl_3892a08b_dec0_4b18_b4ac_ec473bd0efc0 rdf:type owl:ObjectProperty ;
rdfs:label "soldBy"@en ;
rdfs:domain :BeerStyle ;
rdfs:range :Retailer ;
owl:inverseOf :sells ;
rdfs:subPropertyOf owl:topObjectProperty .
### http://microbrew.it/beer.owl#awardCategory
:awardCategory rdf:type owl:ObjectProperty ;
rdfs:label "awardCategory"@en ;
rdfs:domain :Award .
### http://microbrew.it/beer.owl#awarded
:awarded rdf:type owl:ObjectProperty ;
rdfs:label "awarded"@en ;
rdfs:range :Award ;
rdfs:domain :BeerStyle .
### http://microbrew.it/beer.owl#awardedAt
:awardedAt rdf:type owl:ObjectProperty ;
rdfs:label "awardedAt"@en ;
rdfs:domain :Award ;
rdfs:range :Festival .
### http://microbrew.it/beer.owl#brewedBy
:brewedBy rdf:type owl:ObjectProperty ;
rdfs:label "brewedBy"@en ;
rdfs:domain :BeerStyle ;
rdfs:range :Brewery .
### http://microbrew.it/beer.owl#brews
:brews rdf:type owl:ObjectProperty ;
rdfs:label "brews"@en ;
rdfs:range :BeerStyle ;
rdfs:domain :Brewery ;
owl:inverseOf :brewedBy .
### http://microbrew.it/beer.owl#locatedIn
:locatedIn rdf:type owl:ObjectProperty ;
rdfs:label "locatedIn"@en ;
rdfs:domain :Brewery ;
rdfs:range :Region .
### http://microbrew.it/beer.owl#madeFrom
:madeFrom rdf:type owl:ObjectProperty ;
rdfs:label "madeFrom"@en ;
rdfs:domain :BeerStyle ;
rdfs:range :Ingredient .
### http://microbrew.it/beer.owl#maltedTo
:maltedTo rdf:type owl:ObjectProperty ;
rdfs:label "maltedTo"@en ;
rdfs:domain :Grain ;
rdfs:range :Malt .
### http://microbrew.it/beer.owl#producedBy
:producedBy rdf:type owl:ObjectProperty ;
rdfs:label "producedBy"@en .
### http://microbrew.it/beer.owl#produces
:produces rdf:type owl:ObjectProperty ;
rdfs:label "produces"@en ;
owl:inverseOf :producedBy .
### http://microbrew.it/beer.owl#sells
:sells rdf:type owl:ObjectProperty ;
rdfs:label "sells"@en ;
rdfs:range :BeerStyle ;
rdfs:domain :Retailer .
### http://microbrew.it/beer.owl#sponsor
:sponsor rdf:type owl:ObjectProperty ;
rdfs:label "sponsors"@en ;
rdfs:domain :Association ;
rdfs:range :Festival .
### http://www.w3.org/2002/07/owl#topObjectProperty
owl:topObjectProperty rdfs:label "topObjectProperty"@en .
#################################################################
#
# Data properties
#
#################################################################
### http://microbrew.it/beer.owl#OWLDataPropertyImpl_cbed1d1b_1f43_4140_80f0_ca76f0f56d0c
:OWLDataPropertyImpl_cbed1d1b_1f43_4140_80f0_ca76f0f56d0c rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:label "hasAlcoholicContent"@en ;
rdfs:domain :BeerStyle ;
rdfs:subPropertyOf :hasContent ;
rdfs:range xsd:float .
### http://microbrew.it/beer.owl#OWLDataPropertyImpl_df9ebcab_63d3_4535_8477_e88160d0bfa4
:OWLDataPropertyImpl_df9ebcab_63d3_4535_8477_e88160d0bfa4 rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:label "hasOriginalWortContent"@en ;
rdfs:domain :BeerStyle ;
rdfs:subPropertyOf :hasContent ;
rdfs:range xsd:float .
### http://microbrew.it/beer.owl#OWLDataPropertyImpl_f97cf5ae_2410_46d3_b275_d1292ba3ec6d
:OWLDataPropertyImpl_f97cf5ae_2410_46d3_b275_d1292ba3ec6d rdf:type owl:DatatypeProperty ;
rdfs:label "hasBarCode"@en ;
rdfs:domain :BeerStyle ;
rdfs:subPropertyOf :hasContent .
### http://microbrew.it/beer.owl#hasContent
:hasContent rdf:type owl:DatatypeProperty ;
rdfs:label "hasContent"@en ;
rdfs:comment "only for test purposes" ;
rdfs:domain :BeerStyle .
### http://microbrew.it/beer.owl#hasEBC
:hasEBC rdf:type owl:DatatypeProperty ;
rdfs:label "hasEBC"@en ;
rdfs:range xsd:integer .
### http://microbrew.it/beer.owl#hasSRM
:hasSRM rdf:type owl:DatatypeProperty ;
rdfs:label "hasSRM"@en .
### http://www.w3.org/2001/vcard-rdf/3.0#latitude
vcard:latitude rdf:type owl:DatatypeProperty ;
rdfs:label "latitude"@en .
### http://www.w3.org/2001/vcard-rdf/3.0#longitude
vcard:longitude rdf:type owl:DatatypeProperty ;
rdfs:label "longitude"@en .
### http://www.w3.org/2001/vcard-rdf/3.0#region
vcard:region rdf:type owl:DatatypeProperty ;
rdfs:label "region"@en ;
rdfs:domain vcard:Address .
### http://xmlns.com/foaf/0.1/account
foaf:account rdf:type owl:DatatypeProperty ;
rdfs:label "account"@en ;
rdfs:domain :User .
### http://xmlns.com/foaf/0.1/accountName
foaf:accountName rdf:type owl:DatatypeProperty ;
rdfs:label "accountName"@en ;
rdfs:domain :User .
#################################################################
#
# Classes
#
#################################################################
### http://microbrew.it/beer.owl#2_Row_Brewers
<http://microbrew.it/beer.owl#2_Row_Brewers> rdf:type owl:Class ;
rdfs:label "2_Row_Brewers"@en ;
rdfs:subClassOf :Briess .
### http://microbrew.it/beer.owl#2_Row_Carapils
<http://microbrew.it/beer.owl#2_Row_Carapils> rdf:type owl:Class ;
rdfs:label "2_Row_Carapils"@en ;
rdfs:subClassOf :Briess .
### http://microbrew.it/beer.owl#6_Row_Brewers
<http://microbrew.it/beer.owl#6_Row_Brewers> rdf:type owl:Class ;
rdfs:label "6_Row_Brewers"@en ;
rdfs:subClassOf :Briess .
### http://microbrew.it/beer.owl#Acid
:Acid rdf:type owl:Class ;
rdfs:label "Acid"@en ;
rdfs:subClassOf :Malt .
### http://microbrew.it/beer.owl#Alcohol-Free_Malt_Tonic
:Alcohol-Free_Malt_Tonic rdf:type owl:Class ;
rdfs:label "Alcohol-Free Malt Tonic" ;
rdfs:subClassOf :Non-Alcoholic_Beer .
### http://microbrew.it/beer.owl#Ale
:Ale rdf:type owl:Class ;
rdfs:subClassOf :BeerStyle .
### http://microbrew.it/beer.owl#Amber
:Amber rdf:type owl:Class ;
rdfs:label "Amber"@en ;
rdfs:subClassOf :Malt .
### http://microbrew.it/beer.owl#Amber_Ale
:Amber_Ale rdf:type owl:Class ;
rdfs:label """Amber Ale
""" ;
rdfs:subClassOf :Ale .
### http://microbrew.it/beer.owl#Amber_Lager
:Amber_Lager rdf:type owl:Class ;
rdfs:label "Amber Lager" ;
rdfs:subClassOf :Lager .
### http://microbrew.it/beer.owl#American-Style_Amber_Lager
:American-Style_Amber_Lager rdf:type owl:Class ;
rdfs:label "American-Style Amber Lager"@en ;
rdfs:subClassOf :Amber_Lager .
### http://microbrew.it/beer.owl#American-Style_Amber_Low_Calorie_Lager
:American-Style_Amber_Low_Calorie_Lager rdf:type owl:Class ;
rdfs:label "American-Style Amber Low Calorie Lager"@en ;
rdfs:subClassOf :Amber_Lager .
### http://microbrew.it/beer.owl#American-Style_Amber_Red_Ale
:American-Style_Amber_Red_Ale rdf:type owl:Class ;
rdfs:label "American Style Amber/Red Ale" ;
rdfs:subClassOf :Amber_Ale .
### http://microbrew.it/beer.owl#American-Style_Barley_Wine_Ale
:American-Style_Barley_Wine_Ale rdf:type owl:Class ;
rdfs:label """American-Style Barley Wine Ale
""" ;
rdfs:subClassOf :Barley_Wine .
### http://microbrew.it/beer.owl#American-Style_Brown_Ale
:American-Style_Brown_Ale rdf:type owl:Class ;
rdfs:label "American-Style Brown Ale" ;
rdfs:subClassOf :Brown_Ale .
### http://microbrew.it/beer.owl#American-Style_Dark_Lager
:American-Style_Dark_Lager rdf:type owl:Class ;
rdfs:label "American-Style Dark Lager"@en ;
rdfs:subClassOf :Dark_Lager .
### http://microbrew.it/beer.owl#American-Style_Dry_Lager
:American-Style_Dry_Lager rdf:type owl:Class ;
rdfs:label "American-Style Dry Lager" ;
rdfs:subClassOf :Golden_Lager .
### http://microbrew.it/beer.owl#American-Style_Fruit_Beer
:American-Style_Fruit_Beer rdf:type owl:Class ;
rdfs:label "American-Style Fruit Beer" ;
rdfs:subClassOf :Fruit_Beer .
### http://microbrew.it/beer.owl#American-Style_Ice_Lager
:American-Style_Ice_Lager rdf:type owl:Class ;
rdfs:label "American-Style Ice Lager"@en ;
rdfs:subClassOf :Golden_Lager .
### http://microbrew.it/beer.owl#American-Style_Imperial_Stout
:American-Style_Imperial_Stout rdf:type owl:Class ;
rdfs:label "American-Style Imperial Stout" ;
rdfs:subClassOf :Stout .
### http://microbrew.it/beer.owl#American-Style_India_Pale_Ale
:American-Style_India_Pale_Ale rdf:type owl:Class ;
rdfs:label "American-Style India Pale Ale" ;
rdfs:subClassOf :India_Pale_Ale .
### http://microbrew.it/beer.owl#American-Style_Light_Low_Calorie_Lager
:American-Style_Light_Low_Calorie_Lager rdf:type owl:Class ;
rdfs:label "American-Style Light Low Calorie Lager" ;
rdfs:subClassOf :Golden_Lager .
### http://microbrew.it/beer.owl#American-Style_Low-Carbohydrate_Light_Lager
:American-Style_Low-Carbohydrate_Light_Lager rdf:type owl:Class ;
rdfs:label "American-Style Low-Carbohydrate Light Lager" ;
rdfs:subClassOf :Golden_Lager .
### http://microbrew.it/beer.owl#American-Style_Marzen_Oktoberfest
:American-Style_Marzen_Oktoberfest rdf:type owl:Class ;
rdfs:label "American-Style Märzen/Oktoberfest"@en ;
rdfs:subClassOf :Amber_Lager .
### http://microbrew.it/beer.owl#American-Style_Pale_Ale
:American-Style_Pale_Ale rdf:type owl:Class ;
rdfs:label "American-Style Pale Ale" ;
rdfs:subClassOf :Pale_Ale .
### http://microbrew.it/beer.owl#American-Style_Pilsner
:American-Style_Pilsner rdf:type owl:Class ;
rdfs:label "American-Style Pilsner"@en ;
rdfs:subClassOf :Golden_Lager .
### http://microbrew.it/beer.owl#American-Style_Premium_Lager
:American-Style_Premium_Lager rdf:type owl:Class ;
rdfs:label "American-Style Premium Lager" ;
rdfs:subClassOf :Golden_Lager .
### http://microbrew.it/beer.owl#American-Style_Sour_Ale
:American-Style_Sour_Ale rdf:type owl:Class ;
rdfs:label "American-Style Sour Ale"@en ;
rdfs:subClassOf :Sour_Ale .
### http://microbrew.it/beer.owl#American-Style_Stout
:American-Style_Stout rdf:type owl:Class ;
rdfs:label "American-Style Stout" ;
rdfs:subClassOf :Stout .
### http://microbrew.it/beer.owl#American-Style_Strong_Pale_Ale
:American-Style_Strong_Pale_Ale rdf:type owl:Class ;
rdfs:label "American-Style Strong Pale Ale" ;
rdfs:subClassOf :Pale_Ale .
### http://microbrew.it/beer.owl#American-Style_Wheat_Wine_Ale
:American-Style_Wheat_Wine_Ale rdf:type owl:Class ;
rdfs:label "American-Style Wheat Wine Ale" ;
rdfs:subClassOf :Wheat_Beer .
### http://microbrew.it/beer.owl#American_Cream_Ale_or_Lager
:American_Cream_Ale_or_Lager rdf:type owl:Class ;
rdfs:label "American Cream Ale or Lager" ;
rdfs:subClassOf :Hybrid_Beer .
### http://microbrew.it/beer.owl#American_Lager
:American_Lager rdf:type owl:Class ;
rdfs:label "American Lager"@en ;
rdfs:subClassOf :Golden_Lager .
### http://microbrew.it/beer.owl#American_Malt_Liquor
:American_Malt_Liquor rdf:type owl:Class ;
rdfs:label "American Malt Liquor"@en ;
rdfs:subClassOf :Golden_Lager .
### http://microbrew.it/beer.owl#American_Rye_Ale_or_Lager_with_or_without_Yeast
:American_Rye_Ale_or_Lager_with_or_without_Yeast rdf:type owl:Class ;
rdfs:label "American Rye Ale or Lager with or without Yeast" ;
rdfs:subClassOf :Rye_Beer .
### http://microbrew.it/beer.owl#Aromatic
:Aromatic rdf:type owl:Class ;
rdfs:label "Aromatic"@en ;
rdfs:subClassOf :Malt .
### http://microbrew.it/beer.owl#Association
:Association rdf:type owl:Class ;
rdfs:label "Association"@en ;
rdfs:subClassOf :Organization .
### http://microbrew.it/beer.owl#Australasian_Latin_American_or_Tropical_Style_Light_Lager
:Australasian_Latin_American_or_Tropical_Style_Light_Lager rdf:type owl:Class ;
rdfs:label "Australasian,Latin American or Tropical Style Light Lager"@en ;
rdfs:subClassOf :Golden_Lager .
### http://microbrew.it/beer.owl#Award
:Award rdf:type owl:Class ;
rdfs:label "Award"@en .
### http://microbrew.it/beer.owl#Baltic-Style_Porter
:Baltic-Style_Porter rdf:type owl:Class ;
rdfs:label "Baltic-Style Porter"@en ;
rdfs:subClassOf :Porter .
### http://microbrew.it/beer.owl#Bamberg-Style_Bock_Rauchbier
:Bamberg-Style_Bock_Rauchbier rdf:type owl:Class ;
rdfs:label "Bamberg-Style Bock Rauchbier"@en ;
rdfs:subClassOf :Smoke_Beer .
### http://microbrew.it/beer.owl#Bamberg-Style_Helles_Rauchbier
:Bamberg-Style_Helles_Rauchbier rdf:type owl:Class ;
rdfs:label "Bamberg-Style Helles Rauchbier"@en ;
rdfs:subClassOf :Smoke_Beer .
### http://microbrew.it/beer.owl#Bamberg-Style_Märzen_Rauchbier
:Bamberg-Style_Märzen_Rauchbier rdf:type owl:Class ;
rdfs:label "Bamberg-Style Märzen Rauchbier"@en ;
rdfs:subClassOf :Smoke_Beer .
### http://microbrew.it/beer.owl#Bamberg-Style_Weiss_Rauchbier
:Bamberg-Style_Weiss_Rauchbier rdf:type owl:Class ;
rdfs:label "Bamberg-Style Weiss Rauchbier"@en ;
rdfs:subClassOf :Smoke_Beer .
### http://microbrew.it/beer.owl#Barley
:Barley rdf:type owl:Class ;
rdfs:label "Gerste"@de ,
"Barley"@en ;
rdfs:subClassOf :Grain .
### http://microbrew.it/beer.owl#Barley_Wine
:Barley_Wine rdf:type owl:Class ;
rdfs:subClassOf :Ale .
### http://microbrew.it/beer.owl#Batch
:Batch rdf:type owl:Class ;
rdfs:label "Batch"@en .
### http://microbrew.it/beer.owl#Beer
:Beer rdf:type owl:Class ;
rdfs:label "Beer"@en .
### http://microbrew.it/beer.owl#BeerStyle
:BeerStyle rdf:type owl:Class ;
rdfs:label "BeerStyle"@en .
### http://microbrew.it/beer.owl#Belgian-Style_Blonde__Ale
:Belgian-Style_Blonde__Ale rdf:type owl:Class ;
rdfs:label "Belgian-Style Blonde Ale"@en ;
rdfs:subClassOf :Belgian_Ale .
### http://microbrew.it/beer.owl#Belgian-Style_Dark_Strong_Ale
:Belgian-Style_Dark_Strong_Ale rdf:type owl:Class ;
rdfs:label "Belgian-Style Dark Strong Ale"@en ;
rdfs:subClassOf :Belgian_Ale .
### http://microbrew.it/beer.owl#Belgian-Style_Dubbel
:Belgian-Style_Dubbel rdf:type owl:Class ;
rdfs:label "Belgian-Style Dubbel"@en ;
rdfs:subClassOf :Belgian_Ale .
### http://microbrew.it/beer.owl#Belgian-Style_Flanders/Oud_Bruin_or_Oud_Red_Ales
<http://microbrew.it/beer.owl#Belgian-Style_Flanders/Oud_Bruin_or_Oud_Red_Ales> rdf:type owl:Class ;
rdfs:label "Belgian-Style Flanders/Oud Bruin or Oud Red Ales"@en ;
rdfs:subClassOf :Sour_Ale .
### http://microbrew.it/beer.owl#Belgian-Style_Gueuze_Lambic
:Belgian-Style_Gueuze_Lambic rdf:type owl:Class ;
rdfs:label "Belgian-Style Gueuze Lambic"@en ;
rdfs:subClassOf :Sour_Ale .
### http://microbrew.it/beer.owl#Belgian-Style_Lambic
:Belgian-Style_Lambic rdf:type owl:Class ;
rdfs:label "Belgian-Style Lambic"@en ;
rdfs:subClassOf :Sour_Ale .
### http://microbrew.it/beer.owl#Belgian-Style_Pale_Ale
:Belgian-Style_Pale_Ale rdf:type owl:Class ;
rdfs:label "Belgian-Style Pale Ale"@en ;
rdfs:subClassOf :Belgian_Ale .
### http://microbrew.it/beer.owl#Belgian-Style_Pale_Strong_Ale
:Belgian-Style_Pale_Strong_Ale rdf:type owl:Class ;
rdfs:label "Belgian-Style Pale Strong Ale"@en ;
rdfs:subClassOf :Belgian_Ale .
### http://microbrew.it/beer.owl#Belgian-Style_Saison
:Belgian-Style_Saison rdf:type owl:Class ;
rdfs:label "Belgian-Style Saison"@en ;
rdfs:subClassOf :Belgian_Ale .
### http://microbrew.it/beer.owl#Belgian-Style_Table_Beer
:Belgian-Style_Table_Beer rdf:type owl:Class ;
rdfs:label "Belgian-Style Table Beer"@en ;
rdfs:subClassOf :Belgian_Ale .
### http://microbrew.it/beer.owl#Belgian-Style_Tripel
:Belgian-Style_Tripel rdf:type owl:Class ;
rdfs:label "Belgian-Style Tripel"@en ;
rdfs:subClassOf :Belgian_Ale .
### http://microbrew.it/beer.owl#Belgian-Style_Wit_or_Wheat
:Belgian-Style_Wit_or_Wheat rdf:type owl:Class ;
rdfs:label "Belgian-Style Wit or Wheat"@en ;
rdfs:subClassOf :Wheat_Beer .
### http://microbrew.it/beer.owl#Belgian_Ale
:Belgian_Ale rdf:type owl:Class ;
rdfs:subClassOf :Ale .
### http://microbrew.it/beer.owl#Belgian_Style_Fruit_Lambic
:Belgian_Style_Fruit_Lambic rdf:type owl:Class ;
rdfs:label "Belgian Style Fruit Lambic"@en ;
rdfs:subClassOf :Fruit_Beer .
### http://microbrew.it/beer.owl#Berliner-Style_Weisse
:Berliner-Style_Weisse rdf:type owl:Class ;
rdfs:label "Berliner-Style Weisse"@en ;
rdfs:subClassOf :Wheat_Beer .