This repository has been archived by the owner on Jan 17, 2018. It is now read-only.
forked from ontologyportal/sumo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
naics.kif
12383 lines (9006 loc) · 575 KB
/
naics.kif
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
;; Access to and use of these products is governed by the GNU General Public
;; License <http://www.gnu.org/copyleft/gpl.html>.
;; By using these products, you agree to be bound by the terms
;; of the GPL.
;; Those who are interested in making use of this ontology are requested
;; to contact Adam Pease (apease [at] articulatesoftware [dot] com).
;; We ask the people using or referencing this work cite our primary paper:
;; Niles, I., and Pease, A. 2001. Towards a Standard Upper Ontology. In
;; Proceedings of the 2nd International Conference on Formal Ontology in
;; Information Systems (FOIS-2001), Chris Welty and Barry Smith, eds,
;; Ogunquit, Maine, October 17-19, 2001. See also www.ontologyportal.org
;; This is a simple taxonomy, barely linked into the SUMO -
;; http://www.ontologyportal.org
;; of the North American Industry Classification System -
;; http://www.census.gov/epcd/www/naics.html
(subclass IndustryAttribute RelationalAttribute)
(documentation IndustryAttribute EnglishLanguage "&%IndustryAttribute is a class of &%Attributes
which identify an &%Organization as belonging to a particular industry type. For
example, the company Hallmark has the attribute &%GreetingCardPublishers.")
;; HealthAndPersonalCareStores
;; SupportActivitiesForTransportation
;; Information
;; FinanceAndInsurance
;; RealEstateAndRentalAndLeasing
;; ProfessionalScientificAndTechnicalServices
;; ManagementOfCompaniesAndEnterprises
;; AdministrativeAndSupportAndWasteManagementAndRemediationServices
;; EducationalServices
;; HealthCareAndSocialAssistance
;; ArtsEntertainmentAndRecreation
;; AccommodationAndFoodServices
;; OtherServicesExceptPublicAdministration
;; PublicAdministration
(instance AgricultureForestryFishingAndHunting IndustryAttribute)
(documentation AgricultureForestryFishingAndHunting EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Agriculture, Forestry, Fishing and Hunting.")
(=>
(and
(instance ?ORG Organization)
(attribute ?ORG AgricultureForestryFishingAndHunting))
(exists (?EV ?MEM)
(and
(member ?MEM ?ORG)
(agent ?EV ?MEM)
(exists (?THING ?EV2 ?MEM2)
(and
(or
(instance ?EV Killing)
(instance ?EV Maintaining))
(patient ?EV ?THING)
(or
(instance ?THING Animal)
(instance ?THING Plant))
(not
(instance ?THING Human))
(member ?MEM2 ?ORG)
(instance ?EV2 Selling)
(agent ?EV2 ?MEM2)
(patient ?EV2 ?THING))))))
(subAttribute CropProduction AgricultureForestryFishingAndHunting)
(documentation CropProduction EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Crop
Production.")
(subAttribute OilseedAndGrainFarming CropProduction)
(documentation OilseedAndGrainFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Oilseed and Grain Farming.")
(subAttribute SoybeanFarming OilseedAndGrainFarming)
(documentation SoybeanFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Soybean
Farming or Soybeans.")
(subAttribute OilseedExceptSoybeanFarming OilseedAndGrainFarming)
(documentation OilseedExceptSoybeanFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Oilseed (except Soybean) Farming or Cash Grains, NEC
(oilseed, except soybean farming).")
(subAttribute DryPeaAndBeanFarming OilseedAndGrainFarming)
(documentation DryPeaAndBeanFarming EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves Dry
Pea and Bean Farming or Cash Grains, NEC (dry pea and bean farms).")
(subAttribute WheatFarming OilseedAndGrainFarming)
(documentation WheatFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Wheat
Farming or Wheat.")
(subAttribute CornFarming OilseedAndGrainFarming)
(documentation CornFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Corn
Farming or Corn.")
(subAttribute RiceFarming OilseedAndGrainFarming)
(documentation RiceFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Rice
Farming or Rice.")
(subAttribute OtherGrainFarming OilseedAndGrainFarming)
(documentation OtherGrainFarming EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Other Grain Farming.")
(subAttribute OilseedAndGrainCombinationFarming OtherGrainFarming)
(documentation OilseedAndGrainCombinationFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Oilseed and Grain Combination Farming or Cash
Grains, NEC (oilseed and grain combination farms).")
(subAttribute AllOtherGrainFarming OtherGrainFarming)
(documentation AllOtherGrainFarming EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves All
Other Grain Farming or Cash Grains, NEC (except popcorn, soybean, and dry
pea and bean, and oilseed and grain combination farms).")
(subAttribute VegetableAndMelonFarming CropProduction)
(documentation VegetableAndMelonFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Vegetable and Melon Farming.")
(subAttribute PotatoFarming VegetableAndMelonFarming)
(documentation PotatoFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Potato
Farming or Irish Potatoes.")
(subAttribute OtherVegetableExceptPotatoAndMelonFarming VegetableAndMelonFarming)
(documentation OtherVegetableExceptPotatoAndMelonFarming EnglishLanguage "An &%Attribute
of an &%Organization, that specifies that the primary business of the
organization involves Other Vegetable (except Potato) and Melon Farming or
Vegetables and Melons.")
(subAttribute FruitAndTreeNutFarming CropProduction)
(documentation FruitAndTreeNutFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Fruit and Tree Nut Farming.")
(subAttribute OrangeGroves FruitAndTreeNutFarming)
(documentation OrangeGroves EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Orange
Groves or Citrus Fruits (orange groves and farms).")
(subAttribute CitrusExceptOrangeGroves FruitAndTreeNutFarming)
(documentation CitrusExceptOrangeGroves EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Citrus (except Orange) Groves or Citrus Fruits
(except orange groves and farms).")
(subAttribute NoncitrusFruitAndTreeNutFarming FruitAndTreeNutFarming)
(documentation NoncitrusFruitAndTreeNutFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Noncitrus Fruit and Tree Nut Farming.")
(subAttribute AppleOrchards NoncitrusFruitAndTreeNutFarming)
(documentation AppleOrchards EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Apple
Orchards or Deciduous Tree Fruits (apple orchards and farms).")
(subAttribute GrapeVineyards NoncitrusFruitAndTreeNutFarming)
(documentation GrapeVineyards EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Grape
Vineyards or Grapes.")
(subAttribute StrawberryFarming NoncitrusFruitAndTreeNutFarming)
(documentation StrawberryFarming EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Strawberry Farming or Berry Crops (strawberry farms).")
(subAttribute BerryExceptStrawberryFarming NoncitrusFruitAndTreeNutFarming)
(documentation BerryExceptStrawberryFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Berry (except Strawberry) Farming or Berry Crops (
except strawberry farms).")
(subAttribute TreeNutFarming NoncitrusFruitAndTreeNutFarming)
(documentation TreeNutFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Tree Nut
Farming or Tree Nuts.")
(subAttribute FruitAndTreeNutCombinationFarming NoncitrusFruitAndTreeNutFarming)
(documentation FruitAndTreeNutCombinationFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Fruit and Tree Nut Combination Farming or Fruits and
Tree Nuts, NEC (combination farms).")
(subAttribute OtherNoncitrusFruitFarming NoncitrusFruitAndTreeNutFarming)
(documentation OtherNoncitrusFruitFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Other Noncitrus Fruit Farming or Deciduous Tree
Fruits (except apple orchards and farms).")
(subAttribute GreenhouseNurseryAndFloricultureProduction CropProduction)
(documentation GreenhouseNurseryAndFloricultureProduction EnglishLanguage "An &%Attribute
of an &%Organization, that specifies that the primary business of the
organization involves Greenhouse, Nursery, and Floriculture Production.")
(subAttribute FoodCropsGrownUnderCover GreenhouseNurseryAndFloricultureProduction)
(documentation FoodCropsGrownUnderCover EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Food Crops Grown Under Cover.")
(subAttribute MushroomProduction FoodCropsGrownUnderCover)
(documentation MushroomProduction EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Mushroom Production or Food Crops Grown Under Cover (mushrooms, growing
of).")
(subAttribute OtherFoodCropsGrownUnderCover FoodCropsGrownUnderCover)
(documentation OtherFoodCropsGrownUnderCover EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Other Food Crops Grown Under Cover or Food Crops
Grown Under Cover (except mushroom, growing of).")
(subAttribute NurseryAndFloricultureProduction GreenhouseNurseryAndFloricultureProduction)
(documentation NurseryAndFloricultureProduction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Nursery and Floriculture Production.")
(subAttribute NurseryAndTreeProduction NurseryAndFloricultureProduction)
(documentation NurseryAndTreeProduction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Nursery and Tree Production or Ornamental
Floriculture and Nursery Products (nursery farming).")
(subAttribute FloricultureProduction NurseryAndFloricultureProduction)
(documentation FloricultureProduction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Floriculture Production or Ornamental Floriculture
and Nursery Products (floriculture farming).")
(subAttribute OtherCropFarming CropProduction)
(documentation OtherCropFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Other
Crop Farming.")
(subAttribute TobaccoFarming OtherCropFarming)
(documentation TobaccoFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Tobacco
Farming or Tobacco.")
(subAttribute CottonFarming OtherCropFarming)
(documentation CottonFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Cotton
Farming or Cotton.")
(subAttribute SugarcaneFarming OtherCropFarming)
(documentation SugarcaneFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Sugarcane
Farming or Sugarcane and Sugar Beets (sugarcane farms).")
(subAttribute HayFarming OtherCropFarming)
(documentation HayFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Hay
Farming or Field Crops, Except Cash Grains, NEC (hay farms).")
(subAttribute AllOtherCropFarming OtherCropFarming)
(documentation AllOtherCropFarming EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves All
Other Crop Farming.")
(subAttribute SugarBeetFarming AllOtherCropFarming)
(documentation SugarBeetFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Sugar
Beet Farming or Sugarcane and Sugar Beets (sugar beet farms).")
(subAttribute PeanutFarming AllOtherCropFarming)
(documentation PeanutFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Peanut
Farming or Field Crops, Except Cash Grains, NEC (peanut farms).")
(subAttribute AllOtherMiscellaneousCropFarming AllOtherCropFarming)
(documentation AllOtherMiscellaneousCropFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves All Other Miscellaneous Crop Farming or Field Crops,
Except Cash Grains, NEC (except peanut, sweet potato, yam and hay
farms).")
(subAttribute AnimalProduction AgricultureForestryFishingAndHunting)
(documentation AnimalProduction EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Animal
Production.")
(subAttribute CattleRanchingAndFarming AnimalProduction)
(documentation CattleRanchingAndFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Cattle Ranching and Farming.")
(subAttribute BeefCattleRanchingAndFarmingIncludingFeedlots CattleRanchingAndFarming)
(documentation BeefCattleRanchingAndFarmingIncludingFeedlots EnglishLanguage "An
&%Attribute of an &%Organization, that specifies that the primary business
of the organization involves Beef Cattle Ranching and Farming, including
Feedlots.")
(subAttribute BeefCattleRanchingAndFarming BeefCattleRanchingAndFarmingIncludingFeedlots)
(documentation BeefCattleRanchingAndFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Beef Cattle Ranching and Farming or Beef Cattle,
Except Feedlots.")
(subAttribute CattleFeedlots BeefCattleRanchingAndFarmingIncludingFeedlots)
(documentation CattleFeedlots EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Cattle
Feedlots or Beef Cattle Feedlots.")
(subAttribute DairyCattleAndMilkProduction CattleRanchingAndFarming)
(documentation DairyCattleAndMilkProduction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Dairy Cattle and Milk Production or Dairy Farms.")
(subAttribute DualPurposeCattleRanchingAndFarming CattleRanchingAndFarming)
(documentation DualPurposeCattleRanchingAndFarming EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Dual Purpose Cattle Ranching and Farming or Null Set
for U.S..")
(subAttribute HogAndPigFarming AnimalProduction)
(documentation HogAndPigFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Hog and
Pig Farming.")
(subAttribute PoultryAndEggProduction AnimalProduction)
(documentation PoultryAndEggProduction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Poultry and Egg Production.")
(subAttribute ChickenEggProduction PoultryAndEggProduction)
(documentation ChickenEggProduction EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Chicken Egg Production or Chicken Eggs.")
(subAttribute BroilersAndOtherMeatTypeChickenProduction PoultryAndEggProduction)
(documentation BroilersAndOtherMeatTypeChickenProduction EnglishLanguage "An &%Attribute
of an &%Organization, that specifies that the primary business of the
organization involves Broilers and Other Meat Type Chicken Production or
Broiler, Fryers, and Roaster Chickens.")
(subAttribute TurkeyProduction PoultryAndEggProduction)
(documentation TurkeyProduction EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Turkey
Production or Turkey and Turkey Eggs.")
(subAttribute PoultryHatcheries PoultryAndEggProduction)
(documentation PoultryHatcheries EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Poultry Hatcheries or Poultry Hatcheries.")
(subAttribute OtherPoultryProduction PoultryAndEggProduction)
(documentation OtherPoultryProduction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Other Poultry Production or Poultry and Eggs, NEC.")
(subAttribute SheepAndGoatFarming AnimalProduction)
(documentation SheepAndGoatFarming EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Sheep and Goat Farming.")
(subAttribute SheepFarming SheepAndGoatFarming)
(documentation SheepFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Sheep
Farming or Sheep and Goats (sheep farms).")
(subAttribute GoatFarming SheepAndGoatFarming)
(documentation GoatFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Goat
Farming or Sheep and Goats (goat farms).")
(subAttribute AnimalAquaculture AnimalProduction)
(documentation AnimalAquaculture EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Animal Aquaculture.")
(subAttribute FinfishFarmingAndFishHatcheries AnimalAquaculture)
(documentation FinfishFarmingAndFishHatcheries EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Finfish Farming and Fish Hatcheries or Animal
Aquaculture (finfish farms).")
(subAttribute ShellfishFarming AnimalAquaculture)
(documentation ShellfishFarming EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Shellfish
Farming or Animal Aquaculture (shellfish farms).")
(subAttribute OtherAnimalAquaculture AnimalAquaculture)
(documentation OtherAnimalAquaculture EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Other Animal Aquaculture or Animal Aquaculture
(except finfish and shellfish).")
(subAttribute OtherAnimalProduction AnimalProduction)
(documentation OtherAnimalProduction EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Other Animal Production.")
(subAttribute Apiculture OtherAnimalProduction)
(documentation Apiculture EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves
Apiculture or Animal Specialties, NEC (apiculture).")
(subAttribute HorseAndOtherEquineProduction OtherAnimalProduction)
(documentation HorseAndOtherEquineProduction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Horse and Other Equine Production or Horses and
Other Equines.")
(subAttribute FurBearingAnimalAndRabbitProduction OtherAnimalProduction)
(documentation FurBearingAnimalAndRabbitProduction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Fur-Bearing Animal and Rabbit Production or
Fur-Bearing Animals and Rabbits.")
(subAttribute AllOtherAnimalProduction OtherAnimalProduction)
(documentation AllOtherAnimalProduction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves All Other Animal Production or General Livestock,
Except Dairy and Poultry.")
(subAttribute ForestryAndLogging AgricultureForestryFishingAndHunting)
(documentation ForestryAndLogging EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Forestry and Logging.")
(subAttribute TimberTractOperations ForestryAndLogging)
(documentation TimberTractOperations EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Timber Tract Operations.")
(subAttribute ForestNurseriesAndGatheringOfForestProducts ForestryAndLogging)
(documentation ForestNurseriesAndGatheringOfForestProducts EnglishLanguage "An &%Attribute
of an &%Organization, that specifies that the primary business of the
organization involves Forest Nurseries and Gathering of Forest Products.")
(subAttribute Logging ForestryAndLogging)
(documentation Logging EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves
Logging.")
(subAttribute FishingHuntingAndTrapping AgricultureForestryFishingAndHunting)
(documentation FishingHuntingAndTrapping EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Fishing, Hunting and Trapping.")
(subAttribute FishingIndustry FishingHuntingAndTrapping)
(documentation FishingIndustry EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves
Fishing.")
(subAttribute FinfishFishing FishingIndustry)
(documentation FinfishFishing EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Finfish
Fishing or Finfish.")
(subAttribute ShellfishFishing FishingIndustry)
(documentation ShellfishFishing EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Shellfish
Fishing or Shellfish.")
(subAttribute OtherMarineFishing FishingIndustry)
(documentation OtherMarineFishing EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Other Marine Fishing or Miscellaneous Marine Products (except plant
aquaculture).")
(subAttribute HuntingAndTrapping FishingHuntingAndTrapping)
(documentation HuntingAndTrapping EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Hunting and Trapping.")
(subAttribute SupportActivitiesForAgricultureAndForestry AgricultureForestryFishingAndHunting)
(documentation SupportActivitiesForAgricultureAndForestry EnglishLanguage "An &%Attribute
of an &%Organization, that specifies that the primary business of the
organization involves Support Activities for Agriculture and Forestry.")
(subAttribute SupportActivitiesForCropProduction SupportActivitiesForAgricultureAndForestry)
(documentation SupportActivitiesForCropProduction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Support Activities for Crop Production.")
(subAttribute CottonGinning SupportActivitiesForCropProduction)
(documentation CottonGinning EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Cotton
Ginning or Cotton Ginning.")
(subAttribute SoilPreparationPlantingAndCultivating SupportActivitiesForCropProduction)
(documentation SoilPreparationPlantingAndCultivating EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Soil Preparation, Planting, and Cultivating or Soil
Preparation Services.")
(subAttribute CropHarvestingPrimarilyByMachine SupportActivitiesForCropProduction)
(documentation CropHarvestingPrimarilyByMachine EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Crop Harvesting, Primarily by Machine or Crop
Harvesting, Primarily by Machine.")
(subAttribute PostharvestCropActivitiesExceptCottonGinning SupportActivitiesForCropProduction)
(documentation PostharvestCropActivitiesExceptCottonGinning EnglishLanguage "An
&%Attribute of an &%Organization, that specifies that the primary business
of the organization involves Postharvest Crop Activities (except Cotton
Ginning) or Crop Preparation Services For Market, Except Cotton Ginning
(except custom grain grinding).")
(subAttribute FarmLaborContractorsAndCrewLeaders SupportActivitiesForCropProduction)
(documentation FarmLaborContractorsAndCrewLeaders EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Farm Labor Contractors and Crew Leaders or Farm
Labor Contractors and Crew Leaders.")
(subAttribute FarmManagementServices SupportActivitiesForCropProduction)
(documentation FarmManagementServices EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Farm Management Services or Farm Management
Services.")
(subAttribute SupportActivitiesForAnimalProduction SupportActivitiesForAgricultureAndForestry)
(documentation SupportActivitiesForAnimalProduction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Support Activities for Animal Production.")
(subAttribute SupportActivitiesForForestry SupportActivitiesForAgricultureAndForestry)
(documentation SupportActivitiesForForestry EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Support Activities for Forestry.")
(instance Mining IndustryAttribute)
(documentation Mining EnglishLanguage "An &%Attribute of an &%Organization, that specifies
that the primary business of the organization involves Mining.")
(=>
(and
(instance ?ORG Organization)
(attribute ?ORG Mining))
(exists (?EV ?MEM)
(and
(member ?MEM ?ORG)
(agent ?MEM ?EV)
(exists (?THING ?MEM2 ?EV2)
(and
(instance ?EV Removing)
(patient ?EV ?THING)
(instance ?THING PureSubstance)
(attribute ?THING Solid)
(member ?MEM2 ?ORG)
(instance ?EV2 Selling)
(agent ?EV2 ?MEM2)
(patient ?EV2 ?THING))))))
(subAttribute OilAndGasExtraction Mining)
(documentation OilAndGasExtraction EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves Oil
and Gas Extraction.")
(subAttribute CrudePetroleumAndNaturalGasExtraction OilAndGasExtraction)
(documentation CrudePetroleumAndNaturalGasExtraction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Crude Petroleum and Natural Gas Extraction or Crude
Petroleum and Natural Gas.")
(subAttribute NaturalGasLiquidExtraction OilAndGasExtraction)
(documentation NaturalGasLiquidExtraction EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Natural Gas Liquid Extraction or Natural Gas
Liquids.")
(subAttribute MiningExceptOilAndGas Mining)
(documentation MiningExceptOilAndGas EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Mining (except Oil and Gas).")
(subAttribute CoalMining MiningExceptOilAndGas)
(documentation CoalMining EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Coal
Mining.")
(subAttribute BituminousCoalAndLigniteSurfaceMining CoalMining)
(documentation BituminousCoalAndLigniteSurfaceMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Bituminous Coal and Lignite Surface Mining or
Bituminous Coal and Lignite Surface Mining.")
(subAttribute BituminousCoalUndergroundMining CoalMining)
(documentation BituminousCoalUndergroundMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Bituminous Coal Underground Mining or Bituminous
Coal Underground Mining.")
(subAttribute AnthraciteMining CoalMining)
(documentation AnthraciteMining EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves
Anthracite Mining or Anthracite Mining.")
(subAttribute MetalOreMining MiningExceptOilAndGas)
(documentation MetalOreMining EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Metal Ore
Mining.")
(subAttribute IronOreMining MetalOreMining)
(documentation IronOreMining EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Iron Ore
Mining or Iron Ores.")
(subAttribute GoldOreAndSilverOreMining MetalOreMining)
(documentation GoldOreAndSilverOreMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Gold Ore and Silver Ore Mining.")
(subAttribute GoldOreMining GoldOreAndSilverOreMining)
(documentation GoldOreMining EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Gold Ore
Mining or Gold Ores.")
(subAttribute SilverOreMining GoldOreAndSilverOreMining)
(documentation SilverOreMining EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves Silver
Ore Mining or Silver Ores.")
(subAttribute CopperNickelLeadAndZincMining MetalOreMining)
(documentation CopperNickelLeadAndZincMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Copper, Nickel, Lead, and Zinc Mining.")
(subAttribute LeadOreAndZincOreMining CopperNickelLeadAndZincMining)
(documentation LeadOreAndZincOreMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Lead Ore and Zinc Ore Mining or Lead and Zinc
Ores.")
(subAttribute CopperOreAndNickelOreMining CopperNickelLeadAndZincMining)
(documentation CopperOreAndNickelOreMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Copper Ore and Nickel Ore Mining or Copper Ores.")
(subAttribute OtherMetalOreMining MetalOreMining)
(documentation OtherMetalOreMining EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Other Metal Ore Mining.")
(subAttribute UraniumRadiumVanadiumOreMining OtherMetalOreMining)
(documentation UraniumRadiumVanadiumOreMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Uranium-Radium-Vanadium Ore Mining or
Uranium-Radium-Vanadium Ores.")
(subAttribute AllOtherMetalOreMining OtherMetalOreMining)
(documentation AllOtherMetalOreMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves All Other Metal Ore Mining or Ferroalloy Ores,
Except Vanadium (other ferroalloys except nickel).")
(subAttribute NonmetallicMineralMiningAndQuarrying MiningExceptOilAndGas)
(documentation NonmetallicMineralMiningAndQuarrying EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Nonmetallic Mineral Mining and Quarrying.")
(subAttribute StoneMiningAndQuarrying NonmetallicMineralMiningAndQuarrying)
(documentation StoneMiningAndQuarrying EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Stone Mining and Quarrying.")
(subAttribute DimensionStoneMiningAndQuarrying StoneMiningAndQuarrying)
(documentation DimensionStoneMiningAndQuarrying EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Dimension Stone Mining and Quarrying or Dimension
Stone.")
(subAttribute CrushedAndBrokenLimestoneMiningAndQuarrying StoneMiningAndQuarrying)
(documentation CrushedAndBrokenLimestoneMiningAndQuarrying EnglishLanguage "An &%Attribute
of an &%Organization, that specifies that the primary business of the
organization involves Crushed and Broken Limestone Mining and Quarrying or
Crushed and Broken Limestone.")
(subAttribute CrushedAndBrokenGraniteMiningAndQuarrying StoneMiningAndQuarrying)
(documentation CrushedAndBrokenGraniteMiningAndQuarrying EnglishLanguage "An &%Attribute
of an &%Organization, that specifies that the primary business of the
organization involves Crushed and Broken Granite Mining and Quarrying or
Crushed and Broken Granite.")
(subAttribute OtherCrushedAndBrokenStoneMiningAndQuarrying StoneMiningAndQuarrying)
(documentation OtherCrushedAndBrokenStoneMiningAndQuarrying EnglishLanguage "An
&%Attribute of an &%Organization, that specifies that the primary business
of the organization involves Other Crushed and Broken Stone Mining and
Quarrying or Crushed and Broken Stone, NEC.")
(subAttribute SandGravelClayAndCeramicAndRefractoryMineralsMiningAndQuarrying NonmetallicMineralMiningAndQuarrying)
(documentation
SandGravelClayAndCeramicAndRefractoryMineralsMiningAndQuarrying EnglishLanguage "An
&%Attribute of an &%Organization, that specifies that the primary business
of the organization involves Sand, Gravel, Clay, and Ceramic and
Refractory Minerals Mining and Quarrying.")
(subAttribute ConstructionSandAndGravelMining SandGravelClayAndCeramicAndRefractoryMineralsMiningAndQuarrying)
(documentation ConstructionSandAndGravelMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Construction Sand and Gravel Mining or Construction
Sand and Gravel.")
(subAttribute IndustrialSandMining SandGravelClayAndCeramicAndRefractoryMineralsMiningAndQuarrying)
(documentation IndustrialSandMining EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Industrial Sand Mining or Industrial Sand.")
(subAttribute KaolinAndBallClayMining SandGravelClayAndCeramicAndRefractoryMineralsMiningAndQuarrying)
(documentation KaolinAndBallClayMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Kaolin and Ball Clay Mining or Kaolin and Ball
Clay.")
(subAttribute ClayAndCeramicAndRefractoryMineralsMining SandGravelClayAndCeramicAndRefractoryMineralsMiningAndQuarrying)
(documentation ClayAndCeramicAndRefractoryMineralsMining EnglishLanguage "An &%Attribute
of an &%Organization, that specifies that the primary business of the
organization involves Clay and Ceramic and Refractory Minerals Mining or
Clay, Ceramic, and Refractory Minerals, NEC.")
(subAttribute OtherNonmetallicMineralMiningAndQuarrying NonmetallicMineralMiningAndQuarrying)
(documentation OtherNonmetallicMineralMiningAndQuarrying EnglishLanguage "An &%Attribute
of an &%Organization, that specifies that the primary business of the
organization involves Other Nonmetallic Mineral Mining and Quarrying.")
(subAttribute PotashSodaAndBorateMineralMining OtherNonmetallicMineralMiningAndQuarrying)
(documentation PotashSodaAndBorateMineralMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Potash, Soda, and Borate Mineral Mining or Potash,
Soda, and Borate Minerals.")
(subAttribute PhosphateRockMining OtherNonmetallicMineralMiningAndQuarrying)
(documentation PhosphateRockMining EnglishLanguage "An &%Attribute of an &%Organization,
that specifies that the primary business of the organization involves
Phosphate Rock Mining or Phosphate Rock.")
(subAttribute OtherChemicalAndFertilizerMineralMining OtherNonmetallicMineralMiningAndQuarrying)
(documentation OtherChemicalAndFertilizerMineralMining EnglishLanguage "An &%Attribute of
an &%Organization, that specifies that the primary business of the
organization involves Other Chemical and Fertilizer Mineral Mining or
Chemical and Fertilizer Mineral Mining, NEC.")
(subAttribute AllOtherNonmetallicMineralMining OtherNonmetallicMineralMiningAndQuarrying)
(documentation AllOtherNonmetallicMineralMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves All Other Nonmetallic Mineral Mining or
Miscellaneous Nonmetallic Minerals, Except Fuels (except bituminous
limestone and bituminous sandstone).")
(subAttribute SupportActivitiesForMining Mining)
(documentation SupportActivitiesForMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Support Activities for Mining.")
(subAttribute DrillingOilAndGasWells SupportActivitiesForMining)
(documentation DrillingOilAndGasWells EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Drilling Oil and Gas Wells or Drilling Oil and Gas
Wells.")
(subAttribute SupportActivitiesForOilAndGasOperations SupportActivitiesForMining)
(documentation SupportActivitiesForOilAndGasOperations EnglishLanguage "An &%Attribute of
an &%Organization, that specifies that the primary business of the
organization involves Support Activities for Oil and Gas Operations or Oil
and Gas Field Exploration Services (except geophysical mapping and
surveying).")
(subAttribute SupportActivitiesForCoalMining SupportActivitiesForMining)
(documentation SupportActivitiesForCoalMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Support Activities for Coal Mining or Coal Mining
Services.")
(subAttribute SupportActivitiesForMetalMining SupportActivitiesForMining)
(documentation SupportActivitiesForMetalMining EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Support Activities for Metal Mining or Metal Mining
Services (except geophysical surveying and mapping).")
(subAttribute SupportActivitiesForNonmetallicMineralsExceptFuels SupportActivitiesForMining)
(documentation SupportActivitiesForNonmetallicMineralsExceptFuels EnglishLanguage "An
&%Attribute of an &%Organization, that specifies that the primary business
of the organization involves Support Activities for Nonmetallic Minerals
(except Fuels) or Nonmetallic Minerals Services, Except Fuels (except
geophysical surveying and mapping).")
(instance Utilities IndustryAttribute)
(documentation Utilities EnglishLanguage "An &%Attribute of an &%Organization, that
specifies that the primary business of the organization involves
Utilities.")
;; KJN: Moving this to MILO as it is a general concept
;;(subclass Sewage Mixture)
;;(documentation Sewage EnglishLanguage "The byproduct of &%Animal digestion. Sewage is a
;;waste product that is removed from the body of an animal by a normally
;;functioning &%BiologicalProcess. Sewage consists largely of substances
;;which the animal cannot digest, or may be harmful, so the breakdown of
;;the biological waste removal process can be evidence or cause of a
;;&%DiseaseOrSyndrome.")
;;(=>
;; (and
;; (instance ?ANI Animal)
;; (instance ?D DiseaseOrSyndrome)
;; (not
;; (attribute ?ANI ?D)))
;; (exists (?P ?W)
;; (and
;; (instance ?P BiologicalProcess)
;; (instance ?P Removing)
;; (origin ?P ?ANI)
;; (instance ?W Sewage)
;; (agent ?P ?ANI)
;; (patient ?P ?W))))
(=>
(and
(instance ?ORG Organization)
(attribute ?ORG Utilities))
(exists (?EV ?MEM)
(and
(member ?MEM ?ORG)
(agent ?MEM ?EV)
(exists (?THING ?MEM2 ?EV2)
(and
(or
(instance ?EV Removing)
(instance ?THING Sewage))
(patient ?EV ?THING)
(or
(instance ?THING Electron)
(instance ?THING Water)
(and
(instance ?THING PureSubstance)
(capability Combustion patient ?THING)))
(member ?MEM2 ?ORG)
(instance ?EV2 FinancialTransaction)
(agent ?EV2 ?MEM2)
(patient ?EV2 ?THING))))))
(subAttribute ElectricPowerGenerationTransmissionAndDistribution Utilities)
(documentation ElectricPowerGenerationTransmissionAndDistribution EnglishLanguage "An
&%Attribute of an &%Organization, that specifies that the primary business
of the organization involves Electric Power Generation, Transmission and
Distribution.")
(subAttribute ElectricPowerGeneration ElectricPowerGenerationTransmissionAndDistribution)
(documentation ElectricPowerGeneration EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Electric Power Generation.")
(subAttribute HydroElectricPowerGeneration ElectricPowerGeneration)
(documentation HydroElectricPowerGeneration EnglishLanguage "An &%Attribute of an
&%Organization, that specifies that the primary business of the
organization involves Hydroelectric Power Generation or Electric Services
(hydroelectric power generation).")
(subAttribute FossilFuelElectricPowerGeneration ElectricPowerGeneration)