forked from CommonCoreOntology/CommonCoreOntologies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFacilityOntology.ttl
846 lines (661 loc) · 55.5 KB
/
FacilityOntology.ttl
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
@prefix : <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology/> .
@prefix cco: <http://www.ontologyrepository.com/CommonCoreOntologies/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2021-03-01/FacilityOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology> ;
cco:code_license <https://opensource.org/licenses/BSD-3-Clause> ;
cco:content_license <https://creativecommons.org/licenses/by/3.0/> ;
rdfs:comment "This ontology is designed to represent buildings and campuses that are designed to serve some specific purpose and which are common to multiple domains."@en ;
rdfs:label "Facility Ontology"@en ;
owl:versionInfo "Version 1.3"@en .
#################################################################
# Classes
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/AgriculturalFacility
cco:AgriculturalFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed as a building or campus for agricultural processes with the aim of cultivating animals, plants, or fungi for food, fiber, biofuel, medicinal plants, or other products to sustain and enhance human life."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Agriculture" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Agricultural Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AircraftManufacturingFacility
cco:AircraftManufacturingFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Factory ;
cco:definition "A Factory that is designed to manufacture Aircraft."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Aerospace_manufacturer" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Aircraft Manufacturing Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Airport
cco:Airport rdf:type owl:Class ;
rdfs:subClassOf cco:TransportationFacility ;
cco:definition "A Transportation Facility that is designed for launching, receiving, and housing Aircraft."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Airport" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Airport"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AmmunitionDepot
cco:AmmunitionDepot rdf:type owl:Class ;
rdfs:subClassOf cco:StorageFacility ;
cco:definition "A Storage Facility that is designed to store Portions of Ammunition."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Ammunition_dump" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Ammunition Depot"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ApartmentBuilding
cco:ApartmentBuilding rdf:type owl:Class ;
rdfs:subClassOf cco:ResidentialFacility ;
cco:definition "A Residential Facility that is designed to contain multiple permanent residences comprised of a suite of rooms."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Apartment" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Apartment Building"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/BaseOfOperations
cco:BaseOfOperations rdf:type owl:Class ;
rdfs:subClassOf cco:MilitaryBase ;
cco:acronym "MOB" ;
cco:alternative_label "Main Operating Base"@en ;
cco:definition "A Military Base with permanently stationed operating forces, robust Infrastructure, and strengthened force protection measures such that it is designed to launch and support large-scale operations, support smaller or less-permanent bases, and organize supply facilities."@en ;
cco:definition_source "http://www.jcs.mil/Portals/36/Documents/Doctrine/pubs/dictionary.pdf?ver=2018-08-27-122235-653" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Base of Operations"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Biological_Depot
cco:Biological_Depot rdf:type owl:Class ;
rdfs:subClassOf cco:StorageFacility ;
cco:definition "A Storage Facility that is designed to store biological agents."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Biological Depot"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ChemicalDepot
cco:ChemicalDepot rdf:type owl:Class ;
rdfs:subClassOf cco:StorageFacility ;
cco:definition "A Storage Facility that is designed to store chemicals."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Chemical Depot"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ChemicalManufacturingFacility
cco:ChemicalManufacturingFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Factory ;
cco:definition "A Factory that is designed to manufacture or process chemicals."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Chemical_industry" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Chemical Manufacturing Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Church
cco:Church rdf:type owl:Class ;
rdfs:subClassOf cco:ReligiousFacility ;
cco:definition "A Religious Facility that is designed for Christian worship and prayer."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Church_(building)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Church"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CombatOutpost
cco:CombatOutpost rdf:type owl:Class ;
rdfs:subClassOf cco:MilitaryFacility ;
cco:definition "A Military Facility that is designed to support the conduction of combat operations of limited scope or size."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Outpost_(military)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Combat Outpost"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CommandPostFacility
cco:CommandPostFacility rdf:type owl:Class ;
rdfs:subClassOf cco:MilitaryFacility ;
cco:definition "A Military Facility that is designed to support the command and control of Military Operations or Forces."@en ;
cco:definition_source "http://www.dictionary.com/browse/command-post" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Command Post Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationsFacility
cco:CommunicationsFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is the bearer of functions realized in processes of receiving or transmitting information."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Communications Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DecontaminationFacility
cco:DecontaminationFacility rdf:type owl:Class ;
rdfs:subClassOf cco:WashingFacility ;
cco:definition "A Washing Facility that is designed to wash personnel or equipment after (potential) contamination by radioactive, biological, or chemical material."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Decontamination" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Decontamination Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DistributionPort
cco:DistributionPort rdf:type owl:Class ;
rdfs:subClassOf cco:Port ;
cco:definition "A Port that is designed with the cargo handling equipment necessary for the loading and unloading of Watercraft"@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Port#Distribution" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Distribution Port"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/EducationalFacility
cco:EducationalFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed for facilitating learning, or the acquisition of knowledge, skills, values, beliefs, and habits."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Education" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Educational Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ElectricPowerStation
cco:ElectricPowerStation rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:alternative_label "Power Plant"@en ;
cco:definition "A Facility that is designed to generate electrical power."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Power_station" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Electric Power Station"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/EntertainmentFacility
cco:EntertainmentFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed to host activities that are intended to hold the interest of, or give pleasure or delight to, an audience."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Entertainment" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Entertainment Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Factory
cco:Factory rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed for manufacturing or refining material products."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Factory" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Factory"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Farm
cco:Farm rdf:type owl:Class ;
rdfs:subClassOf cco:AgriculturalFacility ;
cco:definition "An Agricultural Facility that is designed to produce food and other crops."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Farm" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Farm"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/FinancialFacility
cco:FinancialFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed to support the management of money."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Finance" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Financial Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/FireStation
cco:FireStation rdf:type owl:Class ;
rdfs:subClassOf cco:PublicSafetyFacility ;
cco:alternative_label "Fire Hall"@en ,
"Fire House"@en ;
cco:definition "A Public Safety Facility that is designed for the storage of firefighting apparatus."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Fire_station" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Fire Station"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Fort
cco:Fort rdf:type owl:Class ;
rdfs:subClassOf cco:MilitaryFacility ;
cco:definition "A Military Facility that is designed to support the defense of or solidification of rule over some Geospatial Region and its inhabitants."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Fortification" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Fort"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ForwardOperationsBase
cco:ForwardOperationsBase rdf:type owl:Class ;
rdfs:subClassOf cco:MilitaryBase ;
cco:acronym "FOB" ;
cco:alternative_label "Forward Operating Base"@en ;
cco:definition "A Military Base that is located relatively close to an offensive Area of Operations, is supported by the Base of Operations, and is designed to support local strategic objectives and tactical operations."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Forward_operating_base" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Forward Operations Base"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/FossilFuelPowerPlant
cco:FossilFuelPowerPlant rdf:type owl:Class ;
rdfs:subClassOf cco:ElectricPowerStation ;
cco:definition "An Electric Power Station that is designed to convert fossil fuels (e.g. coal, natural gas, or petroleum) into electrical energy."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Fossil_fuel" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Fossil Fuel Power Plant"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GasProcessingFacility
cco:GasProcessingFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Refinery ;
cco:definition "A Refinery that is designed for refining natural gas into products of value."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Natural-gas_processing#Contaminants_in_raw_natural_gas" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Gas Processing Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GovernmentBuilding
cco:GovernmentBuilding rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed for the administration of a community."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Administration_(government)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Government Building"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GroceryStore
cco:GroceryStore rdf:type owl:Class ;
rdfs:subClassOf cco:RetailFacility ;
cco:definition "A Commercial Facility that is designed to sell food."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Grocery_store" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Grocery Store"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/HealthcareFacility
cco:HealthcareFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed for the diagnosis, treatment, and prevention of disease."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Medicine" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Healthcare Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Heliport
cco:Heliport rdf:type owl:Class ;
rdfs:subClassOf cco:Airport ;
cco:definition "An Airport that is designed for launching, receiving, and housing Rotorcraft."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Heliport" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Heliport"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Hospital
cco:Hospital rdf:type owl:Class ;
rdfs:subClassOf cco:HealthcareFacility ;
cco:definition "A Healthcare Facility that is designed to provide patient treatment with specialized staff and equipment."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Hospital" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Hospital"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Hostel
cco:Hostel rdf:type owl:Class ;
rdfs:subClassOf cco:ResidentialFacility ;
cco:definition "A Residential Facility that is designed to temporarily lodge guests in a sociable environment for relatively low costs."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Hostel" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Hostel"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Hotel
cco:Hotel rdf:type owl:Class ;
rdfs:subClassOf cco:ResidentialFacility ;
cco:definition "A Residential Facility that is designed to provide lodging that is paid for on a short-term basis."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Hotel" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Hotel"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/House
cco:House rdf:type owl:Class ;
rdfs:subClassOf cco:ResidentialFacility ;
cco:definition "A Residential Facility that is designed to provide a self-standing, permanent residence for an individual, family, household, multiple families, or similar-sized group."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/House" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "House"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/HydroelectricPowerPlant
cco:HydroelectricPowerPlant rdf:type owl:Class ;
rdfs:subClassOf cco:ElectricPowerStation ;
cco:definition "An Electric Power Station that is designed to convert hydropower into electrical power."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Hydroelectricity" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Hydroelectric Power Plant"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Landfill
cco:Landfill rdf:type owl:Class ;
rdfs:subClassOf cco:WasteManagementFacility ;
cco:definition "A Waste Management Facility that is designed for disposing of waste by burial."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Landfill" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Landfill"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MailingFacility
cco:MailingFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed for the systematic physical transportation of documents and packages."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Mail" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Mailing Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MaintenanceFacility
cco:MaintenanceFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed to be used to perform actions to maintain or improve the state of some property or equipment."@en ;
cco:definition_source "http://www.dictionary.com/browse/maintain" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Maintenance Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MedicalDepot
cco:MedicalDepot rdf:type owl:Class ;
rdfs:subClassOf cco:StorageFacility ;
cco:definition "A Storage Facility that is designed to store medical supplies."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Medical Depot"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MilitaryBase
cco:MilitaryBase rdf:type owl:Class ;
rdfs:subClassOf cco:MilitaryFacility ;
cco:definition "A Military Facility that is designed to shelter military equipment and personnel and to facilitate training and operations."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Military_base" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Military Base"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MilitaryFacility
cco:MilitaryFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed to support a Military Force."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Military" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Military Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MilitaryHeadquartersFacility
cco:MilitaryHeadquartersFacility rdf:type owl:Class ;
rdfs:subClassOf cco:MilitaryFacility ;
cco:definition "A Military Facility that is designed for military administration and coordination."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Headquarters#Military" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Military Headquarters Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Mine
cco:Mine rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed to support the extraction of valuable minerals and geological materials from the earth from an orebody, lode, vein, seam, reef, or placer deposits which forms the mineralized package of economic interest to the miner."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Mining" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Mine"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MissileLaunchSite
cco:MissileLaunchSite rdf:type owl:Class ;
rdfs:subClassOf cco:MilitaryFacility ;
cco:definition "A Military Facility that is designed for storing and launching missiles."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Missile_launch_facility" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Missile Launch Site"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Mosque
cco:Mosque rdf:type owl:Class ;
rdfs:subClassOf cco:ReligiousFacility ;
cco:definition "A Religious Facility that is designed for Islamic worship and prayer."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Mosque" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Mosque"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Motel
cco:Motel rdf:type owl:Class ;
rdfs:subClassOf cco:Hotel ;
cco:definition "A Hotel that is designed to accommodate motor vehicles along with their occupants."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Motel" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Motel"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MotorVehicleManufacturingFacility
cco:MotorVehicleManufacturingFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Factory ;
cco:definition "A Factory that is designed to manufacture automobiles."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Automotive_industry" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Motor Vehicle Manufacturing Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/NuclearPowerPlant
cco:NuclearPowerPlant rdf:type owl:Class ;
rdfs:subClassOf cco:ThermalPowerPlant ;
cco:definition "A Thermal Power Plant that is designed to produce heat by means of a nuclear reactor, which is then converted to electrical energy."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Nuclear_power_plant" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Nuclear Power Plant"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/NuclearStorageDepot
cco:NuclearStorageDepot rdf:type owl:Class ;
rdfs:subClassOf cco:StorageFacility ;
cco:definition "A Storage Facility that is designed to store nuclear material."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Nuclear Storage Depot"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/OfficeBuilding
cco:OfficeBuilding rdf:type owl:Class ;
rdfs:subClassOf cco:RetailFacility ;
cco:definition "A Commercial Facility that is designed as an environment for conducting commercial, professional, or bureaucratic work."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Office" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Office Building"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/OpenPitMine
cco:OpenPitMine rdf:type owl:Class ;
rdfs:subClassOf cco:Mine ;
cco:definition "A Mine that is designed to support the extraction of materials from the ground directly without using tunnels."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Open-pit_mining" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Open Pit Mine"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PetrochemicalRefinery
cco:PetrochemicalRefinery rdf:type owl:Class ;
rdfs:subClassOf cco:Refinery ;
cco:definition "A Refinery that is designed for refining crude oil, intermediate petroleum products, or synthetic petroleum into products of value."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Petrochemical" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Petrochemical Refinery"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PetroleumDepot
cco:PetroleumDepot rdf:type owl:Class ;
rdfs:subClassOf cco:StorageFacility ;
cco:definition "A Storage Facility that is designed to store petroleum, oil, or lubricants."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Petroleum Depot"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PetroleumManufacturingFacility
cco:PetroleumManufacturingFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Factory ;
cco:definition "A Factory that is designed to manufacture petroleum-based products."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Petroleum" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Petroleum Manufacturing Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Pier
cco:Pier rdf:type owl:Class ;
rdfs:subClassOf cco:TransportationFacility ;
cco:definition "A Transportation Facility that is designed to partially enclose a harbor and form a landing place for Watercraft."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Pier" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Pier"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Pipeline
cco:Pipeline rdf:type owl:Class ;
rdfs:subClassOf cco:ProductTransportFacility ;
cco:definition "A Product Transport Facility that is designed to transport goods or materials through a pipe."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Pipeline" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Pipeline"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PoliceStation
cco:PoliceStation rdf:type owl:Class ;
rdfs:subClassOf cco:PublicSafetyFacility ;
cco:definition "A Public Safety Facility that is designed for the professional and clerical processes of a local police force."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Police_station" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Police Station"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Port
cco:Port rdf:type owl:Class ;
rdfs:subClassOf cco:TransportationFacility ;
cco:definition "A Transportation Facility that is designed to contain harbors for docking Watercraft and for transfering people or cargo to and from land."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Port" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Port"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PostOffice
cco:PostOffice rdf:type owl:Class ;
rdfs:subClassOf cco:MailingFacility ;
cco:definition "A Mailing Facility that is designed for serving customers of the national postal system."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Post_office" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Post Office"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PowerTransmissionLine
cco:PowerTransmissionLine rdf:type owl:Class ;
rdfs:subClassOf cco:ProductTransportFacility ;
cco:definition "A Product Transport Facility that is designed to transmit electricity over distance via a system of above ground wires including their supports."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Electric_power_transmission" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Power Transmission Line"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ProductTransportFacility
cco:ProductTransportFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed to transport some product."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Product Transport Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PublicSafetyFacility
cco:PublicSafetyFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed for the prevention of and protection from events that could endanger, injure, or damage the general public."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Public_safety_organizations" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Public Safety Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/PumpingStation
cco:PumpingStation rdf:type owl:Class ;
rdfs:subClassOf cco:ProductTransportFacility ;
cco:definition "A Product Transport Facility that is designed to pump fluids from one place to another."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Pumping_station" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Pumping Station"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/RadioRelayStation
cco:RadioRelayStation rdf:type owl:Class ;
rdfs:subClassOf cco:CommunicationsFacility ;
cco:definition "A Communications Facility that is the bearer of functions realized in the relay of radio signals."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Radio Relay Station"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/RailFacility
cco:RailFacility rdf:type owl:Class ;
rdfs:subClassOf cco:TransportationFacility ;
cco:definition "A Transportation Facility that is designed for transferring people or cargo to and from Trains."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Train_station" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Rail Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Refinery
cco:Refinery rdf:type owl:Class ;
rdfs:subClassOf cco:Factory ;
cco:definition "A Factory that is designed for refining raw materials into products of value."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Refinery" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Refinery"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ReligiousFacility
cco:ReligiousFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed for worship and prayer."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Religion" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Religious Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Reservoir
cco:Reservoir rdf:type owl:Class ;
rdfs:subClassOf cco:StorageFacility ;
cco:definition "A Storage Facility that is designed to store water in a man-made open enclosure or area."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Reservoir" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Reservoir"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ResidentialFacility
cco:ResidentialFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed to house one or more Persons."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Residence" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Residential Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/RetailFacility
cco:RetailFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed for buying and selling goods and services, especially on a large scale."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Commerce" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Commercial Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/School
cco:School rdf:type owl:Class ;
rdfs:subClassOf cco:EducationalFacility ;
cco:definition "An Education Facility that is designed to provide learning space and environments for teaching of students under the direction of teachers."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/School" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "School"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/SeatOfLocalGovernment
cco:SeatOfLocalGovernment rdf:type owl:Class ;
rdfs:subClassOf cco:GovernmentBuilding ;
cco:alternative_label "City Hall"@en ,
"Town Hall"@en ;
cco:definition "A Government Building that is designed for the administration of a local community."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Seat_of_local_government" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Seat of Local Government"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/SeatOfNationalGovernment
cco:SeatOfNationalGovernment rdf:type owl:Class ;
rdfs:subClassOf cco:GovernmentBuilding ;
cco:definition "A Government Building that is designed for the administration of a sovereign nation."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Seat_of_government" ;
cco:example_of_usage "Parliament of Canada" ,
"United States Capitol" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Seat of National Government"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/SewageTreatmentFacility
cco:SewageTreatmentFacility rdf:type owl:Class ;
rdfs:subClassOf cco:WasteManagementFacility ;
cco:definition "A Waste Management Facility that is designed for removing contaminants from wastewater, especially sewage."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Sewage_treatment" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Sewage Treatment Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Shop
cco:Shop rdf:type owl:Class ;
rdfs:subClassOf cco:RetailFacility ;
cco:definition "A Commercial Facility designed to sell small lots of goods to consumers."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Retail#Types_by_marketing_strategy" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Shop"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Stage
cco:Stage rdf:type owl:Class ;
rdfs:subClassOf cco:EntertainmentFacility ;
cco:definition "An Entertainment Facility that is designed to provide a space upon which entertaining performances or productions can occur."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Stage_(theatre)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Stage"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/StorageFacility
cco:StorageFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed to store materials or goods."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Storage" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Storage Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Synagogue
cco:Synagogue rdf:type owl:Class ;
rdfs:subClassOf cco:ReligiousFacility ;
cco:definition "A Religious Facility that is designed for Judaic worship and prayer."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Synagogue" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Synagogue"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/TerroristTrainingCamp
cco:TerroristTrainingCamp rdf:type owl:Class ;
rdfs:subClassOf cco:TrainingCamp ;
cco:definition "A Training Camp designed to teach students methods of terrorism."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Terrorist_training_camp" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Terrorist Training Camp"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ThermalPowerPlant
cco:ThermalPowerPlant rdf:type owl:Class ;
rdfs:subClassOf cco:ElectricPowerStation ;
cco:definition "An Electric Power Station that is designed to convert heat energy into electrical energy."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Thermal_power_station" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Thermal Power Plant"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/TrainingCamp
cco:TrainingCamp rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed for rigorous and focused training in order to learn or improve skills, usually involving physical actions."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Training_camp" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Training Camp"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/TransportationFacility
cco:TransportationFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed for commencing or concluding the transportation of transportation artifacts, or for housing transportation artifacts."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Transport" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Transportation Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/UndergroundMine
cco:UndergroundMine rdf:type owl:Class ;
rdfs:subClassOf cco:Mine ;
cco:definition "A Mine that is designed to support the extraction of materials from the ground using underground tunnels and shafts."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Underground_mining_(hard_rock)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Underground Mine"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/UnderwaterMine
cco:UnderwaterMine rdf:type owl:Class ;
rdfs:subClassOf cco:Mine ;
cco:definition "A Mine that is designed to support the extraction of materials from the ocean floor."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Naval_mine" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Underwater Mine"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Warehouse
cco:Warehouse rdf:type owl:Class ;
rdfs:subClassOf cco:StorageFacility ;
cco:definition "A Storage Facility that is designed to store commercial goods."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Warehouse" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Warehouse"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/WashingFacility
cco:WashingFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed to wash personnel or equipment."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Washing" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Washing Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/WasteManagementFacility
cco:WasteManagementFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed for managing waste from its inception to its final disposal."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Waste_management" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Waste Management Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/WaterTower
cco:WaterTower rdf:type owl:Class ;
rdfs:subClassOf cco:StorageFacility ;
cco:definition "A Facility that is the bearer of functions realized in processes of storing water in an elevated container."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Water_tower" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Water Tower"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/WaterTreatmentFacility
cco:WaterTreatmentFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Facility ;
cco:definition "A Facility that is designed for making water more acceptable for a specific end-use."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Water_treatment" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Water Treatment Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/WeaponManufacturingFacility
cco:WeaponManufacturingFacility rdf:type owl:Class ;
rdfs:subClassOf cco:Factory ;
cco:definition "A Factory that is designed to produce or assemble weapons."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Arms_industry" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Weapon Manufacturing Facility"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/WindFarm
cco:WindFarm rdf:type owl:Class ;
rdfs:subClassOf cco:ElectricPowerStation ;
cco:definition "An Electric Power Station that is designed to convert the wind's kinetic energy into electrical power by means of wind turbines."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Wind_farm" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/FacilityOntology"^^xsd:anyURI ;
rdfs:label "Wind Farm"@en .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi