-
Notifications
You must be signed in to change notification settings - Fork 0
/
vccf-simple.json
23962 lines (23962 loc) · 845 KB
/
vccf-simple.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/vccf/vccf-simple.json",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/description",
"val" : "None"
}, {
"pred" : "http://purl.org/dc/terms/license",
"val" : "https://creativecommons.org/licenses/unspecified"
}, {
"pred" : "http://purl.org/dc/terms/title",
"val" : "Vasculature Common Coordinate Framework Ontology"
}, {
"pred" : "http://www.w3.org/2002/07/owl#versionInfo",
"val" : "2024-06-04"
} ],
"version" : "http://purl.obolibrary.org/obo/vccf/releases/2024-06-04/vccf-simple.json"
},
"nodes" : [ {
"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" ],
"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.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/IAO_0000115",
"lbl" : "definition",
"type" : "PROPERTY",
"meta" : {
"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."
},
"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>"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/IAO_0000589",
"lbl" : "OBO foundry unique label",
"type" : "PROPERTY",
"meta" : {
"definition" : {
"val" : "An alternative name for a class or property which is unique across the OBO Foundry."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000111",
"val" : "OBO foundry unique label"
}, {
"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 intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label = 'sequence ' + [label], etc. , MA could specify 'mouse + [label]' etc. Upon importing terms, ontology developers can choose to use the 'OBO foundry unique label' for an imported term or not. The same applies to tools ."
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "PERSON:Alan Ruttenberg"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "PERSON:Bjoern Peters"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "PERSON:Chris Mungall"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "PERSON:Melanie Courtot"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000119",
"val" : "GROUP:OBO Foundry <http://obofoundry.org/>"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/RO_0002131",
"lbl" : "overlaps",
"type" : "PROPERTY",
"meta" : {
"definition" : {
"val" : "x overlaps y if and only if there exists some z such that x has part z and z part of y"
},
"subsets" : [ "http://purl.obolibrary.org/obo/valid_for_go_annotation_extension", "http://purl.obolibrary.org/obo/valid_for_gocam", "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000114",
"val" : "http://purl.obolibrary.org/obo/IAO_0000125"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000424",
"val" : "http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.obolibrary.org/obo/BFO_0000050 some ?Y)"
}, {
"pred" : "http://purl.obolibrary.org/obo/RO_0001900",
"val" : "http://purl.obolibrary.org/obo/RO_0001901"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/RO_0002162",
"lbl" : "in taxon",
"type" : "PROPERTY",
"meta" : {
"definition" : {
"val" : "x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed."
},
"comments" : [ "Connects a biological entity to its taxon of origin." ],
"subsets" : [ "http://purl.obolibrary.org/obo/ro/subsets#ro-eco" ],
"basicPropertyValues" : [ {
"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" : "https://orcid.org/0000-0001-9227-417X"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-6601-2165"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000119",
"val" : "http://www.ncbi.nlm.nih.gov/pubmed/17921072"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000119",
"val" : "http://www.ncbi.nlm.nih.gov/pubmed/20973947"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://github.com/obophenotype/uberon/wiki/Taxon-constraints"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/RO_0002170",
"lbl" : "connected to",
"type" : "PROPERTY",
"meta" : {
"definition" : {
"val" : "a is connected to b if and only if a and b are discrete structure, and there exists some connecting structure c, such that c connects a and b"
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "a 'toe distal phalanx bone' that is connected to a 'toe medial phalanx bone' (an interphalangeal joint *connects* these two bones)."
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000119",
"val" : "http://www.ncbi.nlm.nih.gov/pubmed/22293552"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://github.com/obophenotype/uberon/wiki/Connectivity-Design-Pattern"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://github.com/obophenotype/uberon/wiki/Modeling-articulations-Design-Pattern"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/RO_0002252",
"lbl" : "connecting branch of",
"type" : "PROPERTY",
"meta" : {
"definition" : {
"val" : "b connecting-branch-of s iff b is connected to s, and there exists some tree-like structure t such that the mereological sum of b plus s is either the same as t or a branching-part-of t."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "In the tree T depicted in https://oborel.github.io/obo-relations/branching_part_of.png, B1 is connecting branch of S, and B1-1 as a connecting branch of B1."
}, {
"pred" : "http://purl.obolibrary.org/obo/RO_0004036",
"val" : "http://purl.obolibrary.org/obo/BFO_0000050"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso",
"val" : "https://github.com/obophenotype/uberon/issues/2212"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/RO_0020101",
"lbl" : "vessel supplies blood to",
"type" : "PROPERTY",
"meta" : {
"definition" : {
"val" : "x vessel supplies blood to y if and only if x is a vessel that supplies blood directly or indirectly to an anatomical structure y."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "brachial artery vessel supplies blood to brachialis muscle"
}, {
"pred" : "http://purl.org/dc/terms/contributor",
"val" : "https://orcid.org/0000-0001-6677-8489"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2024-02-01T10:09:22Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/RO_0020102",
"lbl" : "vessel drains blood from",
"type" : "PROPERTY",
"meta" : {
"definition" : {
"val" : "x vessel drains blood from y if and only if x is a vessel that drains blood directly or indirectly from an anatomical structure y."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "cystic vein vessel drains blood from gallbladder"
}, {
"pred" : "http://purl.org/dc/terms/contributor",
"val" : "https://orcid.org/0000-0001-6677-8489"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2024-02-01T10:09:41Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/RO_0020103",
"lbl" : "directly supplies and drains",
"type" : "PROPERTY",
"meta" : {
"definition" : {
"val" : "x directly supplies and drains y if and only if x is a capillary, y is an anatomical entity, and x directly supplies and drains y."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000112",
"val" : "alveolar capillary directly supplies and drains some alveolus"
}, {
"pred" : "http://purl.org/dc/terms/contributor",
"val" : "https://orcid.org/0000-0001-6677-8489"
}, {
"pred" : "http://purl.org/dc/terms/date",
"val" : "2024-02-01T10:09:59Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000000",
"lbl" : "left atrium",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in heart chamber",
"xrefs" : [ "wikipedia:Heart" ]
},
"xrefs" : [ {
"val" : "FMA:7097"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "left atrium (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000001",
"lbl" : "left inferior pulmonary vein",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in lung",
"xrefs" : [ "wikipedia:Pulmonary_vein" ]
},
"xrefs" : [ {
"val" : "FMA:49913"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "left inferior pulmonary vein (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000002",
"lbl" : "left superior pulmonary vein",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in lung",
"xrefs" : [ "wikipedia:Pulmonary_vein" ]
},
"xrefs" : [ {
"val" : "FMA:49916"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "left superior pulmonary vein (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000003",
"lbl" : "pulmonary vein",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in lung",
"xrefs" : [ "https://radiologykey.com/6-pulmonary-artery-and-vein/" ]
},
"xrefs" : [ {
"val" : "FMA:66643"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "pulmonary vein (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000004",
"lbl" : "intersegmental pulmonary vein",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in lung",
"xrefs" : [ "https://radiologykey.com/6-pulmonary-artery-and-vein/" ]
},
"xrefs" : [ {
"val" : "FMA:76965"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "intersegmental pulmonary vein (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000005",
"lbl" : "subsegmental pulmonary vein",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in lung",
"xrefs" : [ "https://radiologykey.com/6-pulmonary-artery-and-vein/" ]
},
"xrefs" : [ {
"val" : "FMA:9413"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "subsegmental pulmonary vein (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000006",
"lbl" : "pulmonary venule",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in lung",
"xrefs" : [ "https://radiologykey.com/6-pulmonary-artery-and-vein/" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "pulmonary venule (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000007",
"lbl" : "bronchial capillary",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in lung",
"xrefs" : [ "wikipedia:Bronchial_artery" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "bronchial capillary (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000008",
"lbl" : "intra-acinar venule",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in lung",
"xrefs" : [ "PMID:20110543" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "intra-acinar venule (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000009",
"lbl" : "post-alveolar capillary",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in lung",
"xrefs" : [ "PMID:20110543" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "post-alveolar capillary (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000010",
"lbl" : "right inferior pulmonary vein",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in lung",
"xrefs" : [ "wikipedia:Pulmonary_vein" ]
},
"xrefs" : [ {
"val" : "FMA:49911"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "right inferior pulmonary vein (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000011",
"lbl" : "right superior pulmonary vein",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in lung",
"xrefs" : [ "wikipedia:Pulmonary_vein" ]
},
"xrefs" : [ {
"val" : "FMA:49914"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "right superior pulmonary vein (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000012",
"lbl" : "left ventricle",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in heart chamber",
"xrefs" : [ "wikipedia:Heart" ]
},
"xrefs" : [ {
"val" : "FMA:7101"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "left ventricle (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000013",
"lbl" : "aorta",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in abdominal cavity;thoracic cavity",
"xrefs" : [ "wikipedia:Aorta" ]
},
"xrefs" : [ {
"val" : "FMA:3734"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "aorta (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000014",
"lbl" : "ascending aorta",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in thoracic cavity",
"xrefs" : [ "wikipedia:Ascending_aorta" ]
},
"xrefs" : [ {
"val" : "FMA:3736"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "ascending aorta (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000015",
"lbl" : "aortic arch",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in thoracic cavity",
"xrefs" : [ "wikipedia:Aortic_arch" ]
},
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "arch of aorta",
"xrefs" : [ "FMA:3768" ]
} ],
"xrefs" : [ {
"val" : "FMA:3768"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "aortic arch (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000016",
"lbl" : "brachiocephalic artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in thoracic cavity",
"xrefs" : [ "wikipedia:Brachiocephalic_artery" ]
},
"xrefs" : [ {
"val" : "FMA:3932"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "brachiocephalic artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000017",
"lbl" : "right common carotid artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in neck",
"xrefs" : [ "wikipedia:Common_carotid_artery" ]
},
"xrefs" : [ {
"val" : "FMA:3941"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "right common carotid artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000018",
"lbl" : "right subclavian artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in thoracic cavity",
"xrefs" : [ "wikipedia:Subclavian_artery" ]
},
"xrefs" : [ {
"val" : "FMA:3953"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "right subclavian artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000019",
"lbl" : "common carotid artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in neck",
"xrefs" : [ "wikipedia:Common_carotid_artery" ]
},
"xrefs" : [ {
"val" : "FMA:3939"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "common carotid artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000020",
"lbl" : "external carotid artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in neck",
"xrefs" : [ "wikipedia:External_carotid_artery" ]
},
"xrefs" : [ {
"val" : "FMA:10635"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "external carotid artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000021",
"lbl" : "ascending pharyngeal artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in neck",
"xrefs" : [ "wikipedia:Ascending_pharyngeal_artery" ]
},
"xrefs" : [ {
"val" : "FMA:49497"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "ascending pharyngeal artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000022",
"lbl" : "inferior tympanic artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in ear",
"xrefs" : [ "wikipedia:Inferior_tympanic_artery" ]
},
"xrefs" : [ {
"val" : "FMA:49506"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "inferior tympanic artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000023",
"lbl" : "neuromeningeal trunk",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in head",
"xrefs" : [ "wikipedia:Ascending_pharyngeal_artery" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "neuromeningeal trunk (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000024",
"lbl" : "hypoglossal branch of ascending pharyngeal artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in head",
"xrefs" : [ "wikipedia:Ascending_pharyngeal_artery" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "hypoglossal branch of ascending pharyngeal artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000025",
"lbl" : "jugular branch of ascending pharyngeal artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in head",
"xrefs" : [ "wikipedia:Ascending_pharyngeal_artery" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "jugular branch of ascending pharyngeal artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000026",
"lbl" : "odontoid arcade",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in head",
"xrefs" : [ "https://neupsykey.com/the-external-carotid-artery-and-extracranial-circulation/" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "odontoid arcade (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000027",
"lbl" : "posterior meningeal artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in head",
"xrefs" : [ "http://neuroangio.org/anatomy-and-variants/posterior-meningeal-artery/" ]
},
"xrefs" : [ {
"val" : "FMA:49503"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "posterior meningeal artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000028",
"lbl" : "pharyngeal trunk",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in neck",
"xrefs" : [ "wikipedia:Ascending_pharyngeal_artery" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "pharyngeal trunk (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000029",
"lbl" : "eustachian branch of ascending pharyngeal artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in neck",
"xrefs" : [ "http://www.ajnr.org/content/23/7/1246" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "eustachian branch of ascending pharyngeal artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000030",
"lbl" : "inferior pharyngeal artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in neck",
"xrefs" : [ "http://www.ajnr.org/content/23/7/1246" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "inferior pharyngeal artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000031",
"lbl" : "middle pharyngeal artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in neck",
"xrefs" : [ "http://www.ajnr.org/content/23/7/1246" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "middle pharyngeal artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000032",
"lbl" : "superior pharyngeal artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in neck",
"xrefs" : [ "http://www.ajnr.org/content/23/7/1246" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "superior pharyngeal artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000033",
"lbl" : "pterygovaginal artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in head",
"xrefs" : [ "http://www.ajnr.org/content/23/7/1246" ]
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "pterygovaginal artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000034",
"lbl" : "facial artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in face",
"xrefs" : [ "wikipedia:Facial_artery" ]
},
"xrefs" : [ {
"val" : "FMA:49549"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "facial artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000035",
"lbl" : "angular artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in face",
"xrefs" : [ "wikipedia:Angular_artery" ]
},
"xrefs" : [ {
"val" : "FMA:49583"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "angular artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000036",
"lbl" : "ascending palatine artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in face",
"xrefs" : [ "wikipedia:Ascending_palatine_artery" ]
},
"xrefs" : [ {
"val" : "FMA:49555"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "ascending palatine artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000037",
"lbl" : "glandular branches of facial artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in face",
"xrefs" : [ "wikipedia:Glandular_branches_of_facial_artery" ]
},
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "set of glandular branches of facial artery",
"xrefs" : [ "FMA:71675" ]
} ],
"xrefs" : [ {
"val" : "FMA:71675"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "glandular branches of facial artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000038",
"lbl" : "inferior labial artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in face",
"xrefs" : [ "wikipedia:Inferior_labial_artery" ]
},
"xrefs" : [ {
"val" : "FMA:49567"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "inferior labial artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000039",
"lbl" : "lateral nasal artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in face",
"xrefs" : [ "wikipedia:Lateral_nasal_branch_of_facial_artery" ]
},
"xrefs" : [ {
"val" : "FMA:49580"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "lateral nasal artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000040",
"lbl" : "submental artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in face",
"xrefs" : [ "wikipedia:Submental_artery" ]
},
"xrefs" : [ {
"val" : "FMA:49561"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "submental artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000041",
"lbl" : "superior labial artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in face",
"xrefs" : [ "wikipedia:Superior_labial_artery" ]
},
"xrefs" : [ {
"val" : "FMA:49570"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "superior labial artery (Human)"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/VCCF_1000042",
"lbl" : "tonsillar branch of facial artery",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A vessel located in face",
"xrefs" : [ "wikipedia:Tonsillar_branch_of_the_facial_artery" ]
},
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "tonsillar artery",
"xrefs" : [ "FMA:49558" ]
} ],
"xrefs" : [ {
"val" : "FMA:49558"
} ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000589",
"val" : "tonsillar branch of facial artery (Human)"
} ]