-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlp-land-SN-full.owl
More file actions
3944 lines (3070 loc) · 296 KB
/
Copy pathlp-land-SN-full.owl
File metadata and controls
3944 lines (3070 loc) · 296 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(:=<https://w3id.org/lehrplan/ontology/SN#>)
Prefix(dc:=<http://purl.org/dc/elements/1.1/>)
Prefix(gnd:=<https://d-nb.info/standards/elementset/gnd#>)
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(doap:=<http://usefulinc.com/ns/doap#>)
Prefix(rdfs:=<http://www.w3.org/2000/01/rdf-schema#>)
Prefix(skos:=<http://www.w3.org/2004/02/skos/core#>)
Prefix(terms:=<http://purl.org/dc/terms/>)
Prefix(protege:=<http://protege.stanford.edu/plugins/owl/protege#>)
Prefix(ontology:=<https://w3id.org/lehrplan/ontology/>)
Ontology(<https://w3id.org/lehrplan/ontology/SN>
<https://w3id.org/lehrplan/ontology/SN/1.0.0rc3>
Annotation(terms:bibliographicCitation "Lehrplan Ontology. Version 1.0.0rc3, https://w3id.org/lehrplan/ontology")
Annotation(terms:created "2026-07-28")
Annotation(terms:creator <https://orcid.org/0000-0001-6378-2618>)
Annotation(terms:creator <https://orcid.org/0000-0001-7192-7143>)
Annotation(terms:creator "Almut Steinlein"@de)
Annotation(terms:creator "Cindy Bloes"@de)
Annotation(terms:creator "Johann Bergh"@de)
Annotation(terms:creator "Laura Junghanns"@de)
Annotation(terms:description "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."@de)
Annotation(terms:description "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."@en)
Annotation(terms:license <https://creativecommons.org/licenses/by-sa/4.0/>)
Annotation(terms:subject "Lehrplan Sachsen")
Annotation(terms:title "Curriculum Ontology"@en)
Annotation(terms:title "Lehrplan Ontologie"@de)
Annotation(doap:repository <https://github.com/FWU-DE/lehrplan-ontologie>)
Annotation(owl:priorVersion <https://w3id.org/lehrplan/ontology/>)
Annotation(owl:versionInfo "1.0.0rc3")
Declaration(Class(obo:BFO_0000001))
Declaration(Class(obo:BFO_0000002))
Declaration(Class(obo:BFO_0000003))
Declaration(Class(obo:BFO_0000004))
Declaration(Class(obo:BFO_0000008))
Declaration(Class(obo:BFO_0000011))
Declaration(Class(obo:BFO_0000015))
Declaration(Class(obo:BFO_0000016))
Declaration(Class(obo:BFO_0000017))
Declaration(Class(obo:BFO_0000019))
Declaration(Class(obo:BFO_0000020))
Declaration(Class(obo:BFO_0000023))
Declaration(Class(obo:BFO_0000030))
Declaration(Class(obo:BFO_0000031))
Declaration(Class(obo:BFO_0000034))
Declaration(Class(obo:BFO_0000035))
Declaration(Class(obo:BFO_0000038))
Declaration(Class(obo:BFO_0000040))
Declaration(Class(obo:BFO_0000148))
Declaration(Class(obo:BFO_0000202))
Declaration(Class(obo:BFO_0000203))
Declaration(Class(obo:IAO_0000027))
Declaration(Class(obo:IAO_0000028))
Declaration(Class(obo:IAO_0000030))
Declaration(Class(obo:IAO_0000078))
Declaration(Class(obo:IAO_0000102))
Declaration(Class(obo:IAO_0000225))
Declaration(Class(obo:IAO_0000300))
Declaration(Class(obo:IAO_0000409))
Declaration(Class(obo:IAO_0000444))
Declaration(Class(<http://qudt.org/schema/qudt/Unit>))
Declaration(Class(skos:Concept))
Declaration(Class(skos:ConceptScheme))
Declaration(Class(ontology:LP_0000001))
Declaration(Class(ontology:LP_0000002))
Declaration(Class(ontology:LP_0000003))
Declaration(Class(ontology:LP_0000004))
Declaration(Class(ontology:LP_0000005))
Declaration(Class(ontology:LP_0000006))
Declaration(Class(ontology:LP_0000007))
Declaration(Class(ontology:LP_0000009))
Declaration(Class(ontology:LP_0000010))
Declaration(Class(ontology:LP_0000011))
Declaration(Class(ontology:LP_0000012))
Declaration(Class(ontology:LP_0000013))
Declaration(Class(ontology:LP_0000019))
Declaration(Class(ontology:LP_0000020))
Declaration(Class(ontology:LP_0000028))
Declaration(Class(ontology:LP_0000037))
Declaration(Class(ontology:LP_0000039))
Declaration(Class(ontology:LP_0000040))
Declaration(Class(ontology:LP_0000043))
Declaration(Class(ontology:LP_0000053))
Declaration(Class(ontology:LP_0000054))
Declaration(Class(ontology:LP_0000056))
Declaration(Class(ontology:LP_0000057))
Declaration(Class(ontology:LP_0000069))
Declaration(Class(ontology:LP_0000076))
Declaration(Class(ontology:LP_0000078))
Declaration(Class(ontology:LP_0000079))
Declaration(Class(ontology:LP_0000111))
Declaration(Class(ontology:LP_0000165))
Declaration(Class(ontology:LP_0000181))
Declaration(Class(ontology:LP_0000205))
Declaration(Class(ontology:LP_0000261))
Declaration(Class(ontology:LP_0000263))
Declaration(Class(ontology:LP_0000265))
Declaration(Class(ontology:LP_0000268))
Declaration(Class(ontology:LP_0000332))
Declaration(Class(ontology:LP_0000336))
Declaration(Class(ontology:LP_0000337))
Declaration(Class(ontology:LP_0000342))
Declaration(Class(ontology:LP_0000346))
Declaration(Class(ontology:LP_0000347))
Declaration(Class(ontology:LP_0000349))
Declaration(Class(ontology:LP_0000426))
Declaration(Class(ontology:LP_0000434))
Declaration(Class(ontology:LP_0000438))
Declaration(Class(ontology:LP_0000441))
Declaration(Class(ontology:LP_0000475))
Declaration(Class(ontology:LP_0000478))
Declaration(Class(ontology:LP_0000482))
Declaration(Class(ontology:LP_0000493))
Declaration(Class(ontology:LP_0000499))
Declaration(Class(ontology:LP_0000508))
Declaration(Class(ontology:LP_0000530))
Declaration(Class(ontology:LP_0000531))
Declaration(Class(ontology:LP_0000536))
Declaration(Class(ontology:LP_0000540))
Declaration(Class(ontology:LP_0000541))
Declaration(Class(ontology:LP_0000542))
Declaration(Class(ontology:LP_0000543))
Declaration(Class(ontology:LP_0000544))
Declaration(Class(ontology:LP_0000545))
Declaration(Class(ontology:LP_0000547))
Declaration(Class(ontology:LP_0000551))
Declaration(Class(ontology:LP_0000554))
Declaration(Class(ontology:LP_0000571))
Declaration(Class(ontology:LP_0000802))
Declaration(Class(ontology:LP_0000808))
Declaration(Class(ontology:LP_0000809))
Declaration(Class(ontology:LP_0000810))
Declaration(Class(ontology:LP_0000813))
Declaration(Class(ontology:LP_0000814))
Declaration(Class(ontology:LP_0000815))
Declaration(Class(ontology:LP_0000816))
Declaration(Class(ontology:LP_0000818))
Declaration(Class(ontology:LP_0000832))
Declaration(Class(ontology:LP_0000834))
Declaration(Class(ontology:LP_0000835))
Declaration(Class(ontology:LP_0000845))
Declaration(Class(ontology:LP_0000852))
Declaration(Class(ontology:LP_0001015))
Declaration(Class(ontology:LP_0001032))
Declaration(Class(ontology:LP_0001441))
Declaration(Class(ontology:LP_0002051))
Declaration(Class(ontology:LP_0002076))
Declaration(Class(ontology:LP_0002080))
Declaration(Class(ontology:LP_0002085))
Declaration(Class(ontology:LP_0002089))
Declaration(Class(ontology:LP_0002090))
Declaration(Class(ontology:LP_0002093))
Declaration(Class(ontology:LP_0002097))
Declaration(Class(ontology:LP_0002101))
Declaration(Class(ontology:LP_0002102))
Declaration(Class(ontology:LP_0002103))
Declaration(Class(ontology:LP_0002110))
Declaration(Class(ontology:LP_0002113))
Declaration(Class(ontology:LP_0002114))
Declaration(Class(ontology:LP_0002115))
Declaration(Class(ontology:LP_0002116))
Declaration(Class(ontology:LP_0002118))
Declaration(Class(ontology:LP_0010001))
Declaration(Class(ontology:LP_0030003))
Declaration(Class(ontology:LP_0030050))
Declaration(Class(ontology:LP_0030065))
Declaration(Class(ontology:LP_0030188))
Declaration(Class(ontology:LP_0030189))
Declaration(Class(ontology:LP_0030190))
Declaration(Class(ontology:LP_0030191))
Declaration(Class(ontology:LP_0030263))
Declaration(Class(ontology:LP_0030264))
Declaration(Class(ontology:LP_0030265))
Declaration(Class(ontology:LP_0030266))
Declaration(Class(ontology:LP_0030268))
Declaration(Class(ontology:LP_0030269))
Declaration(Class(ontology:LP_0030325))
Declaration(Class(ontology:LP_0030329))
Declaration(Class(ontology:LP_0030335))
Declaration(Class(ontology:LP_0030361))
Declaration(ObjectProperty(obo:BFO_0000050))
Declaration(ObjectProperty(obo:BFO_0000051))
Declaration(ObjectProperty(obo:BFO_0000108))
Declaration(ObjectProperty(obo:BFO_0000199))
Declaration(ObjectProperty(obo:BFO_0000221))
Declaration(ObjectProperty(obo:BFO_0000222))
Declaration(ObjectProperty(obo:BFO_0000223))
Declaration(ObjectProperty(obo:BFO_0000224))
Declaration(ObjectProperty(obo:IAO_0000136))
Declaration(ObjectProperty(obo:RO_0000056))
Declaration(ObjectProperty(obo:RO_0000057))
Declaration(ObjectProperty(obo:RO_0000058))
Declaration(ObjectProperty(obo:RO_0000059))
Declaration(ObjectProperty(obo:RO_0000079))
Declaration(ObjectProperty(obo:RO_0000085))
Declaration(ObjectProperty(obo:RO_0002233))
Declaration(ObjectProperty(obo:RO_0002234))
Declaration(ObjectProperty(obo:RO_0002352))
Declaration(ObjectProperty(obo:RO_0002353))
Declaration(ObjectProperty(skos:closeMatch))
Declaration(ObjectProperty(skos:exactMatch))
Declaration(ObjectProperty(skos:topConceptOf))
Declaration(ObjectProperty(ontology:LP_0000017))
Declaration(ObjectProperty(ontology:LP_0000021))
Declaration(ObjectProperty(ontology:LP_0000024))
Declaration(ObjectProperty(ontology:LP_0000026))
Declaration(ObjectProperty(ontology:LP_0000029))
Declaration(ObjectProperty(ontology:LP_0000041))
Declaration(ObjectProperty(ontology:LP_0000047))
Declaration(ObjectProperty(ontology:LP_0000071))
Declaration(ObjectProperty(ontology:LP_0000086))
Declaration(ObjectProperty(ontology:LP_0000343))
Declaration(ObjectProperty(ontology:LP_0000440))
Declaration(ObjectProperty(ontology:LP_0000477))
Declaration(ObjectProperty(ontology:LP_0000483))
Declaration(ObjectProperty(ontology:LP_0000495))
Declaration(ObjectProperty(ontology:LP_0000537))
Declaration(ObjectProperty(ontology:LP_0000550))
Declaration(ObjectProperty(ontology:LP_0000555))
Declaration(ObjectProperty(ontology:LP_0000812))
Declaration(ObjectProperty(ontology:LP_0000833))
Declaration(ObjectProperty(ontology:LP_0000840))
Declaration(ObjectProperty(ontology:LP_0030051))
Declaration(ObjectProperty(ontology:LP_0030056))
Declaration(ObjectProperty(ontology:LP_0030057))
Declaration(ObjectProperty(ontology:LP_0030071))
Declaration(ObjectProperty(ontology:LP_0030072))
Declaration(DataProperty(<http://www.w3.org/2006/time#inXSDDateTimeStamp>))
Declaration(DataProperty(ontology:LP_0000344))
Declaration(DataProperty(ontology:LP_0000460))
Declaration(DataProperty(ontology:LP_0000463))
Declaration(DataProperty(ontology:LP_0000548))
Declaration(DataProperty(ontology:LP_0000549))
Declaration(DataProperty(ontology:LP_0000553))
Declaration(NamedIndividual(obo:IAO_0000002))
Declaration(NamedIndividual(obo:IAO_0000103))
Declaration(NamedIndividual(obo:IAO_0000120))
Declaration(NamedIndividual(obo:IAO_0000121))
Declaration(NamedIndividual(obo:IAO_0000122))
Declaration(NamedIndividual(obo:IAO_0000123))
Declaration(NamedIndividual(obo:IAO_0000124))
Declaration(NamedIndividual(obo:IAO_0000125))
Declaration(NamedIndividual(obo:IAO_0000226))
Declaration(NamedIndividual(obo:IAO_0000227))
Declaration(NamedIndividual(obo:IAO_0000228))
Declaration(NamedIndividual(obo:IAO_0000229))
Declaration(NamedIndividual(obo:IAO_0000410))
Declaration(NamedIndividual(obo:IAO_0000420))
Declaration(NamedIndividual(obo:IAO_0000421))
Declaration(NamedIndividual(obo:IAO_0000423))
Declaration(NamedIndividual(obo:IAO_0000428))
Declaration(NamedIndividual(obo:OMO_0001000))
Declaration(NamedIndividual(<http://qudt.org/vocab/unit/MIN>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1000>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1001>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1002>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1003>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1004>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1005>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1006>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1007>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1008>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1009>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1010>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1011>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1012>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1013>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1014>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1015>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1016>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1017>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1019>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1020>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1021>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1022>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1023>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1024>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1025>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1026>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1027>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1028>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1029>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1030>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1031>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1032>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1033>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1034>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1035>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1036>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1037>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1038>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1039>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1040>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1041>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1042>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1043>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1044>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1045>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1046>))
Declaration(NamedIndividual(<http://w3id.org/kim/schulfaecher/s1047>))
Declaration(NamedIndividual(<https://qudt.org/vocab/unit/HR>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s02>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s03>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s04>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s05>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s06>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s07>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s08>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s09>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s10>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s11>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s12>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s13>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s14>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s15>))
Declaration(NamedIndividual(<https://w3id.org/kim/schularten/s16>))
Declaration(NamedIndividual(ontology:LP_0000036))
Declaration(NamedIndividual(ontology:LP_0000045))
Declaration(NamedIndividual(ontology:LP_0000046))
Declaration(NamedIndividual(ontology:LP_0000050))
Declaration(NamedIndividual(ontology:LP_0000051))
Declaration(NamedIndividual(ontology:LP_0000052))
Declaration(NamedIndividual(ontology:LP_0000055))
Declaration(NamedIndividual(ontology:LP_0000279))
Declaration(NamedIndividual(ontology:LP_0000293))
Declaration(NamedIndividual(ontology:LP_0000294))
Declaration(NamedIndividual(ontology:LP_0000295))
Declaration(NamedIndividual(ontology:LP_0000389))
Declaration(NamedIndividual(ontology:LP_0000390))
Declaration(NamedIndividual(ontology:LP_0000391))
Declaration(NamedIndividual(ontology:LP_0000392))
Declaration(NamedIndividual(ontology:LP_0000479))
Declaration(NamedIndividual(ontology:LP_0000480))
Declaration(NamedIndividual(ontology:LP_0000481))
Declaration(NamedIndividual(ontology:LP_0000497))
Declaration(NamedIndividual(ontology:LP_0000500))
Declaration(NamedIndividual(ontology:LP_0000501))
Declaration(NamedIndividual(ontology:LP_0000523))
Declaration(NamedIndividual(ontology:LP_0000524))
Declaration(NamedIndividual(ontology:LP_0000532))
Declaration(NamedIndividual(ontology:LP_0000533))
Declaration(NamedIndividual(ontology:LP_0000535))
Declaration(NamedIndividual(ontology:LP_0000627))
Declaration(NamedIndividual(ontology:LP_0000803))
Declaration(NamedIndividual(ontology:LP_0000804))
Declaration(NamedIndividual(ontology:LP_0000805))
Declaration(NamedIndividual(ontology:LP_0001014))
Declaration(NamedIndividual(ontology:LP_0002158))
Declaration(NamedIndividual(ontology:LP_0002171))
Declaration(NamedIndividual(ontology:LP_0030312))
Declaration(NamedIndividual(ontology:LP_0030313))
Declaration(NamedIndividual(ontology:LP_0030314))
Declaration(NamedIndividual(ontology:LP_0030315))
Declaration(NamedIndividual(ontology:LP_0030316))
Declaration(NamedIndividual(ontology:LP_0030317))
Declaration(NamedIndividual(ontology:LP_0030326))
Declaration(NamedIndividual(ontology:LP_0030356))
Declaration(NamedIndividual(ontology:LP_0030374))
Declaration(NamedIndividual(ontology:LP_2000001))
Declaration(NamedIndividual(ontology:LP_2000002))
Declaration(NamedIndividual(ontology:LP_2000003))
Declaration(NamedIndividual(ontology:LP_2000004))
Declaration(NamedIndividual(ontology:LP_2000005))
Declaration(NamedIndividual(ontology:LP_2000006))
Declaration(NamedIndividual(ontology:LP_2000007))
Declaration(NamedIndividual(ontology:LP_2000008))
Declaration(NamedIndividual(ontology:LP_2000009))
Declaration(NamedIndividual(ontology:LP_2000010))
Declaration(NamedIndividual(ontology:LP_2000011))
Declaration(NamedIndividual(ontology:LP_2000012))
Declaration(NamedIndividual(ontology:LP_2000013))
Declaration(NamedIndividual(ontology:LP_3000031))
Declaration(NamedIndividual(ontology:LP_3000043))
Declaration(NamedIndividual(ontology:LP_3000044))
Declaration(NamedIndividual(ontology:LP_3000045))
Declaration(NamedIndividual(ontology:LP_3000046))
Declaration(NamedIndividual(ontology:LP_3000047))
Declaration(NamedIndividual(ontology:LP_3000048))
Declaration(NamedIndividual(ontology:LP_3000049))
Declaration(NamedIndividual(ontology:LP_3000050))
Declaration(NamedIndividual(ontology:LP_3000051))
Declaration(NamedIndividual(ontology:LP_3000052))
Declaration(NamedIndividual(ontology:LP_3000053))
Declaration(NamedIndividual(ontology:LP_3000054))
Declaration(NamedIndividual(ontology:LP_3000055))
Declaration(NamedIndividual(ontology:LP_3000056))
Declaration(NamedIndividual(ontology:LP_3000057))
Declaration(NamedIndividual(<https://w3id.org/schulart/SN_0000000>))
Declaration(NamedIndividual(<https://w3id.org/schulart/SN_0000001>))
Declaration(NamedIndividual(<https://w3id.org/schulart/SN_0000002>))
Declaration(NamedIndividual(<https://w3id.org/schulart/SN_0000003>))
Declaration(NamedIndividual(<https://w3id.org/schulart/SN_0000004>))
Declaration(NamedIndividual(<https://w3id.org/schulart/SN_0000005>))
Declaration(NamedIndividual(<https://w3id.org/schulart/SN_0000006>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000000>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000001>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000002>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000003>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000004>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000005>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000006>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000007>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000008>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000009>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000010>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000011>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000012>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000013>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000014>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000015>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000016>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000017>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000018>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000019>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000020>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000021>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000022>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000023>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000024>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000025>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000026>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000027>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000028>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000029>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000030>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000031>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000032>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000033>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000034>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000035>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000036>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000037>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000038>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000039>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000040>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000041>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000042>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000043>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000044>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000045>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000046>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000047>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000048>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000049>))
Declaration(NamedIndividual(<https://w3id.org/schulfach/SN_0000050>))
Declaration(AnnotationProperty(protege:defaultLanguage))
Declaration(AnnotationProperty(obo:IAO_0000112))
Declaration(AnnotationProperty(obo:IAO_0000114))
Declaration(AnnotationProperty(obo:IAO_0000115))
Declaration(AnnotationProperty(obo:IAO_0000116))
Declaration(AnnotationProperty(obo:IAO_0000119))
Declaration(AnnotationProperty(dc:contributor))
Declaration(AnnotationProperty(dc:description))
Declaration(AnnotationProperty(dc:identifier))
Declaration(AnnotationProperty(dc:source))
Declaration(AnnotationProperty(dc:title))
Declaration(AnnotationProperty(terms:bibliographicCitation))
Declaration(AnnotationProperty(terms:created))
Declaration(AnnotationProperty(terms:creator))
Declaration(AnnotationProperty(terms:description))
Declaration(AnnotationProperty(terms:identifier))
Declaration(AnnotationProperty(terms:license))
Declaration(AnnotationProperty(terms:subject))
Declaration(AnnotationProperty(terms:title))
Declaration(AnnotationProperty(doap:repository))
Declaration(AnnotationProperty(rdfs:comment))
Declaration(AnnotationProperty(rdfs:isDefinedBy))
Declaration(AnnotationProperty(rdfs:label))
Declaration(AnnotationProperty(skos:altLabel))
Declaration(AnnotationProperty(skos:definition))
Declaration(AnnotationProperty(skos:editorialNote))
Declaration(AnnotationProperty(skos:example))
Declaration(AnnotationProperty(skos:prefLabel))
Declaration(AnnotationProperty(skos:scopeNote))
Declaration(AnnotationProperty(gnd:broaderTermGeneral))
Declaration(AnnotationProperty(gnd:gndIdentifier))
Declaration(AnnotationProperty(ontology:LP_0000015))
Declaration(Datatype(<http://qudt.org/schema/qudt/LatexString>))
############################
# Annotation Properties
############################
# Annotation Property: obo:IAO_0000112 (example of usage)
AnnotationAssertion(obo:IAO_0000114 obo:IAO_0000112 obo:IAO_0000122)
AnnotationAssertion(obo:IAO_0000115 obo:IAO_0000112 "A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold."@en)
AnnotationAssertion(obo:IAO_0000119 obo:IAO_0000112 "GROUP:OBI:<http://purl.obolibrary.org/obo/obi>"@en)
AnnotationAssertion(rdfs:isDefinedBy obo:IAO_0000112 obo:iao.owl)
AnnotationAssertion(rdfs:label obo:IAO_0000112 "example of usage")
AnnotationAssertion(rdfs:label obo:IAO_0000112 "example of usage"@en)
# Annotation Property: obo:IAO_0000114 (has curation status)
AnnotationAssertion(rdfs:label obo:IAO_0000114 "has curation status"@en)
# Annotation Property: obo:IAO_0000115 (definition)
AnnotationAssertion(obo:IAO_0000114 obo:IAO_0000115 obo:IAO_0000122)
AnnotationAssertion(obo:IAO_0000115 obo:IAO_0000115 "The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions."@en)
AnnotationAssertion(obo:IAO_0000116 obo:IAO_0000115 "2012-04-05:
Barry Smith
The official OBI definition, explaining the meaning of a class or property: 'Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions' is terrible.
Can you fix to something like:
A statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.
Alan Ruttenberg
Your proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can't be evaluated by those criteria.
On the specifics of the proposed definition:
We don't have definitions of 'meaning' or 'expression' or 'property'. For 'reference' in the intended sense I think we use the term 'denotation'. For 'expression', I think we you mean symbol, or identifier. For 'meaning' it differs for class and property. For class we want documentation that let's the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let's the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The 'intended reader' part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition.
Personally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable.
We also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with."@en)
AnnotationAssertion(obo:IAO_0000119 obo:IAO_0000115 "GROUP:OBI:<http://purl.obolibrary.org/obo/obi>"@en)
AnnotationAssertion(rdfs:isDefinedBy obo:IAO_0000115 obo:iao.owl)
AnnotationAssertion(rdfs:label obo:IAO_0000115 "definition")
AnnotationAssertion(rdfs:label obo:IAO_0000115 "definition"@en)
# Annotation Property: obo:IAO_0000116 (editor note)
AnnotationAssertion(obo:IAO_0000114 obo:IAO_0000116 obo:IAO_0000122)
AnnotationAssertion(obo:IAO_0000115 obo:IAO_0000116 "An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology."@en)
AnnotationAssertion(obo:IAO_0000119 obo:IAO_0000116 "GROUP:OBI:<http://purl.obofoundry.org/obo/obi>"@en)
AnnotationAssertion(rdfs:isDefinedBy obo:IAO_0000116 obo:iao.owl)
AnnotationAssertion(rdfs:label obo:IAO_0000116 "editor note"@en)
# Annotation Property: obo:IAO_0000119 (definition source)
AnnotationAssertion(obo:IAO_0000114 obo:IAO_0000119 obo:IAO_0000122)
AnnotationAssertion(obo:IAO_0000115 obo:IAO_0000119 "Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007"@en)
AnnotationAssertion(obo:IAO_0000119 obo:IAO_0000119 "Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w"@en)
AnnotationAssertion(obo:IAO_0000119 obo:IAO_0000119 "GROUP:OBI:<http://purl.obolibrary.org/obo/obi>"@en)
AnnotationAssertion(rdfs:isDefinedBy obo:IAO_0000119 obo:iao.owl)
AnnotationAssertion(rdfs:label obo:IAO_0000119 "definition source"@en)
# Annotation Property: ontology:LP_0000015 (tracker item)
AnnotationAssertion(rdfs:comment ontology:LP_0000015 "IRIs or similar locators for requests or discussions of an ontology term."@en)
AnnotationAssertion(rdfs:label ontology:LP_0000015 "tracker item"@de)
############################
# Object Properties
############################
# Object Property: obo:BFO_0000050 (ist Teil von)
AnnotationAssertion(obo:IAO_0000112 obo:BFO_0000050 "my brain is part of my body (continuant parthood, two material entities)"@en)
AnnotationAssertion(obo:IAO_0000112 obo:BFO_0000050 "my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"@en)
AnnotationAssertion(obo:IAO_0000112 obo:BFO_0000050 "this day is part of this year (occurrent parthood)"@en)
AnnotationAssertion(obo:IAO_0000115 obo:BFO_0000050 "a core relation that holds between a part and its whole"@en)
AnnotationAssertion(obo:IAO_0000116 obo:BFO_0000050 "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)
AnnotationAssertion(obo:IAO_0000116 obo:BFO_0000050 "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/"@en)
AnnotationAssertion(obo:IAO_0000116 obo:BFO_0000050 "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)
AnnotationAssertion(rdfs:label obo:BFO_0000050 "ist Teil von"@de)
AnnotationAssertion(rdfs:label obo:BFO_0000050 "part of"@en)
InverseObjectProperties(obo:BFO_0000050 obo:BFO_0000051)
TransitiveObjectProperty(obo:BFO_0000050)
# Object Property: obo:BFO_0000051 (hat Teil)
AnnotationAssertion(obo:IAO_0000112 obo:BFO_0000051 "my body has part my brain (continuant parthood, two material entities)"@en)
AnnotationAssertion(obo:IAO_0000112 obo:BFO_0000051 "my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)"@en)
AnnotationAssertion(obo:IAO_0000112 obo:BFO_0000051 "this year has part this day (occurrent parthood)"@en)
AnnotationAssertion(obo:IAO_0000115 obo:BFO_0000051 "a core relation that holds between a whole and its part"@en)
AnnotationAssertion(obo:IAO_0000116 obo:BFO_0000051 "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)
AnnotationAssertion(obo:IAO_0000116 obo:BFO_0000051 "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/"@en)
AnnotationAssertion(obo:IAO_0000116 obo:BFO_0000051 "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)
AnnotationAssertion(rdfs:label obo:BFO_0000051 "has part"@en)
AnnotationAssertion(rdfs:label obo:BFO_0000051 "hat Teil"@de)
TransitiveObjectProperty(obo:BFO_0000051)
# Object Property: obo:BFO_0000108 (exists at)
AnnotationAssertion(dc:identifier obo:BFO_0000108 "118-BFO")
AnnotationAssertion(rdfs:label obo:BFO_0000108 "exists at"@en)
AnnotationAssertion(skos:definition obo:BFO_0000108 "(Elucidation) exists at is a relation between a particular and some temporal region at which the particular exists"@en)
AnnotationAssertion(skos:example obo:BFO_0000108 "First World War exists at 1914-1916; Mexico exists at January 1, 2000"@en)
ObjectPropertyDomain(obo:BFO_0000108 obo:BFO_0000001)
ObjectPropertyRange(obo:BFO_0000108 obo:BFO_0000008)
# Object Property: obo:BFO_0000199 (occupies temporal region)
AnnotationAssertion(dc:identifier obo:BFO_0000199 "132-BFO")
AnnotationAssertion(rdfs:label obo:BFO_0000199 "occupies temporal region"@en)
AnnotationAssertion(skos:definition obo:BFO_0000199 "p occupies temporal region t =Def p is a process or process boundary & the spatiotemporal region occupied by p temporally projects onto t"@en)
AnnotationAssertion(skos:example obo:BFO_0000199 "The Second World War occupies the temporal region September 1, 1939 - September 2, 1945"@en)
FunctionalObjectProperty(obo:BFO_0000199)
ObjectPropertyDomain(obo:BFO_0000199 ObjectUnionOf(obo:BFO_0000015 obo:BFO_0000035))
ObjectPropertyRange(obo:BFO_0000199 obo:BFO_0000008)
# Object Property: obo:BFO_0000221 (first instant of)
AnnotationAssertion(dc:identifier obo:BFO_0000221 "268-BFO")
AnnotationAssertion(rdfs:label obo:BFO_0000221 "first instant of"@en)
AnnotationAssertion(skos:definition obo:BFO_0000221 "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"@en)
AnnotationAssertion(skos:example obo:BFO_0000221 "An hour starting at midnight yesterday has first instant midnight yesterday"@en)
InverseObjectProperties(obo:BFO_0000221 obo:BFO_0000222)
ObjectPropertyDomain(obo:BFO_0000221 obo:BFO_0000203)
ObjectPropertyRange(obo:BFO_0000221 obo:BFO_0000008)
# Object Property: obo:BFO_0000222 (has first instant)
AnnotationAssertion(dc:identifier obo:BFO_0000222 "261-BFO")
AnnotationAssertion(rdfs:label obo:BFO_0000222 "has first instant"@en)
AnnotationAssertion(skos:definition obo:BFO_0000222 "t has first instant t' =Def t' first instant of t"@en)
AnnotationAssertion(skos:example obo:BFO_0000222 "The first hour of a year has first instant midnight on December 31"@en)
FunctionalObjectProperty(obo:BFO_0000222)
ObjectPropertyDomain(obo:BFO_0000222 obo:BFO_0000008)
ObjectPropertyRange(obo:BFO_0000222 obo:BFO_0000203)
# Object Property: obo:BFO_0000223 (last instant of)
AnnotationAssertion(dc:identifier obo:BFO_0000223 "269-BFO")
AnnotationAssertion(rdfs:label obo:BFO_0000223 "last instant of"@en)
AnnotationAssertion(skos:definition obo:BFO_0000223 "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"@en)
AnnotationAssertion(skos:example obo:BFO_0000223 "Last midnight is the last instant of yesterday"@en)
InverseObjectProperties(obo:BFO_0000223 obo:BFO_0000224)
ObjectPropertyDomain(obo:BFO_0000223 obo:BFO_0000203)
ObjectPropertyRange(obo:BFO_0000223 obo:BFO_0000008)
# Object Property: obo:BFO_0000224 (has last instant)
AnnotationAssertion(dc:identifier obo:BFO_0000224 "215-BFO")
AnnotationAssertion(rdfs:label obo:BFO_0000224 "has last instant"@en)
AnnotationAssertion(skos:definition obo:BFO_0000224 "t has last instant t' =Def t' last instant of t"@en)
AnnotationAssertion(skos:example obo:BFO_0000224 "The last hour of a year has last instant midnight December 31"@en)
FunctionalObjectProperty(obo:BFO_0000224)
ObjectPropertyDomain(obo:BFO_0000224 obo:BFO_0000008)
ObjectPropertyRange(obo:BFO_0000224 obo:BFO_0000203)
# Object Property: obo:IAO_0000136 (is about)
AnnotationAssertion(obo:IAO_0000112 obo:IAO_0000136 "This document is about information artifacts and their representations"@en)
AnnotationAssertion(obo:IAO_0000114 obo:IAO_0000136 obo:IAO_0000125)
AnnotationAssertion(obo:IAO_0000115 obo:IAO_0000136 "A (currently) primitive relation that relates an information artifact to an entity."@en)
AnnotationAssertion(obo:IAO_0000116 obo:IAO_0000136 "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."@en)
AnnotationAssertion(obo:IAO_0000119 obo:IAO_0000136 "Smith, Ceusters, Ruttenberg, 2000 years of philosophy"@en)
AnnotationAssertion(rdfs:label obo:IAO_0000136 "beschreibt"@de)
AnnotationAssertion(rdfs:label obo:IAO_0000136 "is about"@en)
InverseObjectProperties(obo:IAO_0000136 ontology:LP_0000024)
ObjectPropertyDomain(obo:IAO_0000136 obo:IAO_0000030)
# Object Property: obo:RO_0000056 (participates in)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0000056 "this blood clot participates in this blood coagulation"@en)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0000056 "this input material (or this output material) participates in this process"@en)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0000056 "this investigator participates in this investigation"@en)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0000056 "a relation between a continuant and a process, in which the continuant is somehow involved in the process"@en)
AnnotationAssertion(rdfs:label obo:RO_0000056 "participates in"@en)
InverseObjectProperties(obo:RO_0000056 obo:RO_0000057)
ObjectPropertyDomain(obo:RO_0000056 obo:BFO_0000002)
ObjectPropertyRange(obo:RO_0000056 obo:BFO_0000003)
# Object Property: obo:RO_0000057 (has participant)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0000057 "this blood coagulation has participant this blood clot"@en)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0000057 "this investigation has participant this investigator"@en)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0000057 "this process has participant this input material (or this output material)"@en)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0000057 "a relation between a process and a continuant, in which the continuant is somehow involved in the process"@en)
AnnotationAssertion(obo:IAO_0000116 obo:RO_0000057 "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)
AnnotationAssertion(rdfs:label obo:RO_0000057 "has participant"@en)
ObjectPropertyDomain(obo:RO_0000057 obo:BFO_0000003)
ObjectPropertyRange(obo:RO_0000057 obo:BFO_0000002)
# Object Property: obo:RO_0000058 (is concretized as)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0000058 "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)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0000058 "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)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0000058 "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."@en)
AnnotationAssertion(rdfs:label obo:RO_0000058 "is concretized as"@en)
InverseObjectProperties(obo:RO_0000058 obo:RO_0000059)
ObjectPropertyDomain(obo:RO_0000058 obo:BFO_0000031)
ObjectPropertyRange(obo:RO_0000058 ObjectUnionOf(obo:BFO_0000015 obo:BFO_0000020))
# Object Property: obo:RO_0000059 (concretizes)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0000059 "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)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0000059 "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)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0000059 "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."@en)
AnnotationAssertion(rdfs:label obo:RO_0000059 "concretizes"@en)
ObjectPropertyDomain(obo:RO_0000059 ObjectUnionOf(obo:BFO_0000015 obo:BFO_0000020))
ObjectPropertyRange(obo:RO_0000059 obo:BFO_0000031)
# Object Property: obo:RO_0000079 (function of)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0000079 "this catalysis function is a function of this enzyme"@en)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0000079 "a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"@en)
AnnotationAssertion(obo:IAO_0000116 obo:RO_0000079 "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)
AnnotationAssertion(rdfs:comment obo:RO_0000079 "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.")
AnnotationAssertion(rdfs:label obo:RO_0000079 "function of"@en)
InverseObjectProperties(obo:RO_0000079 obo:RO_0000085)
ObjectPropertyDomain(obo:RO_0000079 obo:BFO_0000034)
# Object Property: obo:RO_0000085 (has function)
AnnotationAssertion(obo:IAO_0000112 obo:RO_0000085 "this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)"@en)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0000085 "a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"@en)
AnnotationAssertion(obo:IAO_0000116 obo:RO_0000085 "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)
AnnotationAssertion(rdfs:label obo:RO_0000085 "has function"@en)
ObjectPropertyDomain(obo:RO_0000085 obo:BFO_0000004)
ObjectPropertyRange(obo:RO_0000085 obo:BFO_0000034)
# Object Property: obo:RO_0002233 (has input)
AnnotationAssertion(obo:IAO_0000114 obo:RO_0002233 obo:IAO_0000125)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002233 "p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.")
AnnotationAssertion(rdfs:label obo:RO_0002233 "has input"@en)
SubObjectPropertyOf(obo:RO_0002233 obo:RO_0000057)
InverseObjectProperties(obo:RO_0002233 obo:RO_0002352)
ObjectPropertyDomain(obo:RO_0002233 obo:BFO_0000015)
# Object Property: obo:RO_0002234 (has output)
AnnotationAssertion(obo:IAO_0000114 obo:RO_0002234 obo:IAO_0000125)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002234 "p has output c iff c is a participant in p, c is present at the end of p, and c is not present in the same state at the beginning of p.")
AnnotationAssertion(rdfs:label obo:RO_0002234 "has output"@en)
SubObjectPropertyOf(obo:RO_0002234 obo:RO_0000057)
InverseObjectProperties(obo:RO_0002234 obo:RO_0002353)
# Object Property: obo:RO_0002352 (input of)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002352 "inverse of has input")
AnnotationAssertion(rdfs:label obo:RO_0002352 "input of"@en)
SubObjectPropertyOf(obo:RO_0002352 obo:RO_0000056)
# Object Property: obo:RO_0002353 (output of)
AnnotationAssertion(obo:IAO_0000115 obo:RO_0002353 "inverse of has output")
AnnotationAssertion(rdfs:label obo:RO_0002353 "output of"@en)
SubObjectPropertyOf(obo:RO_0002353 obo:RO_0000056)
# Object Property: ontology:LP_0000017 (concretizes curriculum)
AnnotationAssertion(rdfs:label ontology:LP_0000017 "concretizes curriculum"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000017 "konkretisiert Lehrplan"@de)
SubObjectPropertyOf(ontology:LP_0000017 obo:RO_0000059)
ObjectPropertyRange(ontology:LP_0000017 ontology:LP_0000438)
# Object Property: ontology:LP_0000021 (endet mit Abschluss)
AnnotationAssertion(rdfs:label ontology:LP_0000021 "endet mit Abschluss"@de)
AnnotationAssertion(rdfs:label ontology:LP_0000021 "ermöglicht Abschluss"@de)
AnnotationAssertion(rdfs:label ontology:LP_0000021 "leads to qualification"@en)
AnnotationAssertion(skos:example ontology:LP_0000021 "Ein Bildungsgang (occurent) endet mit Abschluss.")
SubObjectPropertyOf(ontology:LP_0000021 obo:BFO_0000051)
ObjectPropertyRange(ontology:LP_0000021 ontology:LP_0000019)
# Object Property: ontology:LP_0000024 (wird beschrieben von)
AnnotationAssertion(rdfs:label ontology:LP_0000024 "described by"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000024 "wird beschrieben von"@de)
# Object Property: ontology:LP_0000026 (has class level)
AnnotationAssertion(rdfs:label ontology:LP_0000026 "has class level"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000026 "hat Jahrgangsstufe"@de)
SubObjectPropertyOf(ontology:LP_0000026 ontology:LP_0000024)
ObjectPropertyRange(ontology:LP_0000026 ontology:LP_0000009)
# Object Property: ontology:LP_0000029 (of federal state)
AnnotationAssertion(rdfs:label ontology:LP_0000029 "of federal state"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000029 "von Bundesland"@de)
SubObjectPropertyOf(ontology:LP_0000029 ontology:LP_0000024)
ObjectPropertyRange(ontology:LP_0000029 ontology:LP_0000040)
# Object Property: ontology:LP_0000041 (has unit)
AnnotationAssertion(rdfs:label ontology:LP_0000041 "has unit"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000041 "hat Einheit"@de)
SubObjectPropertyOf(ontology:LP_0000041 obo:BFO_0000051)
# Object Property: ontology:LP_0000047 (hat Schulstufe)
AnnotationAssertion(rdfs:label ontology:LP_0000047 "has educational level"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000047 "hat Schulstufe"@de)
SubObjectPropertyOf(ontology:LP_0000047 ontology:LP_0000024)
ObjectPropertyRange(ontology:LP_0000047 ontology:LP_0000020)
# Object Property: ontology:LP_0000071 (requires level)
AnnotationAssertion(rdfs:label ontology:LP_0000071 "benötigt Niveau"@de)
AnnotationAssertion(rdfs:label ontology:LP_0000071 "requires level"@en)
SubObjectPropertyOf(ontology:LP_0000071 ontology:LP_0000024)
# Object Property: ontology:LP_0000086 (ist Niveau von)
AnnotationAssertion(rdfs:label ontology:LP_0000086 "is niveau of"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000086 "ist Niveau von"@de)
SubObjectPropertyOf(ontology:LP_0000086 obo:IAO_0000136)
InverseObjectProperties(ontology:LP_0000086 ontology:LP_0000840)
# Object Property: ontology:LP_0000343 (hat Schulartfunktion)
AnnotationAssertion(rdfs:label ontology:LP_0000343 "has school type function"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000343 "hat Schulartfunktion"@de)
SubObjectPropertyOf(ontology:LP_0000343 obo:RO_0000085)
InverseObjectProperties(ontology:LP_0000343 ontology:LP_0000555)
ObjectPropertyRange(ontology:LP_0000343 ontology:LP_0000475)
# Object Property: ontology:LP_0000440 (für Bildungsgangabschnitt)
AnnotationAssertion(rdfs:label ontology:LP_0000440 "for educational track"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000440 "für Bildungsgangabschnitt"@de)
SubObjectPropertyOf(ontology:LP_0000440 obo:RO_0000056)
ObjectPropertyDomain(ontology:LP_0000440 ontology:LP_0000438)
# Object Property: ontology:LP_0000477 (concretizes type of school)
AnnotationAssertion(rdfs:label ontology:LP_0000477 "concretizes type of school"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000477 "konkretisiert Schulart"@de)
SubObjectPropertyOf(ontology:LP_0000477 obo:RO_0000059)
ObjectPropertyDomain(ontology:LP_0000477 ontology:LP_0000475)
ObjectPropertyRange(ontology:LP_0000477 ontology:LP_0000111)
# Object Property: ontology:LP_0000483 (has function specification)
AnnotationAssertion(rdfs:label ontology:LP_0000483 "has function specification"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000483 "hat Funktion"@de)
AnnotationAssertion(skos:altLabel ontology:LP_0000483 "hat Funktionsspezifikation"@de)
SubObjectPropertyOf(ontology:LP_0000483 ontology:LP_0000024)
InverseObjectProperties(ontology:LP_0000483 ontology:LP_0000495)
ObjectPropertyRange(ontology:LP_0000483 ontology:LP_0000478)
# Object Property: ontology:LP_0000495 (is function specification of)
AnnotationAssertion(rdfs:label ontology:LP_0000495 "is function specification of"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000495 "ist Funktion von"@de)
SubObjectPropertyOf(ontology:LP_0000495 obo:IAO_0000136)
# Object Property: ontology:LP_0000537 (hat Schulfach)
AnnotationAssertion(rdfs:comment ontology:LP_0000537 "Wird verwendet, um Etwas einem Fach oder einem Fach mit besonderem \"Bezug\" (z.B. Zweite-Fremdsprache) zuzuordnen."@de)
AnnotationAssertion(rdfs:label ontology:LP_0000537 "has school subject"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000537 "hat Schulfach"@de)
AnnotationAssertion(skos:editorialNote ontology:LP_0000537 "wird üblicherweise am Lehrplan verwendet; kann ggf. auch an Kompetenzbereichen/Kompetenzspezifikation bzw. Themenbereichen/Themen verwendet werden, z.B. bei Lehrplänene die sich auf mehrere Fächer beziehen")
AnnotationAssertion(skos:example ontology:LP_0000537 "Gegeben sind:
:sf_1 a :Schulfach .
:sf_1 sameAs ex:Englisch .
Bspl 1: \"Lehrplanelement :lpe_1 bezieht sich auf Schulfach Englisch\"
:lpe_1 :hat_schulfach :sf_1 .
Bspl 2: \"Lehrplanelement :lpe_1 bezieht sich auf Schulfach Englisch als Zweite-Fremdsprache\"
:lpe_2 :hat_schulfach :bezug_1 .
:bezug_1 :hat_schulfach :sf_1 .
:bezug_1 a :Zweite_Fremdsprache .
Anmerkung: Durch die Property Chain wird in Beispiel 2 durch den Reasoner das folgende Tripel automatisch ergänzt:
:lpe_2 :hat_schulfach :sf_1 ."@de)
SubObjectPropertyOf(ontology:LP_0000537 ontology:LP_0000024)
ObjectPropertyRange(ontology:LP_0000537 ObjectUnionOf(ontology:LP_0000001 ontology:LP_0000540))
# Object Property: ontology:LP_0000550 (hat Gültigkeitsbereich)
AnnotationAssertion(rdfs:label ontology:LP_0000550 "has validity scope"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000550 "hat Gültigkeitsbereich"@de)
SubObjectPropertyOf(ontology:LP_0000550 ontology:LP_0000024)
ObjectPropertyRange(ontology:LP_0000550 ontology:LP_0000547)
# Object Property: ontology:LP_0000555 (ist Schulartfunktion von)
AnnotationAssertion(rdfs:label ontology:LP_0000555 "ist Schulartfunktion von"@de)
SubObjectPropertyOf(ontology:LP_0000555 obo:RO_0000079)
# Object Property: ontology:LP_0000812 (für Schulart)
AnnotationAssertion(rdfs:label ontology:LP_0000812 "for type of school"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000812 "für Schulart"@de)
SubObjectPropertyOf(ontology:LP_0000812 ontology:LP_0000024)
ObjectPropertyRange(ontology:LP_0000812 ontology:LP_0000111)
# Object Property: ontology:LP_0000833 (hat Bildungsgangniveau)
AnnotationAssertion(rdfs:label ontology:LP_0000833 "has educational track level"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000833 "hat Bildungsgangniveau"@de)
SubObjectPropertyOf(ontology:LP_0000833 ontology:LP_0000024)
ObjectPropertyDomain(ontology:LP_0000833 ObjectUnionOf(ontology:LP_0000111 ontology:LP_0000261 ontology:LP_0000438 ontology:LP_0000816))
ObjectPropertyRange(ontology:LP_0000833 ontology:LP_0000028)
# Object Property: ontology:LP_0000840 (hat Niveau)
AnnotationAssertion(rdfs:label ontology:LP_0000840 "has niveau"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000840 "hat Niveau"@de)
SubObjectPropertyOf(ontology:LP_0000840 ontology:LP_0000024)
ObjectPropertyDomain(ontology:LP_0000840 ObjectUnionOf(ontology:LP_0000111 ontology:LP_0000261))
ObjectPropertyRange(ontology:LP_0000840 ontology:LP_0000037)
# Object Property: ontology:LP_0030051 (hat Beschreibung)
AnnotationAssertion(rdfs:label ontology:LP_0030051 "has description"@en)
AnnotationAssertion(rdfs:label ontology:LP_0030051 "hat Beschreibung"@de)
SubObjectPropertyOf(ontology:LP_0030051 ontology:LP_0000024)
ObjectPropertyDomain(ontology:LP_0030051 ObjectUnionOf(ontology:LP_0000261 ontology:LP_0000438))
ObjectPropertyRange(ontology:LP_0030051 ontology:LP_0030003)
# Object Property: ontology:LP_0030056 (has title)
AnnotationAssertion(rdfs:label ontology:LP_0030056 "has title"@en)
AnnotationAssertion(rdfs:label ontology:LP_0030056 "hat Titel"@de)
SubObjectPropertyOf(ontology:LP_0030056 ontology:LP_0000024)
ObjectPropertyDomain(ontology:LP_0030056 ObjectUnionOf(ontology:LP_0000261 ontology:LP_0000438))
ObjectPropertyRange(ontology:LP_0030056 ontology:LP_0000346)
# Object Property: ontology:LP_0030057 (has number)
AnnotationAssertion(rdfs:label ontology:LP_0030057 "has number"@en)
AnnotationAssertion(rdfs:label ontology:LP_0030057 "hat Nummer"@de)
SubObjectPropertyOf(ontology:LP_0030057 ontology:LP_0000024)
ObjectPropertyDomain(ontology:LP_0030057 ontology:LP_0000261)
ObjectPropertyRange(ontology:LP_0030057 ontology:LP_0000347)
# Object Property: ontology:LP_0030071 (has reference)
AnnotationAssertion(rdfs:label ontology:LP_0030071 "has reference"@en)
AnnotationAssertion(rdfs:label ontology:LP_0030071 "hat Verweis"@de)
SubObjectPropertyOf(ontology:LP_0030071 ontology:LP_0000024)
ObjectPropertyRange(ontology:LP_0030071 ontology:LP_0030065)
# Object Property: ontology:LP_0030072 (verweist auf)
AnnotationAssertion(rdfs:label ontology:LP_0030072 "refers to"@en)
AnnotationAssertion(rdfs:label ontology:LP_0030072 "verweist auf"@de)
SubObjectPropertyOf(ontology:LP_0030072 obo:IAO_0000136)
ObjectPropertyDomain(ontology:LP_0030072 ontology:LP_0030065)
############################
# Data Properties
############################
# Data Property: <http://www.w3.org/2006/time#inXSDDateTimeStamp> (in XSD Date-Time-Stamp)
AnnotationAssertion(rdfs:comment <http://www.w3.org/2006/time#inXSDDateTimeStamp> "Position of an instant, expressed using xsd:dateTimeStamp"@en)
AnnotationAssertion(rdfs:label <http://www.w3.org/2006/time#inXSDDateTimeStamp> "in XSD Date-Time-Stamp"@en)
AnnotationAssertion(skos:example <http://www.w3.org/2006/time#inXSDDateTimeStamp> "Valid examples:
UTC Time: 2026-02-02T14:30:00Z
Time with Offset:2026-02-02T09:30:00-05:00
With Milliseconds: 2026-02-02T14:30:00.1234Z
Invalid Examples:
2026-02-02T14:30:00 (Missing timezone)
2026-02-02 (Missing time section)")
DataPropertyRange(<http://www.w3.org/2006/time#inXSDDateTimeStamp> xsd:dateTimeStamp)
# Data Property: ontology:LP_0000344 (has value)
AnnotationAssertion(rdfs:label ontology:LP_0000344 "has value"@en)
AnnotationAssertion(rdfs:label ontology:LP_0000344 "hat Wert"@de)
SubDataPropertyOf(ontology:LP_0000344 owl:topDataProperty)
# Data Property: ontology:LP_0000460 (hat Position)
AnnotationAssertion(rdfs:label ontology:LP_0000460 "hat Position"@de)
DataPropertyRange(ontology:LP_0000460 xsd:int)
# Data Property: ontology:LP_0000463 (uri)
AnnotationAssertion(rdfs:label ontology:LP_0000463 "uri"@de)
# Data Property: ontology:LP_0000548 (von Datum)
AnnotationAssertion(rdfs:label ontology:LP_0000548 "von Datum"@de)
SubDataPropertyOf(ontology:LP_0000548 ontology:LP_0000344)
DataPropertyDomain(ontology:LP_0000548 ontology:LP_0000547)
DataPropertyRange(ontology:LP_0000548 xsd:dateTimeStamp)
# Data Property: ontology:LP_0000549 (bis Datum)
AnnotationAssertion(rdfs:label ontology:LP_0000549 "bis Datum"@de)
AnnotationAssertion(rdfs:label ontology:LP_0000549 "to date"@en)
SubDataPropertyOf(ontology:LP_0000549 ontology:LP_0000344)
DataPropertyDomain(ontology:LP_0000549 ontology:LP_0000547)
DataPropertyRange(ontology:LP_0000549 xsd:dateTimeStamp)