forked from CommonCoreOntology/CommonCoreOntologies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModalRelationOntology.ttl
More file actions
2814 lines (2266 loc) · 199 KB
/
ModalRelationOntology.ttl
File metadata and controls
2814 lines (2266 loc) · 199 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology#> .
@prefix cco: <http://www.ontologyrepository.com/CommonCoreOntologies/> .
@prefix mro: <http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/> .
@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/ModalRelationOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2021-03-01/ModalRelationOntology> ;
cco:code_license <https://opensource.org/licenses/BSD-3-Clause> ;
cco:content_license <https://creativecommons.org/licenses/by/3.0/> ;
rdfs:comment "The modal counterparts to relations contained in the Common Core Ontologies (CCO), including those CCO imports from the OBO Relation Ontology (RO)."@en ;
rdfs:label "Modal Relation Ontology"@en ;
owl:versionInfo "Version 1.3"@en .
#################################################################
# Object Properties
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/ModalObjectProperty
mro:ModalObjectProperty rdf:type owl:ObjectProperty ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology"^^xsd:anyURI ;
rdfs:comment "A term to group all types of modal properties, which is helpful for application purposes."@en ;
rdfs:label "Modal Object Property"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/BFO_0000050
mro:BFO_0000050 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:BFO_0000051 ;
rdf:type owl:TransitiveProperty ;
obo:IAO_0000111 "is part of"@en ;
obo:IAO_0000112 "my brain is part of my body (continuant parthood, two material entities)"@en ,
"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"@en ,
"this day is part of this year (occurrent parthood)"@en ;
obo:IAO_0000115 "a core relation that holds between a part and its whole"@en ;
obo:IAO_0000116 "Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."@en ,
"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime"@en ,
"""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)
A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'."""@en ;
obo:IAO_0000118 "part_of"@en ;
obo:RO_0001900 obo:RO_0001901 ;
obo:RO_0040042 obo:BFO_0000002 ,
obo:BFO_0000003 ,
obo:BFO_0000004 ,
obo:BFO_0000017 ,
obo:BFO_0000019 ,
obo:BFO_0000020 ,
obo:BFO_0000031 ;
rdfs:label "part of"@en ;
rdfs:seeAlso <http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections> ,
<http://ontologydesignpatterns.org/wiki/Submissions:PartOf> ,
"http://www.obofoundry.org/ro/#OBO_REL:part_of" .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/BFO_0000051
mro:BFO_0000051 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
rdf:type owl:TransitiveProperty ;
obo:IAO_0000111 "has part"@en ;
obo:IAO_0000112 "my body has part my brain (continuant parthood, two material entities)"@en ,
"my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)"@en ,
"this year has part this day (occurrent parthood)"@en ;
obo:IAO_0000115 "a core relation that holds between a whole and its part"@en ;
obo:IAO_0000116 "Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."@en ,
"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime"@en ,
"""Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)
A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'."""@en ;
obo:IAO_0000118 "has_part"@en ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "has part"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/BFO_0000054
mro:BFO_0000054 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:BFO_0000055 ;
rdfs:domain obo:BFO_0000017 ;
rdfs:range obo:BFO_0000015 ;
obo:IAO_0000111 "realized in"@en ;
obo:IAO_0000112 "this disease is realized in this disease course"@en ,
"this fragility is realized in this shattering"@en ,
"this investigator role is realized in this investigation"@en ;
obo:IAO_0000118 "is realized by"@en ,
"realized_in"@en ;
obo:IAO_0000600 "[copied from inverse property 'realizes'] to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"@en ;
rdfs:comment "Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process" ;
rdfs:isDefinedBy obo:bfo.owl ;
rdfs:label "realized in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/BFO_0000055
mro:BFO_0000055 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000017 ;
obo:IAO_0000111 "realizes"@en ;
obo:IAO_0000112 "this disease course realizes this disease"@en ,
"this investigation realizes this investigator role"@en ,
"this shattering realizes this fragility"@en ;
obo:IAO_0000600 "to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"@en ;
rdfs:comment "Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process" ;
rdfs:isDefinedBy obo:iao.owl ;
rdfs:label "realizes"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/BFO_0000066
mro:BFO_0000066 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:BFO_0000067 ;
rdfs:domain obo:BFO_0000003 ;
rdfs:range obo:BFO_0000004 ;
owl:propertyChainAxiom ( mro:BFO_0000050
mro:BFO_0000066
) ,
( mro:BFO_0000066
mro:BFO_0000050
) ;
obo:IAO_0000111 "occurs in"@en ;
obo:IAO_0000115 "b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t"@en ;
obo:IAO_0000118 "occurs_in"@en ,
"unfolds in"@en ,
"unfolds_in"@en ;
rdfs:comment "Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant" ;
rdfs:isDefinedBy obo:bfo.owl ;
rdfs:label "occurs in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/BFO_0000067
mro:BFO_0000067 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
obo:IAO_0000111 "site of"@en ;
obo:IAO_0000115 "[copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t"@en ;
rdfs:comment "Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant" ;
rdfs:isDefinedBy obo:bfo.owl ;
rdfs:label "contains process"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000052
mro:RO_0000052 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:RO_0000053 ;
obo:IAO_0000111 "inheres in"@en ;
obo:IAO_0000112 "this fragility inheres in this vase"@en ,
"this red color inheres in this apple"@en ;
obo:IAO_0000115 "a relation between a specifically dependent continuant (the dependent) and an independent continuant (the bearer), in which the dependent specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A dependent inheres in its bearer at all times for which the dependent exists."@en ;
obo:IAO_0000118 "inheres_in"@en ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "inheres in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000053
mro:RO_0000053 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
rdfs:range obo:BFO_0000020 ;
obo:IAO_0000111 "bearer of"@en ;
obo:IAO_0000112 "this apple is bearer of this red color"@en ,
"this vase is bearer of this fragility"@en ;
obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a specifically dependent continuant (the dependent), in which the dependent specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist."@en ;
obo:IAO_0000118 "bearer_of"@en ,
"is bearer of"@en ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "bearer of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000056
mro:RO_0000056 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:RO_0000057 ;
rdfs:domain obo:BFO_0000002 ;
rdfs:range obo:BFO_0000003 ;
obo:IAO_0000111 "participates in"@en ;
obo:IAO_0000112 "this blood clot participates in this blood coagulation"@en ,
"this input material (or this output material) participates in this process"@en ,
"this investigator participates in this investigation"@en ;
obo:IAO_0000115 "a relation between a continuant and a process, in which the continuant is somehow involved in the process"@en ;
obo:IAO_0000118 "participates_in"@en ;
rdfs:label "participates in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000057
mro:RO_0000057 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
rdfs:domain obo:BFO_0000003 ;
rdfs:range obo:BFO_0000002 ;
owl:propertyChainAxiom ( mro:BFO_0000051
mro:BFO_0000055
mro:RO_0000052
) ,
( mro:BFO_0000051
mro:RO_0000057
) ;
obo:IAO_0000111 "has participant"@en ;
obo:IAO_0000112 "this blood coagulation has participant this blood clot"@en ,
"this investigation has participant this investigator"@en ,
"this process has participant this input material (or this output material)"@en ;
obo:IAO_0000115 "a relation between a process and a continuant, in which the continuant is somehow involved in the process"@en ;
obo:IAO_0000116 "Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time."@en ;
obo:IAO_0000118 "has_participant"@en ;
<http://purl.org/dc/elements/1.1/source> "http://www.obofoundry.org/ro/#OBO_REL:has_participant" ;
rdfs:label "has participant"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000058
mro:RO_0000058 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:RO_0000059 ;
rdfs:domain obo:BFO_0000031 ;
rdfs:range obo:BFO_0000020 ;
obo:IAO_0000112 "A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."@en ,
"An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."@en ;
obo:IAO_0000115 "A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants."@en ;
rdfs:label "is concretized as"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000059
mro:RO_0000059 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
rdfs:domain obo:BFO_0000020 ;
rdfs:range obo:BFO_0000031 ;
obo:IAO_0000112 "A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."@en ,
"An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."@en ;
obo:IAO_0000115 "A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant."@en ;
rdfs:label "concretizes"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000079
mro:RO_0000079 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000052 ;
owl:inverseOf mro:RO_0000085 ;
rdfs:domain obo:BFO_0000034 ;
obo:IAO_0000112 "this catalysis function is a function of this enzyme"@en ;
obo:IAO_0000115 "a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists."@en ;
obo:IAO_0000118 "function_of"@en ,
"is function of"@en ;
rdfs:label "function of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000080
mro:RO_0000080 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000052 ;
owl:inverseOf mro:RO_0000086 ;
obo:IAO_0000112 "this red color is a quality of this apple"@en ;
obo:IAO_0000115 "a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A quality inheres in its bearer at all times for which the quality exists."@en ;
obo:IAO_0000118 "is quality of"@en ,
"quality_of"@en ;
rdfs:label "quality of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000081
mro:RO_0000081 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000052 ;
owl:inverseOf mro:RO_0000087 ;
obo:IAO_0000112 "this investigator role is a role of this person"@en ;
obo:IAO_0000115 "a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists."@en ;
obo:IAO_0000118 "is role of"@en ,
"role_of"@en ;
rdfs:label "role of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000085
mro:RO_0000085 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000053 ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000034 ;
obo:IAO_0000112 "this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)"@en ;
obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists."@en ;
obo:IAO_0000118 "has_function"@en ;
rdfs:label "has function"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000086
mro:RO_0000086 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000053 ;
rdfs:range obo:BFO_0000019 ;
obo:IAO_0000112 "this apple has quality this red color"@en ;
obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."@en ;
obo:IAO_0000118 "has_quality"@en ;
rdfs:label "has quality"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000087
mro:RO_0000087 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000053 ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000023 ;
obo:IAO_0000112 "this person has role this investigator role (more colloquially: this person has this role of investigator)"@en ;
obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."@en ;
obo:IAO_0000118 "has_role"@en ;
rdfs:label "has role"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000091
mro:RO_0000091 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000053 ;
owl:inverseOf mro:RO_0000092 ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000016 ;
obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"@en ;
rdfs:label "has disposition"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0000092
mro:RO_0000092 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000052 ;
obo:IAO_0000115 "inverse of has disposition" ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> obo:RO_0002259 ;
rdfs:label "disposition of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0001000
mro:RO_0001000 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:RO_0001001 ;
obo:IAO_0000112 "this cell derives from this parent cell (cell division)"@en ,
"this nucleus derives from this parent nucleus (nuclear division)"@en ;
obo:IAO_0000114 obo:IAO_0000125 ;
obo:IAO_0000115 "a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"@en ;
obo:IAO_0000116 "This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops from'."@en ;
obo:IAO_0000118 "derives_from"@en ;
obo:IAO_0000232 "This relation is taken from the RO2005 version of RO. It may be obsoleted and replaced by relations with different definitions. See also the 'develops from' family of relations." ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> <http://purl.obolibrary.org/obo/ro/subsets#ro-eco> ;
rdfs:label "derives from"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0001001
mro:RO_0001001 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
obo:IAO_0000112 "this parent cell derives into this cell (cell division)"@en ,
"this parent nucleus derives into this nucleus (nuclear division)"@en ;
obo:IAO_0000114 obo:IAO_0000125 ;
obo:IAO_0000115 "a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"@en ;
obo:IAO_0000116 "This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops into'. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking 'derives from' rather than the forward-looking 'derives into'."@en ;
obo:IAO_0000118 "derives_into"@en ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> <http://purl.obolibrary.org/obo/ro/subsets#ro-eco> ;
rdfs:label "derives into"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0001015
mro:RO_0001015 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:RO_0001025 ;
rdf:type owl:TransitiveProperty ;
obo:IAO_0000111 "is location of"@en ;
obo:IAO_0000112 "my head is the location of my brain"@en ,
"this cage is the location of this rat"@en ;
obo:IAO_0000115 "a relation between two independent continuants, the location and the target, in which the target is entirely within the location"@en ;
obo:IAO_0000116 "Most location relations will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime"@en ;
obo:IAO_0000118 "location_of"@en ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "location of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0001018
mro:RO_0001018 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:RO_0001019 ;
rdfs:domain obo:BFO_0000040 ;
rdfs:range obo:BFO_0000004 ;
owl:propertyChainAxiom ( mro:RO_0001025
mro:BFO_0000050
) ;
obo:IAO_0000111 "contained in"@en ;
obo:IAO_0000116 "Containment is location not involving parthood, and arises only where some immaterial continuant is involved." ,
"Containment obtains in each case between material and immaterial continuants, for instance: lung contained_in thoracic cavity; bladder contained_in pelvic cavity. Hence containment is not a transitive relation. If c part_of c1 at t then we have also, by our definition and by the axioms of mereology applied to spatial regions, c located_in c1 at t. Thus, many examples of instance-level location relations for continuants are in fact cases of instance-level parthood. For material continuants location and parthood coincide. Containment is location not involving parthood, and arises only where some immaterial continuant is involved. To understand this relation, we first define overlap for continuants as follows: c1 overlap c2 at t =def for some c, c part_of c1 at t and c part_of c2 at t. The containment relation on the instance level can then be defined (see definition):"@en ,
"""Intended meaning:
domain: material entity
range: spatial region or site (immaterial continuant)
"""@en ;
obo:IAO_0000118 "contained_in"@en ;
obo:RO_0001900 obo:RO_0001901 ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> <http://purl.obolibrary.org/obo/ro/subsets#ro-eco> ;
rdfs:label "contained in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0001019
mro:RO_0001019 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
obo:IAO_0000111 "contains"@en ;
obo:RO_0001900 obo:RO_0001901 ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> <http://purl.obolibrary.org/obo/ro/subsets#ro-eco> ;
rdfs:label "contains"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0001025
mro:RO_0001025 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
rdf:type owl:TransitiveProperty ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000004 ;
owl:propertyChainAxiom ( mro:RO_0001025
mro:BFO_0000050
) ;
obo:IAO_0000111 "located in"@en ;
obo:IAO_0000112 "my brain is located in my head"@en ,
"this rat is located in this cage"@en ;
obo:IAO_0000115 "a relation between two independent continuants, the target and the location, in which the target is entirely within the location"@en ;
obo:IAO_0000116 "Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus"@en ,
"Most location relations will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime"@en ;
obo:IAO_0000118 "located_in"@en ;
obo:RO_0001900 obo:RO_0001901 ;
<http://purl.org/dc/elements/1.1/source> "http://www.obofoundry.org/ro/#OBO_REL:located_in" ;
rdfs:label "located in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0002000
mro:RO_0002000 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:RO_0002002 ;
obo:IAO_0000112 "the surface of my skin is a 2D boundary of my body"@en ;
obo:IAO_0000115 "a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"@en ;
obo:IAO_0000116 "A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."@en ,
"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."@en ;
obo:IAO_0000118 "2D_boundary_of"@en ,
"boundary of"@en ,
"is 2D boundary of"@en ,
"is boundary of"@en ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "2D boundary of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0002002
mro:RO_0002002 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
rdfs:domain obo:BFO_0000040 ;
rdfs:range obo:BFO_0000141 ;
obo:IAO_0000112 "my body has 2D boundary the surface of my skin"@en ;
obo:IAO_0000115 "a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"@en ;
obo:IAO_0000116 "A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."@en ,
"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."@en ;
obo:IAO_0000117 "David Osumi-Sutherland" ;
obo:IAO_0000118 "has boundary"@en ,
"has_2D_boundary"@en ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "has 2D boundary"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0002350
mro:RO_0002350 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:BFO_0000050 ;
owl:inverseOf mro:RO_0002351 ;
obo:IAO_0000112 "An organism that is a member of a population of organisms" ;
obo:IAO_0000115 "is member of is a mereological relation between a item and a collection." ;
obo:IAO_0000118 "is member of" ,
"member part of" ;
obo:IAO_0000119 "SIO" ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "member of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0002351
mro:RO_0002351 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:BFO_0000051 ;
rdf:type owl:IrreflexiveProperty ;
obo:IAO_0000115 "has member is a mereological relation between a collection and an item." ;
obo:IAO_0000119 "SIO" ;
obo:RO_0001900 obo:RO_0001901 ;
rdfs:label "has member"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0010001
mro:RO_0010001 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:RO_0010002 ;
rdfs:domain obo:BFO_0000031 ;
rdfs:range obo:BFO_0000004 ;
owl:propertyChainAxiom ( mro:RO_0000052
mro:RO_0000058
) ;
obo:IAO_0000112 "Genetic information generically depend on molecules of DNA." ,
"The novel *War and Peace* generically depends on this copy of the novel." ,
"The pattern shared by chess boards generically depends on any chess board." ,
"The score of a symphony g-depends on a copy of the score." ,
"This pdf file generically depends on this server." ;
obo:IAO_0000115 "A generically dependent continuant *b* generically depends on an independent continuant *c* at time *t* means: there inheres in *c* a specifically deendent continuant which concretizes *b* at *t*." ;
obo:IAO_0000119 "[072-ISO]" ;
<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> "g-depends on" ;
rdfs:label "generically depends on" .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/RO_0010002
mro:RO_0010002 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000031 ;
owl:propertyChainAxiom ( mro:RO_0000059
mro:RO_0000053
) ;
obo:IAO_0000112 "Molecules of DNA are carriers of genetic information." ,
"This copy of *War and Peace* is carrier of the novel written by Tolstoy." ,
"This hard drive is carrier of these data items." ;
obo:IAO_0000115 "*b* is carrier of *c* at time *t* if and only if *c* *g-depends on* *b* at *t*" ;
obo:IAO_0000119 "[072-ISO]" ;
rdfs:label "is carrier of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/accessory_in
mro:accessory_in rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000056 ;
owl:inverseOf mro:has_accessory ;
rdfs:domain obo:BFO_0000040 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "y is_accessory_in x iff x is an instance of Process and y is an instance of Agent, such that y assists another agent in the commission of x, and y was not located at the location of x when x occurred, and y was not an agent_in x."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Accessory_(legal_term)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "accessory in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/accomplice_in
mro:accomplice_in rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000056 ;
owl:inverseOf mro:has_accomplice ;
rdfs:domain obo:BFO_0000040 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "An agent a1 is accomplice_in some Processual Entity p1 iff a1 assists in the commission of p1, is located at the location of p1, but is not agent_in p1."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Accomplice" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "accomplice in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/affects
mro:affects rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000057 ;
owl:inverseOf mro:is_affected_by ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000002 ;
cco:definition "p affects c iff p is an instance of a Process and c is an instance of a Continuant, such that p influences c in some manner, most often by producing a change in c."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "affects"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/agent_in
mro:agent_in rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000056 ;
owl:inverseOf mro:has_agent ;
cco:definition "x agent_in y iff y is an instance of Process and x is an instance of Agent, such that x is causally active in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "agent in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/aggregate_bearer_of
mro:aggregate_bearer_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:inheres_in_aggregate ;
rdfs:domain obo:BFO_0000027 ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( obo:BFO_0000020
obo:BFO_0000031
)
] ;
cco:definition "x aggregate_bearer_of y iff x is an instance of Object Aggregate and y is an instance of Specifically Dependent Continuant and z is an instance of Object, such that z bearer of y, and all other members of x are bearers of a unique instance of the same type as y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "aggregate bearer of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/aggregate_has_capability
mro:aggregate_has_capability rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:aggregate_bearer_of ;
owl:inverseOf mro:capability_of_aggregate ;
rdfs:domain cco:GroupOfAgents ;
rdfs:range cco:AgentCapability ;
cco:definition "x aggregate_has_capability y iff x is an instance of Object Aggregate and y is an instance of Agent Capability, such that x is aggregate bearer of y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "aggregate has capability"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/aggregate_has_disposition
mro:aggregate_has_disposition rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:aggregate_bearer_of ;
owl:inverseOf mro:disposition_of_aggregate ;
rdfs:domain obo:BFO_0000027 ;
rdfs:range obo:BFO_0000016 ;
cco:definition "x aggregate_has_disposition y iff x is an instance of Object Aggregate and y is an instance of Disposition, such that x aggregate_bearer_of y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "aggregate has disposition"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/aggregate_has_quality
mro:aggregate_has_quality rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:aggregate_bearer_of ;
rdfs:domain obo:BFO_0000027 ;
rdfs:range obo:BFO_0000019 ;
cco:definition "x aggregate_has_quality y iff x is an instance of Object Aggregate and y is an instance of Quality, such that x aggregate_bearer_of y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "aggregate has quality"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/aggregate_has_role
mro:aggregate_has_role rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:aggregate_bearer_of ;
rdfs:domain obo:BFO_0000027 ;
rdfs:range obo:BFO_0000023 ;
cco:definition "x aggregate_has_role y iff x is an instance of Object Aggregate and y is an instance of Role, such that x aggregate_bearer_of y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "aggregate has role"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/capability_of
mro:capability_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000052 ;
owl:inverseOf mro:has_capability ;
rdfs:domain cco:AgentCapability ;
rdfs:range cco:Agent ;
cco:definition "x capability_of y iff y is an instance of Agent and x is an instance of Agent Capability, such that x inheres in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "capability of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/capability_of_aggregate
mro:capability_of_aggregate rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:inheres_in_aggregate ;
rdfs:domain cco:AgentCapability ;
rdfs:range cco:GroupOfAgents ;
cco:definition "x capability_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Agent Capability, such that x inheres in aggregate y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "capability of aggregate"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/caused_by
mro:caused_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:is_cause_of ;
rdfs:domain obo:BFO_0000003 ;
rdfs:range obo:BFO_0000003 ;
cco:definition "x caused_by y iff x and y are instances of occurrents, and x is a consequence of y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "caused by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/coincides_with
mro:coincides_with rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:connected_with ;
rdf:type owl:SymmetricProperty ,
owl:TransitiveProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 coincides with some immaterial entity im2 iff im1 is a spatial part of im2 and im2 is a spatial part of im1."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "coincides with"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/condition_described_by
mro:condition_described_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:describes_condition ;
owl:propertyChainAxiom ( mro:described_by
mro:BFO_0000050
) ;
cco:definition "c condition_described_by p iff p is an instance of a Performance Specification, and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "condition described by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/connected_with
mro:connected_with rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
rdf:type owl:SymmetricProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 is connected with some immaterial entity im2 iff there exists some immaterial entity im3 that is common to both im1 and im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "connected with"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/delimits
mro:delimits rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:is_delimited_by ;
rdf:type owl:FunctionalProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain cco:GeopoliticalEntity ;
rdfs:range cco:Organization ;
cco:definition "An instance of Geopolitical Entity gpe1 delimits some Organization o1 iff gpe1 is the area within which o1 can legally operate."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Delimitation" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "delimits"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/described_by
mro:described_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_subject_of ;
owl:inverseOf mro:describes ;
rdfs:range cco:DescriptiveInformationContentEntity ;
cco:definition "x described_by y iff y is an instance of Information Content Entity, and x is an instance of Entity, such that y is about the characteristics by which y can be recognized or visualized."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "described by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/describes
mro:describes rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_about ;
rdfs:domain cco:DescriptiveInformationContentEntity ;
cco:definition "x describes y iff x is an instance of Information Content Entity, and y is an instance of Entity, such that x is about the characteristics by which y can be recognized or visualized."@en ;
cco:example_of_usage "the content of a newspaper article describes some current event" ,
"the content of a visitor's log describes some facility visit" ,
"the content of an accident report describes some accident" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:comment "It is possible that this relation should be a functional property, that is for all x, y, z if x describes y and x describes z then y = z. For example, if a financial report x describes the quarterly results of a company y and that same financial report describes the quarterly results of a company z, then it should be inferred that companies y and z are the same. We refrained from classifying the relation as a functional property on the concern that descriptions are multifaceted and so consequently it may be that the same report would contain descriptions of multiple entities."@en ;
rdfs:label "describes"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/describes_condition
mro:describes_condition rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:propertyChainAxiom ( mro:BFO_0000051
mro:describes
) ;
cco:definition "p describes_condition c iff p is an instance of a Performance Specification, and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "describes condition"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/designated_by
mro:designated_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_subject_of ;
owl:inverseOf mro:designates ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:range cco:DesignativeInformationContentEntity ;
cco:definition "x designated_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that given some context, y uniquely distinguishes x from other entities."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "designated by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/designates
mro:designates rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_about ;
rdf:type owl:FunctionalProperty ;
rdfs:domain cco:DesignativeInformationContentEntity ;
cco:definition "x designates y iff x is an instance of an Information Content Entity, and y is an instance of an Entity, such that given some context, x uniquely distinguishes y from other entities."@en ;
cco:example_of_usage "a URL designates the location of a Web Page on the internet" ,
"a person's name designates that person" ,
"a vehicle identification number designates some vehicle" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "designates"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/disconnected_with
mro:disconnected_with rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
rdf:type owl:SymmetricProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 is disconnected with some immaterial entity im2 iff there does not exist some immaterial entity im3 that is common to both im1 and im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "disconnected with"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/disposition_of_aggregate
mro:disposition_of_aggregate rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:inheres_in_aggregate ;
rdfs:domain obo:BFO_0000016 ;
rdfs:range obo:BFO_0000027 ;
cco:definition "x disposition_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Disposition, such that x disposition_of_aggregate y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "disposition of aggregate"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/externally_connects_with
mro:externally_connects_with rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:connected_with ;
rdf:type owl:SymmetricProperty ;
rdfs:domain obo:BFO_0000141 ;
rdfs:range obo:BFO_0000141 ;
cco:definition "An immaterial entity im1 externally connects with some immaterial entity im2 iff im1 connects with im2 and im1 does not overlap with im2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "externally connects with"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_accessory
mro:has_accessory rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000057 ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000040 ;
cco:definition "x has_accessory y iff x is an instance of Process and y is an instance of Agent, such that y assists another agent in the commission of x, and y was not located at the location of x when x occurred, and y was not an agent_in x."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Accessory_(legal_term)" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has accessory"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_accomplice
mro:has_accomplice rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000057 ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000040 ;
cco:definition "An Processual Entity p1 has_accomplice some agent a1 iff a1 assists in the commission of p1, is located at the location of p1, but is not agent_in p1."@en ;
cco:definition_source "http://en.wikipedia.org/wiki/Accomplice" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has accomplice"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_affiliate
mro:has_affiliate rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:is_affiliated_with ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( cco:Agent
cco:Organization
cco:Person
)
] ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( cco:Agent
cco:Organization
cco:Person
)
] ;
cco:definition "x is_affiliated_with y iff x and y are instances of Agent, such that they have any kind of social or business relationship."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has affiliate"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_agent
mro:has_agent rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000057 ;
cco:definition "x has_agent y iff x is an instance of Process and y is an instance of Agent, such that y is causally active in x."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has agent"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_aunt
mro:has_aunt rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:has_familial_relationship_to ;
owl:inverseOf mro:is_aunt_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has aunt"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_brother
mro:has_brother rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_sibling_of ;
owl:inverseOf mro:is_brother_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has brother"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_brother_in_law
mro:has_brother_in_law rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_in_law_of ;
owl:inverseOf mro:is_brother_in_law_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has brother in law"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_capability
mro:has_capability rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000053 ;
rdfs:domain cco:Agent ;
rdfs:range cco:AgentCapability ;
cco:definition "x has_capability y iff x is an instance of Agent and y is an instance of Agent Capability, such that x bearer of y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has capability"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_daughter
mro:has_daughter rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_parent_of ;
owl:inverseOf mro:is_daughter_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has daughter"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_daughter_in_law
mro:has_daughter_in_law rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_in_law_of ;
owl:inverseOf mro:is_daughter_in_law_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has daughter in law"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_ending_instant
mro:has_ending_instant rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:is_ending_instant_of ;
rdf:type owl:FunctionalProperty ;
rdfs:domain obo:BFO_0000038 ;
rdfs:range obo:BFO_0000148 ;
cco:definition "For Temporal Interval t1 and Temporal Instant t2, t1 has ending instant t2 if and only if no Temporal Instant t3 that is part of t1 is after t2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has ending instant"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_familial_relationship_to
mro:has_familial_relationship_to rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
rdfs:domain cco:Person ;
rdfs:range cco:Person ;
cco:definition "A relationship between persons by virtue of ancestry or legal union."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has familial relationship to"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_father
mro:has_father rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_child_of ;
owl:inverseOf mro:is_father_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has father"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_father_in_law
mro:has_father_in_law rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_in_law_of ;
owl:inverseOf mro:is_father_in_law_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has father in law"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_granddaughter
mro:has_granddaughter rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_grandparent_of ;
owl:inverseOf mro:is_granddaughter_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has granddaughter"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_grandfather
mro:has_grandfather rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_grandchild_of ;
owl:inverseOf mro:is_grandfather_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has grandfather"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_grandmother
mro:has_grandmother rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_grandchild_of ;
owl:inverseOf mro:is_grandmother_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has grandmother"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_grandson
mro:has_grandson rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_grandparent_of ;
owl:inverseOf mro:is_grandson_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has grandson"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_half_brother
mro:has_half_brother rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_half_sibling_of ;
owl:inverseOf mro:is_half_brother_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has half brother"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_half_sister
mro:has_half_sister rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_half_sibling_of ;
owl:inverseOf mro:is_half_sister_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has half sister"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_husband
mro:has_husband rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:is_spouse_of ;
owl:inverseOf mro:is_husband_of ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has husband"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_input
mro:has_input rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:RO_0000057 ;
owl:inverseOf mro:is_input_of ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000002 ;
cco:definition "y has_input x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the begining of y is a necessary condition for the start of y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has input"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_inside_instant
mro:has_inside_instant rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf mro:ModalObjectProperty ;
owl:inverseOf mro:is_inside_instant_of ;
rdfs:domain obo:BFO_0000038 ;
rdfs:range obo:BFO_0000148 ;
cco:definition "For Temporal Interval t1 and Temporal Instant t2, t1 has inside instant t2 if and only if there exists Temporal Instants t3 and t4 that are part of t1 and non-identical with t2, such that t3 is before t2 and t4 is after t2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ModalRelationOntology" ;
rdfs:label "has inside instant"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ModalRelationOntology/has_inside_interval