forked from information-artifact-ontology/ontology-metadata
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omo-base.json
2451 lines (2451 loc) · 95 KB
/
omo-base.json
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
{
"graphs": [
{
"domainRangeAxioms": [],
"edges": [
{
"obj": "http://purl.obolibrary.org/obo/BFO_0000031",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_0000030"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000027",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_0000102"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000030",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_0000027"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000078",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000002"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000078",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000120"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000078",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000121"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000078",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000122"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000078",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000123"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000078",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000124"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000078",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000125"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000078",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000423"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000078",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000428"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000102",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_0000078"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000102",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_0000225"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000102",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_0000409"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000102",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000000"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000225",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000103"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000225",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000226"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000225",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000227"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000225",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000228"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000225",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000229"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000225",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/OMO_0001000"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000409",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000410"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000409",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000420"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_0000409",
"pred": "type",
"sub": "http://purl.obolibrary.org/obo/IAO_0000421"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000000",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000001"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000000",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000002"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000000",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000003"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000000",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000004"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000000",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000006"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000000",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000013"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000000",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000014"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000004",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000016"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000005",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000011"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000006",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000005"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000006",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000007"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000006",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000008"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000006",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000009"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000006",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000010"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000006",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000012"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000006",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000017"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000014",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000015"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000017",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000018"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000017",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000019"
},
{
"obj": "http://purl.obolibrary.org/obo/IAO_8000019",
"pred": "is_a",
"sub": "http://purl.obolibrary.org/obo/IAO_8000020"
}
],
"equivalentNodesSets": [],
"id": "http://purl.obolibrary.org/obo/omo/omo-base.json",
"logicalDefinitionAxioms": [],
"meta": {
"basicPropertyValues": [
{
"pred": "http://protege.stanford.edu/plugins/owl/protege#defaultLanguage",
"val": "en"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Adam Goldstein"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Alan Ruttenberg"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Albert Goldfain"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Barry Smith"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Bjoern Peters"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Carlo Torniai"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Chris Mungall"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Chris Stoeckert"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Christian A. Boelling"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Darren Natale"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "David Osumi-Sutherland"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Gwen Frishkoff"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Holger Stenzhorn"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "James A. Overton"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "James Malone"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Jennifer Fostel"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Jie Zheng"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Jonathan Rees"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Larisa Soldatova"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Lawrence Hunter"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Mathias Brochhausen"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Matt Brush"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Melanie Courtot"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Michel Dumontier"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Paolo Ciccarese"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Pat Hayes"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Philippe Rocca-Serra"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Randy Dipert"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Ron Rudnicki"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Satya Sahoo"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Sivaram Arabandi"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Werner Ceusters"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "William Duncan"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "William Hogan"
},
{
"pred": "http://purl.org/dc/elements/1.1/contributor",
"val": "Yongqun (Oliver) He"
},
{
"pred": "http://purl.org/dc/elements/1.1/description",
"val": "An ontology specifies terms that are used to annotate ontology terms for all OBO ontologies. The ontology was developed as part of Information Artifact Ontology (IAO)."
},
{
"pred": "http://purl.org/dc/elements/1.1/title",
"val": "OBO Metadata Ontology"
},
{
"pred": "http://purl.org/dc/elements/1.1/type",
"val": "http://purl.obolibrary.org/obo/IAO_8000001"
},
{
"pred": "http://purl.org/dc/terms/license",
"val": "https://creativecommons.org/publicdomain/zero/1.0/"
},
{
"pred": "http://www.w3.org/2002/07/owl#versionInfo",
"val": "2022-04-27"
}
],
"subsets": [],
"version": "http://purl.obolibrary.org/obo/omo/releases/2022-04-27/omo-base.json",
"xrefs": []
},
"nodes": [
{
"id": "http://purl.obolibrary.org/obo/IAO_0000002",
"lbl": "example to be eventually removed",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "example to be eventually removed"
}
]
},
"type": "INDIVIDUAL"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000027",
"lbl": "data item",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "data item"
}
]
},
"type": "CLASS"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000030",
"lbl": "information content entity",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "information content entity"
}
]
},
"type": "CLASS"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000078",
"lbl": "curation status specification",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "curation status specification"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000114",
"val": "http://purl.obolibrary.org/obo/IAO_0000125"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000116",
"val": "Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON:Bill Bug"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000119",
"val": "GROUP:OBI:<http://purl.obolibrary.org/obo/obi>"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000119",
"val": "OBI_0000266"
}
],
"definition": {
"val": "The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.",
"xrefs": []
}
},
"type": "CLASS"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000102",
"lbl": "data about an ontology part",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "data about an ontology part"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "Person:Alan Ruttenberg"
}
],
"definition": {
"val": "Data about an ontology part is a data item about a part of an ontology, for example a term",
"xrefs": []
}
},
"type": "CLASS"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000103",
"lbl": "failed exploratory term",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "failed exploratory term"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "Person:Alan Ruttenberg"
}
],
"definition": {
"val": "The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job",
"xrefs": []
}
},
"type": "INDIVIDUAL"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000111",
"lbl": "editor preferred term",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "editor preferred term"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000114",
"val": "http://purl.obolibrary.org/obo/IAO_0000122"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON:Daniel Schober"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000119",
"val": "GROUP:OBI:<http://purl.obolibrary.org/obo/obi>"
}
],
"definition": {
"val": "The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)",
"xrefs": []
}
},
"type": "PROPERTY"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000112",
"lbl": "example of usage",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "example of usage"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000114",
"val": "http://purl.obolibrary.org/obo/IAO_0000122"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON:Daniel Schober"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000119",
"val": "GROUP:OBI:<http://purl.obolibrary.org/obo/obi>"
}
],
"definition": {
"val": "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.",
"xrefs": []
}
},
"type": "PROPERTY"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000113",
"lbl": "in branch",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "in branch"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "GROUP:OBI"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000119",
"val": "OBI_0000277"
}
],
"definition": {
"val": "An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.",
"xrefs": []
}
},
"type": "PROPERTY"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000114",
"lbl": "has curation status",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "has curation status"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON:Alan Ruttenberg"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON:Bill Bug"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON:Melanie Courtot"
}
]
},
"type": "PROPERTY"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000115",
"lbl": "definition",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "definition"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000114",
"val": "http://purl.obolibrary.org/obo/IAO_0000122"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000116",
"val": "2012-04-05: \nBarry Smith\n\nThe 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.\n\nCan you fix to something like:\n\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\n\nAlan Ruttenberg\n\nYour 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. \n\nOn the specifics of the proposed definition:\n\nWe 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. \n\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \n\nWe 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. "
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON:Daniel Schober"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000119",
"val": "GROUP:OBI:<http://purl.obolibrary.org/obo/obi>"
}
],
"definition": {
"val": "The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.",
"xrefs": []
}
},
"type": "PROPERTY"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000116",
"lbl": "editor note",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "editor note"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000114",
"val": "http://purl.obolibrary.org/obo/IAO_0000122"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON:Daniel Schober"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000119",
"val": "GROUP:OBI:<http://purl.obofoundry.org/obo/obi>"
}
],
"definition": {
"val": "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.",
"xrefs": []
}
},
"type": "PROPERTY"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000117",
"lbl": "term editor",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "term editor"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000114",
"val": "http://purl.obolibrary.org/obo/IAO_0000122"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000116",
"val": "20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115."
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON:Daniel Schober"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000119",
"val": "GROUP:OBI:<http://purl.obolibrary.org/obo/obi>"
}
],
"definition": {
"val": "Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people",
"xrefs": []
}
},
"type": "PROPERTY"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000118",
"lbl": "alternative label",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "alternative label"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000114",
"val": "http://purl.obolibrary.org/obo/IAO_0000125"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "OBO Operations committee"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON:Daniel Schober"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000119",
"val": "GROUP:OBI:<http://purl.obolibrary.org/obo/obi>"
}
],
"comments": [
"Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related)."
],
"definition": {
"val": "A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.",
"xrefs": []
}
},
"type": "PROPERTY"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000119",
"lbl": "definition source",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "definition source"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000114",
"val": "http://purl.obolibrary.org/obo/IAO_0000122"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON:Daniel Schober"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000119",
"val": "Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000119",
"val": "GROUP:OBI:<http://purl.obolibrary.org/obo/obi>"
}
],
"definition": {
"val": "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",
"xrefs": []
}
},
"type": "PROPERTY"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000120",
"lbl": "metadata complete",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "metadata complete"
}
],
"definition": {
"val": "Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.",
"xrefs": []
}
},
"type": "INDIVIDUAL"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000121",
"lbl": "organizational term",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "organizational term"
}
],
"definition": {
"val": "Term created to ease viewing/sort terms for development purpose, and will not be included in a release",
"xrefs": []
}
},
"type": "INDIVIDUAL"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000122",
"lbl": "ready for release",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "ready for release"
}
],
"definition": {
"val": "Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \"ready_for_release\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \"ready_for_release\" will also derived from a chain of ancestor classes that are also \"ready_for_release.\"",
"xrefs": []
}
},
"type": "INDIVIDUAL"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000123",
"lbl": "metadata incomplete",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "metadata incomplete"
}
],
"definition": {
"val": "Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.",
"xrefs": []
}
},
"type": "INDIVIDUAL"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000124",
"lbl": "uncurated",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "uncurated"
}
],
"definition": {
"val": "Nothing done yet beyond assigning a unique class ID and proposing a preferred term.",
"xrefs": []
}
},
"type": "INDIVIDUAL"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000125",
"lbl": "pending final vetting",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "pending final vetting"
}
],
"definition": {
"val": "All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.",
"xrefs": []
}
},
"type": "INDIVIDUAL"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000224",
"lbl": "obsolete_core",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON: Alan Ruttenberg"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON: Melanie Courtot"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000231",
"val": "http://purl.obolibrary.org/obo/IAO_0000226"
}
],
"definition": {
"val": "Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.",
"xrefs": []
},
"deprecated": true
},
"type": "INDIVIDUAL"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000225",
"lbl": "obsolescence reason specification",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "obsolescence reason specification"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000114",
"val": "http://purl.obolibrary.org/obo/IAO_0000125"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000116",
"val": "The creation of this class has been inspired in part by Werner Ceusters' paper, Applying evolutionary terminology auditing to the Gene Ontology."
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON: Alan Ruttenberg"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000117",
"val": "PERSON: Melanie Courtot"
}
],
"definition": {
"val": "The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.",
"xrefs": []
}
},
"type": "CLASS"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000226",
"lbl": "placeholder removed",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "placeholder removed"
}
]
},
"type": "INDIVIDUAL"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000227",
"lbl": "terms merged",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "terms merged"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000116",
"val": "An editor note should explain what were the merged terms and the reason for the merge."
}
]
},
"type": "INDIVIDUAL"
},
{
"id": "http://purl.obolibrary.org/obo/IAO_0000228",
"lbl": "term imported",
"meta": {
"basicPropertyValues": [
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000111",
"val": "term imported"
},
{
"pred": "http://purl.obolibrary.org/obo/IAO_0000116",
"val": "This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use."
}