forked from FWU-DE/lehrplan-ontologie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlp-simple.owl
More file actions
1214 lines (723 loc) · 61.9 KB
/
Copy pathlp-simple.owl
File metadata and controls
1214 lines (723 loc) · 61.9 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
<?xml version="1.0"?>
<rdf:RDF xmlns="https://w3id.org/lehrplan/ontology/"
xml:base="https://w3id.org/lehrplan/ontology/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:gnd="https://d-nb.info/standards/elementset/gnd#"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#"
xmlns:ontology="https://w3id.org/lehrplan/ontology/">
<owl:Ontology rdf:about="https://w3id.org/lehrplan/ontology/">
<owl:versionIRI rdf:resource="https://w3id.org/lehrplan/ontology/1.0.0-8"/>
<terms:bibliographicCitation>Lehrplan Ontology. Version 1.0.0-8, https://w3id.org/lehrplan/ontology</terms:bibliographicCitation>
<terms:created>2025-12-08</terms:created>
<terms:creator rdf:resource="https://orcid.org/0000-0001-6378-2618"/>
<terms:creator rdf:resource="https://orcid.org/0000-0001-7192-7143"/>
<terms:creator xml:lang="de">Almut Steinlein</terms:creator>
<terms:creator xml:lang="de">Cindy Bloes</terms:creator>
<terms:creator xml:lang="de">Johann Bergh</terms:creator>
<terms:creator xml:lang="de">Laura Junghanns</terms:creator>
<terms:description xml:lang="de">Diese Ontologie ist eine formale Repräsentation, die die grundlegenden Konzepte und ihre Beziehungen zueinander im Bereich der Lehrplangestaltung und -umsetzung im deutschen Schulsystem erfasst.</terms:description>
<terms:description xml:lang="en">This ontology is a formal representation that captures the fundamental concepts and their relationships to one another in the field of curriculum design and implementation of the German school system.</terms:description>
<terms:license rdf:resource="https://creativecommons.org/licenses/by-sa/4.0/"/>
<terms:title xml:lang="en">Curriculum Ontology</terms:title>
<terms:title xml:lang="de">Lehrplan Ontologie</terms:title>
<owl:versionInfo>1.0.0-8</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://protege.stanford.edu/plugins/owl/protege#defaultLanguage -->
<owl:AnnotationProperty rdf:about="http://protege.stanford.edu/plugins/owl/protege#defaultLanguage"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000179 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000179"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000180 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000180"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000111 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000114 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000116 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000117 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000233 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000233"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000234 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000234"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000600 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000600"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000601 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000601"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000602 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000602"/>
<!-- http://purl.obolibrary.org/obo/IAO_0010000 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0010000"/>
<!-- http://purl.org/dc/elements/1.1/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/contributor"/>
<!-- http://purl.org/dc/elements/1.1/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
<!-- http://purl.org/dc/elements/1.1/identifier -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/identifier"/>
<!-- http://purl.org/dc/elements/1.1/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/license"/>
<!-- http://purl.org/dc/elements/1.1/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/source"/>
<!-- http://purl.org/dc/elements/1.1/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
<!-- http://purl.org/dc/terms/bibliographicCitation -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/bibliographicCitation"/>
<!-- http://purl.org/dc/terms/created -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/created">
<rdfs:label>created</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/creator">
<rdfs:label>creator</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description">
<rdfs:label>description</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/identifier -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/identifier"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/dc/terms/subject -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/subject">
<rdfs:label>subject</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title">
<rdfs:label>title</rdfs:label>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
<!-- http://www.w3.org/2000/01/rdf-schema#isDefinedBy -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel"/>
<!-- http://www.w3.org/2004/02/skos/core#closeMatch -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#closeMatch"/>
<!-- http://www.w3.org/2004/02/skos/core#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#definition"/>
<!-- http://www.w3.org/2004/02/skos/core#editorialNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#editorialNote"/>
<!-- http://www.w3.org/2004/02/skos/core#exactMatch -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#exactMatch"/>
<!-- http://www.w3.org/2004/02/skos/core#example -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#example"/>
<!-- http://www.w3.org/2004/02/skos/core#narrowMatch -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#narrowMatch"/>
<!-- http://www.w3.org/2004/02/skos/core#prefLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel"/>
<!-- http://www.w3.org/2004/02/skos/core#related -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#related"/>
<!-- http://www.w3.org/2004/02/skos/core#scopeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#scopeNote"/>
<!-- http://www.w3.org/2004/02/skos/core#topConceptOf -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#topConceptOf"/>
<!-- https://d-nb.info/standards/elementset/gnd#broaderTermGeneral -->
<owl:AnnotationProperty rdf:about="https://d-nb.info/standards/elementset/gnd#broaderTermGeneral"/>
<!-- https://d-nb.info/standards/elementset/gnd#gndIdentifier -->
<owl:AnnotationProperty rdf:about="https://d-nb.info/standards/elementset/gnd#gndIdentifier"/>
<!-- https://w3id.org/lehrplan/ontology/LP_0000141 -->
<owl:AnnotationProperty rdf:about="https://w3id.org/lehrplan/ontology/LP_0000141">
<rdfs:label xml:lang="de">entspricht KIM Schulart</rdfs:label>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000050">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<obo:IAO_0000111 xml:lang="en">is part of</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">my brain is part of my body (continuant parthood, two material entities)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this day is part of this year (occurrent parthood)</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a core relation that holds between a part and its whole</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">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.</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="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 http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="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'.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">part_of</obo:IAO_0000118>
<rdfs:label xml:lang="en">part of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<obo:IAO_0000111 xml:lang="en">has part</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">my body has part my brain (continuant parthood, two material entities)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this year has part this day (occurrent parthood)</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a core relation that holds between a whole and its part</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">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.</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="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 http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="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'.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">has_part</obo:IAO_0000118>
<rdfs:label xml:lang="en">has part</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000054 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000054">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000055"/>
<obo:IAO_0000111 xml:lang="en">realized in</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">this disease is realized in this disease course</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this fragility is realized in this shattering</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this investigator role is realized in this investigation</obo:IAO_0000112>
<obo:IAO_0000118 xml:lang="en">is realized by</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">realized_in</obo:IAO_0000118>
<obo:IAO_0000600 xml:lang="en">[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])</obo:IAO_0000600>
<dc:identifier>206-BFO</dc:identifier>
<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:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
<rdfs:label xml:lang="en">has realization</rdfs:label>
<rdfs:label xml:lang="en">realized in</rdfs:label>
<skos:altLabel xml:lang="en">realized in</skos:altLabel>
<skos:definition xml:lang="en">b has realization c =Def c realizes b</skos:definition>
<skos:example xml:lang="en">As for realizes</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000055 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000055">
<obo:IAO_0000111 xml:lang="en">realizes</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">this disease course realizes this disease</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this investigation realizes this investigator role</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this shattering realizes this fragility</obo:IAO_0000112>
<obo:IAO_0000600 xml:lang="en">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])</obo:IAO_0000600>
<dc:identifier>059-BFO</dc:identifier>
<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:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
<rdfs:label xml:lang="en">realizes</rdfs:label>
<skos:definition xml:lang="en">(Elucidation) realizes is a relation between a process b and realizable entity c such that c inheres in some d & for all t, if b has participant d then c exists & the type instantiated by b is correlated with the type instantiated by c</skos:definition>
<skos:example xml:lang="en">A balding process realizes a disposition to go bald; a studying process realizes a student role; a process of pumping blood realizes the pumping function of a heart</skos:example>
<skos:scopeNote xml:lang="en">Users that require more sophisticated representations of time are encouraged to import a temporal extension of BFO-Core provided by the BFO development team. See documentation for guidance: <Link></skos:scopeNote>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000062 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000062">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000063"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<dc:identifier>213-BFO</dc:identifier>
<rdfs:label xml:lang="en">preceded by</rdfs:label>
<skos:definition xml:lang="en">b preceded by c =Def b precedes c</skos:definition>
<skos:example xml:lang="en">The temporal region occupied by the second half of the match is preceded by the temporal region occupied by the first half of the match</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000063 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000063">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<dc:identifier>270-BFO</dc:identifier>
<rdfs:label xml:lang="en">precedes</rdfs:label>
<skos:definition xml:lang="en">(Elucidation) precedes is a relation between occurrents o, o' such that if t is the temporal extent of o & t' is the temporal extent of o' then either the last instant of o is before the first instant of o' or the last instant of o is the first instant of o' & neither o nor o' are temporal instants</skos:definition>
<skos:example xml:lang="en">The temporal region occupied by Mary's birth precedes the temporal region occupied by Mary's death.</skos:example>
<skos:scopeNote>Each temporal region is its own temporal extent. The temporal extent of a spatiotemporal region is the temporal region it temporally projects onto. The temporal extent of a process or process boundary that occupies temporal region t is t.</skos:scopeNote>
<skos:scopeNote>Precedes defines a strict partial order on occurrents.</skos:scopeNote>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000066 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000066">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000183"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000066"/>
</owl:propertyChainAxiom>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000066"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
</owl:propertyChainAxiom>
<obo:IAO_0000111 xml:lang="en">occurs in</obo:IAO_0000111>
<obo:IAO_0000115 xml:lang="en">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</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">occurs_in</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">unfolds in</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">unfolds_in</obo:IAO_0000118>
<dc:identifier>143-BFO</dc:identifier>
<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:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/bfo.owl"/>
<rdfs:label xml:lang="en">occurs in</rdfs:label>
<skos:definition xml:lang="en">b occurs in c =Def b is a process or a process boundary & c is a material entity or site & there exists a spatiotemporal region r & b occupies spatiotemporal region r & for all time 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 occupies spatial region s' at t & s is a continuant part of s' at t</skos:definition>
<skos:example xml:lang="en">A process of digestion occurs in the interior of an organism; a process of loading artillery rounds into a tank cannon occurs in the interior of the tank</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000108 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000108">
<dc:identifier>118-BFO</dc:identifier>
<rdfs:label xml:lang="en">exists at</rdfs:label>
<skos:definition xml:lang="en">(Elucidation) exists at is a relation between a particular and some temporal region at which the particular exists</skos:definition>
<skos:example xml:lang="en">First World War exists at 1914-1916; Mexico exists at January 1, 2000</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000117 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000117">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000132"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<dc:identifier>202-BFO</dc:identifier>
<rdfs:label xml:lang="en">has occurrent part</rdfs:label>
<skos:definition xml:lang="en">b has occurrent part c =Def c occurrent part of b</skos:definition>
<skos:example xml:lang="en">Mary's life has occurrent part Mary's 5th birthday</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000118 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000118">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000117"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000138"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<dc:identifier>154-BFO</dc:identifier>
<rdfs:label xml:lang="en">has proper occurrent part</rdfs:label>
<skos:definition xml:lang="en">b has proper occurrent part c =Def b has occurrent part c & b and c are not identical</skos:definition>
<skos:example xml:lang="en">As for has occurrent part.</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000121 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000121">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000117"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000139"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<dc:identifier>211-BFO</dc:identifier>
<rdfs:label xml:lang="en">has temporal part</rdfs:label>
<skos:definition xml:lang="en">b has temporal part c =Def c temporal part of b</skos:definition>
<skos:example xml:lang="en">Your life has temporal part the first year of your life</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000132 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000132">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<dc:identifier>003-BFO</dc:identifier>
<rdfs:label xml:lang="en">occurrent part of</rdfs:label>
<skos:definition xml:lang="en">(Elucidation) occurrent part of is a relation between occurrents b and c when b is part of c</skos:definition>
<skos:example xml:lang="en">Mary's 5th birthday is an occurrent part of Mary's life; the first set of the tennis match is an occurrent part of the tennis match</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000136">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000139"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000181"/>
<dc:identifier>116-BFO</dc:identifier>
<rdfs:label xml:lang="en">proper temporal part of</rdfs:label>
<skos:definition xml:lang="en">b proper temporal part of c =Def b temporal part of c & not (b = c)</skos:definition>
<skos:example xml:lang="en">As for temporal part of.</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000138 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000138">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000132"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<dc:identifier>005-BFO</dc:identifier>
<rdfs:label xml:lang="en">proper occurrent part of</rdfs:label>
<skos:definition xml:lang="en">b proper occurrent part of c =Def b occurrent part of c & b and c are not identical</skos:definition>
<skos:example xml:lang="en">As for occurrent part of.</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000139 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000139">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000132"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<dc:identifier>078-BFO</dc:identifier>
<rdfs:label xml:lang="en">temporal part of</rdfs:label>
<skos:definition xml:lang="en">b temporal part of c =Def b occurrent part of c & (b and c are temporal regions) or (b and c are spatiotemporal regions & b temporally projects onto an occurrent part of the temporal region that c temporally projects onto) or (b and c are processes or process boundaries & b occupies a temporal region that is an occurrent part of the temporal region that c occupies)</skos:definition>
<skos:example xml:lang="en">Your heart beating from 4pm to 5pm today is a temporal part of the process of your heart beating; the 4th year of your life is a temporal part of your life, as is the process boundary which separates the 3rd and 4th years of your life; the first quarter of a game of football is a temporal part of the whole game</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000153 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000153">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<dc:identifier>080-BFO</dc:identifier>
<rdfs:label xml:lang="en">temporally projects onto</rdfs:label>
<skos:definition xml:lang="en">(Elucidation) temporally projects onto is a relation between a spatiotemporal region s and some temporal region which is the temporal extent of s</skos:definition>
<skos:example xml:lang="en">The world line of a particle temporally projects onto the temporal region extending from the beginning to the end of the existence of the particle</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000181 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000181">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000121"/>
<dc:identifier>212-BFO</dc:identifier>
<rdfs:label xml:lang="en">has proper temporal part</rdfs:label>
<skos:definition xml:lang="en">b has proper temporal part c =Def c proper temporal part of b</skos:definition>
<skos:example xml:lang="en">As for has temporal part.</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000183 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000183">
<dc:identifier>267-BFO</dc:identifier>
<rdfs:label xml:lang="en">environs</rdfs:label>
<skos:altLabel xml:lang="en">contains process</skos:altLabel>
<skos:definition xml:lang="en">b environs c =Def c occurs in b</skos:definition>
<skos:example xml:lang="en">Mouth environs process of mastication; city environs traffic</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000184 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000184">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000185"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<dc:identifier>144-BFO</dc:identifier>
<rdfs:label xml:lang="en">history of</rdfs:label>
<skos:definition xml:lang="en">(Elucidation) history of is a relation between history b and material entity c such that b is the unique history of c</skos:definition>
<skos:example xml:lang="en">This life is the history of this organism</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000185 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000185">
<dc:identifier>145-BFO</dc:identifier>
<rdfs:label xml:lang="en">has history</rdfs:label>
<skos:definition xml:lang="en">b has history c =Def c history of b</skos:definition>
<skos:example xml:lang="en">This organism has history this life</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000194 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000194">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000195"/>
<dc:identifier>260-BFO</dc:identifier>
<rdfs:label xml:lang="en">specifically depended on by</rdfs:label>
<skos:altLabel xml:lang="en">s-depended on by</skos:altLabel>
<skos:definition xml:lang="en">b specifically depended on by c =Def c specifically depends on b</skos:definition>
<skos:example xml:lang="en">Coloured object specifically depended on by colour</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000195 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000195">
<dc:identifier>012-BFO</dc:identifier>
<rdfs:label xml:lang="en">specifically depends on</rdfs:label>
<skos:altLabel xml:lang="en">s-depends on</skos:altLabel>
<skos:definition xml:lang="en">(Elucidation) specifically depends on is a relation between a specifically dependent continuant b and specifically dependent continuant or independent continuant that is not a spatial region c such that b and c share no parts in common & b is of a nature such that at all times t it cannot exist unless c exists & b is not a boundary of c</skos:definition>
<skos:example xml:lang="en">A shape specifically depends on the shaped object; hue, saturation and brightness of a colour sample specifically depends on each other</skos:example>
<skos:scopeNote xml:lang="en">The analogue of specifically depends on for occurrents is has participant.</skos:scopeNote>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000196 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000196">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000194"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000197"/>
<dc:identifier>053-BFO</dc:identifier>
<rdfs:label xml:lang="en">bearer of</rdfs:label>
<skos:definition xml:lang="en">b bearer of c =Def c inheres in b</skos:definition>
<skos:example xml:lang="en">A patch of ink is the bearer of a colour quality; an organism is the bearer of a temperature quality</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000197 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000197">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000195"/>
<dc:identifier>051-BFO</dc:identifier>
<rdfs:label xml:lang="en">inheres in</rdfs:label>
<skos:definition xml:lang="en">b inheres in c =Def b is a specifically dependent continuant & c is an independent continuant that is not a spatial region & b specifically depends on c</skos:definition>
<skos:example xml:lang="en">A shape inheres in a shaped object; a mass inheres in a material entity</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000199 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000199">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<dc:identifier>132-BFO</dc:identifier>
<rdfs:label xml:lang="en">occupies temporal region</rdfs:label>
<skos:definition xml:lang="en">p occupies temporal region t =Def p is a process or process boundary & the spatiotemporal region occupied by p temporally projects onto t</skos:definition>
<skos:example xml:lang="en">The Second World War occupies the temporal region September 1, 1939 - September 2, 1945</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000200 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000200">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<dc:identifier>082-BFO</dc:identifier>
<rdfs:label xml:lang="en">occupies spatiotemporal region</rdfs:label>
<skos:definition xml:lang="en">(Elucidation) occupies spatiotemporal region is a relation between a process or process boundary p and the spatiotemporal region s which is its spatiotemporal extent</skos:definition>
<skos:example xml:lang="en">A particle emitted by a nuclear reactor occupies the spatiotemporal region which is its trajectory</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000221 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000221">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000222"/>
<dc:identifier>268-BFO</dc:identifier>
<rdfs:label xml:lang="en">first instant of</rdfs:label>
<skos:definition xml:lang="en">t first instant of t' =Def t is a temporal instant & t' is a temporal region t' & t precedes all temporal parts of t' other than t</skos:definition>
<skos:example xml:lang="en">An hour starting at midnight yesterday has first instant midnight yesterday</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000222 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000222">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<dc:identifier>261-BFO</dc:identifier>
<rdfs:label xml:lang="en">has first instant</rdfs:label>
<skos:definition xml:lang="en">t has first instant t' =Def t' first instant of t</skos:definition>
<skos:example xml:lang="en">The first hour of a year has first instant midnight on December 31</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000223 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000223">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000224"/>
<dc:identifier>269-BFO</dc:identifier>
<rdfs:label xml:lang="en">last instant of</rdfs:label>
<skos:definition xml:lang="en">t last instant of t' =Def t is a temporal instant & t' is a temporal region & all temporal parts of t' other than t precede t</skos:definition>
<skos:example xml:lang="en">Last midnight is the last instant of yesterday</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000224 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000224">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<dc:identifier>215-BFO</dc:identifier>
<rdfs:label xml:lang="en">has last instant</rdfs:label>
<skos:definition xml:lang="en">t has last instant t' =Def t' last instant of t</skos:definition>
<skos:example xml:lang="en">The last hour of a year has last instant midnight December 31</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136">
<owl:inverseOf rdf:resource="https://w3id.org/lehrplan/ontology/LP_0000024"/>
<obo:IAO_0000112 xml:lang="en">This document is about information artifacts and their representations</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 xml:lang="en">A (currently) primitive relation that relates an information artifact to an entity.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of "mentions" relation. Weaken the is_about relationship to be primitive.
We will try to build it back up by elaborating the various subproperties that are more precisely defined.
Some currently missing phenomena that should be considered "about" are predications - "The only person who knows the answer is sitting beside me" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.</obo:IAO_0000116>
<obo:IAO_0000117 xml:lang="en">person:Alan Ruttenberg</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Smith, Ceusters, Ruttenberg, 2000 years of philosophy</obo:IAO_0000119>
<rdfs:label xml:lang="en">is about</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000056 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000056">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000057"/>
<obo:IAO_0000111 xml:lang="en">participates in</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">this blood clot participates in this blood coagulation</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this input material (or this output material) participates in this process</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this investigator participates in this investigation</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between a continuant and a process, in which the continuant is somehow involved in the process</obo:IAO_0000115>
<obo:IAO_0000118 xml:lang="en">participates_in</obo:IAO_0000118>
<rdfs:label xml:lang="en">participates in</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000057 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000057">
<obo:IAO_0000111 xml:lang="en">has participant</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">this blood coagulation has participant this blood clot</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this investigation has participant this investigator</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this process has participant this input material (or this output material)</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between a process and a continuant, in which the continuant is somehow involved in the process</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">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.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">has_participant</obo:IAO_0000118>
<rdfs:label xml:lang="en">has participant</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000058 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000058">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000059"/>
<obo:IAO_0000112 xml:lang="en">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).</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="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).</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A relationship between a generically dependent continuant and a specifically dependent continuant or process, in which the generically dependent continuant depends on some independent continuant or process in virtue of the fact that the specifically dependent continuant or process also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants or processes.</obo:IAO_0000115>
<rdfs:label xml:lang="en">is concretized as</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000059 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000059">
<obo:IAO_0000112 xml:lang="en">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).</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="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).</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A relationship between a specifically dependent continuant or process 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 or process also depends on that same independent continuant. Multiple specifically dependent continuants or processes can concretize the same generically dependent continuant.</obo:IAO_0000115>
<rdfs:label xml:lang="en">concretizes</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000079 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000079">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<obo:IAO_0000112 xml:lang="en">this catalysis function is a function of this enzyme</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">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.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">function_of</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">is function of</obo:IAO_0000118>
<rdfs:comment>This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.</rdfs:comment>
<rdfs:label xml:lang="en">function of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000085 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000085">
<obo:IAO_0000112 xml:lang="en">this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">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.</obo:IAO_0000116>
<obo:IAO_0000118 xml:lang="en">has_function</obo:IAO_0000118>
<rdfs:label xml:lang="en">has function</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/prov#wasDerivedFrom -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasDerivedFrom">
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov"/>
<rdfs:label>was derived from</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lehrplan/ontology/LP_0000008 -->
<owl:ObjectProperty rdf:about="https://w3id.org/lehrplan/ontology/LP_0000008">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:inverseOf rdf:resource="https://w3id.org/lehrplan/ontology/LP_0020001"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label xml:lang="de">hat Teil</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lehrplan/ontology/LP_0000015 -->
<owl:ObjectProperty rdf:about="https://w3id.org/lehrplan/ontology/LP_0000015">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000117"/>
<rdfs:label xml:lang="de">hat Prozessteil</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lehrplan/ontology/LP_0000017 -->
<owl:ObjectProperty rdf:about="https://w3id.org/lehrplan/ontology/LP_0000017">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000059"/>
<rdfs:label xml:lang="de">konkretisiert Lehrplan</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lehrplan/ontology/LP_0000021 -->
<owl:ObjectProperty rdf:about="https://w3id.org/lehrplan/ontology/LP_0000021">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000117"/>
<rdfs:label xml:lang="de">endet mit Abschluss</rdfs:label>
<rdfs:label xml:lang="de">ermöglicht Abschluss</rdfs:label>
<skos:example>Ein Bildungsgang (occurent) endet mit Abschluss.</skos:example>
</owl:ObjectProperty>
<!-- https://w3id.org/lehrplan/ontology/LP_0000024 -->
<owl:ObjectProperty rdf:about="https://w3id.org/lehrplan/ontology/LP_0000024">
<rdfs:label xml:lang="en">described by</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lehrplan/ontology/LP_0000026 -->
<owl:ObjectProperty rdf:about="https://w3id.org/lehrplan/ontology/LP_0000026">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/lehrplan/ontology/LP_0000024"/>
<rdfs:label xml:lang="de">hat Jahrgangsstufe</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lehrplan/ontology/LP_0000029 -->
<owl:ObjectProperty rdf:about="https://w3id.org/lehrplan/ontology/LP_0000029">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/lehrplan/ontology/LP_0000024"/>
<rdfs:label xml:lang="de">von Bundesland</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lehrplan/ontology/LP_0000041 -->
<owl:ObjectProperty rdf:about="https://w3id.org/lehrplan/ontology/LP_0000041">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/lehrplan/ontology/LP_0000008"/>
<rdfs:label xml:lang="en">has unit</rdfs:label>
<rdfs:label xml:lang="de">hat Einheit</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lehrplan/ontology/LP_0000047 -->
<owl:ObjectProperty rdf:about="https://w3id.org/lehrplan/ontology/LP_0000047">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/lehrplan/ontology/LP_0000024"/>
<rdfs:label xml:lang="de">hat Schulstufe</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lehrplan/ontology/LP_0000048 -->
<owl:ObjectProperty rdf:about="https://w3id.org/lehrplan/ontology/LP_0000048">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000057"/>
<rdfs:comment>has input</rdfs:comment>
<rdfs:label xml:lang="de">hat Input</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lehrplan/ontology/LP_0000049 -->
<owl:ObjectProperty rdf:about="https://w3id.org/lehrplan/ontology/LP_0000049">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000057"/>
<rdfs:comment xml:lang="en">has output</rdfs:comment>
<rdfs:label xml:lang="de">hat Output</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/lehrplan/ontology/LP_0000071 -->