-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallont-base.json
1415 lines (1415 loc) · 54.1 KB
/
gallont-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" : [ {
"id" : "http://purl.obolibrary.org/obo/gallont/gallont-base.json",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/elements/1.1/type",
"val" : "http://purl.obolibrary.org/obo/IAO_8000001"
}, {
"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-base.json"
},
"nodes" : [ {
"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",
"lbl" : "linear color gradient",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A color pattern inhering in a bearer by virtue of bearer's being marked with one hue or degree of saturation near one pole and a different hue or degree of saturation at the opposite pole and a color gradient between the two poles."
},
"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-25T20:11:58Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000022",
"lbl" : "corrugated",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A texture quality in which the surface is marked by alternating parallel ridges and grooves."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "ribbed"
}, {
"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-26T21:21:38Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "http://purl.obolibrary.org/obo/PORO_0000234"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/46514828"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000023",
"lbl" : "crackled",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A texture quality in which the surface is marked by a network of cracks, as in craquelure."
},
"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-26T21:25:58Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://en.wikipedia.org/w/index.php?title=Craquelure&oldid=1117468584"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/61507036"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000024",
"lbl" : "dimpled",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A surface feature shape in which a surface has a dimple, a depression or indentation on a surface."
},
"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-26T21:30:22Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://dictionary.cambridge.org/us/dictionary/english/dimpled"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/47442195"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000025",
"lbl" : "plant gall",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A multi-tissue plant structure (PO:0025496) that develops in response to a biotic stress (PSO:0000004)."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/pato#seeAlso",
"val" : "https://www.inaturalist.org/observations/62135900"
}, {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2024-03-24T21:38:29Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000026",
"lbl" : "faceted",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A texture quality in which a surface is covered or partially by with facets."
},
"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-26T21:35:23Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/33275277"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000027",
"lbl" : "moss-like",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A texture quality in which a surface has the appearance and/or consistency of moss, especially those species in Polytrichaceae (Bryophyta)."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "mossy"
}, {
"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-26T21:41:40Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/134718736"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000028",
"lbl" : "papery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A texture quality in which a surface has the consistency and thickness of a paper bag (thin and dry)."
},
"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-26T21:48:32Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/62933356"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000029",
"lbl" : "felt-like",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A quality inhering in a bearer by virtue of the bearer's being covered in short, dense, fine hairs, which give the appearance of felt."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "felted"
}, {
"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-26T22:01:09Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/54851258"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000030",
"lbl" : "pruinose",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A coating quality in which a surface is covered in a whitish, powdery film or dust."
},
"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-27T00:31:53Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://en.wikipedia.org/w/index.php?title=Pruinescence&oldid=1068715610"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/64626028"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000031",
"lbl" : "semideciduous",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A shedability quality in which a part can readily be detached from its location but it normally (in nature) stays attached; detachable."
},
"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-27T01:16:14Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/167537899"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000032",
"lbl" : "brittle",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A structural quality inhering in an object by virtue of the object's susceptibility to breaks, without significant deformation (strain) when subjected to stress."
},
"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-27T01:41:01Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000033",
"lbl" : "DEPRECATED erineum",
"type" : "CLASS",
"meta" : {
"comments" : [ "logic needed to be fixed" ],
"basicPropertyValues" : [ {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "http://purl.obolibrary.org/obo/GALLONT_0000048"
} ],
"deprecated" : true
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000034",
"lbl" : "blister gall",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A plant gall that is part of a leaf and which appears as a portion of swollen tissue, similar to a blister."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "http://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-08-01T22:15:28Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://lccn.loc.gov/41001073"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000035",
"lbl" : "bud gall",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A plant gall that is located on a bud."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "http://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-08-01T22:23:57Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://lccn.loc.gov/41001073"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/48455720"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000036",
"lbl" : "bullet gall",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A plant gall that is monothalamous and solid, with a shape reminiscent of a bullet. Gall is usually subspherical or subelliptical in shape."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "http://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-08-01T22:28:40Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://lccn.loc.gov/41001073"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/58434690"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000037",
"lbl" : "roly-poly gall",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A plant gall that has a detached larval chamber capable of rolling around a hollow chamber located inside the gall."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "http://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-08-02T01:35:34Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://lccn.loc.gov/41001073"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/117192961"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000038",
"lbl" : "rosette gall",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A plant gall that is located on a bud and which consists of layers of scale leaves or similar phyllomes that surround the inducer's chamber."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "bunch gall"
}, {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "http://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2023-08-02T01:43:13Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://lccn.loc.gov/41001073"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://www.inaturalist.org/observations/33495996"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000039",
"lbl" : "Acraspis erinacei (agamic)",
"type" : "CLASS",
"meta" : {
"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-03-25T19:27:00Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000040",
"lbl" : "nutritive tissue",
"type" : "CLASS",
"meta" : {
"comments" : [ "A portion of plant tissue that is fed upon by a gall inhabitant." ],
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "http://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2024-01-19T02:22:00Z"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://doi.org/10.3390%2Finsects12100850"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000041",
"lbl" : "larval cavity",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A cavity that is occupied by one or more gall inhabitants."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "http://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2024-01-19T02:27:40Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000042",
"lbl" : "Quercus sect. Quercus",
"type" : "CLASS",
"meta" : {
"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-03-25T01:26:41Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000043",
"lbl" : "Disholcaspis quercusglobulus (sexgen)",
"type" : "CLASS",
"meta" : {
"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-03-25T01:28:09Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000044",
"lbl" : "Disholcaspis quercusglobulus (agamic)",
"type" : "CLASS",
"meta" : {
"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-03-25T01:28:48Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000045",
"lbl" : "Acraspis erinacei (sexgen)",
"type" : "CLASS",
"meta" : {
"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-03-25T19:27:17Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000046",
"lbl" : "Aceria triplacis",
"type" : "CLASS",
"meta" : {
"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-03-25T19:39:17Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000047",
"lbl" : "Acraspis gemula",
"type" : "CLASS",
"meta" : {
"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-03-25T19:40:19Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000048",
"lbl" : "erineum",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A plant gall that is induced by mites (Acariformes) on leaves and which consists of an area of leaf epidermis that has increased hairiness."
},
"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-08-01T21:56:59Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000049",
"lbl" : "plant gall cluster",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A multi-tissue plant structure (PO:0025496) that has as parts multiple individual plant galls (GALLONT:0000025) in ane aggregation."
},
"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-04-11T14:32:57Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000050",
"lbl" : "zoocecidium",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A plant gall that is induced by an animal"
},
"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-04-15T13:33:50Z"
}, {
"pred" : "http://purl.org/dc/terms/source",
"val" : "https://doi.org/10.1007/978-94-017-6230-4_9"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000051",
"lbl" : "plant gall abscission zone",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An abscission zone (PO:0000146) that is part of a plant gall."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/pato#seeAlso",
"val" : "https://www.inaturalist.org/observations/129032167"
}, {
"pred" : "http://purl.org/dc/terms/creator",
"val" : "https://orcid.org/0000-0002-2119-4663"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2024-04-18T13:34:27Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/GALLONT_0000052",
"lbl" : "hasDiameterInMm",
"type" : "PROPERTY",
"meta" : {
"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-03-27T01:25:52Z"