forked from biolink/biolink-model
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbiolink-model.json
3580 lines (3579 loc) · 135 KB
/
biolink-model.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
{
"$id": "https://w3id.org/biolink/biolink-model",
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"actively_involved_in": {
"description": "holds between a continuant and a process or function, where the continuant actively contributes to part or all of the process or function it realizes",
"items": {
"type": "string"
},
"type": "array"
},
"affects": {
"description": "describes an entity that has a direct affect on the state or quality of another existing entity. Use of the 'affects' predicate implies that the affected entity already exists, unlike predicates such as 'affects risk for' and 'prevents, where the outcome is something that may or may not come to be.",
"items": {
"type": "string"
},
"type": "array"
},
"affects_abundance_of": {
"description": "holds between two molecular entities where the action or effect of one changes the amount of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"affects_activity_of": {
"description": "holds between two molecular entities where the action or effect of one changes the activity of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"affects_degradation_of": {
"description": "holds between two molecular entities where the action or effect of one impacts the rate of degradation of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"affects_expression_of": {
"description": "holds between two molecular entities where the action or effect of one changes the level of expression of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"affects_folding_of": {
"description": "holds between two molecular entities where the action or effect of one changes the rate or quality of folding of the other",
"items": {
"type": "string"
},
"type": "array"
},
"affects_localization_of": {
"description": "holds between two molecular entities where the action or effect of one changes the localization of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"affects_metabolic_processing_of": {
"description": "holds between two molecular entities where the action or effect of one impacts the metabolic processing of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"affects_molecular_modification_of": {
"description": "holds between two molecular entities where the action or effect of one leads changes in the molecular modification(s) of the other (e.g. via post-translational modifications of proteins such as the addition of phosphoryl group, or via redox reaction that adds or subtracts electrons)",
"items": {
"type": "string"
},
"type": "array"
},
"affects_mutation_rate_of": {
"description": "holds between a molecular entity and a genomic entity where the action or effect of the molecular entity impacts the rate of mutation of the genomic entity within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"affects_response_to": {
"description": "holds between two molecular entities where the action or effect of one impacts the susceptibility of a biological entity or system (e.g. an organism, cell, cellular component, macromolecular machine, biological or pathological process) to the other",
"items": {
"type": "string"
},
"type": "array"
},
"affects_risk_for": {
"description": "holds between two entities where exposure to one entity alters the chance of developing the other",
"items": {
"type": "string"
},
"type": "array"
},
"affects_secretion_of": {
"description": "holds between two molecular entities where the action or effect of one impacts the rate of secretion of the other out of a cell, gland, or organ",
"items": {
"type": "string"
},
"type": "array"
},
"affects_splicing_of": {
"description": "holds between a molecular entity and an mRNA where the action or effect of the molecular entity impacts the splicing of the mRNA",
"items": {
"type": "string"
},
"type": "array"
},
"affects_stability_of": {
"description": "holds between two molecular entities where the action or effect of one impacts the stability of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"affects_synthesis_of": {
"description": "holds between two molecular entities where the action or effect of one impacts the rate of chemical synthesis of the other",
"items": {
"type": "string"
},
"type": "array"
},
"affects_transport_of": {
"description": "holds between two molecular entities where the action or effect of one impacts the rate of transport of the other across some boundary in a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"affects_uptake_of": {
"description": "holds between two molecular entities where the action or effect of one impacts the rate of uptake of the other into of a cell, gland, or organ",
"items": {
"type": "string"
},
"type": "array"
},
"aggregate_statistic": {
"type": "string"
},
"association_slot": {
"description": "any slot that relates an association to another entity",
"type": "string"
},
"association_type": {
"description": "connects an association to the type of association (e.g. gene to phenotype)",
"type": "string"
},
"biomarker_for": {
"description": "holds between a measurable molecular entity and a disease or phenotypic feature, where the entity is used as an indicator of the presence or state of the disease or feature.",
"items": {
"type": "string"
},
"type": "array"
},
"capable_of": {
"description": "holds between a physical entity and process or function, where the continuant alone has the ability to carry out the process or function.",
"items": {
"type": "string"
},
"type": "array"
},
"category": {
"description": "Name of the high level ontology class in which this entity is categorized. Corresponds to the label for the biolink entity type class. In a neo4j database this MAY correspond to the neo4j label tag",
"items": {
"type": "string"
},
"type": "array"
},
"causes": {
"description": "holds between two entities where the occurrence, existence, or activity of one causes the occurrence or generation of the other",
"items": {
"type": "string"
},
"type": "array"
},
"change_is_catalyzed_by": {
"description": "hyperedge connecting an association between two causally connected entities (for example, two chemical entities, or a chemical entity in that changes location) and the gene product, gene, or complex that enables or catalyzes the change.",
"items": {
"type": "string"
},
"type": "array"
},
"clinical_modifier_qualifier": {
"description": "Used to characterize and specify the phenotypic abnormalities defined in the Phenotypic abnormality subontology, with respect to severity, laterality, age of onset, and other aspects",
"type": "string"
},
"coexists_with": {
"description": "holds between two entities that are co-located in the same aggregate object, process, or spatio-temporal region",
"items": {
"type": "string"
},
"type": "array"
},
"colocalizes_with": {
"description": "holds between two entities that are observed to be located in the same place.",
"items": {
"type": "string"
},
"type": "array"
},
"contributes_to": {
"description": "holds between two entities where the occurrence, existence, or activity of one causes or contributes to the occurrence or generation of the other",
"items": {
"type": "string"
},
"type": "array"
},
"correlated_with": {
"description": "holds between a disease or phenotypic feature and a measurable molecular entity that is used as an indicator of the presence or state of the disease or feature.",
"items": {
"type": "string"
},
"type": "array"
},
"creation_date": {
"description": "date on which thing was created. This can be applied to nodes or edges",
"type": "string"
},
"decreases_abundance_of": {
"description": "holds between two molecular entities where the action or effect of one decreases the amount of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_activity_of": {
"description": "holds between two molecular entities where the action or effect of one decreases the activity of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_degradation_of": {
"description": "holds between two molecular entities where the action or effect of one decreases the rate of degradation of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_expression_of": {
"description": "holds between two molecular entities where the action or effect of one decreases the level of expression of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_folding_of": {
"description": "holds between two molecular entities where the action or effect of one decreases the rate or quality of folding of the other",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_localization_of": {
"description": "holds between two molecular entities where the action or effect of one decreases the proper localization of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_metabolic_processing_of": {
"description": "holds between two molecular entities where the action or effect of one decreases the rate of metabolic processing of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_molecular_modification_of": {
"description": "holds between two molecular entities where the action or effect of one leads to decreased molecular modification(s) of the other (e.g. via post-translational modifications of proteins such as the addition of phosphoryl group, or via redox reaction that adds or subtracts electrons)",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_mutation_rate_of": {
"description": "holds between a molecular entity and a genomic entity where the action or effect of the molecular entity decreases the rate of mutation of the genomic entity within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_response_to": {
"description": "holds between two molecular entities where the action or effect of one decreases the susceptibility of a biological entity or system (e.g. an organism, cell, cellular component, macromolecular machine, biological or pathological process) to the other",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_secretion_of": {
"description": "holds between two molecular entities where the action or effect of one decreases the rate of secretion of the other out of a cell, gland, or organ",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_splicing_of": {
"description": "holds between a molecular entity and an mRNA where the action or effect of the molecular entity decreases the proper splicing of the mRNA",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_stability_of": {
"description": "holds between two molecular entities where the action or effect of one decreases the stability of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_synthesis_of": {
"description": "holds between two molecular entities where the action or effect of one decreases the rate of chemical synthesis of the other",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_transport_of": {
"description": "holds between two molecular entities where the action or effect of one decreases the rate of transport of the other across some boundary in a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"decreases_uptake_of": {
"description": "holds between two molecular entities where the action or effect of one decreases the rate of uptake of the other into of a cell, gland, or organ",
"items": {
"type": "string"
},
"type": "array"
},
"derives_from": {
"description": "holds between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity",
"items": {
"type": "string"
},
"type": "array"
},
"derives_into": {
"description": "holds between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity",
"items": {
"type": "string"
},
"type": "array"
},
"description": {
"description": "a human-readable description of a thing",
"type": "string"
},
"disrupts": {
"description": "describes a relationship where one entity degrades or interferes with the structure, function, or occurrence of another.",
"items": {
"type": "string"
},
"type": "array"
},
"distribution": {
"type": "string"
},
"downloadURL": {
"type": "string"
},
"drug": {
"items": {
"type": "string"
},
"type": "array"
},
"edge_label": {
"description": "A high-level grouping for the relationship type. AKA minimal predicate. This is analogous to category for nodes.",
"type": "string"
},
"enabled_by": {
"description": "holds between a process and a physical entity, where the physical entity executes the process",
"items": {
"type": "string"
},
"type": "array"
},
"end_interbase_coordinate": {
"type": "string"
},
"expressed_in": {
"description": "holds between a gene or gene product and an anatomical entity in which it is expressed",
"items": {
"type": "string"
},
"type": "array"
},
"expresses": {
"description": "holds between an anatomical entity and gene or gene product that is expressed there",
"items": {
"type": "string"
},
"type": "array"
},
"filler": {
"description": "The value in a property-value tuple",
"type": "string"
},
"frequency_qualifier": {
"description": "a qualifier used in a phenotypic association to state how frequent the phenotype is observed in the subject",
"type": "string"
},
"full_name": {
"description": "a long-form human readable name for a thing",
"type": "string"
},
"gene_associated_with_condition": {
"description": "holds between a gene and a disease or phenotypic feature that the gene or its alleles/products may influence, contribute to, or correlate with",
"items": {
"type": "string"
},
"type": "array"
},
"genetically_interacts_with": {
"description": "holds between two genes whose phenotypic effects are dependent on each other in some way - such that their combined phenotypic effects are the result of some interaction between the activity of their gene products. Examples include epistasis and synthetic lethality.",
"items": {
"type": "string"
},
"type": "array"
},
"genome_build": {
"description": "TODO",
"type": "string"
},
"has_attribute": {
"description": "connects any named thing to an attribute",
"items": {
"type": "string"
},
"type": "array"
},
"has_attribute_type": {
"description": "connects an attribute to a class that describes it",
"type": "string"
},
"has_biological_sequence": {
"description": "connects a genomic feature to its sequence",
"type": "string"
},
"has_biomarker": {
"description": "holds between a disease or phenotypic feature and a measurable molecular entity that is used as an indicator of the presence or state of the disease or feature.",
"items": {
"type": "string"
},
"type": "array"
},
"has_chemical_formula": {
"description": "description of chemical compound based on element symbols",
"type": "string"
},
"has_confidence_level": {
"description": "connects an association to a qualitative term denoting the level of confidence",
"type": "string"
},
"has_count": {
"description": "number of things with a particular property",
"type": "string"
},
"has_evidence": {
"description": "connects an association to an instance of supporting evidence",
"type": "string"
},
"has_exposure_parts": {
"items": {
"type": "string"
},
"type": "array"
},
"has_gene": {
"description": "connects and entity to a single gene",
"type": "string"
},
"has_gene_product": {
"description": "holds between a gene and a transcribed and/or translated product generated from it",
"items": {
"type": "string"
},
"type": "array"
},
"has_input": {
"description": "holds between a process and a continuant, where the continuant is an input into the process",
"items": {
"type": "string"
},
"type": "array"
},
"has_molecular_consequence": {
"description": "connects a sequence variant to a class describing the molecular consequence. E.g. SO:0001583",
"items": {
"type": "string"
},
"type": "array"
},
"has_numeric_value": {
"description": "connects a quantity value to a number",
"type": "string"
},
"has_output": {
"description": "holds between a process and a continuant, where the continuant is an output of the process",
"items": {
"type": "string"
},
"type": "array"
},
"has_part": {
"description": "holds between wholes and their parts (material entities or processes)",
"items": {
"type": "string"
},
"type": "array"
},
"has_participant": {
"description": "holds between a process and a continuant, where the continuant is somehow involved in the process",
"items": {
"type": "string"
},
"type": "array"
},
"has_percentage": {
"description": "equivalent to has quotient multiplied by 100",
"type": "string"
},
"has_phenotype": {
"description": "holds between a biological entity and a phenotype, where a phenotype is construed broadly as any kind of quality of an organism part, a collection of these qualities, or a change in quality or qualities (e.g. abnormally increased temperature).",
"items": {
"type": "string"
},
"type": "array"
},
"has_qualitative_value": {
"description": "connects an attribute to a value",
"type": "string"
},
"has_quantitative_value": {
"description": "connects an attribute to a value",
"items": {
"type": "string"
},
"type": "array"
},
"has_quotient": {
"type": "string"
},
"has_total": {
"description": "total number of things in a particular reference set",
"type": "string"
},
"has_unit": {
"description": "connects a quantity value to a unit",
"type": "string"
},
"has_zygosity": {
"type": "string"
},
"homologous_to": {
"description": "holds between two biological entities that have common evolutionary origin",
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"description": "A unique identifier for a thing. Must be either a CURIE shorthand for a URI or a complete URI",
"type": "string"
},
"in_cell_population_with": {
"description": "holds between two genes or gene products that are expressed in the same cell type or population",
"items": {
"type": "string"
},
"type": "array"
},
"in_complex_with": {
"description": "holds between two genes or gene products that are part of (or code for products that are part of) in the same macromolecular complex",
"items": {
"type": "string"
},
"type": "array"
},
"in_pathway_with": {
"description": "holds between two genes or gene products that are part of in the same biological pathway",
"items": {
"type": "string"
},
"type": "array"
},
"in_taxon": {
"description": "connects a thing to a class representing a taxon",
"items": {
"type": "string"
},
"type": "array"
},
"increases_abundance_of": {
"description": "holds between two molecular entities where the action or effect of one increases the amount of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"increases_activity_of": {
"description": "holds between two molecular entities where the action or effect of one increases the activity of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"increases_degradation_of": {
"description": "holds between two molecular entities where the action or effect of one increases the rate of degradation of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"increases_expression_of": {
"description": "holds between two molecular entities where the action or effect of one increases the level of expression of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"increases_folding_of": {
"description": "holds between two molecular entities where the action or effect of one increases the rate or quality of folding of the other",
"items": {
"type": "string"
},
"type": "array"
},
"increases_localization_of": {
"description": "holds between two molecular entities where the action or effect of one increases the proper localization of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"increases_metabolic_processing_of": {
"description": "holds between two molecular entities where the action or effect of one increases the rate of metabolic processing of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"increases_molecular_modification_of": {
"description": "holds between two molecular entities where the action or effect of one leads to increased molecular modification(s) of the other (e.g. via post-translational modifications of proteins such as the addition of phosphoryl group, or via redox reaction that adds or subtracts electrons)",
"items": {
"type": "string"
},
"type": "array"
},
"increases_mutation_rate_of": {
"description": "holds between a molecular entity and a genomic entity where the action or effect of the molecular entity increases the rate of mutation of the genomic entity within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"increases_response_to": {
"description": "holds between two molecular entities where the action or effect of one increases the susceptibility of a biological entity or system (e.g. an organism, cell, cellular component, macromolecular machine, biological or pathological process) to the other",
"items": {
"type": "string"
},
"type": "array"
},
"increases_secretion_of": {
"description": "holds between two molecular entities where the action or effect of one increases the rate of secretion of the other out of a cell, gland, or organ",
"items": {
"type": "string"
},
"type": "array"
},
"increases_splicing_of": {
"description": "holds between a molecular entity and an mRNA where the action or effect of the molecular entity increases the proper splicing of the mRNA",
"items": {
"type": "string"
},
"type": "array"
},
"increases_stability_of": {
"description": "holds between two molecular entities where the action or effect of one increases the stability of the other within a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"increases_synthesis_of": {
"description": "holds between two molecular entities where the action or effect of one increases the rate of chemical synthesis of the other",
"items": {
"type": "string"
},
"type": "array"
},
"increases_transport_of": {
"description": "holds between two molecular entities where the action or effect of one increases the rate of transport of the other across some boundary in a system of interest",
"items": {
"type": "string"
},
"type": "array"
},
"increases_uptake_of": {
"description": "holds between two molecular entities where the action or effect of one increases the rate of uptake of the other into of a cell, gland, or organ",
"items": {
"type": "string"
},
"type": "array"
},
"interacting_molecules_category": {
"type": "string"
},
"interacts_with": {
"description": "holds between any two entities that directly or indirectly interact with each other",
"items": {
"type": "string"
},
"type": "array"
},
"interbase_coordinate": {
"description": "TODO",
"type": "string"
},
"iri": {
"description": "An IRI for the node. This is determined by the id using expansion rules.",
"type": "string"
},
"latitude": {
"description": "latitude",
"type": "string"
},
"located_in": {
"description": "holds between a material entity and a material entity or site within which it is located (but of which it is not considered a part)",
"items": {
"type": "string"
},
"type": "array"
},
"location_of": {
"description": "holds between material entity or site and a material entity that is located within it (but not considered a part of it)",
"items": {
"type": "string"
},
"type": "array"
},
"longitude": {
"description": "longitude",
"type": "string"
},
"manifestation_of": {
"description": "used in SemMedDB for linking things like dysfunctions and processes to some disease or syndrome",
"items": {
"type": "string"
},
"type": "array"
},
"model_of": {
"description": "holds between an entity and some other entity it approximates for purposes of scientific study, in virtue of its exhibiting similar features of the studied entity.",
"items": {
"type": "string"
},
"type": "array"
},
"molecularly_interacts_with": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "A human-readable name for a thing",
"type": "string"
},
"negated": {
"description": "if set to true, then the association is negated i.e. is not true",
"type": "string"
},
"negatively_regulates": {
"items": {
"type": "string"
},
"type": "array"
},
"negatively_regulates_entity_to_entity": {
"items": {
"type": "string"
},
"type": "array"
},
"negatively_regulates_process_to_process": {
"items": {
"type": "string"
},
"type": "array"
},
"node_property": {
"description": "A grouping for any property that holds between a node and a value",
"type": "string"
},
"object": {
"description": "connects an association to the object of the association. For example, in a gene-to-phenotype association, the gene is subject and phenotype is object.",
"type": "string"
},
"occurs_in": {
"description": "holds between a process and a material entity or site within which the process occurs",
"items": {
"type": "string"
},
"type": "array"
},
"onset_qualifier": {
"description": "a qualifier used in a phenotypic association to state when the phenotype appears is in the subject",
"type": "string"
},
"orthologous_to": {
"description": "a homology relationship between entities (typically genes) that diverged after a speciation event.",
"items": {
"type": "string"
},
"type": "array"
},
"overlaps": {
"description": "holds between entties that overlap in their extents (materials or processes)",
"items": {
"type": "string"
},
"type": "array"
},
"paralogous_to": {
"description": "a homology relationship that holds between entities (typically genes) that diverged after a duplication event.",
"items": {
"type": "string"
},
"type": "array"
},
"part_of": {
"description": "holds between parts and wholes (material entities or processes)",
"items": {
"type": "string"
},
"type": "array"
},
"participates_in": {
"description": "holds between a continuant and a process, where the continuant is somehow involved in the process",
"items": {
"type": "string"
},
"type": "array"
},
"phase": {
"description": "TODO",
"type": "string"
},
"physically_interacts_with": {
"description": "holds between two entities that make physical contact as part of some interaction",
"items": {
"type": "string"
},
"type": "array"
},
"positively_regulates": {
"items": {
"type": "string"
},
"type": "array"
},
"positively_regulates_entity_to_entity": {
"items": {
"type": "string"
},
"type": "array"
},
"positively_regulates_process_to_process": {
"items": {
"type": "string"
},
"type": "array"
},
"precedes": {
"description": "holds between two processes, where one completes before the other begins",
"items": {
"type": "string"
},
"type": "array"
},
"predisposes": {
"description": "holds between two entities where exposure to one entity increases the chance of developing the other",
"items": {
"type": "string"
},
"type": "array"
},
"prevents": {
"description": "holds between an entity whose application or use reduces the likelihood of a potential outcome. Typically used to associate a chemical substance, exposure, activity, or medical intervention that can prevent the onset a disease or phenotypic feature.",
"items": {
"type": "string"
},
"type": "array"
},
"produces": {
"description": "holds between a material entity and a product that is generated through the intentional actions or functioning of the material entity",
"items": {
"type": "string"
},
"type": "array"
},
"provided_by": {
"description": "connects an association to the agent (person, organization or group) that provided it",
"type": "string"
},
"publications": {
"description": "connects an association to publications supporting the association",
"items": {
"type": "string"
},
"type": "array"
},
"qualifiers": {
"description": "connects an association to qualifiers that modify or qualify the meaning of that association",
"items": {
"type": "string"
},
"type": "array"
},
"quantifier_qualifier": {
"description": "A measurable quantity for the object of the association",
"type": "string"
},
"regulates": {
"items": {
"type": "string"
},
"type": "array"
},
"regulates_entity_to_entity": {
"items": {
"type": "string"
},
"type": "array"
},
"regulates_process_to_process": {
"items": {
"type": "string"
},
"type": "array"
},
"related_to": {
"description": "A relationship that is asserted between two named things",
"items": {
"type": "string"
},
"type": "array"
},
"relation": {
"description": "the relationship type by which a subject is connected to an object in an association",
"type": "string"
},
"retrievedOn": {
"type": "string"
},
"same_as": {
"description": "holds between two entities that are considered equivalent to each other",
"items": {
"type": "string"
},
"type": "array"
},
"sequence_variant_qualifier": {
"description": "a qualifier used in an association where the variant",
"type": "string"
},
"severity_qualifier": {
"description": "a qualifier used in a phenotypic association to state how severe the phenotype is in the subject",
"type": "string"
},
"sex_qualifier": {
"description": "a qualifier used in a phenotypic association to state whether the association is specific to a particular sex.",
"type": "string"
},
"source_data_file": {
"type": "string"
},
"source_version": {
"type": "string"
},
"source_web_page": {
"type": "string"
},
"stage_qualifier": {
"description": "stage at which expression takes place",
"type": "string"
},
"start_interbase_coordinate": {
"type": "string"
},
"subclass_of": {
"description": "holds between two classes where the domain class is a specialization of the range class",
"items": {
"type": "string"
},
"type": "array"
},