-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallont.json
16958 lines (16958 loc) · 720 KB
/
gallont.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" : [ {
"id" : "http://purl.obolibrary.org/obo/gallont.json",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/description",
"val" : "Ontology of plant gall phenotypes. Plant galls are novel plant structures, generated by plants in response to biotic stressors. This ontology is used to annotate gall phenotypes (e.g., their colors, textures, sizes, locations on the plant) in a semantic way, in order to facilitate discoveries about the genetic and physiologic mechanisms responsible for such phenotypes. The ontology can also be used as a controlled vocabulary for natural language descriptions of plant galls."
}, {
"pred" : "http://purl.org/dc/terms/license",
"val" : "https://creativecommons.org/publicdomain/zero/1.0/"
}, {
"pred" : "http://purl.org/dc/terms/title",
"val" : "Plant Gall Ontology"
}, {
"pred" : "http://www.w3.org/2002/07/owl#versionInfo",
"val" : "2024-04-19"
} ],
"version" : "http://purl.obolibrary.org/obo/gallont/releases/2024-04-19/gallont.json"
},
"nodes" : [ {
"id" : "http://purl.obolibrary.org/obo/IAO_0000125",
"lbl" : "pending final vetting",
"type" : "INDIVIDUAL",
"meta" : {
"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."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000111",
"val" : "pending final vetting"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000114",
"val" : "http://purl.obolibrary.org/obo/IAO_0000125"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/IAO_0000078",
"lbl" : "curation status specification",
"type" : "CLASS",
"meta" : {
"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."
},
"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"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/IAO_0000428",
"lbl" : "requires discussion",
"type" : "INDIVIDUAL",
"meta" : {
"definition" : {
"val" : "A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000111",
"val" : "requires discussion"
}, {
"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" : "Alan Ruttenberg"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000119",
"val" : "group:OBI"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/NCIT_C94730",
"lbl" : "winter",
"type" : "INDIVIDUAL"
}, {
"id" : "http://purl.obolibrary.org/obo/ENVO_03000096",
"lbl" : "season",
"type" : "CLASS"
}, {
"id" : "http://purl.obolibrary.org/obo/NCIT_C94731",
"lbl" : "spring",
"type" : "INDIVIDUAL"
}, {
"id" : "http://purl.obolibrary.org/obo/NCIT_C94732",
"lbl" : "summer",
"type" : "INDIVIDUAL"
}, {
"id" : "http://purl.obolibrary.org/obo/NCIT_C94733",
"lbl" : "autumn",
"type" : "INDIVIDUAL"
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000001",
"lbl" : "entity",
"type" : "CLASS",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/BFO_0000179",
"val" : "entity"
}, {
"pred" : "http://purl.obolibrary.org/obo/BFO_0000180",
"val" : "Entity"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "Julius Caesar"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "Verdi’s Requiem"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "the Second World War"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "your body mass index"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "Entity doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example Werner Ceusters 'portions of reality' include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, 'How to track absolutely everything' at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000600",
"val" : "An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy",
"val" : "http://purl.obolibrary.org/obo/bfo.owl"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000002",
"lbl" : "continuant",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000003",
"lbl" : "occurrent",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An entity that has temporal parts and that happens, unfolds or develops through time."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/BFO_0000179",
"val" : "occurrent"
}, {
"pred" : "http://purl.obolibrary.org/obo/BFO_0000180",
"val" : "Occurrent"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players."
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "Occurrent doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process."
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by 'spn[e]' and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write 'spr[e]' and `spl[e]' respectively for the spread and spell of e, omitting mention of the frame."
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000600",
"val" : "An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000601",
"val" : "Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000601",
"val" : "b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000602",
"val" : "(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] "
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000602",
"val" : "(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] "
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy",
"val" : "http://purl.obolibrary.org/obo/bfo.owl"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000004",
"lbl" : "independent continuant",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])"
},
"comments" : [ "A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything." ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000008",
"lbl" : "temporal region",
"type" : "CLASS",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/BFO_0000179",
"val" : "t-region"
}, {
"pred" : "http://purl.obolibrary.org/obo/BFO_0000180",
"val" : "TemporalRegion"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "Temporal region doesn't have a closure axiom because the subclasses don't exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn't overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000600",
"val" : "A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000601",
"val" : "All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000601",
"val" : "Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000602",
"val" : "(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] "
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000602",
"val" : "(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] "
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000602",
"val" : "(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] "
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy",
"val" : "http://purl.obolibrary.org/obo/bfo.owl"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000015",
"lbl" : "process",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])"
},
"comments" : [ "An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t." ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000016",
"lbl" : "disposition",
"type" : "CLASS"
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000017",
"lbl" : "realizable entity",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000019",
"lbl" : "quality",
"type" : "CLASS"
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000020",
"lbl" : "specifically dependent continuant",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])"
},
"comments" : [ "A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same." ],
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://github.com/OBOFoundry/COB/issues/65"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://github.com/oborel/obo-relations/pull/284"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000023",
"lbl" : "role",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000034",
"lbl" : "function",
"type" : "CLASS"
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000038",
"lbl" : "one-dimensional temporal region",
"type" : "CLASS",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/BFO_0000179",
"val" : "1d-t-region"
}, {
"pred" : "http://purl.obolibrary.org/obo/BFO_0000180",
"val" : "OneDimensionalTemporalRegion"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "the temporal region during which a process occurs."
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks)."
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000600",
"val" : "A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000602",
"val" : "(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] "
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#isDefinedBy",
"val" : "http://purl.obolibrary.org/obo/bfo.owl"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000040",
"lbl" : "material entity",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000050",
"lbl" : "part_of",
"type" : "PROPERTY",
"meta" : {
"definition" : {
"val" : "a core relation that holds between a part and its whole"
},
"subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_gp2term", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ],
"xrefs" : [ {
"val" : "BFO:0000050"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000111",
"val" : "is part of"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "my brain is part of my body (continuant parthood, two material entities)"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "this day is part of this year (occurrent parthood)"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "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."
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "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/"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "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.)\n\nA 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'."
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "part_of"
}, {
"pred" : "http://purl.obolibrary.org/obo/RO_0001900",
"val" : "http://purl.obolibrary.org/obo/RO_0001901"
}, {
"pred" : "http://purl.obolibrary.org/obo/RO_0040042",
"val" : "http://purl.obolibrary.org/obo/BFO_0000002"
}, {
"pred" : "http://purl.obolibrary.org/obo/RO_0040042",
"val" : "http://purl.obolibrary.org/obo/BFO_0000003"
}, {
"pred" : "http://purl.obolibrary.org/obo/RO_0040042",
"val" : "http://purl.obolibrary.org/obo/BFO_0000004"
}, {
"pred" : "http://purl.obolibrary.org/obo/RO_0040042",
"val" : "http://purl.obolibrary.org/obo/BFO_0000017"
}, {
"pred" : "http://purl.obolibrary.org/obo/RO_0040042",
"val" : "http://purl.obolibrary.org/obo/BFO_0000019"
}, {
"pred" : "http://purl.obolibrary.org/obo/RO_0040042",
"val" : "http://purl.obolibrary.org/obo/BFO_0000020"
}, {
"pred" : "http://purl.obolibrary.org/obo/RO_0040042",
"val" : "http://purl.obolibrary.org/obo/BFO_0000031"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace",
"val" : "external"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace",
"val" : "plant_ontology"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace",
"val" : "quality"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#shorthand",
"val" : "part_of"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "http://ontologydesignpatterns.org/wiki/Submissions:PartOf"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "http://www.obofoundry.org/ro/#OBO_REL:part_of"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://wiki.geneontology.org/Part_of"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000051",
"lbl" : "has_part",
"type" : "PROPERTY",
"meta" : {
"definition" : {
"val" : "a core relation that holds between a whole and its part"
},
"subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_go_ontology", "http://purl.obolibrary.org/obo/valid_for_gocam" ],
"xrefs" : [ {
"val" : "BFO:0000051"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000111",
"val" : "has part"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "my body has part my brain (continuant parthood, two material entities)"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "this year has part this day (occurrent parthood)"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "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."
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "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/"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "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.)\n\nA 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'."
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "has_part"
}, {
"pred" : "http://purl.obolibrary.org/obo/RO_0001900",
"val" : "http://purl.obolibrary.org/obo/RO_0001901"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace",
"val" : "external"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace",
"val" : "plant_ontology"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace",
"val" : "quality"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#shorthand",
"val" : "has_part"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000062",
"lbl" : "preceded_by",
"type" : "PROPERTY",
"meta" : {
"definition" : {
"val" : "x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."
},
"comments" : [ "Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other." ],
"subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ],
"xrefs" : [ {
"val" : "BFO:0000062"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000111",
"val" : "preceded by"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000116",
"val" : "An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other."
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "is preceded by"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "preceded_by"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "http://www.obofoundry.org/ro/#OBO_REL:preceded_by"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#created_by",
"val" : "Laurel_Cooper"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date",
"val" : "2013-07-09T14:29:15Z"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace",
"val" : "external"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace",
"val" : "plant_ontology"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#shorthand",
"val" : "preceded_by"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/BFO_0000063",
"lbl" : "precedes",
"type" : "PROPERTY",
"meta" : {
"definition" : {
"val" : "x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) <= α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."
},
"subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ],
"xrefs" : [ {
"val" : "BFO:0000063"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000111",
"val" : "precedes"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#created_by",
"val" : "Laurel_Cooper"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date",
"val" : "2015-06-04T17:18:40Z"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace",
"val" : "external"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace",
"val" : "plant_ontology"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#shorthand",
"val" : "precedes"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/CARO_0000005",
"lbl" : "anatomical space",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Non-material anatomical entity of three dimensions, that is generated by morphogenetic or other physiologic processes; is surrounded by one or more anatomical structures; contains one or more organism substances or anatomical structures."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/CARO_0000030",
"lbl" : "asexual organism",
"type" : "CLASS"
}, {
"id" : "http://purl.obolibrary.org/obo/CARO_0000048",
"lbl" : "gonochoristic organism",
"type" : "CLASS"
}, {
"id" : "http://purl.obolibrary.org/obo/FLOPO_0900042",
"lbl" : "succulent",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A gall trait in which the gall parenchyma is juicy, as in the tissue of some fruits (for example grapes, starfruit)."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://lccn.loc.gov/2011488555"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/81385187"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000000",
"lbl" : "has associate",
"type" : "PROPERTY",
"meta" : {
"comments" : [ "Relationship that specifies which organism is associated with a class." ],
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2024-01-24T01:49:45Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000001",
"lbl" : "DEPRECATED plant gall",
"type" : "CLASS",
"meta" : {
"comments" : [ "Updated the class definition to reflect that this structure is a response to biotic stress" ],
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "http://purl.obolibrary.org/obo/GALLONT_0000025"
} ],
"deprecated" : true
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000002",
"lbl" : "emergence hole",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An anatomical space that is an opening through which a gall-inhabiting organism has emerged."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-19T19:43:46Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/33275700"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000003",
"lbl" : "plant gall cavity",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A plant anatomical space that is located inside a gall."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-19T19:44:42Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/117192961"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000004",
"lbl" : "kapéllo",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A gall structure that is attractive to another organism, usually ants, and which facilitates dispersal of the gall"
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-22T01:51:19Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/61878883"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000005",
"lbl" : "larval chamber",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A gall structure wherein the gall inducer and/or its associates resides and which includes a portion of nutritive tissue."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-22T01:54:05Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/139401882"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000006",
"lbl" : "detached chamber",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A larval chamber that is detached from the plant but enclosed in a cavity."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-22T02:01:48Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/117192961"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000007",
"lbl" : "internal quality",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A quality that inheres in the portion of a gall that is internal."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-23T21:16:13Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000008",
"lbl" : "filamentous",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A gall trait in which a larval chamber is suspended medially in the parenchyma by radiating plant fibers inside a largely hollow chamber."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-24T01:32:39Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/168120575"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000009",
"lbl" : "monothalamous",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An internal gall trait in which a gall has a single larval chamber for the gall-inducing insect."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "single chambered"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "unilocular"
}, {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-24T01:37:35Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000010",
"lbl" : "pithy",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An internal gall trait in which the tissue is reminiscent of pith, the relatively soft tissue at the center of a shoot axis."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-24T01:41:48Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/138512674"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000011",
"lbl" : "polythalamous",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An internal gall trait in which more than one larval chamber is present for the inducer species."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "multi-celled"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "multichambered"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "multilocular"
}, {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-24T01:44:34Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/33275700"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000012",
"lbl" : "solid",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An internal gall trait in which the gall lacks macroscopic anatomical space(s) that is/are not the larval chamber."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-24T01:58:04Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/138512674"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000013",
"lbl" : "nectarous",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A gall quality in which a gall has nectaries present."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-24T02:13:52Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/47182384"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000014",
"lbl" : "caneliform",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A shape quality inhering in a bearer by virtue of the bearer's having a shape resembling a canelé, a French pastry."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-25T00:21:14Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://en.wikipedia.org/w/index.php?title=Canel%C3%A9&oldid=1160295465"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000015",
"lbl" : "cupuliform",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A shape inhering in a bearer by virtue of the bearer resembling a cup, with a depression and rim-like edge apically."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "cup-like"
}, {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-25T00:30:40Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://lccn.loc.gov/2011488555"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000016",
"lbl" : "echinoform",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A shape trait in which a gall has radiating, spine-like processes that resemble the spines of a sea urchin (cf. Cidaridae)."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-25T00:38:13Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/8139"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000017",
"lbl" : "infundibuliform",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A shape quality inhering in a bearer by virtue of the bearer being shaped like a funnel, abruptly widening from a narrow cylindrical part, to a wider distal part."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-25T00:47:37Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://lccn.loc.gov/2011488555"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/105016514"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000018",
"lbl" : "lenticular",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A shape quality inhering in a bearer by virtue of the bearer's being shaped like a lentil, with convex upper and lower surfaces."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-25T00:52:58Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://en.wikipedia.org/w/index.php?title=Glossary_of_botanical_terms&oldid=1161474424#lenticular"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "http://purl.obolibrary.org/obo/PATO_0000409"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/30408125"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000019",
"lbl" : "semiterete",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A shape quality inhering in a bearer by virtue of the bearer's appearing semicircular in cross-section, flat on one side, rounded on the other."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-25T02:03:26Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://lccn.loc.gov/2011488555"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000020",
"lbl" : "confluent",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A spatial pattern (or gall arrangement) in which adjacent objects (galls) are positioned in such a way that each gall cannot readily be distinguished as an individual."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-06-25T19:44:11Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/48455940"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000021",