forked from CommonCoreOntology/CommonCoreOntologies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ArtifactOntology.ttl
5105 lines (3968 loc) · 373 KB
/
ArtifactOntology.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
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology#> .
@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/ArtifactOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2021-03-01/ArtifactOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology> ;
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 artifacts that are common to multiple domains along with their models, specifications, and functions."@en ;
rdfs:label "Artifact Ontology"@en ;
owl:versionInfo "Version 1.3"@en .
#################################################################
# Classes
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/AcademicDegree
cco:AcademicDegree rdf:type owl:Class ;
rdfs:subClassOf cco:Certificate ;
cco:definition "A Certificate issued by an Educational Organization to a Person to indicate that the Person has satisfactorily completed a course of study, or as an honorary recognition of the Person's achievement."@en ;
cco:definition_source "http://www.dictionary.com/browse/degree" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Academic Degree"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Actuator
cco:Actuator rdf:type owl:Class ;
rdfs:subClassOf cco:Transducer ;
cco:definition "A Transducer that is designed to convert some control signal into mechanical motion."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Actuator" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Actuator"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AirBreathingCombustionEngine
cco:AirBreathingCombustionEngine rdf:type owl:Class ;
rdfs:subClassOf cco:ReactionEngine ;
cco:definition "A Reaction Engine that functions by drawing a continuous stream of air into and through the Engine where it is compressed, mixed with a Portion of Fuel, ignited, and then expelled as exhaust gas."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Engine#Air-breathing_combustion_engines" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Air-Breathing Combustion Engine"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AirBreathingJetEngine
cco:AirBreathingJetEngine rdf:type owl:Class ;
rdfs:subClassOf cco:JetEngine ;
cco:alternative_label "Ducted Jet Engine"@en ;
cco:definition "A Jet Engine that is propelled by a jet of hot exhaust gases formed from air that is drawn into the Engine via an Air Inlet."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Airbreathing_jet_engine" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Air-Breathing Jet Engine"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AirConditioningUnit
cco:AirConditioningUnit rdf:type owl:Class ;
rdfs:subClassOf cco:CoolingSystem ;
cco:alternative_label "AC Unit"@en ;
cco:definition "A Cooling System that is designed to remove excess heat and humidity from the air in an enclosed space."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Air_conditioning" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Air Conditioning Unit"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AirInlet
cco:AirInlet rdf:type owl:Class ;
rdfs:subClassOf cco:FluidControlArtifact ;
cco:alternative_label "Air Intake"@en ;
cco:definition "A Fluid Control Artifact that consists of an opening that is designed to capture and direct the flow of air into the system it is part of."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Air Inlet"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Aircraft
cco:Aircraft rdf:type owl:Class ;
rdfs:subClassOf cco:Vehicle ;
cco:definition "A Vehicle that is designed to convey passengers, cargo, or equipment from one location to another by air travel."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Aircraft" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Aircraft"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AlkalineElectricBattery
cco:AlkalineElectricBattery rdf:type owl:Class ;
rdfs:subClassOf cco:PrimaryCellElectricBattery ;
cco:definition "A Primary Cell Electric Battery that has a Zinc anode and Manganese (IV) oxide cathode."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Alkaline_battery" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Alkaline Electric Battery"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AlternatingCurrentPowerSource
cco:AlternatingCurrentPowerSource rdf:type owl:Class ;
rdfs:subClassOf cco:ElectricalPowerSource ;
cco:definition "An Electrical Power Source that is designed to transfer electrical power in the form of alternating current."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Alternating Current Power Source"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AntiBacterialArtifactFunction
cco:AntiBacterialArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:AntiMicrobialArtifactFunction ;
cco:definition "An Anti-Microbial Artifact Function that is realized in a process which causes harm to, or the death of, some bacterium."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Antibiotics" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Anti-Bacterial Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AntiMicrobialArtifactFunction
cco:AntiMicrobialArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:PesticideArtifactFunction ;
cco:definition "A Pesticide Artifact Function that is realized in a process which causes illness in, or the death of, a microorganism."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Antimicrobial" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Anti-Microbial Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArmoredFightingVehicle
cco:ArmoredFightingVehicle rdf:type owl:Class ;
rdfs:subClassOf cco:GroundMotorVehicle ;
cco:definition "A Ground Motor Vehicle that is designed to be armored and used to transport and support military personal in combat missions."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Armoured_fighting_vehicle"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Armored Fighting Vehicle"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArmoredPersonnelCarrier
cco:ArmoredPersonnelCarrier rdf:type owl:Class ;
rdfs:subClassOf cco:ArmoredFightingVehicle ;
cco:acronym "APC" ;
cco:definition "An Armored Fighting Vehicle that is designed to transport infantry to the battlefield but which are not usually designed to take part in a direct-fire battle."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Armoured_personnel_carrier" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Armored Personnel Carrier"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Arrow
cco:Arrow rdf:type owl:Class ;
rdfs:subClassOf cco:PortionOfAmmunition ;
cco:definition "A Portion of Ammunition that is designed to be fired from a Bow and consists of a long straight stiff shaft with stabilizers (fletchings) and a slot (the nock) on one end and a weighted tip (the arrowhead) on the other end."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Arrow" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Arrow"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArticleOfClothing
cco:ArticleOfClothing rdf:type owl:Class ;
rdfs:subClassOf cco:Artifact ;
cco:definition "An Artifact that is designed to cover some portion of a body."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Clothing" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Article of Clothing"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArticleOfSolidWaste
cco:ArticleOfSolidWaste rdf:type owl:Class ;
rdfs:subClassOf cco:PortionOfWasteMaterial ;
cco:definition "A Portion of Waste Material that has a low liquid content."@en ;
cco:definition_source "https://stats.oecd.org/glossary/detail.asp?ID=2508" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Article of Solid Waste"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Artifact
cco:Artifact rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000030 ;
cco:definition "An Object that was designed by some Agent to realize a certain Function."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Artifact"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactDesignContentEntity
cco:ArtifactDesignContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:DirectiveInformationContentEntity ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:prescribes ;
owl:someValuesFrom cco:Artifact
] ;
cco:definition "A Directive Information Content Entity that is a specification of an object, manifested by an agent, intended to accomplish goals, in a particular environment, using a set of primitive components, satisfying a set of requirements, subject to constraints."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Design" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Artifact Design"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactDimensionSpecification
cco:ArtifactDimensionSpecification rdf:type owl:Class ;
rdfs:subClassOf cco:QualitySpecification ;
cco:definition "An Quality Specification that prescribes some Size Quality."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Dimension Specification"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactFunction
cco:ArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000034 ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0000052 ;
owl:someValuesFrom cco:Artifact
] ;
cco:definition "A Function that inheres in some Artifact in virtue of that Artifact being designed to be used in processes that require that Function to be realized."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactFunctionSpecification
cco:ArtifactFunctionSpecification rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty cco:prescribes ;
owl:someValuesFrom cco:ArtifactFunction
] ;
rdfs:subClassOf cco:DirectiveInformationContentEntity ;
cco:definition "A Directive Information Content Entity that prescribes some Artifact Function and which is part of some Artifact Model."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Artifact Function Specification"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactHistory
cco:ArtifactHistory rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000182 ;
cco:definition "A History of an Artifact."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Artifact History"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactIdentifier
cco:ArtifactIdentifier rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty cco:designates ;
owl:someValuesFrom cco:Artifact
] ;
rdfs:subClassOf cco:DesignativeInformationContentEntity ;
cco:definition "A Designative Information Content Entity which designates some Artifact."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Artifact Identifier"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactLocation
cco:ArtifactLocation rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000029
[ rdf:type owl:Restriction ;
owl:onProperty obo:RO_0001015 ;
owl:someValuesFrom cco:Artifact
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf obo:BFO_0000029 ;
cco:definition "A Site that is the location of some Artifact."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Artifact Location"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactModel
cco:ArtifactModel rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactDesignContentEntity ;
cco:definition "A Directive Information Content Entity that prescribes a common set of Functions and Qualities to inhere in a set of artifact instances."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Artifact Model"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactModelName
cco:ArtifactModelName rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty cco:designates ;
owl:someValuesFrom cco:ArtifactModel
] ;
rdfs:subClassOf cco:DesignativeInformationContentEntity ;
cco:definition "A Designative Information Content Entity that designates some Artifact Model."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Artifact Model Name"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArtificialEye
cco:ArtificialEye rdf:type owl:Class ;
rdfs:subClassOf cco:Prosthesis ;
cco:definition "A Prosthesis that is designed to replace a missing eye."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Artificial_eye" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Artificial Eye"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AssaultRifle
cco:AssaultRifle rdf:type owl:Class ;
rdfs:subClassOf cco:Rifle ;
cco:definition "A Rifle that is designed to have selective-fire functionality and use an intermediate Cartridge and a detachable magazine."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Assault_rifle" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Assault Rifle"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AttitudeControlArtifactFunction
cco:AttitudeControlArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:alternative_label "Orientation Control Artifact Function"@en ;
cco:definition "An Artifact Function that is realized by an Artifact participating in an attitude control process."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Attitude Control Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Automobile
cco:Automobile rdf:type owl:Class ;
rdfs:subClassOf cco:GroundMotorVehicle ;
cco:definition "A Ground Motor Vehicle that is designed to transport a small number of passengers while traveling on four tired wheels."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Car" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Automobile"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AutopilotSystem
cco:AutopilotSystem rdf:type owl:Class ;
rdfs:subClassOf cco:VehicleControlSystem ;
cco:alternative_label "Autopilot"@en ;
cco:definition "A Vehicle Control System that is designed to enable some Agent to control the trajectory of a Vehicle without constant 'hands-on' control."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Autopilot" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Autopilot System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/AztecCode
cco:AztecCode rdf:type owl:Class ;
rdfs:subClassOf cco:TwoDimensionalBarCode ;
cco:definition "A Two-Dimensional Barcode that is used by the transportation industry to scan tickets."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Aztec Code"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Banknote
cco:Banknote rdf:type owl:Class ;
rdfs:subClassOf cco:PortionOfCash ;
cco:definition "A Portion of Cash that consists of a portable slips of paper or fabric designed to bear some specified Financial Value."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Banknote"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Barcode
cco:Barcode rdf:type owl:Class ;
rdfs:subClassOf cco:InformationBearingArtifact ;
cco:definition "An Information Bearing Artifact that consist of machine-readable symbols."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Barcode" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:comment "For information on types of barcodes, see: https://www.scandit.com/types-barcodes-choosing-right-barcode/"@en ;
rdfs:label "Barcode"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/BatteryTerminal
cco:BatteryTerminal rdf:type owl:Class ;
rdfs:subClassOf cco:ElectricalPowerSourceComponent ;
cco:definition "An Electrical Power Source Component that is designed to connect a load or charger to a single or multiple-cell Battery."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Battery_terminal" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Battery Terminal"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/BearingArtifactFunction
cco:BearingArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized in processes in which the Artifact constrains relative motion to only the desired motion, and reduces friction between moving parts."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Bearing_(mechanical)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Bearing Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/BeverageAntenna
cco:BeverageAntenna rdf:type owl:Class ;
rdfs:subClassOf cco:WireAntenna ;
cco:definition "A Wire Antenna that consists of a horizontal wire one-half to two wavelengths long that is suspended above the ground with one end attached to the receiver feedline and the other grounded and which is typically used in the low and medium frequency radio bands."@en ;
cco:definition_source "Adapted from: https://en.wikipedia.org/wiki/Beverage_antenna" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Beverage Antenna"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Bicycle
cco:Bicycle rdf:type owl:Class ;
rdfs:subClassOf cco:GroundVehicle ;
cco:definition "A Ground Vehicle that consists of two wheels, one in front of the other, attached to a frame along with handlebars and pedals such that it is designed to receive its motive power from pedaling."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Bicycle" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Bicycle"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/BidirectionalTransducer
cco:BidirectionalTransducer rdf:type owl:Class ;
rdfs:subClassOf cco:Transducer ;
cco:definition "A Transducer that is designed to receive a signal in the form of physical phenomena and convert it into an electrical signal, and vice versa."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Transducer#Bidirectional" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Bidirectional Transducer"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/BiologicalWeapon
cco:BiologicalWeapon rdf:type owl:Class ;
rdfs:subClassOf cco:Weapon ;
cco:definition "A Weapon that is designed to inflict harm, incapacity, or death by means of releasing disease-producing agents—such as bacteria, viruses, or fungi."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Biological_warfare" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Biological Weapon"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Bond
cco:Bond rdf:type owl:Class ;
rdfs:subClassOf cco:FinancialInstrument ;
cco:definition "A Financial Instrument that is designed to secure an Agent's debt for the holders of that debt."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Bond_(finance)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Bond"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/BondCertificate
cco:BondCertificate rdf:type owl:Class ;
rdfs:subClassOf cco:Bond ;
cco:definition "A Bond that consists of a Certificate."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Bond Certificate"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Book
cco:Book rdf:type owl:Class ;
rdfs:subClassOf cco:InformationBearingArtifact ;
cco:definition "An Information Bearing Artifact that is designed to bear some specific Information Content Entity by means of ink, paper, parchment, or other materials fastened together to hinge at one side."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Book" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Book"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Bow
cco:Bow rdf:type owl:Class ;
rdfs:subClassOf cco:ProjectileLauncher ;
cco:definition "A Projectile Launcher that is designed to launch Arrows."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Bow_and_arrow" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Bow"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Brake
cco:Brake rdf:type owl:Class ;
rdfs:subClassOf cco:VehicleControlSystemComponent ;
cco:definition "A Vehicle Control System Component that is designed to inhibit the Vehicle's Motion by absorbing energy from a moving system."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Brake" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Brake"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/BrakeControlSystem
cco:BrakeControlSystem rdf:type owl:Class ;
rdfs:subClassOf cco:VehicleControlSystem ;
cco:definition "A Vehicle Control System that is designed to control the process of braking with the aim of preventing rolling, skidding, and hydroplaning."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Brake Control System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Bridge
cco:Bridge rdf:type owl:Class ;
rdfs:subClassOf cco:TransportationInfrastructure ;
cco:definition "A Transportation Infrastructure Artifact that is designed to span physical obstacles without closing the way underneath to enable Persons or Ground Vehicles to pass over the obstacles."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Bridge" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Bridge"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Bullet
cco:Bullet rdf:type owl:Class ;
rdfs:subClassOf cco:PortionOfAmmunition ;
cco:definition "A Portion of Ammunition that is designed to be projected by a Firearm, Sling, Slingshot, or Air Gun, but which does not (typically) contain explosives."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Bullet" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Bullet"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Bus
cco:Bus rdf:type owl:Class ;
rdfs:subClassOf cco:GroundMotorVehicle ;
cco:definition "A Ground Motor Vehicle that is designed to transport a large number of people and to travel on six or more tired wheels."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Bus" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Bus"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CabinPressurizationControlSystem
cco:CabinPressurizationControlSystem rdf:type owl:Class ;
rdfs:subClassOf cco:EnvironmentControlSystem ;
cco:definition "An Environment Control System that is designed to control the process in which conditioned air is pumped into the Cabin of some Aircraft or Spacecraft in order to create a safe and comfortable environment for passengers and crew flying at high altitudes."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Cabin_pressurization" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Cabin Pressurization Control System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Camera
cco:Camera rdf:type owl:Class ;
rdfs:subClassOf cco:ImagingInstrument ;
cco:definition "An Imaging Instrument that is designed to form and digitally or physically record an image of an entity."@en ;
cco:definition_source "http://www.dictionary.com/browse/camera" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Camera"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Canal
cco:Canal rdf:type owl:Class ;
rdfs:subClassOf cco:TransportationInfrastructure ;
cco:definition "A Transportation Infrastructure Artifact that is an artificial Hydrographic Feature designed to convey water or enable Watercraft to travel inland."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Canal" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Canal"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Cannon
cco:Cannon rdf:type owl:Class ;
rdfs:subClassOf cco:ProjectileLauncher ;
cco:definition "A Projectile Launcher that is designed to use a controlled explosion to launch a relatively large Portion of Ammunition, such as a Round Shot or a Shell, at a significant Velocity."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Cannon" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Cannon"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CargoCabin
cco:CargoCabin rdf:type owl:Class ;
rdfs:subClassOf cco:VehicleCompartment ;
cco:definition "A Vehicle Compartment that is used to store goods or materials during transportation."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Cargo Cabin"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Cartridge
cco:Cartridge rdf:type owl:Class ;
rdfs:subClassOf cco:PortionOfAmmunition ;
cco:definition "A Portion of Ammunition that is designed to package a Bullet, a propellant substance, and a primer within a case that is designed to fit within the firing chamber of a Firearm."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Cartridge_(firearms)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Cartridge"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CatadioptricOpticalTelescope
cco:CatadioptricOpticalTelescope rdf:type owl:Class ;
rdfs:subClassOf cco:OpticalTelescope ;
cco:alternative_label "Catadioptric Telescope"@en ;
cco:definition "An Optical Telescope that is designed to aid in the observation of spatially distant Objects by means of collecting and focusing visible light through the use of a combination of Lenses and Mirrors to form an enhanced image of the Object."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Catadioptric_system#Catadioptric_telescopes" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Catadioptric Optical Telescope"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CatalystArtifactFunction
cco:CatalystArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ChemicalReactionArtifactFunction ;
cco:definition "A Chemical Reaction Artifact Function that is realized in a process in which the rate of a chemical reaction is increased due to the participation of an additional substance, without that substance being consumed in the reaction."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Catalysis" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Catalyst Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CellularTelecommunicationNetwork
cco:CellularTelecommunicationNetwork rdf:type owl:Class ;
rdfs:subClassOf cco:WirelessTelecommunicationNetwork ;
cco:alternative_label "Cellular Network"@en ,
"Mobile Telecommunication Network"@en ;
cco:definition "A Wireless Telecommunication Network where the last link between the network and the end user is wireless and is distributed over service areas called cells."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Cellular_network" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Cellular Telecommunication Network"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Certificate
cco:Certificate rdf:type owl:Class ;
rdfs:subClassOf cco:InformationBearingArtifact ;
cco:definition "An Information Bearing Artifact that bears an Information Content Entity which attests to certain demonstrated characteristics of an Object, Person, or Organization."@en ;
cco:definition_source "http://www.dictionary.com/browse/degree" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Certificate"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Chart
cco:Chart rdf:type owl:Class ;
rdfs:subClassOf cco:Image ;
cco:definition "An Image that is designed to represent an Information Content Entity by means of Written Symbols in order to convey that information in a readily understandable format."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Chart"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ChemicalReactionArtifactFunction
cco:ChemicalReactionArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized in a process that leads to the transformation of one set of chemical substances to another."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Chemical_reaction" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Chemical Reaction Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ChemicalWeapon
cco:ChemicalWeapon rdf:type owl:Class ;
rdfs:subClassOf cco:Weapon ;
cco:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of releasing toxic chemicals."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Chemical_weapon" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Chemical Weapon"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CircuitBreaker
cco:CircuitBreaker rdf:type owl:Class ;
rdfs:subClassOf cco:ElectricalPowerSourceComponent ;
cco:definition "An Electrical Power Source Component that is designed to protect an electrical circuit from damage caused by excess current from an overload or short circuit."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Circuit_breaker" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Circuit Breaker"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CleaningArtifactFunction
cco:CleaningArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized in processes in which some Artifact is used to remove foreign objects from another object."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Cleaning Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CodabarBarcode
cco:CodabarBarcode rdf:type owl:Class ;
rdfs:subClassOf cco:OneDimensionalBarcode ;
cco:definition "A One-Dimensional Barcode that consists of numbers 0-9 and the characters -$:/.+ and is used by logistics and healthcare professionals."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Codabar Barcode"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Code128Barcode
cco:Code128Barcode rdf:type owl:Class ;
rdfs:subClassOf cco:OneDimensionalBarcode ;
cco:definition "A One-Dimensional Barcode that consists of up to 128 ASCII characters and is used primarily in supply chains."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Code 128 Barcode"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Code39Barcode
cco:Code39Barcode rdf:type owl:Class ;
rdfs:subClassOf cco:OneDimensionalBarcode ;
cco:definition "A One-Dimensional Barcode that consists of 39 characters that are numbers 0-9, capital letters A-Z, or the symbols -.$/+% and space and is used primarily in automotive and defense industries."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Code 39 Barcode"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Code93Barcode
cco:Code93Barcode rdf:type owl:Class ;
rdfs:subClassOf cco:OneDimensionalBarcode ;
cco:definition "A One-Dimensional Barcode that consists of up to 93 ASCII characters and is used in logistics to identify packages in retail inventory, lable electornic components, and provide supplementary delivery information."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Code 93 Barcode"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CodeList
cco:CodeList rdf:type owl:Class ;
rdfs:subClassOf cco:List ;
cco:definition "A List that represents an ordered sequence of Information Bearing Entities that bear Code Identifiers."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Code List"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Coin
cco:Coin rdf:type owl:Class ;
rdfs:subClassOf cco:PortionOfCash ;
cco:definition "A Portion of Cash that consists of a flat, portable, round pieces of metal designed to bear some specified Financial Value."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Coin"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CollimationArtifactFunction
cco:CollimationArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized by an Artifact participating in a collimation event in which the Artifact narrows a beam of particles or waves by either causing the spatial cross-section of the beam to become smaller or by causing the directions of motion of the beam's constituents to be aligned in a specifc direction of Motion."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Collimation Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CombustionChamber
cco:CombustionChamber rdf:type owl:Class ;
rdfs:subClassOf cco:Artifact ;
cco:alternative_label "Burner"@en ,
"Combustor"@en ,
"Flame Holder"@en ;
cco:definition "An Artifact that is designed to wholly or partially bound an internal Site where a Combustion process is intended to occur."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Combustion Chamber"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CombustionEngine
cco:CombustionEngine rdf:type owl:Class ;
rdfs:subClassOf cco:HeatEngine ;
cco:definition "A Heat Engine that is designed to convert thermal energy that is generated through a local Combustion process into mechanical energy."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Combustion Engine"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CommonStock
cco:CommonStock rdf:type owl:Class ;
rdfs:subClassOf cco:Stock ;
cco:definition "Stock that entitles its holder to voting on corporate decisions."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Common Stock"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationArtifactFunction
cco:CommunicationArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized in a process in which meaningful signs are conveyed from one entity to another."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Communication Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationInstrument
cco:CommunicationInstrument rdf:type owl:Class ;
rdfs:subClassOf cco:Artifact ;
cco:definition "An Artifact that is designed to facilitate communication between at least two entities."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Communication Instrument"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationInterferenceArtifactFunction
cco:CommunicationInterferenceArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized during events in which an Artifact is used to interfere with the transmission of information for the purpose of preventing communication."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Communication Interference Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationReceptionArtifactFunction
cco:CommunicationReceptionArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized during events in which an Artifact is used to receive information that has been transmitted for the purpose of communiction."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Communication Reception Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationRelayArtifactFunction
cco:CommunicationRelayArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized during events in which an Artifact is used to first receive and then transmit information from one Artifact to another for the purpose of communiction."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Communication Relay Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CommunicationSystem
cco:CommunicationSystem rdf:type owl:Class ;
rdfs:subClassOf cco:Artifact ;
cco:definition "An Artifact that is designed to enable some Act of Communication by means of transmission systems, relay stations, tributary stations, and data terminal equipment, usually capable of interconnection and interoperation to form an integrated whole."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Communications_system" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Communication System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ComponentRole
cco:ComponentRole rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000023 ;
cco:definition "A Role that inheres in an entity having a discrete structure in virtue of that entity being part of a system considered at a particular level of analysis."@en ;
cco:definition_source "ISO/IEC. 1998. Information Technology ― System and Software Integrity Levels Geneva, Switzerland: International Organization for Standardization (ISO)/International Electrotechnical Commission (IEC). ISO/IEC. 15026:1998. : 3.1"@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Component Role"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CompressionIgnitionEngine
cco:CompressionIgnitionEngine rdf:type owl:Class ;
rdfs:subClassOf cco:InternalCombustionEngine ;
cco:definition "An Internal Combustion Engine that is designed to operate by igniting a portion of Fuel and Oxidizer mixture using heat generated via compression of the mixture."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Compression Ignition Engine"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CompressionIgnitionSystem
cco:CompressionIgnitionSystem rdf:type owl:Class ;
rdfs:subClassOf cco:IgnitionSystem ;
cco:definition "An Ignition System that is designed to generate heat by compressing a portion of fuel and oxidizer mixture in order to initiate an Ignition process."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Compression Ignition System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Computer
cco:Computer rdf:type owl:Class ;
rdfs:subClassOf cco:InformationProcessingArtifact ;
cco:definition "An Information Processing Artifact that is designed to execute an arbitrary set of arithmetic or logical operations automatically."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Computer" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Computer"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ComputerNetwork
cco:ComputerNetwork rdf:type owl:Class ;
rdfs:subClassOf cco:TelecommunicationNetwork ;
cco:alternative_label "Data Network"@en ;
cco:definition "A Telecommunication Network that is designed to allow the exchange of data between two or more computers connected to the network."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Computer_network" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Computer Network"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ComputingArtifactFunction
cco:ComputingArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized by an Artifact participating in a computation process."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Computing Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Container
cco:Container rdf:type owl:Class ;
rdfs:subClassOf cco:Artifact ;
cco:definition "An Artifact that is designed to contain (wholly or partially) some material entity."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Container"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ContainingArtifactFunction
cco:ContainingArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized in a process in which one entity contains another."@en ;
cco:definition_source "http://www.dictionary.com/browse/containing" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Containing Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ControlSurface
cco:ControlSurface rdf:type owl:Class ;
rdfs:subClassOf cco:SteeringControlComponent ;
cco:definition "A Steering Control Component that is designed to deflect air, water, or another medium around its surface in order to change the Attitude of a Vehicle by rotating the Vehicle on one or more of its Axes of Rotation."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Flight_control_surfaces" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Control Surface"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ControlSystem
cco:ControlSystem rdf:type owl:Class ;
rdfs:subClassOf cco:Artifact ;
cco:definition "An Artifact that is designed to manage, command, direct, or regulate the behavior of at least one other Artifact."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Control_system" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Control System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ControllablePitchPropeller
cco:ControllablePitchPropeller rdf:type owl:Class ;
rdfs:subClassOf cco:Propeller ;
cco:alternative_label "Variable-Pitch Propeller"@en ;
cco:definition "A Propeller whose blades are designed to be alterable by rotating the blades about their vertical axis by means of mechanical or hydraulic arrangement."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Variable-pitch_propeller" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Controllable Pitch Propeller"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ControlledAccessHighway
cco:ControlledAccessHighway rdf:type owl:Class ;
rdfs:subClassOf cco:Highway ;
cco:alternative_label "Expressway"@en ,
"Freeway"@en ,
"Motorway"@en ;
cco:definition "A Highway that is designed for high-speed vehicular traffic, with all traffic flow and ingress/egress regulated."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Controlled-access_highway" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Controlled-Access Highway"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ConvergentDivergentNozzle
cco:ConvergentDivergentNozzle rdf:type owl:Class ;
rdfs:subClassOf cco:Nozzle ;
cco:alternative_label "CD Nozzle"@en ,
"de Laval Nozzle"@en ;
cco:definition "A Nozzle that consists of a tube with an asymmetric hourglass shape that is designed to accelerate hot pressurized gas by converting the heat energy of the gas flow into kinetic energy as it passes through the Nozzle Throat to generate increased Exhaust Velocity of the gas as it exits the Nozzle."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/De_Laval_nozzle" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:comment "By increasing the Exhaust Velocity of the gas, the Nozzle increases the Thrust generated."@en ;
rdfs:label "Convergent-Divergent Nozzle"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ConveyanceArtifactFunction
cco:ConveyanceArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:MotionArtifactFunction ;
cco:definition "A Motion Artifact Function that is realized in a process in which the bearer of the function conveys entities from one location to another."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Vehicle" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Conveyance Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CoolingArtifactFunction
cco:CoolingArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized in a process in which the thermal energy of a system decreases."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Cooling Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CoolingSystem
cco:CoolingSystem rdf:type owl:Class ;
rdfs:subClassOf cco:EnvironmentControlSystem ;
cco:definition "An Environment Control System that is designed to cool the air or objects in a Site."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Cooling System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CounterfeitFinancialInstrument
cco:CounterfeitFinancialInstrument rdf:type owl:Class ;
rdfs:subClassOf cco:CounterfeitInstrument ;
cco:definition "A Counterfeit Instrument that is designed to be a fake replica of some legally sanctioned Financial Instrument."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Counterfeit_money" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Counterfeit Financial Instrument"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CounterfeitInstrument
cco:CounterfeitInstrument rdf:type owl:Class ;
rdfs:subClassOf cco:Artifact ;
cco:definition "An Artifact that is designed to be a fake replica of some genuine Artifact."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Counterfeit" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Counterfeit Instrument"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CounterfeitLegalInstrument
cco:CounterfeitLegalInstrument rdf:type owl:Class ;
rdfs:subClassOf cco:CounterfeitInstrument ;
cco:definition "A Counterfeit Instrument that is designed to be a fake replica of some genuine Legal Instrument."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Counterfeit#Counterfeiting_of_documents" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Counterfeit Legal Instrument"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Coupling
cco:Coupling rdf:type owl:Class ;
rdfs:subClassOf cco:MachineElement ;
cco:definition "A Machine Element that is designed to connect two Shafts together at their ends for the purpose of transmitting power."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Coupling" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Coupling"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CoveringArtifactFunction
cco:CoveringArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized in a process in which an entity is covered."@en ;
cco:definition_source "http://www.dictionary.com/browse/covering" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Covering Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CrushingArtifactFunction
cco:CrushingArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:DamagingArtifactFunction ;
cco:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired because of significant pressure."@en ;
cco:definition_source "http://www.dictionary.com/browse/crushing" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Crushing Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CryogenicStorageDewar
cco:CryogenicStorageDewar rdf:type owl:Class ;
rdfs:subClassOf cco:Container ;
cco:definition "A Container that is designed to store a Portion of Cryogenic Material (such as liquid helium or liquid oxygen) and which consists of, minimally, walls that are constructed from two or more layers that are separated by a high vacuum to provide thermal insulation between the interior and exterior of the dewar."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Cryogenic_storage_dewar" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Cryogenic Storage Dewar"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CurrentConversionArtifactFunction
cco:CurrentConversionArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ElectricalArtifactFunction ;
cco:definition "An Electrical Artifact Function that is realized by processes in which some Artifact is used to convert some electrical current."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Current Conversion Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CuttingArtifactFunction
cco:CuttingArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:DamagingArtifactFunction ;
cco:definition "A Damaging Artifact Function that is realized in a process in which the structural integrity of an entity is impaired by being opened or divided."@en ;
cco:definition_source "http://www.dictionary.com/browse/cutting" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Cutting Artifact Function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CuttingWeapon
cco:CuttingWeapon rdf:type owl:Class ;
rdfs:subClassOf cco:Weapon ;
cco:definition "A Weapon that is designed to inflict harm, damage, or incapacity by means of separating some portion of its target into two or more portions through the application of acutely directed force."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Cutting" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Cutting Weapon"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Dam
cco:Dam rdf:type owl:Class ;
rdfs:subClassOf cco:Infrastructure ;
cco:definition "An Infrastructure that is designed to impound surface water or underground streams."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Dam" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Dam"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DamagingArtifactFunction
cco:DamagingArtifactFunction rdf:type owl:Class ;
rdfs:subClassOf cco:ArtifactFunction ;
cco:definition "An Artifact Function that is realized in a process in which the structural integrity of an entity is impaired."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ArtifactOntology"^^xsd:anyURI ;
rdfs:label "Damaging Artifact Function"@en .