-
Notifications
You must be signed in to change notification settings - Fork 13
/
uo-full.json
8647 lines (8647 loc) · 313 KB
/
uo-full.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" : [ {
"nodes" : [ {
"id" : "http://purl.obolibrary.org/obo/UO_1000281",
"type" : "CLASS",
"lbl" : "count per nanomolar second based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000167",
"type" : "CLASS",
"lbl" : "parts per hundred based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000168",
"type" : "CLASS",
"lbl" : "parts per thousand based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000165",
"type" : "CLASS",
"lbl" : "volume percentage based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000163",
"type" : "CLASS",
"lbl" : "mass percentage based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000284",
"type" : "CLASS",
"lbl" : "count per nanomolar based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000164",
"type" : "CLASS",
"lbl" : "mass volume percentage based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000285",
"type" : "CLASS",
"lbl" : "count per molar based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000282",
"type" : "CLASS",
"lbl" : "count per molar second based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000162",
"type" : "CLASS",
"lbl" : "watt per steradian based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000158",
"type" : "CLASS",
"lbl" : "watt per steradian per square meter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000156",
"type" : "CLASS",
"lbl" : "einstein per square meter per second based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000035",
"type" : "CLASS",
"lbl" : "month based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000036",
"type" : "CLASS",
"lbl" : "year based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000033",
"type" : "CLASS",
"lbl" : "day based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000034",
"type" : "CLASS",
"lbl" : "week based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000155",
"type" : "CLASS",
"lbl" : "watt per square meter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000152",
"type" : "CLASS",
"lbl" : "half life based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000031",
"type" : "CLASS",
"lbl" : "minute based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000153",
"type" : "CLASS",
"lbl" : "foot candle based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000032",
"type" : "CLASS",
"lbl" : "hour based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000151",
"type" : "CLASS",
"lbl" : "century based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000147",
"type" : "CLASS",
"lbl" : "disintegrations per minute based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000268",
"type" : "CLASS",
"lbl" : "volt per meter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000148",
"type" : "CLASS",
"lbl" : "counts per minute based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000269",
"type" : "CLASS",
"lbl" : "absorbance unit based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000027",
"type" : "CLASS",
"lbl" : "degree Celsius based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000181",
"type" : "CLASS",
"lbl" : "enzyme unit based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000180",
"type" : "CLASS",
"lbl" : "mass per unit volume based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000068",
"type" : "CLASS",
"lbl" : "molal based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000188",
"type" : "CLASS",
"lbl" : "pi based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000185",
"type" : "CLASS",
"lbl" : "degree based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000062",
"type" : "CLASS",
"lbl" : "molar based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000170",
"type" : "CLASS",
"lbl" : "parts per billion based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000171",
"type" : "CLASS",
"lbl" : "parts per trillion based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000178",
"type" : "CLASS",
"lbl" : "unit per milliliter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000179",
"type" : "CLASS",
"lbl" : "unit per liter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000175",
"type" : "CLASS",
"lbl" : "gram per liter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000172",
"type" : "CLASS",
"lbl" : "parts per quadrillion based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000173",
"type" : "CLASS",
"lbl" : "gram per milliliter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000169",
"type" : "CLASS",
"lbl" : "parts per million based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010049",
"type" : "CLASS",
"lbl" : "gram per square meter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000244",
"type" : "CLASS",
"lbl" : "base pair based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000123",
"type" : "CLASS",
"lbl" : "radian based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000245",
"type" : "CLASS",
"lbl" : "kibibyte based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000242",
"type" : "CLASS",
"lbl" : "pixels per inch based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000243",
"type" : "CLASS",
"lbl" : "pixels per millimeter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000240",
"type" : "CLASS",
"lbl" : "dots per inch based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000120",
"type" : "CLASS",
"lbl" : "katal based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000118",
"type" : "CLASS",
"lbl" : "lumen based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000237",
"type" : "CLASS",
"lbl" : "chroma sampling unit based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000116",
"type" : "CLASS",
"lbl" : "lux based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000238",
"type" : "CLASS",
"lbl" : "dynamic range unit based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000114",
"type" : "CLASS",
"lbl" : "watt based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010051",
"type" : "CLASS",
"lbl" : "large calorie based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000112",
"type" : "CLASS",
"lbl" : "joule based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000233",
"type" : "CLASS",
"lbl" : "byte based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000110",
"type" : "CLASS",
"lbl" : "pascal based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000232",
"type" : "CLASS",
"lbl" : "bit based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000228",
"type" : "CLASS",
"lbl" : "tesla based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010060",
"type" : "CLASS",
"lbl" : "gray per minute based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000108",
"type" : "CLASS",
"lbl" : "newton based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000229",
"type" : "CLASS",
"lbl" : "volt-hour based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000226",
"type" : "CLASS",
"lbl" : "weber based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000106",
"type" : "CLASS",
"lbl" : "hertz based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010029",
"type" : "CLASS",
"lbl" : "quart based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010025",
"type" : "CLASS",
"lbl" : "acre based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010026",
"type" : "CLASS",
"lbl" : "fluid ounce based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010027",
"type" : "CLASS",
"lbl" : "gill based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010028",
"type" : "CLASS",
"lbl" : "pint based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000266",
"type" : "CLASS",
"lbl" : "electronvolt based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000264",
"type" : "CLASS",
"lbl" : "siemens based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000265",
"type" : "CLASS",
"lbl" : "watt per meter kelvin based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000021",
"type" : "CLASS",
"lbl" : "gram based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000260",
"type" : "CLASS",
"lbl" : "effective dose unit based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000140",
"type" : "CLASS",
"lbl" : "Roentgen equivalent man based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000019",
"type" : "CLASS",
"lbl" : "angstrom based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000257",
"type" : "CLASS",
"lbl" : "pascal second based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000136",
"type" : "CLASS",
"lbl" : "roentgen based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000258",
"type" : "CLASS",
"lbl" : "poise based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000137",
"type" : "CLASS",
"lbl" : "sievert based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010032",
"type" : "CLASS",
"lbl" : "drachm based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010033",
"type" : "CLASS",
"lbl" : "ounce based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010034",
"type" : "CLASS",
"lbl" : "pound based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010035",
"type" : "CLASS",
"lbl" : "stone based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010030",
"type" : "CLASS",
"lbl" : "gallon based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010031",
"type" : "CLASS",
"lbl" : "grain based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010036",
"type" : "CLASS",
"lbl" : "quarter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010037",
"type" : "CLASS",
"lbl" : "hundredweight based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010038",
"type" : "CLASS",
"lbl" : "ton based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010039",
"type" : "CLASS",
"lbl" : "slug based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000255",
"type" : "CLASS",
"lbl" : "dyne per cm based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000134",
"type" : "CLASS",
"lbl" : "gray based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000013",
"type" : "CLASS",
"lbl" : "mole based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000014",
"type" : "CLASS",
"lbl" : "candela based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000135",
"type" : "CLASS",
"lbl" : "rad based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000011",
"type" : "CLASS",
"lbl" : "ampere based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000132",
"type" : "CLASS",
"lbl" : "becquerel based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000012",
"type" : "CLASS",
"lbl" : "kelvin based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000254",
"type" : "CLASS",
"lbl" : "newton per meter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000133",
"type" : "CLASS",
"lbl" : "curie based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000010",
"type" : "CLASS",
"lbl" : "second based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000008",
"type" : "CLASS",
"lbl" : "meter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000246",
"type" : "CLASS",
"lbl" : "mebibyte based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000125",
"type" : "CLASS",
"lbl" : "steradian based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010040",
"type" : "CLASS",
"lbl" : "teaspoon based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010035",
"meta" : {
"comments" : [ "\"An imperial mass unit which is equivalent to 6,350.293,18 grams, or 14 pounds.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "st",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "stone"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010036",
"meta" : {
"comments" : [ "\"An imperial mass unit which is equivalent to 12.700,586,36 kilograms, or 28 pounds.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "qr",
"xrefs" : [ ]
}, {
"pred" : "hasExactSynonym",
"val" : "qtr",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "quarter"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010033",
"meta" : {
"comments" : [ "\"An imperial mass unit which is equivalent to 28.349,523,125 grams, or 1/16 of 1 pound.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "oz",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "ounce"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010034",
"meta" : {
"comments" : [ "\"An imperial mass unit which is equivalent to 453.592,37 grams.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "lb",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "pound"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010031",
"meta" : {
"comments" : [ "\"An imperial mass unit which is equivalent to 64.798,91 milligrams.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "gr",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "grain"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010032",
"meta" : {
"comments" : [ "\"An imperial mass unit which is equivalent to 1.771,845,195,3125 grams, or 1/256 of 1 pound.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "dr",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "drachm"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010030",
"meta" : {
"comments" : [ "\"An imperial volume unit which is equivalent to 4,546.09 millilitres, or 8 pints.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "gal",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "gallon"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000201",
"type" : "CLASS",
"lbl" : "cells per milliliter based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000230",
"meta" : {
"comments" : [ "\"A magnetic flux unit which is equal to one thousand volt-hours.\" [UOC:GVG]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "kVh",
"xrefs" : [ ]
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "kilovolt-hour"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000110",
"meta" : {
"comments" : [ "\"A pressure unit which is equal to the pressure or stress on a surface caused by a force of 1 newton spread over a surface of 1 m^[2].\" [NIST:NIST]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "Pa",
"xrefs" : [ ]
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "pascal"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000231",
"meta" : {
"comments" : [ "\"A unit which is a standard measure of the amount of information.\" [Wikipedia:Wikipedia]" ]
},
"type" : "CLASS",
"lbl" : "information unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000232",
"meta" : {
"comments" : [ "\"An information unit which refers to a digit in the binary numeral system, which consists of base 2 digits (ie there are only 2 possible values: 0 or 1).\" [Wikipedia:Wikipedia]" ]
},
"type" : "CLASS",
"lbl" : "bit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000111",
"meta" : {
"comments" : [ "\"A unit which is a standard measure of the work done by a certain force (gravitational, electric, magnetic, force of inertia, etc).\" [NIST:NIST]" ]
},
"type" : "CLASS",
"lbl" : "energy unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000233",
"meta" : {
"comments" : [ "\"An information unit which is equal to 8 bits.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "B",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "byte"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000112",
"meta" : {
"comments" : [ "\"An energy unit which is equal to the energy required when a force of 1 newton moves an object 1 meter in the direction of the force.\" [NIST:NIST]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "J",
"xrefs" : [ ]
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "joule"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000234",
"meta" : {
"comments" : [ "\"An information unit which is equal to 1000 bytes.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "kB",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "kilobyte"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000113",
"meta" : {
"comments" : [ "\"A unit which is a standard measure power or the rate of doing work.\" [NIST:NIST]" ]
},
"type" : "CLASS",
"lbl" : "power unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000114",
"meta" : {
"comments" : [ "\"A power unit which is equal to the power used when work is done at the rate of 1 joule per second.\" [NIST:NIST]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "W",
"xrefs" : [ ]
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "watt"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000235",
"meta" : {
"comments" : [ "\"An information unit which is equal to 1000 kB.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "MB",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "megabyte"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000104",
"meta" : {
"comments" : [ "\"A volume unit which is equal to 10^[-15] L.\" [NIST:NIST]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "fl",
"xrefs" : [ ]
}, {
"pred" : "hasExactSynonym",
"val" : "femtolitre",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "femtoliter"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000225",
"meta" : {
"comments" : [ "\"A unit which is a standard measure of quantity of magnetism, taking account of the strength and the extent of a magnetic field.\" [Wikipedia:Wikipedia]" ]
},
"type" : "CLASS",
"lbl" : "magnetic flux unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000226",
"meta" : {
"comments" : [ "\"A magnetic flux unit which is equal to the amount of flux that when linked with a single turn of wire for an interval of one second will induce an electromotive force of one volt.\" [ScienceLobby:ScienceLobby]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "Wb",
"xrefs" : [ ]
}, {
"pred" : "hasRelatedSynonym",
"val" : "volt-second",
"xrefs" : [ ]
}, {
"pred" : "hasExactSynonym",
"val" : "V s",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "weber"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000105",
"meta" : {
"comments" : [ "\"A unit which is a standard measure of the number of repetitive actions in a particular time.\" [NIST:NIST]" ]
},
"type" : "CLASS",
"lbl" : "frequency unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000227",
"meta" : {
"comments" : [ "\"A unit which is a standard measure of the strength of a magnetic field.\" [allnet:allnet]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "B",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "magnetic flux density unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000106",
"meta" : {
"comments" : [ "\"A frequency unit which is equal to 1 complete cycle of a recurring phenomenon in 1 second.\" [NIST:NIST]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "Hz",
"xrefs" : [ ]
}, {
"pred" : "hasExactSynonym",
"val" : "s^1",
"xrefs" : [ ]
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "hertz"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000228",
"meta" : {
"comments" : [ "\"A magnetic flux density unit which is equal to one weber per square meter.\" [WordNet:WordNet]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "T",
"xrefs" : [ ]
}, {
"pred" : "hasExactSynonym",
"val" : "Wb/m2",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "tesla"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000107",
"meta" : {
"comments" : [ "\"A unit which is a standard measure of the force is applied when a mass is accelerated.\" [NIST:NIST]" ]
},
"type" : "CLASS",
"lbl" : "force unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000314",
"type" : "CLASS",
"lbl" : "relative fluorescence unit based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000229",
"meta" : {
"comments" : [ "\"A magnetic flux unit which is equal to 3600 Wb.\" [UOC:GVG]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "Vh",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "volt-hour"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000108",
"meta" : {
"comments" : [ "\"A force unit which is equal to the force required to cause an acceleration of 1m/s2 of a mass of 1 Kg in the direction of the force.\" [NIST:NIST]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "N",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "newton"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000109",
"meta" : {
"comments" : [ "\"A unit which is a standard measure of the force applied to a given area.\" [NIST:NIST]" ]
},
"type" : "CLASS",
"lbl" : "pressure unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000312",
"type" : "CLASS",
"lbl" : "relative light unit based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000313",
"type" : "CLASS",
"lbl" : "relative luminescence unit based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010010",
"type" : "CLASS",
"lbl" : "hectare based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010011",
"type" : "CLASS",
"lbl" : "inch based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010012",
"type" : "CLASS",
"lbl" : "thou based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010013",
"type" : "CLASS",
"lbl" : "foot based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010028",
"meta" : {
"comments" : [ "\"An imperial volume unit which is equivalent to 568.261,25 millilitres.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "pt",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "pint"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010029",
"meta" : {
"comments" : [ "\"An imperial volume unit which is equivalent to 1,136.5225 millilitres, or two pints.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "qt",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "quart"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010026",
"meta" : {
"comments" : [ "\"An imperial volume unit which is equivalent to 28.413,0625 millilitres.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "fl oz",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "fluid ounce"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010027",
"meta" : {
"comments" : [ "\"An imperial volume unit which is equivalent to 142.065,3125 millilitres.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "gi",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "gill"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010046",
"meta" : {
"comments" : [ "\"A United States customary units cup is a unit of measurement of volume widely used in cooking recipes and pharmaceutic prescriptions in America. It equals a 236.59 mL volume.\" [Wikipedia:https://en.wikipedia.org/wiki/United_States_customary_units#Cooking_measures]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "us customary cup",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "united states customary cup"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010018",
"type" : "CLASS",
"lbl" : "league based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010047",
"meta" : {
"comments" : [ "\"A United States FDA cup is a unit of measurement of volume used by the US Federal Department of Agriculture as a nutritional serving measure. It equals a 240 mL volume.\" [Wikipedia:https://en.wikipedia.org/wiki/United_States_customary_units#Cooking_measures]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "us fda cup",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "united states fda cup"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010019",
"type" : "CLASS",
"lbl" : "maritime length unit based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010044",
"meta" : {
"comments" : [ "\"A United States customary units tablespoon is a unit of measurement of volume widely used in cooking recipes and pharmaceutic prescriptions in America. It equals a 14.79 mL volume.\" [Wikipedia:https://en.wikipedia.org/wiki/United_States_customary_units#Cooking_measures]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "us customary tablespoon",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "united states customary tablespoon"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010045",
"meta" : {
"comments" : [ "\"A metric cup is a unit of measurement of volume widely used in cooking recipes and pharmaceutic prescriptions. It equals a 250mL volume.\" [Wikipedia:https://en.wikipedia.org/wiki/Cooking_weights_and_measures]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "C",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "metric cup"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010042",
"meta" : {
"comments" : [ "\"A metric tablespoon is a unit of measurement of volume widely used in cooking recipes and pharmaceutic prescriptions. It equals a 15mL volume.\" [Wikipedia:https://en.wikipedia.org/wiki/Tablespoon]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "tbsp",
"xrefs" : [ ]
}, {
"pred" : "hasExactSynonym",
"val" : "metric tablespoon",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "tablespoon"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010014",
"type" : "CLASS",
"lbl" : "yard based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010015",
"type" : "CLASS",
"lbl" : "chain based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010043",
"meta" : {
"comments" : [ "\"An Australian metric tablespoon is a unit of measurement of volume used in Australia for cooking recipes and pharmaceutic prescriptions. It equals a 20mL volume.\" [Wikipedia:https://en.wikipedia.org/wiki/Tablespoon]" ]
},
"type" : "CLASS",
"lbl" : "australian metric tablespoon"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010040",
"meta" : {
"comments" : [ "\"A metric teaspoon is a unit of measurement of volume widely used in cooking recipes and pharmaceutic prescriptions. It equals a 5mL volume.\" [Wikipedia:https://en.wikipedia.org/wiki/Teaspoon]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "tsp",
"xrefs" : [ ]
}, {
"pred" : "hasExactSynonym",
"val" : "metric teaspoon",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "teaspoon"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010016",
"type" : "CLASS",
"lbl" : "furlong based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0010041",
"meta" : {
"comments" : [ "\"A United States customary units teaspoon is a unit of measurement of volume widely used in cooking recipes and pharmaceutic prescriptions in America. It equals a 4.93 mL volume.\" [Wikipedia:https://en.wikipedia.org/wiki/United_States_customary_units#Cooking_measures]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "us customary teaspoon",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "united states customary teaspoon"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1010017",
"type" : "CLASS",
"lbl" : "mile based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_1000310",
"type" : "CLASS",
"lbl" : "dosage unit based unit"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000240",
"meta" : {
"comments" : [ "\"A spatial resolution unit which is a standard measure of the printing resolution, in particular the number of individual dots of ink a printer or toner can produce within a linear one-inch space.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "dpi",
"xrefs" : [ ]
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "dots per inch"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000120",
"meta" : {
"comments" : [ "\"A catalytic unit activity which is equal to the activity of a catalyst in moles per second, such as the amount of an enzyme needed to transform one mole of substrate per second.\" [NIST:NIST]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "kat",
"xrefs" : [ ]
} ]
},
"type" : "INDIVIDUAL",
"lbl" : "katal"
}, {
"id" : "http://purl.obolibrary.org/obo/UO_0000241",
"meta" : {
"comments" : [ "\"A spatial resolution unit which is equal to a pixel size of one micrometer.\" [Wikipedia:Wikipedia]" ],
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "micrometer pixel",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",