-
Notifications
You must be signed in to change notification settings - Fork 1
/
ExtendedRelationOntology.ttl
594 lines (468 loc) · 41.1 KB
/
ExtendedRelationOntology.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
@prefix : <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology#> .
@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/ExtendedRelationOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2021-03-01/ExtendedRelationOntology> ;
owl:imports obo:bfo.owl ,
<http://www.ontologyrepository.com/CommonCoreOntologies/Upper/ROImport> ;
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 many of the relations (i.e. object properties) that hold between entities at the level of the mid-level Common Core Ontologies."@en ;
rdfs:label "Extended Relation Ontology"@en ;
owl:versionInfo "Version 1.3"@en .
#################################################################
# Annotation properties
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/acronym
cco:acronym rdf:type owl:AnnotationProperty ;
cco:definition "An Alternative Label that consists of a shortened or abbreviated form of the rdfs:label and is used to denote the entity."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "acronym"@en ;
rdfs:subPropertyOf cco:alternative_label .
### http://www.ontologyrepository.com/CommonCoreOntologies/alternative_label
cco:alternative_label rdf:type owl:AnnotationProperty ;
cco:definition "A term or phrase that may be used in place of the stated rdfs:label to denote the entity in question."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "alternative label"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/code_license
cco:code_license rdf:type owl:AnnotationProperty ;
cco:definition "The name and description of the license under which the .owl file is released."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "code license"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/content_license
cco:content_license rdf:type owl:AnnotationProperty ;
cco:definition "The name and description of the license under which the ideas, concepts and other informational content expressed in the .owl file are released."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "content license"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/copyright
cco:copyright rdf:type owl:AnnotationProperty ;
cco:definition "An assertion of copyright"@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "copyright"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/definition
cco:definition rdf:type owl:AnnotationProperty ;
cco:definition "A natural language explication of the meaning of the term."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "definition"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/definition_source
cco:definition_source rdf:type owl:AnnotationProperty ;
cco:definition "A citation of where all or some of the information used to create the term's Definition was acquired from."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "definition source"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/designator_annotation
cco:designator_annotation rdf:type owl:AnnotationProperty ;
cco:definition "A name or other identifier that is used to designate an individual."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "designator annotation"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/doctrinal_acronym
cco:doctrinal_acronym rdf:type owl:AnnotationProperty ;
cco:definition "An Acronym that is used by a Doctrinal Source to denote the entity."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "doctrinal acronym"@en ;
rdfs:subPropertyOf cco:acronym .
### http://www.ontologyrepository.com/CommonCoreOntologies/doctrinal_definition
cco:doctrinal_definition rdf:type owl:AnnotationProperty ;
cco:definition "A Definition that is taken directly from a Doctrinal Source."@en ;
cco:elucidation "There is only one definition for any given term in an ontology; however, a Doctrinal Definition may be provided in addition to the asserted Definition if the preservation of this information is important. When both a Definition and a Doctrinal Definition are provided for a term, the Definition takes precedence."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "doctrinal definition"@en ;
rdfs:subPropertyOf cco:definition .
### http://www.ontologyrepository.com/CommonCoreOntologies/doctrinal_label
cco:doctrinal_label rdf:type owl:AnnotationProperty ;
cco:definition "An Alternative Label that consists of the preferred term or phrase used by a Doctrinal Source to denote the entity."@en ;
cco:elucidation "When the cco:doctrinal_label is identical to the rdfs:label, the cco:doctrinal_label annotation is superfluous. As a subclass of 'alternative label', 'doctrinal label' is intended to be used to provide additional information about the entity when its preferred doctrinal designator is ambiguous or otherwise inappropriate for use as the rdfs:label."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "doctrinal label"@en ;
rdfs:subPropertyOf cco:alternative_label .
### http://www.ontologyrepository.com/CommonCoreOntologies/doctrinal_source
cco:doctrinal_source rdf:type owl:AnnotationProperty ;
cco:definition "A Definition Source that consists of a formalized doctrine in which the term is authoritatively defined."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "doctrinal source"@en ;
rdfs:subPropertyOf cco:definition_source .
### http://www.ontologyrepository.com/CommonCoreOntologies/elucidation
cco:elucidation rdf:type owl:AnnotationProperty ;
cco:definition "A clarification or further explanation of a term beyond what is included in the Definition or which is used when the term is primitive such that no non-circular definition can be given for it."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "elucidation"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/example_of_usage
cco:example_of_usage rdf:type owl:AnnotationProperty ;
cco:definition "A phrase, sentence or set of terms intended to convey the conventional usage of the term."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "example of usage"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_token_unit
cco:has_token_unit rdf:type owl:AnnotationProperty ;
cco:definition "A relation between an information content entity and a widely used measurement unit of the token used to express it."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "has token unit"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/http_query_string
cco:http_query_string rdf:type owl:AnnotationProperty ;
cco:definition "The text of an HTTP request that can be sent to a SPARQL Protocol service."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "http query string"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/interval_measurement_annotation
cco:interval_measurement_annotation rdf:type owl:AnnotationProperty ;
cco:definition "A interval measurement value of an instance of a quality, realizable or process profile "@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "interval measurement annotation"@en ;
rdfs:subPropertyOf cco:measurement_annotation .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_curated_in_ontology
cco:is_curated_in_ontology rdf:type owl:AnnotationProperty ;
cco:definition "An annotation property that links a class, property, or named individual to the URI of the ontology where it is located."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is curated in ontology"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_tokenized_by
cco:is_tokenized_by rdf:type owl:AnnotationProperty ;
cco:definition "A relation between an information content entity and a widely used token used to express it."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is tokenized by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/measurement_annotation
cco:measurement_annotation rdf:type owl:AnnotationProperty ;
cco:definition "A measurement value of an instance of a quality, reazlizable or process profile"@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "measurement annotation"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/nominal_measurement_annotation
cco:nominal_measurement_annotation rdf:type owl:AnnotationProperty ;
cco:definition "A nominal measurement value of an instance of a quality, realizable or process profile"@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "nominal measurement annotation"@en ;
rdfs:subPropertyOf cco:measurement_annotation .
### http://www.ontologyrepository.com/CommonCoreOntologies/ordinal_measurement_annotation
cco:ordinal_measurement_annotation rdf:type owl:AnnotationProperty ;
cco:definition "An ordinal measurement value of an instance of a quality, realizable or process profile"@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "ordinal measurement annotation"@en ;
rdfs:subPropertyOf cco:measurement_annotation .
### http://www.ontologyrepository.com/CommonCoreOntologies/query_text
cco:query_text rdf:type owl:AnnotationProperty ;
cco:definition "The text of a query that is associated with a class"@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "query text"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ratio_measurement_annotation
cco:ratio_measurement_annotation rdf:type owl:AnnotationProperty ;
cco:definition "A ratio measurement value of an instance of a quality, realizable or process profile"@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "ratio measurement annotation"@en ;
rdfs:subPropertyOf cco:measurement_annotation .
### http://www.ontologyrepository.com/CommonCoreOntologies/term_creator
cco:term_creator rdf:type owl:AnnotationProperty ;
cco:definition "The name of the Term Editor who added the term to the ontology."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "term creator"@en ;
rdfs:subPropertyOf cco:term_editor .
### http://www.ontologyrepository.com/CommonCoreOntologies/term_editor
cco:term_editor rdf:type owl:AnnotationProperty ;
cco:definition "The name of a person who contributed to the development or enhancement of the term."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "term editor"@en .
#################################################################
# Object Properties
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/accessory_in
cco:accessory_in rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
owl:inverseOf cco: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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "accessory in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/accomplice_in
cco:accomplice_in rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
owl:inverseOf cco: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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "accomplice in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/affects
cco:affects rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
owl:inverseOf cco: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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "affects"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/aggregate_bearer_of
cco:aggregate_bearer_of rdf:type owl:ObjectProperty ;
owl:inverseOf cco: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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "aggregate bearer of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/aggregate_has_disposition
cco:aggregate_has_disposition rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:aggregate_bearer_of ;
owl:inverseOf cco: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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "aggregate has disposition"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/aggregate_has_quality
cco:aggregate_has_quality rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco: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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "aggregate has quality"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/aggregate_has_role
cco:aggregate_has_role rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco: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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "aggregate has role"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/caused_by
cco:caused_by rdf:type owl:ObjectProperty ;
owl:inverseOf cco: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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "caused by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/disposition_of_aggregate
cco:disposition_of_aggregate rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco: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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "disposition of aggregate"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_accessory
cco:has_accessory rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo: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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "has accessory"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_accomplice
cco:has_accomplice rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo: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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "has accomplice"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_input
cco:has_input rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
owl:inverseOf cco: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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "has input"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_member_of_located_in
cco:has_member_of_located_in rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000027 ;
rdfs:range obo:BFO_0000040 ;
cco:definition "An instance of an Object Aggregate 'has member of located in' an instance of some material entity if and only if every member of that Aggregate is located in the same instance of that material entity."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "has member of located in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_object
cco:has_object rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
owl:inverseOf cco:is_object_of ;
cco:definition "If p is a process and c is a continuant, then p has object c if and only if the c is part of the projected state that the agent intends to achieve by performing p."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "has object"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_output
cco:has_output rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
owl:inverseOf cco:is_output_of ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000002 ;
cco:definition "y has_output x iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y."@en ;
cco:definition_source "https://en.wikipedia.org/wiki/IPO_model" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "has output"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_process_part
cco:has_process_part rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000051 ;
owl:inverseOf cco:is_part_of_process ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x has_process_part y iff x and y are instances of Process, such that y occurs during the temporal interval of x, and y either provides an input to x or receives an output of x, or both."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "has process part"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/inheres_in_aggregate
cco:inheres_in_aggregate rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( obo:BFO_0000020
obo:BFO_0000031
)
] ;
rdfs:range obo:BFO_0000027 ;
cco:definition "x inheres_in_aggregate y iff x is an instance of Specifically Dependent Continuant and y is an instance of Object Aggregate and z is an instance of Object, such that z bearer_of x, and all other members of y are bearers of a unique instance of the same type as x."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "inheres in aggregate"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_affected_by
cco:is_affected_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
rdfs:domain obo:BFO_0000002 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "c is_affected_by p 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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is affected by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_cause_of
cco:is_cause_of rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000003 ;
rdfs:range obo:BFO_0000003 ;
cco:definition "x is_cause_of y iff x and y are instances of occurrents, and y is a consequence of x."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is cause of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_input_of
cco:is_input_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
rdfs:domain obo:BFO_0000002 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x is_input_of y 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/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is input of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_made_of
cco:is_made_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf cco:is_material_of ;
rdfs:domain obo:BFO_0000030 ;
rdfs:range obo:BFO_0000030 ;
cco:definition "An object o is made of an object m when m is the material that o consists of and that material does not undergo a change of kind during the creation of o"@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is made of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_material_of
cco:is_material_of rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000030 ;
rdfs:range obo:BFO_0000030 ;
cco:definition "An object m is material of an object o when m is the material of which o consists and that material does not undergo a change of kind during the creation of o"@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is material of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_object_of
cco:is_object_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
cco:definition "If p is a process and c is a continuant, then c is object of p if and only if the c is part of the projected state that the agent intends to achieve by performing p."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is object of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_output_of
cco:is_output_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000056 ;
rdfs:domain obo:BFO_0000002 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x is_output_of y iff x is an instance of Continuant and y is an instance of Process, such that the presence of x at the end of y is a necessary condition for the completion of y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is output of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_part_of_process
cco:is_part_of_process rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000050 ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x is_part_of_process y iff x and y are instances of Process, such that x occurs during the temporal interval of y, and x either provides an input to y or receives an output of y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is part of process"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_predecessor_of
cco:is_predecessor_of rdf:type owl:ObjectProperty ;
owl:inverseOf cco:is_successor_of ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000004 ;
cco:definition "A continuant c1 is a predecessor of some continuant c2 iff there is some process p1 and c1 is an input to p1 and c2 is an output of p1."@en ;
cco:elucidation "More informally, c1 is a predecessor of c2 iff c1 has been followed or replaced by c2."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is predecessor of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_site_of
cco:is_site_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000067 ;
owl:inverseOf cco:occurs_at ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( obo:BFO_0000006
obo:BFO_0000029
)
] ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x is_site_of y iff x is an instance of Site and y is an instance of Process, such that y occurs in x."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is site of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_successor_of
cco:is_successor_of rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000004 ;
rdfs:range obo:BFO_0000004 ;
cco:definition "A continuant c2 is a successor of some continuant c1 iff there is some process p1 and c1 is an input to p1 and c2 is an output of p1. Inverse of is predecessor. "@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is successor of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_temporal_region_of
cco:is_temporal_region_of rdf:type owl:ObjectProperty ;
owl:inverseOf cco:occurs_on ;
rdfs:domain obo:BFO_0000008 ;
rdfs:range obo:BFO_0000015 ;
cco:definition "x is_temporal_region_of y iff y is an instance of a process or process boundary and x is an instance of a temporal region, such that the duration of x temporally projects on y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "is temporal region of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/occurs_at
cco:occurs_at rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000066 ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( obo:BFO_0000006
obo:BFO_0000029
)
] ;
cco:definition "x occurs_at y iff x is an instance of Process and y is an instance of Site, such that x occurs in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "occurs at"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/occurs_on
cco:occurs_on rdf:type owl:ObjectProperty ;
rdfs:domain obo:BFO_0000015 ;
rdfs:range obo:BFO_0000008 ;
cco:definition "x occurs_on y iff x is an instance of a process or process boundary and y is an instance of a temporal region, such that the duration of x temporally projects on y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "occurs on"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/process_started_by
cco:process_started_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:caused_by ;
owl:inverseOf cco:process_starts ;
cco:definition "x process_started_by y iff x and y are instances of processes, and x is caused_by y, and i is an instance of a temporal instant, and r is an instant of a temporal interval, and x has starting instance i, and y occurs on r, and r interval contains i."@en ;
cco:elucidation "A process x is started by another process y when y causes x while y is still occurring."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "process started by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/process_starts
cco:process_starts rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_cause_of ;
cco:definition "x process_starts y iff x and y are instances of processes, and x is_cause_of y, and i is an instance of a temporal instant, and r is an instant of a temporal interval, and y has starting instance i, and x occurs on r, and r interval contains i."@en ;
cco:elucidation "A process x starts another process y when x causes y while x is still occurring."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "process starts"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/quality_of_aggregate
cco:quality_of_aggregate rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:inheres_in_aggregate ;
rdfs:domain obo:BFO_0000019 ;
rdfs:range obo:BFO_0000027 ;
cco:definition "x quality_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Quality, such that x disposition_of_aggregate y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "quality of aggregate"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/role_of_aggregate
cco:role_of_aggregate rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:inheres_in_aggregate ;
rdfs:domain obo:BFO_0000023 ;
rdfs:range obo:BFO_0000027 ;
cco:definition "x role_of_aggregate y iff y is an instance of Object Aggregate and x is an instance of Role, such that x disposition_of_aggregate y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/ExtendedRelationOntology"^^xsd:anyURI ;
rdfs:label "role of aggregate"@en .
### Generated by the OWL API (version 4.5.6) https://github.com/owlcs/owlapi