-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
4170 lines (4170 loc) · 156 KB
/
schema.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
[
{
"TableName": "ACTION_TYPE",
"Columns": [
{
"Keys": "PK",
"ColumnName": "ACTION_TYPE",
"DataType": "VARCHAR2(50)",
"Nullable": "NOT NULL",
"Comment": "Primary key. Type of action of the drug e.g., agonist, antagonist"
},
{
"Keys": null,
"ColumnName": "DESCRIPTION",
"DataType": "VARCHAR2(200)",
"Nullable": "NOT NULL",
"Comment": "Description of how the action type is used"
},
{
"Keys": null,
"ColumnName": "PARENT_TYPE",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "Higher-level grouping of action types e.g., positive vs negative action"
}
]
},
{
"TableName": "ACTIVITIES",
"Columns": [
{
"Keys": "PK",
"ColumnName": "ACTIVITY_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Unique ID for the activity row"
},
{
"Keys": "FK",
"ColumnName": "ASSAY_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Foreign key to the assays table (containing the assay description)"
},
{
"Keys": "FK",
"ColumnName": "DOC_ID",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Foreign key to documents table (for quick lookup of publication details - can also link to documents through compound_records or assays table)"
},
{
"Keys": "FK",
"ColumnName": "RECORD_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Foreign key to the compound_records table (containing information on the compound tested)"
},
{
"Keys": "FK",
"ColumnName": "MOLREGNO",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Foreign key to compounds table (for quick lookup of compound structure - can also link to compounds through compound_records table)"
},
{
"Keys": null,
"ColumnName": "STANDARD_RELATION",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "Symbol constraining the activity value (e.g. >, <, =)"
},
{
"Keys": null,
"ColumnName": "STANDARD_VALUE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Same as PUBLISHED_VALUE but transformed to common units: e.g. mM concentrations converted to nM."
},
{
"Keys": null,
"ColumnName": "STANDARD_UNITS",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "Selected 'Standard' units for data type: e.g. concentrations are in nM."
},
{
"Keys": null,
"ColumnName": "STANDARD_FLAG",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Shows whether the standardised columns have been curated/set (1) or just default to the published data (0)."
},
{
"Keys": null,
"ColumnName": "STANDARD_TYPE",
"DataType": "VARCHAR2(250)",
"Nullable": null,
"Comment": "Standardised version of the published_activity_type (e.g. IC50 rather than Ic-50/Ic50/ic50/ic-50)"
},
{
"Keys": null,
"ColumnName": "ACTIVITY_COMMENT",
"DataType": "VARCHAR2(4000)",
"Nullable": null,
"Comment": "Previously used to report non-numeric activities i.e. 'Slighty active', 'Not determined'. STANDARD_TEXT_VALUE will be used for this in future, and this will be just for additional comments."
},
{
"Keys": "FK",
"ColumnName": "DATA_VALIDITY_COMMENT",
"DataType": "VARCHAR2(30)",
"Nullable": null,
"Comment": "Comment reflecting whether the values for this activity measurement are likely to be correct - one of 'Manually validated' (checked original paper and value is correct), 'Potential author error' (value looks incorrect but is as reported in the original paper), 'Outside typical range' (value seems too high/low to be correct e.g., negative IC50 value), 'Non standard unit type' (units look incorrect for this activity type)."
},
{
"Keys": null,
"ColumnName": "POTENTIAL_DUPLICATE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "When set to 1, indicates that the value is likely to be a repeat citation of a value reported in a previous ChEMBL paper, rather than a new, independent measurement. Note: value of zero does not guarantee that the measurement is novel/independent though"
},
{
"Keys": null,
"ColumnName": "PCHEMBL_VALUE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Negative log of selected concentration-response activity values (IC50/EC50/XC50/AC50/Ki/Kd/Potency)"
},
{
"Keys": "FK",
"ColumnName": "BAO_ENDPOINT",
"DataType": "VARCHAR2(11)",
"Nullable": null,
"Comment": "ID for the corresponding result type in BioAssay Ontology (based on standard_type)"
},
{
"Keys": null,
"ColumnName": "UO_UNITS",
"DataType": "VARCHAR2(10)",
"Nullable": null,
"Comment": "ID for the corresponding unit in Unit Ontology (based on standard_units)"
},
{
"Keys": null,
"ColumnName": "QUDT_UNITS",
"DataType": "VARCHAR2(70)",
"Nullable": null,
"Comment": "ID for the corresponding unit in QUDT Ontology (based on standard_units)"
},
{
"Keys": null,
"ColumnName": "TOID",
"DataType": "INTEGER",
"Nullable": null,
"Comment": "The Test Occasion Identifier, used to group together related activity measurements"
},
{
"Keys": null,
"ColumnName": "UPPER_VALUE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Where the activity is a range, this represents the highest value of the range (numerically), while the PUBLISHED_VALUE column represents the lower value"
},
{
"Keys": null,
"ColumnName": "STANDARD_UPPER_VALUE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Where the activity is a range, this represents the standardised version of the highest value of the range (with the lower value represented by STANDARD_VALUE)"
},
{
"Keys": "FK",
"ColumnName": "SRC_ID",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Foreign key to source table, indicating the source of the activity value"
},
{
"Keys": null,
"ColumnName": "TYPE",
"DataType": "VARCHAR2(250)",
"Nullable": "NOT NULL",
"Comment": "Type of end-point measurement: e.g. IC50, LD50, %inhibition etc, as it appears in the original dataset"
},
{
"Keys": null,
"ColumnName": "RELATION",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "Symbol constraining the activity value (e.g. >, <, =), as it appears in the original dataset"
},
{
"Keys": null,
"ColumnName": "VALUE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Datapoint value as it appears in the original dataset."
},
{
"Keys": null,
"ColumnName": "UNITS",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "Units of measurement as they appear in the original dataset"
},
{
"Keys": null,
"ColumnName": "TEXT_VALUE",
"DataType": "VARCHAR2(1000)",
"Nullable": null,
"Comment": "Additional information about the measurement"
},
{
"Keys": null,
"ColumnName": "STANDARD_TEXT_VALUE",
"DataType": "VARCHAR2(1000)",
"Nullable": null,
"Comment": "Standardized version of additional information about the measurement"
},
{
"Keys": "FK",
"ColumnName": "ACTION_TYPE",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "Foreign key to action_type table; specifies the effect of the compound on its target."
}
]
},
{
"TableName": "ACTIVITY_PROPERTIES",
"Columns": [
{
"Keys": "PK",
"ColumnName": "AP_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Unique ID for each record."
},
{
"Keys": "FK,UK",
"ColumnName": "ACTIVITY_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "FK to ACTIVITY_ID in ACTIVITIES table."
},
{
"Keys": "UK",
"ColumnName": "TYPE",
"DataType": "VARCHAR2(250)",
"Nullable": "NOT NULL",
"Comment": "The parameter or property type"
},
{
"Keys": null,
"ColumnName": "RELATION",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "Symbol constraining the value (e.g. >, <, =)"
},
{
"Keys": null,
"ColumnName": "VALUE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Numberical value for the parameter or property"
},
{
"Keys": null,
"ColumnName": "UNITS",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "Units of measurement"
},
{
"Keys": null,
"ColumnName": "TEXT_VALUE",
"DataType": "VARCHAR2(2000)",
"Nullable": null,
"Comment": "Non-numerical value of the parameter or property"
},
{
"Keys": null,
"ColumnName": "STANDARD_TYPE",
"DataType": "VARCHAR2(250)",
"Nullable": null,
"Comment": "Standardised form of the TYPE"
},
{
"Keys": null,
"ColumnName": "STANDARD_RELATION",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "Standardised form of the RELATION"
},
{
"Keys": null,
"ColumnName": "STANDARD_VALUE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Standardised form of the VALUE"
},
{
"Keys": null,
"ColumnName": "STANDARD_UNITS",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "Standardised form of the UNITS"
},
{
"Keys": null,
"ColumnName": "STANDARD_TEXT_VALUE",
"DataType": "VARCHAR2(2000)",
"Nullable": null,
"Comment": "Standardised form of the TEXT_VALUE"
},
{
"Keys": null,
"ColumnName": "COMMENTS",
"DataType": "VARCHAR2(2000)",
"Nullable": null,
"Comment": "A Comment."
},
{
"Keys": null,
"ColumnName": "RESULT_FLAG",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "A flag to indicate, if set to 1, that this type is a dependent variable/result (e.g., slope) rather than an independent variable/parameter (0, the default)."
}
]
},
{
"TableName": "ACTIVITY_SMID",
"Columns": [
{
"Keys": "PK",
"ColumnName": "SMID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "FK to SMID in ACTIVITY_SUPP_MAP, and a FK to SMID in ACTIVITY_SUPP"
}
]
},
{
"TableName": "ACTIVITY_STDS_LOOKUP",
"Columns": [
{
"Keys": "PK",
"ColumnName": "STD_ACT_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Primary key."
},
{
"Keys": "UK",
"ColumnName": "STANDARD_TYPE",
"DataType": "VARCHAR2(250)",
"Nullable": "NOT NULL",
"Comment": "The standard_type that other published_types in the activities table have been converted to."
},
{
"Keys": null,
"ColumnName": "DEFINITION",
"DataType": "VARCHAR2(500)",
"Nullable": null,
"Comment": "A description/definition of the standard_type."
},
{
"Keys": "UK",
"ColumnName": "STANDARD_UNITS",
"DataType": "VARCHAR2(100)",
"Nullable": "NOT NULL",
"Comment": "The units that are applied to this standard_type and to which other published_units are converted. Note a standard_type may have more than one allowable standard_unit and therefore multiple rows in this table."
},
{
"Keys": null,
"ColumnName": "NORMAL_RANGE_MIN",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "The lowest value for this activity type that is likely to be genuine. This is only an approximation, so lower genuine values may exist, but it may be desirable to validate these before using them. For a given standard_type/units, values in the activities table below this threshold are flagged with a data_validity_comment of 'Outside typical range'."
},
{
"Keys": null,
"ColumnName": "NORMAL_RANGE_MAX",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "The highest value for this activity type that is likely to be genuine. This is only an approximation, so higher genuine values may exist, but it may be desirable to validate these before using them. For a given standard_type/units, values in the activities table above this threshold are flagged with a data_validity_comment of 'Outside typical range'."
}
]
},
{
"TableName": "ACTIVITY_SUPP",
"Columns": [
{
"Keys": "PK",
"ColumnName": "AS_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Unique ID for each record."
},
{
"Keys": "UK",
"ColumnName": "RGID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Record Grouping ID, used to group together related data points in this table"
},
{
"Keys": "FK",
"ColumnName": "SMID",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "FK to SMID in ACTIVITY_SMID."
},
{
"Keys": "UK",
"ColumnName": "TYPE",
"DataType": "VARCHAR2(250)",
"Nullable": "NOT NULL",
"Comment": "Type of end-point measurement: e.g. IC50, LD50, %inhibition etc, as it appears in the original dataset"
},
{
"Keys": null,
"ColumnName": "RELATION",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "Symbol constraining the activity value (e.g. >, <, =), as it appears in the original dataset"
},
{
"Keys": null,
"ColumnName": "VALUE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Datapoint value as it appears in the original dataset."
},
{
"Keys": null,
"ColumnName": "UNITS",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "Units of measurement as they appear in the original dataset"
},
{
"Keys": null,
"ColumnName": "TEXT_VALUE",
"DataType": "VARCHAR2(1000)",
"Nullable": null,
"Comment": "Non-numeric value for measurement as in original dataset"
},
{
"Keys": null,
"ColumnName": "STANDARD_TYPE",
"DataType": "VARCHAR2(250)",
"Nullable": null,
"Comment": "Standardised form of the TYPE"
},
{
"Keys": null,
"ColumnName": "STANDARD_RELATION",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "Standardised form of the RELATION"
},
{
"Keys": null,
"ColumnName": "STANDARD_VALUE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Standardised form of the VALUE"
},
{
"Keys": null,
"ColumnName": "STANDARD_UNITS",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "Standardised form of the UNITS"
},
{
"Keys": null,
"ColumnName": "STANDARD_TEXT_VALUE",
"DataType": "VARCHAR2(1000)",
"Nullable": null,
"Comment": "Standardised form of the TEXT_VALUE"
},
{
"Keys": null,
"ColumnName": "COMMENTS",
"DataType": "VARCHAR2(4000)",
"Nullable": null,
"Comment": "A Comment."
}
]
},
{
"TableName": "ACTIVITY_SUPP_MAP",
"Columns": [
{
"Keys": "PK",
"ColumnName": "ACTSM_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Primary key"
},
{
"Keys": "FK",
"ColumnName": "ACTIVITY_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "FK to ACTIVITY_ID in ACTIVITIES table."
},
{
"Keys": "FK",
"ColumnName": "SMID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "FK to SMID in ACTIVITY_SMID."
}
]
},
{
"TableName": "ASSAY_CLASS_MAP",
"Columns": [
{
"Keys": "PK",
"ColumnName": "ASS_CLS_MAP_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Primary key."
},
{
"Keys": "FK,UK",
"ColumnName": "ASSAY_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Foreign key that maps to the ASSAYS table"
},
{
"Keys": "FK,UK",
"ColumnName": "ASSAY_CLASS_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Foreign key that maps to the ASSAY_CLASSIFICATION table"
}
]
},
{
"TableName": "ASSAY_CLASSIFICATION",
"Columns": [
{
"Keys": "PK",
"ColumnName": "ASSAY_CLASS_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Primary key"
},
{
"Keys": null,
"ColumnName": "L1",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "High level classification e.g., by anatomical/therapeutic area"
},
{
"Keys": null,
"ColumnName": "L2",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "Mid-level classification e.g., by phenotype/biological process"
},
{
"Keys": "UK",
"ColumnName": "L3",
"DataType": "VARCHAR2(1000)",
"Nullable": null,
"Comment": "Fine-grained classification e.g., by assay type"
},
{
"Keys": null,
"ColumnName": "CLASS_TYPE",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "The type of assay being classified e.g., in vivo efficacy"
},
{
"Keys": null,
"ColumnName": "SOURCE",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "Source from which the assay class was obtained"
}
]
},
{
"TableName": "ASSAY_PARAMETERS",
"Columns": [
{
"Keys": "PK",
"ColumnName": "ASSAY_PARAM_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Numeric primary key"
},
{
"Keys": "FK,UK",
"ColumnName": "ASSAY_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Foreign key to assays table. The assay to which this parameter belongs"
},
{
"Keys": "UK",
"ColumnName": "TYPE",
"DataType": "VARCHAR2(250)",
"Nullable": "NOT NULL",
"Comment": "The type of parameter being described, according to the original data source"
},
{
"Keys": null,
"ColumnName": "RELATION",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "The relation symbol for the parameter being described, according to the original data source"
},
{
"Keys": null,
"ColumnName": "VALUE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "The value of the parameter being described, according to the original data source. Used for numeric data"
},
{
"Keys": null,
"ColumnName": "UNITS",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "The units for the parameter being described, according to the original data source"
},
{
"Keys": null,
"ColumnName": "TEXT_VALUE",
"DataType": "VARCHAR2(4000)",
"Nullable": null,
"Comment": "The text value of the parameter being described, according to the original data source. Used for non-numeric/qualitative data"
},
{
"Keys": null,
"ColumnName": "STANDARD_TYPE",
"DataType": "VARCHAR2(250)",
"Nullable": null,
"Comment": "Standardized form of the TYPE"
},
{
"Keys": null,
"ColumnName": "STANDARD_RELATION",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "Standardized form of the RELATION"
},
{
"Keys": null,
"ColumnName": "STANDARD_VALUE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Standardized form of the VALUE"
},
{
"Keys": null,
"ColumnName": "STANDARD_UNITS",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "Standardized form of the UNITS"
},
{
"Keys": null,
"ColumnName": "STANDARD_TEXT_VALUE",
"DataType": "VARCHAR2(4000)",
"Nullable": null,
"Comment": "Standardized form of the TEXT_VALUE"
},
{
"Keys": null,
"ColumnName": "COMMENTS",
"DataType": "VARCHAR2(4000)",
"Nullable": null,
"Comment": "Additional comments describing the parameter"
}
]
},
{
"TableName": "ASSAY_TYPE",
"Columns": [
{
"Keys": "PK",
"ColumnName": "ASSAY_TYPE",
"DataType": "VARCHAR2(1)",
"Nullable": "NOT NULL",
"Comment": "Single character representing assay type"
},
{
"Keys": null,
"ColumnName": "ASSAY_DESC",
"DataType": "VARCHAR2(250)",
"Nullable": null,
"Comment": "Description of assay type"
}
]
},
{
"TableName": "ASSAYS",
"Columns": [
{
"Keys": "PK",
"ColumnName": "ASSAY_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Unique ID for the assay"
},
{
"Keys": "FK",
"ColumnName": "DOC_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Foreign key to documents table"
},
{
"Keys": null,
"ColumnName": "DESCRIPTION",
"DataType": "VARCHAR2(4000)",
"Nullable": null,
"Comment": "Description of the reported assay"
},
{
"Keys": "FK",
"ColumnName": "ASSAY_TYPE",
"DataType": "VARCHAR2(1)",
"Nullable": null,
"Comment": "Assay classification, e.g. B=Binding assay, A=ADME assay, F=Functional assay"
},
{
"Keys": null,
"ColumnName": "ASSAY_TEST_TYPE",
"DataType": "VARCHAR2(20)",
"Nullable": null,
"Comment": "Type of assay system (i.e., in vivo or in vitro)"
},
{
"Keys": null,
"ColumnName": "ASSAY_CATEGORY",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "screening, confirmatory (ie: dose-response), summary, panel, other,Thermal shift assay QC liability, Thermal shift assay, Affinity biochemical assay, Incucyte cell viability, Affinity phenotypic cellular assay, HTRF assay, Selectivity assay, Cell health data, NanoBRET assay, Alphascreen assay, Affinity on-target cellular assay, ITC assay, GPCR beta-arrestin recruitment assay"
},
{
"Keys": null,
"ColumnName": "ASSAY_ORGANISM",
"DataType": "VARCHAR2(250)",
"Nullable": null,
"Comment": "Name of the organism for the assay system (e.g., the organism, tissue or cell line in which an assay was performed). May differ from the target organism (e.g., for a human protein expressed in non-human cells, or pathogen-infected human cells)."
},
{
"Keys": null,
"ColumnName": "ASSAY_TAX_ID",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "NCBI tax ID for the assay organism."
},
{
"Keys": null,
"ColumnName": "ASSAY_STRAIN",
"DataType": "VARCHAR2(200)",
"Nullable": null,
"Comment": "Name of specific strain of the assay organism used (where known)"
},
{
"Keys": null,
"ColumnName": "ASSAY_TISSUE",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "Name of tissue used in the assay system (e.g., for tissue-based assays) or from which the assay system was derived (e.g., for cell/subcellular fraction-based assays)."
},
{
"Keys": null,
"ColumnName": "ASSAY_CELL_TYPE",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "Name of cell type or cell line used in the assay system (e.g., for cell-based assays)."
},
{
"Keys": null,
"ColumnName": "ASSAY_SUBCELLULAR_FRACTION",
"DataType": "VARCHAR2(100)",
"Nullable": null,
"Comment": "Name of subcellular fraction used in the assay system (e.g., microsomes, mitochondria)."
},
{
"Keys": "FK",
"ColumnName": "TID",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Target identifier to which this assay has been mapped. Foreign key to target_dictionary. From ChEMBL_15 onwards, an assay will have only a single target assigned."
},
{
"Keys": "FK",
"ColumnName": "RELATIONSHIP_TYPE",
"DataType": "VARCHAR2(1)",
"Nullable": null,
"Comment": "Flag indicating of the relationship between the reported target in the source document and the assigned target from TARGET_DICTIONARY. Foreign key to RELATIONSHIP_TYPE table."
},
{
"Keys": "FK",
"ColumnName": "CONFIDENCE_SCORE",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Confidence score, indicating how accurately the assigned target(s) represents the actually assay target. Foreign key to CONFIDENCE_SCORE table. 0 means uncurated/unassigned, 1 = low confidence to 9 = high confidence."
},
{
"Keys": "FK",
"ColumnName": "CURATED_BY",
"DataType": "VARCHAR2(32)",
"Nullable": null,
"Comment": "Indicates the level of curation of the target assignment. Foreign key to curation_lookup table."
},
{
"Keys": "FK",
"ColumnName": "SRC_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Foreign key to source table"
},
{
"Keys": null,
"ColumnName": "SRC_ASSAY_ID",
"DataType": "VARCHAR2(50)",
"Nullable": null,
"Comment": "Identifier for the assay in the source database/deposition (e.g., pubchem AID)"
},
{
"Keys": "FK,UK",
"ColumnName": "CHEMBL_ID",
"DataType": "VARCHAR2(20)",
"Nullable": "NOT NULL",
"Comment": "ChEMBL identifier for this assay (for use on web interface etc)"
},
{
"Keys": "FK",
"ColumnName": "CELL_ID",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Foreign key to cell dictionary. The cell type or cell line used in the assay"
},
{
"Keys": "FK",
"ColumnName": "BAO_FORMAT",
"DataType": "VARCHAR2(11)",
"Nullable": null,
"Comment": "ID for the corresponding format type in BioAssay Ontology (e.g., cell-based, biochemical, organism-based etc)"
},
{
"Keys": "FK",
"ColumnName": "TISSUE_ID",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "ID for the corresponding tissue/anatomy in Uberon. Foreign key to tissue_dictionary"
},
{
"Keys": "FK",
"ColumnName": "VARIANT_ID",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Foreign key to variant_sequences table. Indicates the mutant/variant version of the target used in the assay (where known/applicable)"
},
{
"Keys": null,
"ColumnName": "AIDX",
"DataType": "VARCHAR2(200)",
"Nullable": "NOT NULL",
"Comment": "The Depositor Defined Assay Identifier"
}
]
},
{
"TableName": "ATC_CLASSIFICATION",
"Columns": [
{
"Keys": null,
"ColumnName": "WHO_NAME",
"DataType": "VARCHAR2(2000)",
"Nullable": null,
"Comment": "WHO/INN name for the compound"
},
{
"Keys": null,
"ColumnName": "LEVEL1",
"DataType": "VARCHAR2(10)",
"Nullable": null,
"Comment": "First level of classification"
},
{
"Keys": null,
"ColumnName": "LEVEL2",
"DataType": "VARCHAR2(10)",
"Nullable": null,
"Comment": "Second level of classification"
},
{
"Keys": null,
"ColumnName": "LEVEL3",
"DataType": "VARCHAR2(10)",
"Nullable": null,
"Comment": "Third level of classification"
},
{
"Keys": null,
"ColumnName": "LEVEL4",
"DataType": "VARCHAR2(10)",
"Nullable": null,
"Comment": "Fourth level of classification"
},
{
"Keys": "PK",
"ColumnName": "LEVEL5",
"DataType": "VARCHAR2(10)",
"Nullable": "NOT NULL",
"Comment": "Complete ATC code for compound"
},
{
"Keys": null,
"ColumnName": "LEVEL1_DESCRIPTION",
"DataType": "VARCHAR2(2000)",
"Nullable": null,
"Comment": "Description of first level of classification"
},
{
"Keys": null,
"ColumnName": "LEVEL2_DESCRIPTION",
"DataType": "VARCHAR2(2000)",
"Nullable": null,
"Comment": "Description of second level of classification"
},
{
"Keys": null,
"ColumnName": "LEVEL3_DESCRIPTION",
"DataType": "VARCHAR2(2000)",
"Nullable": null,
"Comment": "Description of third level of classification"
},
{
"Keys": null,
"ColumnName": "LEVEL4_DESCRIPTION",
"DataType": "VARCHAR2(2000)",
"Nullable": null,
"Comment": "Description of fourth level of classification"
}
]
},
{
"TableName": "BINDING_SITES",
"Columns": [
{
"Keys": "PK",
"ColumnName": "SITE_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Primary key. Unique identifier for a binding site in a given target."
},
{
"Keys": null,
"ColumnName": "SITE_NAME",
"DataType": "VARCHAR2(200)",
"Nullable": null,
"Comment": "Name/label for the binding site."
},
{
"Keys": "FK",
"ColumnName": "TID",
"DataType": "NUMBER",
"Nullable": null,
"Comment": "Foreign key to target_dictionary. Target on which the binding site is found."
}
]
},
{
"TableName": "BIO_COMPONENT_SEQUENCES",
"Columns": [
{
"Keys": "PK",
"ColumnName": "COMPONENT_ID",
"DataType": "NUMBER",
"Nullable": "NOT NULL",
"Comment": "Primary key. Unique identifier for each of the molecular components of biotherapeutics in ChEMBL (e.g., antibody chains, recombinant proteins, synthetic peptides)."
},
{
"Keys": null,
"ColumnName": "COMPONENT_TYPE",
"DataType": "VARCHAR2(50)",
"Nullable": "NOT NULL",
"Comment": "Type of molecular component (e.g., 'PROTEIN', 'NUCLEIC ACID')."
},
{
"Keys": null,