forked from CommonCoreOntology/CommonCoreOntologies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EventOntology.ttl
3122 lines (2475 loc) · 232 KB
/
EventOntology.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/EventOntology#> .
@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/EventOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2021-03-01/EventOntology> ;
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 processual entities, especially those performed by agents, that occur within multiple domains."@en ;
rdfs:label "Event Ontology"@en ;
owl:versionInfo "Version 1.3"@en .
#################################################################
# Object Properties
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/process_preceded_by
cco:process_preceded_by rdf:type owl:ObjectProperty ;
owl:inverseOf cco:process_precedes ;
cco:definition "P preceded_by P' if and only if: given any process p that instantiates P at a time t, there is some process p' such that p' instantiates P' at time t', and t' is earlier than t."@en ;
cco:definition_source "Derived from the deprecated http://www.obofoundry.org/ro/ro.owl#preceded_by" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "process preceded by"@en ;
rdfs:seeAlso "http://purl.obolibrary.org/obo/BFO_0000062" .
### http://www.ontologyrepository.com/CommonCoreOntologies/process_precedes
cco:process_precedes rdf:type owl:ObjectProperty ;
cco:definition "Inverse of process preceded by."@en ;
cco:definition_source "Derived from the deprecated http://www.obofoundry.org/ro/ro.owl#precedes" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "process precedes"@en ;
rdfs:seeAlso "http://purl.obolibrary.org/obo/BFO_0000063" .
#################################################################
# Classes
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/Acceleration
cco:Acceleration rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000144 ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:has_process_part ;
owl:someValuesFrom cco:Velocity
] ;
cco:definition "A Process Profile that is the rate of change of the Velocity of an object."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Acceleration" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Acceleration"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Act
cco:Act rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000015 ;
cco:definition "A Process in which at least one Agent plays a causative role."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfAdvising
cco:ActOfAdvising rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfDirectiveCommunication ;
cco:definition "An Act of Directive Communication performed by providing advice or counsel to another agent."@en ;
cco:definition_source "http://www.dictionary.com/browse/advising" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Advising"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfApologizing
cco:ActOfApologizing rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfExpressiveCommunication ;
cco:definition "An Act of Expressive Communication performed by acknowledging and expressing regret for a fault, shortcoming, or failure."@en ;
cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=apologizing" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Apologizing"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfAppraisal
cco:ActOfAppraisal rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfMeasuring ;
cco:definition "An Act of Measuring that involves evaluating, assessing, estimating, or judging the nature, value, importance, condition, or quality of something or someone."@en ;
cco:elucidation "In the context of an Act of Appraisal, the terms 'value', 'condition', and 'quality' do not have the same meanings as their counterparts that are defined in the Common Core Ontologies. For example, a knife may be appraised to be of high quality if it is sharp and sturdy or to be of inferior quality if it is dull or fragile."@en ;
cco:example_of_usage "a food critic rating the quality of a restaurant's ambiance, service, and food" ,
"a mechanic assessing whether a damaged vehicle is repairable" ,
"an insurance agent appraising the financial value of a building" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "Note that, while most if not all Acts of Appraisal involve some estimating and many Acts of Estimation involve some appraising (i.e. these classes are not disjoint), neither class subsumes the other. For example, some Acts of Appraisal (e.g. a tax assessor appraising the value of a building) impart a normative element to the measured value while others (e.g. a gustatory appraisal that fresh green beans taste better than canned green beans) involve complete information. Furthermore, many Acts of Estimation (e.g. estimating the height of a tree) are concerned solely with determining a numerical value (as opposed to the nature, value, importance, condition, or quality)."@en ;
rdfs:label "Act of Appraisal"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfArrival
cco:ActOfArrival rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfLocationChange ;
cco:definition "An Act of Location Change that consists of the participating entity reaching its destination such that the larger Act of Location Change is completed."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Arrival"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfArtifactAssembly
cco:ActOfArtifactAssembly rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfArtifactProcessing ;
cco:definition "An Act of Artifact Processing wherein a new Artifact is created by fitting component parts together."@en ;
cco:example_of_usage "putting together a piece of furniture purchased from Ikea" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "Many Acts of Manufacturing and Construction involve one or more Acts of Artifact Assembly, but Acts of Artifact Assembly can also occur in isolation from these activities."@en ;
rdfs:label "Act of Artifact Assembly"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfArtifactEmployment
cco:ActOfArtifactEmployment rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act of using an Artifact."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Artifact Employment"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfArtifactModification
cco:ActOfArtifactModification rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfArtifactProcessing ;
cco:definition "An Act of Artifact Processing in which an existing Artifact is acted upon in a manner that changes, adds, or removes one or more of its Qualities, Dispositions, or Functions."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "Excluded from this class are instances of role change or role creation such as the introduction of an artifact as a piece of evidence in a trial or the loading of artifacts onto a ship for transport."@en ;
rdfs:label "Act of Artifact Modification"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfArtifactProcessing
cco:ActOfArtifactProcessing rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act of performing a series of mechanical or chemical operations on something in order to change or preserve it."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Artifact Processing"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfAssassination
cco:ActOfAssassination rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfMurder ;
cco:definition "An Act of Murder of a prominent person."@en ;
cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Assassination"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfAssignment
cco:ActOfAssignment rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfDeclarativeCommunication ;
cco:definition "An Act of Declarative Communication in which rights held by one party (the assignor) are transferred to another party (the assignee) with regard to a particular entity as specified by the details of the assignment, which is often prescribed by a contract."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Assignment_%28law%29" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Assignment"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfAssociation
cco:ActOfAssociation rdf:type owl:Class ;
rdfs:subClassOf cco:SocialAct ;
cco:definition "A Social Act wherein an Agent unites with some other Agent in an Intentional Act, enterprise or business."@en ;
cco:definition_source "http://en.wiktionary.org/wiki/associate" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Association"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfBuying
cco:ActOfBuying rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfPurchasing ;
cco:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Buyer) to acquire ownership of a good from another Agent (the Seller)."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Buying"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCargoTransportation
cco:ActOfCargoTransportation rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfLocationChange ;
cco:definition "An Act of Location Change involving the movement of manufactured goods through some Transportation Agent."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Cargo Transportation"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCeremony
cco:ActOfCeremony rdf:type owl:Class ;
rdfs:subClassOf cco:SocialAct ;
cco:definition "A Social Act of ritual significance, performed on a special occasion."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Ceremony" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Ceremony"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfChangeOfResidence
cco:ActOfChangeOfResidence rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfLocationChange ;
cco:definition "An Act of Location Change involving one or more Persons moving from one place of residence to another."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Change of Residence"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCollision
cco:ActOfCollision rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfLocationChange ;
cco:definition "An Act of Location Change involving the movement of one object such that it collides with another object."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Collision"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCommanding
cco:ActOfCommanding rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfDirectiveCommunication ;
cco:definition "An Act of Directive Communication that exercises authoritative control or power over another agent's actions."@en ;
cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=commanding (Edited 08-22-2016)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Commanding"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCommissiveCommunication
cco:ActOfCommissiveCommunication rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCommunication ;
cco:definition "An Act of Communication that commits a speaker to some future action."@en ;
cco:definition_source "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "Examples: agreeing, betting, guaranteeing, inviting, offering, promising, swearing, volunteering"@en ;
rdfs:label "Act of Commissive Communication"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCommunication
cco:ActOfCommunication rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act in which some Information Content Entity is transferred from some Agent to Another."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Communication" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Communication"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCommunicationByMedia
cco:ActOfCommunicationByMedia rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCommunication ;
cco:definition "An Act of Communication in which some Artifact is used to transfer an Information Bearing Entity from sender(s) to receiver(s)."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Communication by Media"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCondoling
cco:ActOfCondoling rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfExpressiveCommunication ;
cco:definition "An Act of Expressive Communication performed by expressing sympathy or sorrow."@en ;
cco:definition_source "http://www.thefreedictionary.com/condoling" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Condoling"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfConductingMassMediaInterview
cco:ActOfConductingMassMediaInterview rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfMassMediaCommunication ;
cco:definition "An Act of Mass Media Communication involving a conversation between a reporter and a person of public interest, used as a basis of a broadcast or publication."@en ;
cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Conducting Mass Media Interview"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfConfessing
cco:ActOfConfessing rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfRepresentativeCommunication ;
cco:definition "An Act of Representative Communication in which a person makes an admission of misdeeds or faults."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Confessing"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfCongratulating
cco:ActOfCongratulating rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfExpressiveCommunication ;
cco:definition "An Act of Expressive Communication performed by expressing vicarious pleasure to a person on the occasion of their success or good fortune."@en ;
cco:definition_source "http://www.merriam-webster.com/dictionary/congratulate" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Congratulating"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfConstruction
cco:ActOfConstruction rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfArtifactProcessing ;
cco:definition "An Act of Artifact Processing wherein Artifacts are built on site as prescribed by some contract."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "An Act of Construction typically involves the production of only one or a limited number of goods, such as in the construction of an airport or a community of condominiums."@en ;
rdfs:label "Act of Construction"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfConsumption
cco:ActOfConsumption rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act in which a resource is ingested or used up."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Consumption"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfContractFormation
cco:ActOfContractFormation rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfPromising ;
cco:definition "An Act of Promising having a lawful object entered into voluntarily by two or more agents with legal capacity, each of whom intends to create one or more legal obligations between them."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Contract#Formation" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Contract Formation"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDeceptiveCommunication
cco:ActOfDeceptiveCommunication rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCommunication ;
cco:definition "Ac Act of Communication intended to mislead the audience by distortion or falsification of evidence and induce a reaction that is prejudicial to the interests of the audience."@en ;
cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Deceptive Communication"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDeclarativeCommunication
cco:ActOfDeclarativeCommunication rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCommunication ;
cco:definition "An Act of Communication that changes the reality in accord with the proposition of the declaration."@en ;
cco:definition_source "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "Examples: Baptism, Sentencing a person to imprisonment, Pronouncing a couple husband and wife, Declaring war"@en ;
rdfs:label "Act of Declarative Communication"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDecoyUse
cco:ActOfDecoyUse rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfArtifactEmployment ;
cco:definition "An Act of Artifact Employment in which some Agent uses some Decoy."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Decoy Use"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDenying
cco:ActOfDenying rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfRepresentativeCommunication ;
cco:definition "An Act of Representative Communication performed by either asserting that something is not true or real or refusing to satisfy a request or desire."@en ;
cco:definition_source "http://www.merriam-webster.com/dictionary/denial" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Denying"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDeparture
cco:ActOfDeparture rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfLocationChange ;
cco:definition "An Act of Location Change that consists of the participating entity leaving its starting location such that the larger Act of Location Change is initiated."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Departure"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDirectiveCommunication
cco:ActOfDirectiveCommunication rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCommunication ;
cco:definition "An Act of Communication that is intended to cause the hearer to take a particular action."@en ;
cco:definition_source "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "Examples: advising, admonishing, asking, begging, dismissing, excusing, forbidding, instructing, ordering, permitting, requesting, requiring, suggesting, urging, warning"@en ;
rdfs:label "Act of Directive Communication"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfDonating
cco:ActOfDonating rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
cco:definition "An Act of Financial Instrument Use wherein a Financial Instrument is tranfered by an Agent (the Donor) to another Agent (the Recipient) without return consideration."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Donation" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Donating"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEducationalTrainingAcquisition
cco:ActOfEducationalTrainingAcquisition rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfTrainingAcquisition ;
cco:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of a curriculum from an Agent or communication medium that realizes a capacity derived from its affiliation with some Educational Organization."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Educational Training Acquisition"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEducationalTrainingInstruction
cco:ActOfEducationalTrainingInstruction rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfTrainingInstruction ;
cco:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Educational Organization by imparting knowledge of a curriculum to an Agent either directly or indirectly through some communication medium."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Educational Training Instruction"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEmployment
cco:ActOfEmployment rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfAssociation ;
cco:definition "An Act of Association wherein an Organization assigns a set of activities to some Person to be performed in exchange for financial compensation."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Employment"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEncounter
cco:ActOfEncounter rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfAssociation ;
cco:definition "An Act of Association wherein two or more Persons meet in a casual or unplanned manner."@en ;
cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=encounter (Sense Key: Encounter%2:38:00)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Encounter"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEntertainment
cco:ActOfEntertainment rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act consisting of any activity which provides a diversion or permits people to amuse themselves."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Entertainment" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Entertainment"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEspionage
cco:ActOfEspionage rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfIntelligenceGathering ;
cco:definition "An Act of Intelligence Gathering involving the obtaining of information that is considered secret or confidential without the permission of the holder of the information."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Espionage" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Espionage"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfEstimation
cco:ActOfEstimation rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfMeasuring ;
cco:alternative_label "Act of Approximation"@en ;
cco:definition "An Act of Measuring that involves the comparison of a measurement of a similar Entity or of a portion of the Entity being estimated to produce an approximated measurement of the target Entity."@en ;
cco:elucidation "In all cases, the Agent in an Act of Estimation either lacks complete information, lacks access to the relevant information, or chooses not to use the complete information (perhaps to save money or time) about the thing being estimated; instead, the Agent uses some or all of the relevant information that the Agent does have as a basis for arriving at the estimate."@en ;
cco:example_of_usage "measuring how much time a train will add to your commute by measuring how long it takes for 10 train cars to pass a given point and then combining this information with an estimate of how many train cars are in a typical train based on your past experience" ,
"measuring the amount of time required to do a task based on how long it took to do a similar task in the past" ,
"measuring the height of a building by counting the number of floors and multiplying it by the height of an average floor in an average building" ,
"measuring the property value of a house based on its square footage and the average cost per square foot of other houses in the area" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "Although the boundary between Act of Estimation and guessing is vague, estimation can be partially distinguished from guessing in that every Act of Estimation has as input some relevant information; whereas an act of guessing can occur sans information (or at least sans pertinent information). For example, if Mr. Green were asked how many blades of grass are in his lawn, he could simply choose a number (i.e. he could guess) or he could estimate the number by counting how many baldes of grass are in 1 square foot of his lawn, measuring the square footage of his lawn, and then multiplying these values to arrive at a number. Hence, many estimates may be loosely considered to be educated guesses."@en ,
"Note that, while every Act of Measuring arguably involves some degree of estimation (for example, a measuring instrument rounding to the nearest ten-thousandth or an Agent reading an analog display), it would be a mistake to classify all Acts of Measuring as Acts of Estimation. This holds even for cases (e.g. census taking) in which sofisticated estimations are often more accurate than other means of measuring (e.g. enumeration)."@en ;
rdfs:label "Act of Estimation"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfExpressiveCommunication
cco:ActOfExpressiveCommunication rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCommunication ;
cco:definition "An Act of Communication that expresses the Speaker's attitudes and emotions towards some proposition."@en ;
cco:definition_source "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "Examples: apologizing, condoling, congratulating, greeting, thanking, accepting (acknowledging an acknowledgment)"@en ;
rdfs:label "Act of Expressive Communication"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfFacilityUse
cco:ActOfFacilityUse rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfArtifactEmployment ;
cco:definition "An Act of Artifact Employment in which an Agent makes use of some Facility."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Facility Use"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfFinancialDeposit
cco:ActOfFinancialDeposit rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
cco:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent (the Depositor) to another Agent to create a liability to be repaid to the Depositor through an Act of Financial Withdrawal."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Deposit_(bank)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Financial Deposit"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfFinancialInstrumentUse
cco:ActOfFinancialInstrumentUse rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfArtifactEmployment ;
cco:definition "An Act of Artifact Employment in which some Agent uses some Financial Instrument."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Financial Instrument Use"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfFinancialWithdrawal
cco:ActOfFinancialWithdrawal rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
cco:definition "An Act of Financial Instrument Use wherein a Financial Instrument is transferred by an Agent to another Agent (the Depositor) from an account created by an earlier Act of Financial Deposit performed by the Depositor."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Deposit_(bank)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Financial Withdrawal"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfFunding
cco:ActOfFunding rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
cco:definition "An Act of Financial Instrument Use in which an Agent provides a sum of money to another Agent for a particular purpose."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Funding"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfGovernment
cco:ActOfGovernment rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act that is initiated or supported by some Geopolitical Entity and enforced by some Government Agent."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Government"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfHomicide
cco:ActOfHomicide rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfViolence ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:is_cause_of ;
owl:someValuesFrom cco:Death
] ;
cco:definition "An Act of Violence which causes the unlawful killing of another person."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Homicide"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfIdentifying
cco:ActOfIdentifying rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfRepresentativeCommunication ;
cco:definition "An Act of Representative Communication performed by asserting who or what a particular person or thing is."@en ;
cco:definition_source "http://www.dictionary.com/browse/identify" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Identifying"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfInhabitancy
cco:ActOfInhabitancy rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act in which a Person lives at a Site for a period of time that may be as short as 1 day/night or as long as the Person's entire life."@en ;
cco:definition_source "http://www.merriam-webster.com/dictionary/inhabit" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Inhabitancy"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfIntelligenceGathering
cco:ActOfIntelligenceGathering rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act of producing and/or gathering information by a government or other Organization to guide decisions and actions by answering questions or obtaining advance warning of events and movements deemed to be important or otherwise relevant."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Intelligence_(information_gathering)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Intelligence Gathering"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfInterpersonalRelationship
cco:ActOfInterpersonalRelationship rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfAssociation ;
cco:definition "An Act of Association between two or more Persons that may range from fleeting to enduring."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Interpersonal_relationship" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Interpersonal Relationship"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfInviting
cco:ActOfInviting rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCommissiveCommunication ;
cco:definition "An Act of Commissive Communication performed by requesting the presence or participation of the audience, and which may include offering an incentive or inducement."@en ;
cco:definition_source "http://www.merriam-webster.com/dictionary/invite" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Inviting"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfIssuingMassMediaArticle
cco:ActOfIssuingMassMediaArticle rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfMassMediaCommunication ;
cco:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation a non-fictional essay, especially one included with others in a newspaper, magazine, or journal."@en ;
cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Issuing Mass Media Article"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfIssuingMassMediaDocumentary
cco:ActOfIssuingMassMediaDocumentary rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfMassMediaCommunication ;
cco:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation information that provides a factual record or report."@en ;
cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Issuing Mass Media Documentary"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfIssuingMassMediaPressRelease
cco:ActOfIssuingMassMediaPressRelease rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfMassMediaCommunication ;
cco:definition "An Act of Mass Media Communication involving sending forth, distributing, or putting into circulation an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."@en ;
cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Issuing Mass Media Press Release"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfLegalInstrumentUse
cco:ActOfLegalInstrumentUse rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfArtifactEmployment ;
cco:definition "An Act of Artifact Employment in which some Agent uses some Legal Instrument."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Legal Instrument Use"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfLoaning
cco:ActOfLoaning rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
cco:definition "An Act of Financial Instrument Use wherein a Financial Instrument is given by an Agent (the Creditor) to another Agent (the Debtor) in order to receive Repayments from the Debtor which are of greater Financial Value."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Loan" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Loaning"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfLocationChange
cco:ActOfLocationChange rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfMotion ;
cco:definition "An Act of Motion in which the location of some Object is changed by some Agent."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Location Change"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMaintenance
cco:ActOfMaintenance rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfArtifactModification ;
cco:definition "An Act of Artifact Modification in which an Artifact is modified in order to preserve or restore one or more of its designed Qualities or Functions."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Maintenance"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfManufacturing
cco:ActOfManufacturing rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfArtifactProcessing ;
cco:definition "An Act of Artifact Processing wherein Artifacts are created in a Facility for the purpose of being sold to consumers."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "An Act of Manufacturing typically involves the mass production of goods."@en ;
rdfs:label "Act of Manufacturing"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMassMediaCommunication
cco:ActOfMassMediaCommunication rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCommunication ;
cco:definition "An Act of Communication intended to reach a large audience using a medium such as the internet, television, radio, newspaper, and magazine."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/The_media" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Mass Media Communication"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMeasuring
cco:ActOfMeasuring rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act that involves determining the extent, dimensions, quanity, or quality of an Entity relative to some standard."@en ;
cco:example_of_usage "putting an object on a scale to measure its weight in kilograms" ,
"rating Hollywood movies on a 1 to 5 star scale" ,
"using a tape measure to determine the height and width of a doorway in inches" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Measuring"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMeeting
cco:ActOfMeeting rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfAssociation ;
cco:definition "An Act of Association wherein two or more Persons assemble for some common purpose."@en ;
cco:definition_source "http://wordnetweb.princeton.edu/perl/webwn?s=meet (Sense Key: meet%2:41:00, get together%2:41:00)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Meeting"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMilitaryForce
cco:ActOfMilitaryForce rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act of employing a Military Force to achieve some desired result."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Military Force"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMilitaryService
cco:ActOfMilitaryService rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfEmployment ;
cco:definition "An Act of Employment wherein a Person serves as a member of a Military Force, whether voluntarily or by conscription."@en ;
cco:definition_source "http://www.collinsdictionary.com/dictionary/english/military-service" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Military Service"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMilitaryTrainingAcquisition
cco:ActOfMilitaryTrainingAcquisition rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfTrainingAcquisition ;
cco:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tactics, techniques, and/or strategies of Military Operations from an Agent or communication medium that realizes a capacity derived from its affiliation with a Military Organization."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Military Training Acquisition"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMilitaryTrainingInstruction
cco:ActOfMilitaryTrainingInstruction rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfTrainingInstruction ;
cco:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Military Organization by imparting knowledge of the tactics, techniques, and/or strategies of Military Operations to an Agent either directly or indirectly through some communication medium."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Military Training Instruction"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMotion
cco:ActOfMotion rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act by which an Agent causes the position or location of some Object to change."@en ;
cco:definition_source "http://www.merriam-webster.com/dictionary/motion" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Motion"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfMurder
cco:ActOfMurder rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfHomicide ;
cco:definition "An Act of Homicide with malice aforethought."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Murder"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfOathTaking
cco:ActOfOathTaking rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCommissiveCommunication ;
cco:definition "An Act of Commissive Communication performed by stating or promising, usually calling upon something or someone that the oath maker considers sacred."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Oath" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Oath Taking"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfObservation
cco:ActOfObservation rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act of acquiring information from a source via the use of one or more senses."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/Observation" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Observation"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfOfficialDocumentation
cco:ActOfOfficialDocumentation rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfDeclarativeCommunication ;
cco:definition "An Act of Declarative Communication in which an Agent records some information for official use by another Agent."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Official Documentation"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfOwnership
cco:ActOfOwnership rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfPossession ;
cco:definition "An Act of Possession that includes an agent having certain rights and duties over the property owned."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Ownership" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "The relation between the owner and property may be private, collective, or common and the property may be objects, land, real estate, or intellectual property."@en ;
rdfs:label "Act of Ownership"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPersonalCommunication
cco:ActOfPersonalCommunication rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCommunication ;
cco:definition "An Act of Communication having a small audience."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Personal Communication"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPilgrimage
cco:ActOfPilgrimage rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfTravel ;
cco:definition "An Act of Travel to a location of importance to a person's beliefs and faith."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Pilgrimage" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Pilgrimage"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPlanning
cco:ActOfPlanning rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act that involves making a Plan to achieve some specified Objective."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Planning"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPortionOfMaterialConsumption
cco:ActOfPortionOfMaterialConsumption rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfArtifactEmployment ;
cco:definition "An Act of Artifact Employment in which a Portion of Material is expended."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Portion of Material Consumption"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPositionChange
cco:ActOfPositionChange rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfMotion ;
cco:definition "An Act of Motion in which the position (i.e. the orientation, alignment, or arrangement) of some Object or of one or more of an Object's parts is changed by some Agent."@en ;
cco:example_of_usage "a top spinning in place" ,
"adjusting your posture" ,
"raising your left arm" ,
"swivelling your office chair to face the window" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "An Act of Position Change does not entail a change of location."@en ;
rdfs:label "Act of Position Change"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPossession
cco:ActOfPossession rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act in which an agent intentionally exercises control towards a thing."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Possession_(law)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "In all cases, to possess something, an agent must have an intention to possess it."@en ;
rdfs:label "Act of Possession"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPrediction
cco:ActOfPrediction rdf:type owl:Class ;
rdfs:subClassOf cco:IntentionalAct ;
cco:definition "An Intentional Act that involves the generation of a Predictive Information Content entity that is intended to describe an uncertain possible future event, value, entity, or attribute of an entity."@en ;
cco:elucidation "Predictions can only be made about things that are not yet the case (i.e. future things) and are further restricted to being about things that do not have a probability of either 1 (necessary) or 0 (impossible). For example, assuming that no organism is immortal, one cannot predict of a given organism that it will eventually die; however, one may predict uncertain things about the organism's eventual death, such as its precise cause or time."@en ;
cco:example_of_usage "a chess master predicting the next 8 moves his opponent will make" ,
"predicting that a particular stock will double in value over the next fiscal quarter" ,
"using sample exit polls data to predict the winners of an election" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "An Act of Prediction may involve the use of some or no relevant information. An Act of Prediction that utilizes relevant information may also be (or at least involve) an Act of Estimation. Hence, these two classes are not disjoint. Furthermore, neither class subsumes the other since estimates can be made about existing entities and not all predictions produce measurements (e.g. predicting that it will rain tomorrow)."@en ;
rdfs:label "Act of Prediction"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPromising
cco:ActOfPromising rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCommissiveCommunication ;
cco:definition "An Act of Commissive Communication performed by declaring that the promising agent will do, or refrain from doing, the specified action."@en ;
cco:definition_source "http://www.merriam-webster.com/dictionary/promise" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Promising"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPropaganda
cco:ActOfPropaganda rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfDeceptiveCommunication ;
cco:definition "An Act of Deceptive Communication Propaganda intended to influence the attitude of a mass audience toward some cause or position by presenting facts selectively (thus possibly lying by omission) or by using loaded messages to produce an emotional rather than rational response to the information presented."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Propaganda" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Propaganda"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPublishingMassMediaArticle
cco:ActOfPublishingMassMediaArticle rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfMassMediaCommunication ;
cco:definition "An Act of Mass Media Communication involving the preparation and public issuance of a non-fictional essay, especially one included with others in a newspaper, magazine, journal, etc."@en ;
cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Publishing Mass Media Article"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPublishingMassMediaDocumentary
cco:ActOfPublishingMassMediaDocumentary rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfMassMediaCommunication ;
cco:definition "An Act of Mass Media Communication involving the preparation and public issuance of information that provides a factual record or report."@en ;
cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Publishing Mass Media Documentary"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPublishingMassMediaPressRelease
cco:ActOfPublishingMassMediaPressRelease rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfMassMediaCommunication ;
cco:definition "An Act of Mass Media Communication involving the preparation and public issuance of an official statement issued to one or more members of the media for the purpose of announcing newsworthy information."@en ;
cco:definition_source "JC3IEDM-MIRD-DMWG-Edition_3.0.2_20090514" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Publishing Mass Media Press Release"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfPurchasing
cco:ActOfPurchasing rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
cco:definition "An Act of Financial Instrument Use wherein a Financial Instrument is used by an Agent (the Purchaser) to acquire a good or service from another Agent (the Provider)."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Purchase" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Purchasing"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfReconnaissance
cco:ActOfReconnaissance rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfIntelligenceGathering ;
cco:definition "An Act of Intelligence Gathering used to determine an Agent's disposition and intention; the composition and capabilities of Equipment and Facilities, and the surrounding landforms and weather conditions."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Reconnaissance" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Reconnaissance"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfReligiousGroupAffiliation
cco:ActOfReligiousGroupAffiliation rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfAssociation ;
cco:definition "An Act of Association wherein some Person belongs to some Religious Demonination or sub-Denomination."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Religious Group Affiliation"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfReligiousTrainingAcquisition
cco:ActOfReligiousTrainingAcquisition rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfTrainingAcquisition ;
cco:definition "An Act of Training Acquisition performed by an Agent by acquiring knowledge of the tenets and/or practices of a religion from an Agent or communication medium that realizes a capacity derived from its affiliation with a Religious Organization."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Religious Training Acquisition"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfReligiousTrainingInstruction
cco:ActOfReligiousTrainingInstruction rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfTrainingInstruction ;
cco:definition "An Act of Training Instruction performed by an Agent who realizes a capacity derived from the Agent's affiliation with some Religious Organization by imparting knowledge of the tenets and/or practices of a religion to an Agent either directly or indirectly through some communication medium."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Religious Training Instruction"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfReligiousWorship
cco:ActOfReligiousWorship rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCeremony ;
cco:definition "An Act of Ceremony wherein there occurs acts of religious devotion usually directed towards a deity."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Worship (Sense Key: Worship%2:42:00 or Worship%1:04:00::)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Religious Worship"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfRemuneration
cco:ActOfRemuneration rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfPurchasing ;
cco:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Employer) to compensate another Agent (the Employee) for the services they perform for the Employer."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Remuneration" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "Comment: Remuneration normally consists of salary or hourly wages, but also applies to commission, stock options, fringe benefits, etc."@en ;
rdfs:label "Act of Remuneration"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfRenting
cco:ActOfRenting rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfPurchasing ;
cco:definition "An Act of Purchasing wherein a Financial Instrument is used by an Agent (the Renter) as a payment to acquire temporary possession or use of a good or property that is owned or controlled by another Agent (the Seller)."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Renting"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfRepayment
cco:ActOfRepayment rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfFinancialInstrumentUse ;
cco:definition "An Act of Financial Instrument Use wherein a Financial Instrument is returned by an Agent (the Debtor) to another Agent (the Creditor) to decrease the amount owed to the Creditor from an earlier Act of Loaning."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Loan" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Repayment"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfReporting
cco:ActOfReporting rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfRepresentativeCommunication ;
cco:definition "An Act of Representative Communication performed by giving a detailed account or statement."@en ;
cco:definition_source "http://www.merriam-webster.com/dictionary/report" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Reporting"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfRepresentativeCommunication
cco:ActOfRepresentativeCommunication rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfCommunication ;
cco:definition "An Act of Communication that commits a speaker to the truth of the expressed proposition."@en ;
cco:definition_source "Derived (loosely) from: John Searle's Speech Acts: An Essay in the Philosophy of Language" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:comment "Examples: affirming, alleging, announcing, answering, attributing, claiming, classifying, concurring, confirming, conjecturing, denying, disagreeing, disclosing, disputing, identifying, informing, insisting, predicting, ranking, reporting, stating, stipulating"@en ;
rdfs:label "Act of Representative Communication"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfRequesting
cco:ActOfRequesting rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfDirectiveCommunication ;
cco:definition "An Act of Directive Communication performed by asking for something."@en ;
cco:definition_source "http://www.merriam-webster.com/dictionary/request" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Requesting"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfResiding
cco:ActOfResiding rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfInhabitancy ;
cco:definition "An Act of Inhabitancy in which a Person lives in a dwelling permanently or for an extended period of time."@en ;
cco:definition_source "http://www.thefreedictionary.com/reside" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Residing"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfSocialGroupMembership
cco:ActOfSocialGroupMembership rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfAssociation ;
cco:definition "An Act of Association wherein a Person belongs to some Social Group."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Social Group Membership"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfSocialMovement
cco:ActOfSocialMovement rdf:type owl:Class ;
rdfs:subClassOf cco:SocialAct ;
cco:definition "A Social Act composed of a series of performances, displays and campaigns directed at implementing, resisting or undoing a change in society."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Social_movement" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Social Movement"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfSojourn
cco:ActOfSojourn rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfInhabitancy ;
cco:definition "An Act of Inhabitancy in which a Person lives in a dwelling temporarily, often during stages of an Act of Travel."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology"^^xsd:anyURI ;
rdfs:label "Act of Sojourn"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ActOfSuicide
cco:ActOfSuicide rdf:type owl:Class ;
rdfs:subClassOf cco:ActOfViolence ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:is_cause_of ;
owl:someValuesFrom cco:Death
] ;
cco:alternative_label "Suicide"@en ;
cco:definition "An Act of Violence in which some Agent intentionally and voluntarily causes their own death."@en ;