-
Notifications
You must be signed in to change notification settings - Fork 4
/
aeon-base.owl
4676 lines (3432 loc) · 285 KB
/
aeon-base.owl
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="http://purl.obolibrary.org/obo/aeon/aeon-base.owl#"
xml:base="http://purl.obolibrary.org/obo/aeon/aeon-base.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
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:prov="http://www.w3.org/ns/prov#"
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:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/aeon/aeon-base.owl">
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/aeon/releases/2023-02-22/aeon-base.owl"/>
<dc:contributor>Christian Hauschke</dc:contributor>
<dc:contributor>Christoph Lange</dc:contributor>
<dc:contributor>Michael Conlon</dc:contributor>
<dc:creator>Philip Strömert</dc:creator>
<dc:type rdf:resource="http://purl.obolibrary.org/obo/IAO_8000001"/>
<terms:description>_WIP - NOT READY FOR PRODUCTION_ The Academic Event Ontology (AEON) is used to represent information regarding academic events. The ontology supports the identification, development, management, evaluation, and impact assessment of events, components of events and event series, as well as identification and reuse of works presented or developed at events. The ontology is independent of knowledge, creative domain, or topics related to events. AEON is focused on events and assumes the representation of many entities associated with events such as attendees, locations, academic works, datetimes, and processes are defined in compatible ontologies.</terms:description>
<terms:license rdf:resource="https://creativecommons.org/licenses/by/4.0/"/>
<terms:title>Academic Event Ontology</terms:title>
<rdfs:comment>AEON is being developed as a part of the ConfIDent project (https://projects.tib.eu/confident).</rdfs:comment>
<owl:versionInfo>2023-02-22</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/AEON_0000026 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000026">
<obo:IAO_0000117>Philip Strömert</obo:IAO_0000117>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2020-10-14T15:31:27Z</dc:date>
<rdfs:label xml:lang="de">maps to</rdfs:label>
</owl:AnnotationProperty>
<!-- 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_0000231 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000231"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000233 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000233"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000600 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000600"/>
<!-- http://purl.obolibrary.org/obo/IAO_0006011 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0006011"/>
<!-- http://purl.obolibrary.org/obo/IAO_0100001 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0100001"/>
<!-- 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/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/date -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/date"/>
<!-- 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/type -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/type"/>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasSynonym"/>
<!-- 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#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#prefLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel"/>
<!-- http://www.w3.org/2004/02/skos/core#relatedMatch -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#relatedMatch"/>
<!-- 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/ns/prov#wasDerivedFrom -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#wasDerivedFrom"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/AEON_0000031 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000031">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/AEON_0000032"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000195"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an 'sociocultural event format' and an 'organized sociocultural event', in which the former determines the planned sociocultural conventions of the latter.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">specifies event format of</rdfs:label>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://github.com/tibonto/aeon/issues/139</rdfs:seeAlso>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000032 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000032">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000195"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an 'organized sociocultural event' and an 'sociocultural event format specification' that determines the planned sociocultrural conventions of the 'organized sociocultural event'.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">has event format</rdfs:label>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://github.com/tibonto/aeon/issues/139</rdfs:seeAlso>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000033 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000033">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000235"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000034"/>
<obo:IAO_0000111 xml:lang="en">has DID</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an entity and a distributed identifier document (DID) that is used to denote the verifiable, decentralized digital identity of an entity.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<obo:IAO_0000118 xml:lang="en">has distributed identifier</obo:IAO_0000118>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/133"/>
<rdfs:label xml:lang="en">has DID</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000040 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000040">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/AEON_0000175"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000030"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000011"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000027"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an 'academic event' and an academic field descriptor that is used to describe the scientific subject of the planned process according to some controlled vocabulary or thesaurus.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">has academic field descriptor</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000041 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000041">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/AEON_0000180"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000028"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between a obi:'planned process' and an 'event topic descriptor' that is used to descibe the theme of the planned process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">has event topic decriptor</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000043 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000043">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/AEON_0000179"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000030"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between a obi:'planned process' and an 'event fee specification'.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">has event fee specification</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/tibonto/aeon/issues/117"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000072 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000072">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/AEON_0000073"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000060"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000423"/>
<obo:IAO_0000115 xml:lang="en">see inverse relation 'has deadline</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">Given the fact that deadlines are specified in various planned processes this term should probably be regarded as a placeholder which ought to be defined in a broader ontology, maybe something like IAO?</obo:IAO_0000116>
<obo:IAO_0000117>https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2021-07-19T11:29:50Z</dc:date>
<rdfs:label xml:lang="de">specifies deadline of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000073 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000073">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000060"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000423"/>
<obo:IAO_0000115 xml:lang="en">a relation between a planned process and a deadline specification</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">Given the fact that deadlines are specified in various planned processes this term should probably be regarded as a placeholder which ought to be defined in a broader ontology, maybe something like IAO?</obo:IAO_0000116>
<obo:IAO_0000117>https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2021-07-19T11:30:01Z</dc:date>
<rdfs:label xml:lang="de">has deadline</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000075 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000075">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000235"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000016"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between a digital iao:information content entity and its corresponding ISO 26324 conform digital object identifier.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/133"/>
<rdfs:label xml:lang="en">has DOI</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000076 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000076">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000235"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000017"/>
<obo:AEON_0000026>{"wikidata": {"uri": "https://www.wikidata.org/wiki/Property:P227", "label": "GND_ID"}, "gnd": {"uri": "https://d-nb.info/standards/elementset/gnd#gndIdentifier", "label": "GND-Identifier"}}</obo:AEON_0000026>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an entity and the 'GND identifier' used by the German national library to denote this entity.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/133"/>
<rdfs:label xml:lang="en">has GND identifier</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000077 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000077">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000235"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9606"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000245"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000018"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between a person or organization and the 'international standard name identifier' used to denote the person or organization in the ISNI database.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/133"/>
<rdfs:label xml:lang="en">has ISNI</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000078 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000078">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000235"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_9606"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/IAO_0000708"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between a person and the 'ORCID' used to denote the person in the ORCID database.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/133"/>
<rdfs:label xml:lang="en">has ORCID</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000079 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000079">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000235"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/OBI_0000245"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000020"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between a person and the 'ROR identifier' used to denote the entity in the ROR database.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://ror.org/</obo:IAO_0000119>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/133"/>
<rdfs:label xml:lang="en">has ROR</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000080 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000080">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000235"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000021"/>
<obo:AEON_0000026>{"wikidata": {"uri": null, "label": "itemID"}, "openresearch": {"uri": "https://www.openresearch.org/wiki/Property:Wikidataid", "label": "Wikidataid"}}</obo:AEON_0000026>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an entity and the Wikidata identifier used to denote this entity in the Wikidata database.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<obo:IAO_0000118 xml:lang="en">has Wikidata QID</obo:IAO_0000118>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/133"/>
<rdfs:label xml:lang="en">has QID</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000081 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000081">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/TXPO_0002523"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/AEON_0000084"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000197"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an academic event series and an academic event. It is used to express that the academic event series has a specific academic event as its part.</obo:IAO_0000115>
<rdfs:label xml:lang="en">event series of</rdfs:label>
<prov:wasDerivedFrom rdf:resource="https://w3id.org/seo#hasEvent"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000082 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000082">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115>A relation obtaining between organized sociocultural events that partly overlap in their duration because they share a location, but which are otherwise regarded distinct from each other. Typically a smaller or less known event is said to be co-located with a bigger or more more known event.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/138"/>
<rdfs:label xml:lang="en">co-located with event</rdfs:label>
<rdfs:seeAlso rdf:resource="https://www.wikidata.org/wiki/Wikidata:Property_proposal/colocated_with"/>
<skos:closeMatch rdf:resource="https://w3id.org/seo#colocatedWith"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000083 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000083">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between organized sociocultural events that share some of the planning and/or organizing process, but which are otherwise considered destinct from each other.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en"></obo:IAO_0000116>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/138"/>
<rdfs:label xml:lang="en">joint event of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000084 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000084">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002012"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000197"/>
<obo:AEON_0000026>{"wikidata": {"uri": "https://www.wikidata.org/wiki/Property:P179", "label": "part_of_the_seriesLabel"}, "openresearch": {"uri": "https://www.openresearch.org/wiki/Property:Event_in_series", "label": "Event_in_series"}}</obo:AEON_0000026>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an academic event and an academic event series. It is used to express that the academic event is part of a specific event series.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">part of event series</rdfs:label>
<skos:relatedMatch rdf:resource="https://w3id.org/seo#belongsToSeries"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000085 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000085">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002012"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/AEON_0000178"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000001"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000001"/>
<obo:IAO_0000115 xml:lang="en">see also inverse property: A relation obtaining between an academic event and another academic event or event series. An umbrelle event/series is a superordinate event/series that combines several smaller academic events/series at the same time.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">umbrella event of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000086 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000086">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000066"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000003"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000009"/>
<obo:AEON_0000026>{"wikidata": {"uri": "https://www.wikidata.org/wiki/Property:P17", "label": "countryLabel"}, "openresearch": {"uri": "https://www.openresearch.org/wiki/Property:Has_location_country", "label": "Has_location_country"}}</obo:AEON_0000026>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between a bfo:occurent and the country in which it occurs.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">occurs in country</rdfs:label>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://github.com/tibonto/aeon/issues/142</rdfs:seeAlso>
<skos:closeMatch rdf:resource="https://w3id.org/seo#heldInCountry"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000087 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000087">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000066"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000003"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000856"/>
<obo:AEON_0000026>{"wikidata": {"uri": "https://www.wikidata.org/wiki/Property:P276", "label": "locationLabel"}, "openresearch": {"uri": "https://www.openresearch.org/wiki/Property:Has_location_city", "label": "Has_location_city"}, "gnd": {"uri": "https://d-nb.info/standards/elementset/gnd#placeOfConferenceOrEvent", "label": "Place of conference or event"}}</obo:AEON_0000026>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between a bfo:occurent and the city in which it occurs.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">occurs in city</rdfs:label>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://github.com/tibonto/aeon/issues/142</rdfs:seeAlso>
<skos:closeMatch rdf:resource="https://w3id.org/seo#heldInCity"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000088 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000088">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000066"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000003"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/ENVO_00000005"/>
<obo:AEON_0000026>{"wikidata": {"uri": "https://www.wikidata.org/wiki/Property:P131", "label": "located_in_the_administrative_territorial_entityLabel"}, "openresearch": {"uri": "https://www.openresearch.org/wiki/Property:Has_location_state", "label": "Has_location_state"}}</obo:AEON_0000026>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between a bfo:occurent and the province in which it occurs.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">occurs in province</rdfs:label>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://github.com/tibonto/aeon/issues/142</rdfs:seeAlso>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000089 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000089">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000066"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000003"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000025"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between a bfo:occurent and the event venue in which it occurs.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">occurs in event venue</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000175 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000175">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000027"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000030"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000011"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<obo:IAO_0000115 xml:lang="en">see also inverse property: A relation obtaining between an 'academic field descriptor' and a obi:'planned process', in which the former is used to descibe the scientific subject of the latter according to some controlled vocabulary or thesaurus.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">describes academic field of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000176 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000176">
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an organized sociocultural event and another organized sociocultural event. A collocated organized sociocultural event is an organized sociocultural event that takes place at the same location and time as another organized sociocultural event.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">The former inverse relation "co-located with event" (AEON_0000082) was made symetric, making this relation obsolete.</obo:IAO_0000116>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/138"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/AEON_0000082"/>
<rdfs:label xml:lang="en">obsolete_has co-located event</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000177 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000177">
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an organized sociocultural event and another organized sociocultural event. A joint organized sociocultural event is an organized sociocultural event that shares some of the planning and/or organizing logistics with another organized sociocultural event, but is otherwise independent from it.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">The former inverse relation "joint event of" (AEON:0000083) was made symmetric, making this relation obsolete.</obo:IAO_0000116>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<obo:IAO_0000231 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000227"/>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/138"/>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/AEON_0000083"/>
<rdfs:label xml:lang="en">obsolete_has joint event</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000178 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000178">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/TXPO_0002523"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an organized sociocultural event and another organized sociocultural event or event series. An umbrella organized sociocultural event is a superordinate event that combines several smaller organized sociocultural events at the same time.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">has umbrella event</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000179 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000179">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000030"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an 'event fee specification' and a obi:'planned process'.</obo:IAO_0000115>
<obo:IAO_0000117>https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2021-06-28T12:48:49Z</dc:date>
<rdfs:label xml:lang="en">specifies event fee of</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/tibonto/aeon/issues/117"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000180 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000180">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000028"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<obo:IAO_0000115 xml:lang="en">see also inverse property: A relation obtaining between an 'event topic descriptor' and a obi:'planned process', in which the former is used to descibe the theme of the latter.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">describes event topic of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000181 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000181">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000235"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/AEON_0000001"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/AEON_0000002"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/wikiCFP_ID"/>
<obo:AEON_0000026>{"wikidata": {"uri": "https://www.wikidata.org/wiki/Property:P5127", "label": "WikiCFP_conference_series_ID"}}</obo:AEON_0000026>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">A relation obtaining between an 'academic event' or 'academic event series' and the WikiCFP identifier used to denote this 'academic event' or 'academic event series' in the wikiCFP database.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.wikicfp.com/cfp/</obo:IAO_0000119>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/133"/>
<rdfs:label xml:lang="en">has WikiCFP identifier</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000217 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000217">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/AEON_0000185"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000423"/>
<obo:IAO_0000115 xml:lang="en">A relation that relates an entity with its Twitter account.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">It is still an open question if this relation is the best way to relate a Twitter account to some entity that has a representation on this social media plattform. At present, 2022-08-26, no BFO based ontology that properly represents scocial media plattforms could be identified.</obo:IAO_0000116>
<obo:IAO_0000233 rdf:resource="https://github.com/tibonto/aeon/issues/28"/>
<dc:creator>https://orcid.org/0000-0002-1595-3213</dc:creator>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2022-08-26T13:34:04Z</dc:date>
<rdfs:label xml:lang="en">has Twitter account</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000054 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000054"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000055 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000055"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000066 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000066"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000219 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000219"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000235 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000235"/>
<!-- http://purl.obolibrary.org/obo/RO_0000056 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000056"/>
<!-- http://purl.obolibrary.org/obo/RO_0000057 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000057"/>
<!-- http://purl.obolibrary.org/obo/RO_0000059 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000059"/>
<!-- http://purl.obolibrary.org/obo/RO_0000081 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000081"/>
<!-- http://purl.obolibrary.org/obo/RO_0000087 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000087"/>
<!-- http://purl.obolibrary.org/obo/RO_0002012 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002012"/>
<!-- http://purl.obolibrary.org/obo/RO_0002224 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002224"/>
<!-- http://purl.obolibrary.org/obo/RO_0002230 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002230"/>
<!-- http://purl.obolibrary.org/obo/RO_0002351 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002351"/>
<!-- http://purl.obolibrary.org/obo/TXPO_0002523 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/TXPO_0002523"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/AEON_0000074 -->
<owl:DatatypeProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000074">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002815"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000060"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000423"/>
<obo:IAO_0000115 xml:lang="en">A data property which is intended to be used for the literal representation of a deadline specification in the xsd:dateTimeStamp format</obo:IAO_0000115>
<obo:IAO_0000117>https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2021-07-19T13:49:58Z</dc:date>
<rdfs:label xml:lang="en">deadline datetime value</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/tibonto/aeon/issues/125"/>
</owl:DatatypeProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000091 -->
<owl:DatatypeProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000091">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002815"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000090"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000423"/>
<obo:IAO_0000115 xml:lang="en">A shortend representation of a planned process name that has been formed from the initial components of a planned process name representation, usually using individual initial letters.</obo:IAO_0000115>
<obo:IAO_0000117>https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2021-09-13T08:55:02Z</dc:date>
<rdfs:label xml:lang="en">planned process acronym</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/tibonto/aeon/issues/132"/>
</owl:DatatypeProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000140 -->
<owl:DatatypeProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000140">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
<obo:AEON_0000026>{"crossref": {"api_proceedings_endpoint_uri": "https://api.crossref.org/types/proceedings/works?select=event", "json_api_key": {"event": "number"}}}</obo:AEON_0000026>
<obo:IAO_0000115>The ordinal number of an academic event, if it is a part of an event series.</obo:IAO_0000115>
<rdfs:label xml:lang="en">event number</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000141 -->
<owl:DatatypeProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000141">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<obo:AEON_0000026>{"wikidata": {"uri": "https://www.wikidata.org/wiki/Property:P582", "label": "end_time"}, "openresearch": {"uri": "https://www.openresearch.org/wiki/Property:End_date", "label": "End_date"},"crossref": {"api_proceedings_endpoint_uri": "https://api.crossref.org/types/proceedings/works?select=event", "json_api_key": {"event": "end"}}}</obo:AEON_0000026>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 xml:lang="en">A data property to provide the planned end date of an organized sociocultural event in the xsd:dateTimeStamp format.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">end date</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/tibonto/aeon/issues/122"/>
</owl:DatatypeProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000142 -->
<owl:DatatypeProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000142">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/AEON_0000196"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<obo:AEON_0000026>{"wikidata": {"uri": "https://www.wikidata.org/wiki/Property:P580", "label": "start_time"}, "openresearch": {"uri": "https://www.openresearch.org/wiki/Property:Start_date", "label": "Start_date"},"crossref": {"api_proceedings_endpoint_uri": "https://api.crossref.org/types/proceedings/works?select=event", "json_api_key": {"event": "start"}}}</obo:AEON_0000026>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 xml:lang="en">A data property to provide the planned end date of an organized sociocultural event in the xsd:dateTimeStamp format.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-1595-3213</obo:IAO_0000117>
<rdfs:label xml:lang="en">start date</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/tibonto/aeon/issues/122"/>
</owl:DatatypeProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000143 -->
<owl:DatatypeProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000143">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9606"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000245"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<obo:IAO_0000112 xml:lang="en">0049 176 123456</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 xml:lang="en">This data property associates a telephone number with a contributor</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">It needs to be discussed, if we need this information to be modeled more finegrained using e.g. iao:'email address' (see also https://github.com/information-artifact-ontology/IAO/issues/130).
For now it seems sufficient to have a data property.</obo:IAO_0000116>
<obo:IAO_0000117 rdf:resource="https://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">phone number value</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/tibonto/aeon/issues/129"/>
</owl:DatatypeProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000144 -->
<owl:DatatypeProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000144">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9606"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000245"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<obo:IAO_0000112 xml:lang="en">contact@academic-event.org</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 xml:lang="en">This data property associates an email adress with a contributor.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">It needs to be discussed, if we need this information to be modeled more finegrained using e.g. iao:'email address' (see also https://github.com/information-artifact-ontology/IAO/issues/130).
For now it seems sufficient to have a data property.</obo:IAO_0000116>
<obo:IAO_0000117 rdf:resource="https://orcid.org/0000-0002-1595-3213"/>
<rdfs:label xml:lang="en">email address value</rdfs:label>
<rdfs:seeAlso rdf:resource="https://github.com/tibonto/aeon/issues/129"/>
</owl:DatatypeProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000145 -->
<owl:DatatypeProperty rdf:about="http://purl.obolibrary.org/obo/AEON_0000145">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/AEON_0000158"/>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<obo:IAO_0000115 xml:lang="en">An academic event metric that provides a rate consiting of the number of accepted papers devided by the number of submitted papers.</obo:IAO_0000115>
<rdfs:label xml:lang="en">acceptance rate</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.obolibrary.org/obo/AEON_0000146 -->