-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathempty-base.json
More file actions
3955 lines (3955 loc) · 161 KB
/
empty-base.json
File metadata and controls
3955 lines (3955 loc) · 161 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"graphs" : [ {
"id" : "http://purl.obolibrary.org/obo/empty/empty-base.json",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/elements/1.1/type",
"val" : "http://purl.obolibrary.org/obo/IAO_8000001"
}, {
"pred" : "http://purl.org/dc/terms/description",
"val" : "An ontology of experimental measurements in the sciences, the purposes for which experimental measurements were made, and experimental treatments, with a focus on life sciences."
}, {
"pred" : "http://purl.org/dc/terms/license",
"val" : "https://creativecommons.org/licenses/by/4.0/"
}, {
"pred" : "http://purl.org/dc/terms/title",
"val" : "Experimental Measurements Purposes and Treatments ontologY"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#comment",
"val" : "EMPTY by NDI is licensed under CC BY 4.0 (https://creativecommons.org/licenses/by/4.0/). You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform, and build upon the material) for any purpose, even commercially. You must give appropriate credit (by using the original ontology IRI for the whole ontology or original term IRIs for individual terms), provide a link to the license, and indicate if any changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use."
}, {
"pred" : "http://www.w3.org/2002/07/owl#versionInfo",
"val" : "2026-04-04"
}, {
"pred" : "http://www.w3.org/2002/07/owl#versionInfo",
"val" : "Release 2025-07-10"
} ],
"version" : "http://purl.obolibrary.org/obo/empty/releases/2026-04-04/empty-base.json"
},
"nodes" : [ {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000001",
"lbl" : "measurement",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A quantitative or qualitative observation, recording, or assessment of a property, phenomenon, or system, obtained through standardized procedures, instruments, or methods. Measurements provide empirical data that can be used for scientific analysis, comparison, and interpretation, forming the foundation for hypothesis testing and knowledge advancement across disciplines."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000002",
"lbl" : "behavioral measurement",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A type of scientific measurement that quantifies an observable action, reaction, or pattern of conduct exhibited by an organism. Behavioral measurements are typically used in biological, psychological, and ethological studies to assess an organism's response to internal states, external stimuli, or experimental manipulations. These can range from simple reflexes to complex social interactions and are obtained through methods including direct observation, video tracking, or specialized automated apparatuses."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000003",
"lbl" : "elevated plus maze measurement",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A specific category of behavioral measurement obtained from the Elevated Plus Maze (EPM) apparatus, an assay widely used in neuroscience and pharmacology to study anxiety-like behavior and the effects of anxiolytic or anxiogenic compounds in laboratory animals, typically rodents. These measurements quantify various aspects of the animal's exploratory activity, spatial preference (e.g., for open vs. enclosed arms), and specific behaviors (e.g., entries, time spent in zones, freezing) within the maze, providing insights into its emotional state and response to perceived risk."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000004",
"lbl" : "acoustic startle response measurement",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A type of behavioral measurement that quantifies the reflexive motor response (startle reflex) of an organism to a sudden, intense stimulus, typically acoustic. These measurements are often used to study sensory processing, sensorimotor gating (e.g., prepulse inhibition), and emotional modulation of reflexes (e.g., fear-potentiated startle)."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000005",
"lbl" : "acoustic startle response derived measurement",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A type of behavioral measurement that is not a direct reading of a startle reflex, but is instead a value calculated, inferred, or derived from one or more primary Acoustic Startle Response (ASR) data points. Examples include percentage changes in ASR, ratios, or rates of change over time."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000006",
"lbl" : "elevated plus maze: open arm (north) - entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this counts the number of times the animal's body (typically defined by its center point or a significant portion) fully enters the user-defined zone designated as 'Open Arm (North)'. The 'Open Arm (North)' is one of the two open arms, distinguished by its assigned 'north' orientation or designation in the experimental setup. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000007",
"lbl" : "elevated plus maze: open arm (south) - entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this counts the number of times the animal's body (typically defined by its center point or a significant portion) fully enters the user-defined zone designated as 'Open Arm (South)'. The 'Open Arm (South)' is one of the two open arms, distinguished by its assigned 'south' orientation or designation in the experimental setup. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000008",
"lbl" : "elevated plus maze: open arm total entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this represents the total number of times the animal's body (typically defined by its center point or a significant portion) fully enters the designated open arm zones (e.g., 'Open Arm (North)' and 'Open Arm (South)'). It is a common measure of exploration and anxiety. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000009",
"lbl" : "elevated plus maze: open arm (north) - head entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this counts the number of times the animal's head (specifically tracked by the software) enters the user-defined 'Open Arm (North)' zone, irrespective of full body entry. This can indicate risk assessment or tentative exploration of the arm designated as 'north'. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000010",
"lbl" : "elevated plus maze: open arm (south) - head entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this counts the number of times the animal's head (specifically tracked by the software) enters the user-defined 'Open Arm (South)' zone, irrespective of full body entry, often reflecting cautious exploration of the open arm designated as 'south'. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000011",
"lbl" : "elevated plus maze: open arm total head entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this is the total number of times the animal's head (specifically tracked by the software) enters any of the designated open arm zones (e.g., 'Open Arm (North)' and 'Open Arm (South)'), considered an indicator of risk-assessment behavior. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000012",
"lbl" : "elevated plus maze: open arm (north) - time",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal's body spends within the user-defined 'Open Arm (North)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000013",
"lbl" : "elevated plus maze: open arm (south) - time",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal's body spends within the user-defined 'Open Arm (South)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000014",
"lbl" : "elevated plus maze: open arm total time",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this is the cumulative total duration the animal's body spends within any of the designated open arm zones (e.g., 'Open Arm (North)' and 'Open Arm (South)'). Less time is generally indicative of higher anxiety. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000015",
"lbl" : "elevated plus maze: open arm total - percent time during test duration",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this represents the percentage of the total test duration that the animal spends in any of the designated open arm zones (e.g., 'Open Arm (North)' and 'Open Arm (South)'). Unit: %"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000016",
"lbl" : "elevated plus maze: open arm (north) - latency to first entry",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the time elapsed from the start of the test until the animal makes its first full body entry into the user-defined 'Open Arm (North)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000017",
"lbl" : "elevated plus maze: open arm (south) - latency to first entry",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the time elapsed from the start of the test until the animal makes its first full body entry into the user-defined 'Open Arm (South)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000018",
"lbl" : "elevated plus maze: open arm total latency to first entry",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the time elapsed from the start of the test until the animal makes its first full body entry into any of the designated open arm zones (e.g., 'Open Arm (North)' or 'Open Arm (South)'). Longer latencies often suggest higher anxiety. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000019",
"lbl" : "elevated plus maze: open arm (north) - time moving towards",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal spends actively moving towards the user-defined 'Open Arm (North)' zone, as detected by the tracking software. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000020",
"lbl" : "elevated plus maze: open arm (south) - time moving towards",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal spends actively moving towards the user-defined 'Open Arm (South)' zone, as detected by the tracking software. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000021",
"lbl" : "elevated plus maze: open arm total time moving towards",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this is the cumulative duration the animal spends actively moving towards any of the designated open arm zones (e.g., 'Open Arm (North)' or 'Open Arm (South)'), reflecting approach motivation. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000022",
"lbl" : "elevated plus maze: open arm (north) - time freezing",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal exhibits freezing behavior (a state of immobility except for respiratory movements) while within the user-defined 'Open Arm (North)' zone. Freezing is a common fear response. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000023",
"lbl" : "elevated plus maze: open arm (south) - time freezing",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal exhibits freezing behavior while within the user-defined 'Open Arm (South)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000024",
"lbl" : "elevated plus maze: open arm total time freezing",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this is the cumulative duration the animal exhibits freezing behavior while within any of the designated open arm zones (e.g., 'Open Arm (North)' or 'Open Arm (South)'), indicating fear or anxiety. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000025",
"lbl" : "elevated plus maze: closed arm (west) - entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this counts the number of times the animal's body fully enters the user-defined 'Closed Arm (West)' zone, representing the enclosed arm designated as 'west'. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000026",
"lbl" : "elevated plus maze: closed arm (east) - entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this counts the number of times the animal's body fully enters the user-defined 'Closed Arm (East)' zone, representing the enclosed arm designated as 'east'. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000027",
"lbl" : "elevated plus maze: closed arm total entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this is the total number of times the animal's body fully enters any of the designated closed arm zones (e.g., 'Closed Arm (West)' and 'Closed Arm (East)'). It is often used as an indicator of general locomotor activity. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000028",
"lbl" : "elevated plus maze: closed arm (west) - head entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this counts the number of times the animal's head enters the user-defined 'Closed Arm (West)' zone. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000029",
"lbl" : "elevated plus maze: closed arm (east) - head entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this counts the number of times the animal's head enters the user-defined 'Closed Arm (East)' zone. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000030",
"lbl" : "elevated plus maze: closed arm total head entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this is the total number of times the animal's head enters any of the designated closed arm zones (e.g., 'Closed Arm (West)' and 'Closed Arm (East)'). Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000031",
"lbl" : "elevated plus maze: closed arm (west) - time",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal's body spends within the user-defined 'Closed Arm (West)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000032",
"lbl" : "elevated plus maze: closed arm (east) - time",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal's body spends within the user-defined 'Closed Arm (East)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000033",
"lbl" : "elevated plus maze: closed arm total time",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this is the cumulative total duration the animal's body spends within any of the designated closed arm zones (e.g., 'Closed Arm (West)' and 'Closed Arm (East)'). Animals typically spend more time in these 'safer' areas. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000034",
"lbl" : "elevated plus maze: closed arm total - percent time during test duration",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this represents the percentage of the total test duration that the animal spends in any of the designated closed arm zones (e.g., 'Closed Arm (West)' and 'Closed Arm (East)'). Unit: %"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000035",
"lbl" : "elevated plus maze: closed arm (west) - latency to first entry",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the time elapsed from the start of the test until the animal makes its first full body entry into the user-defined 'Closed Arm (West)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000036",
"lbl" : "elevated plus maze: closed arm (east) - latency to first entry",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the time elapsed from the start of the test until the animal makes its first full body entry into the user-defined 'Closed Arm (East)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000037",
"lbl" : "elevated plus maze: closed arm total latency to first entry",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the time elapsed from the start of the test until the animal makes its first full body entry into any of the designated closed arm zones (e.g., 'Closed Arm (West)' or 'Closed Arm (East)'). Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000038",
"lbl" : "elevated plus maze: closed arm (west) - time moving towards",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal spends actively moving towards the user-defined 'Closed Arm (West)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000039",
"lbl" : "elevated plus maze: closed arm (east) - time moving towards",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal spends actively moving towards the user-defined 'Closed Arm (East)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000040",
"lbl" : "elevated plus maze: closed arm total time moving towards",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this is the cumulative duration the animal spends actively moving towards any of the designated closed arm zones (e.g., 'Closed Arm (West)' or 'Closed Arm (East)'). Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000041",
"lbl" : "elevated plus maze: closed arm (west) - time freezing",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal exhibits freezing behavior while within the user-defined 'Closed Arm (West)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000042",
"lbl" : "elevated plus maze: closed arm (east) - time freezing",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal exhibits freezing behavior while within the user-defined 'Closed Arm (East)' zone. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000043",
"lbl" : "elevated plus maze: closed arm total time freezing",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this is the cumulative duration the animal exhibits freezing behavior while within any of the designated closed arm zones (e.g., 'Closed Arm (West)' or 'Closed Arm (East)'). Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000044",
"lbl" : "elevated plus maze: center - entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this counts the number of times the animal's body fully enters the user-defined 'Center' zone of the maze, typically from one of the arms. The center zone is the area where all four arms meet. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000045",
"lbl" : "elevated plus maze: center - head entries",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this counts the number of times the animal's head enters the user-defined 'Center' zone of the maze. Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000046",
"lbl" : "elevated plus maze: center - time",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal's body spends within the user-defined 'Center' zone. Time in the center can indicate decision-making or risk assessment. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000047",
"lbl" : "elevated plus maze: center - percent time during test duration",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this represents the percentage of the total test duration that the animal spends in the user-defined 'Center' zone of the maze. Unit: %"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000048",
"lbl" : "elevated plus maze: center - latency to first entry",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the time elapsed from the start of the test until the animal makes its first full body entry into the user-defined 'Center' zone. If the animal starts in the center, this value may be zero or not applicable. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000049",
"lbl" : "elevated plus maze: center - time moving towards",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal spends actively moving towards the user-defined 'Center' zone of the maze (e.g., from an arm). Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000050",
"lbl" : "elevated plus maze: center - time freezing",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this measures the total duration the animal exhibits freezing behavior while within the user-defined 'Center' zone of the maze. Freezing in this relatively exposed area can indicate high anxiety. Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000051",
"lbl" : "elevated plus maze: test identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "For an Elevated Plus Maze experiment, this is a unique code or descriptive name assigned to identify a specific experimental session, trial, or a particular set of recorded data. It helps in organizing and referencing data from distinct observations."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000052",
"lbl" : "subject local identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "For an experiment, this is a unique code or label assigned to an individual animal subject. This allows for tracking and associating behavioral data with specific animals, along with their characteristics like strain, sex, or age."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000053",
"lbl" : "fear-potentiated startle: baseline acoustic startle response amplitude",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Fear-potentiated startle paradigm, this is the amplitude of the acoustic startle response (ASR) measured in response to a startle-eliciting stimulus (e.g., 95-dB white noise burst) prior to any fear conditioning procedures, typically assessed during habituation or pre-conditioning phase. This measurement serves as a reference point for later comparisons with post-conditioning startle responses. Unit: arbitrary units or standardized score."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000054",
"lbl" : "session timeline",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A relative experimental session timeline; major stimulation events are, by default, considered numerically from 1 to N."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000055",
"lbl" : "postnatal day",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Postnatal day is a specific unit to measure the age of an organism that is born live (viviparous animals), starting with the day of birth (postnatal day 0). Often abbreviated in written documents with a capital P (as in P0, P10, etc)."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000056",
"lbl" : "microelectrode voltage offset",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A voltage offset measured at the end of a voltage record, in V"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000057",
"lbl" : "fear-potentiated startle: trial type identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A descriptive string identifying the specific type or condition of a trial in a Fear-Potentiated Startle (FPS) experiment. Examples from the manuscript include 'pre-shock' (baseline startle), 'post-shock' (startle in conditioning context after shocks), 'noise-only' (startle to acoustic stimulus alone during recall tests), or 'light+noise' (startle to acoustic stimulus in presence of conditioned cue during recall tests). The raw data might contain labels like 'Startle 95 dB Trial'."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000058",
"lbl" : "fear-potentiated startle: apparatus chamber identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Identifier for the specific Plexiglas enclosure or sound-attenuating chamber within the Fear-Potentiated Startle (FPS) apparatus (e.g., San Diego Instruments SR-Lab) in which a subject was tested for a given trial. Unit: count or identifier string"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000059",
"lbl" : "experimental group code",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A numerical code that assigns a subject to a specific experimental group within the study design. For example, this could numerically represent treatment groups such as 'saline' or 'CNO' as described in the manuscript, or other study-specific groupings."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000060",
"lbl" : "acoustic startle response: number of samples",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The total number of data points (samples) recorded and analyzed for a single acoustic startle response, typically within a defined time window following stimulus onset (e.g., a 200-ms window as mentioned in the manuscript). Unit: count"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000061",
"lbl" : "acoustic startle response: sampling rate",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The rate at which the analog startle response signal was digitized during data acquisition. Unit: Hertz (Hz)"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000062",
"lbl" : "acoustic startle response: startle window onset amplitude",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The amplitude of the digitized acoustic startle response signal at the very beginning (onset) of the defined analysis window (e.g., a 200-ms window) used to quantify the reflex. Unit: millivolts (mV) or arbitrary units based on transducer calibration."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000063",
"lbl" : "acoustic startle response: maximum amplitude",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The peak amplitude of the acoustic startle response (e.g., 'jump amplitude') detected within the defined analysis window (e.g., 200-ms window) for a given trial. Unit: millivolts (mV) or arbitrary units."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000064",
"lbl" : "acoustic startle response: time to maximum amplitude",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The latency from the onset of the startle-eliciting stimulus (or the beginning of the analysis window) to the occurrence of the maximum (peak) amplitude of the acoustic startle response. Unit: milliseconds (ms)"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000065",
"lbl" : "acoustic startle response: average amplitude",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The average amplitude of the digitized acoustic startle response signal calculated across the entire duration of the defined analysis window (e.g., 200-ms window). Unit: millivolts (mV) or arbitrary units."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000066",
"lbl" : "experiment trial execution timestamp",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The specific date and time indicating when an individual experimental trial was conducted or its data recorded."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000067",
"lbl" : "fear-potentiated startle: experimental phase or test name",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A string identifier indicating the specific experimental phase, session, or test condition of the Fear-Potentiated Startle (FPS) paradigm to which the data belongs. Examples include 'chamber and startle habituation', 'baseline pre-shock test', 'fear conditioning', 'cued fear recall in context B', 'contextual fear recall in context A', or specific extinction test sessions. [Source: https://doi.org/10.1016/j.celrep.2025.115768]"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000068",
"lbl" : "elevated plus maze: test duration",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In the Elevated Plus Maze task, this is the time of the total test duration in seconds'). Unit: seconds"
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000069",
"lbl" : "data exclusion flag",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A boolean flag indicating whether the data from a specific subject or experimental replicate should be excluded from subsequent analysis due to predefined quality control issues or experimental failure."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000070",
"lbl" : "type II BNST neuron",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A type of neuron located in the dorsolateral bed nucleus of the stria terminalis (BNSTDL) that produces post-inhibitory spikes in response to preceding negative current steps, which is related to the action of the low-threshold Ca2+ current. These neurons also display strong voltage sags under hyperpolarizing current pulses, indicating a high level of the hyperpolarization-activated cation current (Ih). [Source: https://doi.org/10.1016/j.celrep.2025.115768]"
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "BNSTNeuronTypeII"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000071",
"lbl" : "investigator-defined cell type",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A cell type proposed by an investigator on the basis of electrophysiological or anatomical criteria."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "investigatorDefinedCellType"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000072",
"lbl" : "type I BNST neuron",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A type of neuron located in the dorsolateral bed nucleus of the stria terminalis (BNSTDL) that fires regularly, displays moderate spike frequency adaptation, and exhibits a voltage sag indicating the presence of the hyperpolarization-activated cation current (Ih). [Source: https://doi.org/10.1016/j.celrep.2025.115768]"
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "BNSTNeuronTypeI"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000073",
"lbl" : "type III BNST neuron",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A type of neuron located in the dorsolateral bed nucleus of the stria terminalis (BNSTDL) characterized by a high rheobase, absence of voltage sag under negative current steps, prominent inward rectification due to the activation of the inward rectifying K+ current (IKIR) at membrane potentials more negative than approximately -50 mV, and firing onset after a characteristic slow voltage ramp mediated by the K+ delayed current (ID). [Source: https://doi.org/10.1016/j.celrep.2025.115768]"
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "BNSTNeuronTypeIII"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000074",
"lbl" : "optogenetic tetanus stimulation target location",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The specific anatomical region where tetanic light stimulation (TLS) is applied in optogenetic experiments to evoke neuronal activity. The value should be defined by the ONTOLOGY_NAME:ONTOLOGY_NODE (e.g. 'UBERON:0000123')."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "optogeneticTetanusStimulationTargetLocation"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000075",
"lbl" : "experimental trial number",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The index of an individual experimental trial within a set."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000076",
"lbl" : "descriptor",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A term that describes, characterizes, or quantifies an aspect of an experimental entity, process, or system."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000077",
"lbl" : "manipulation",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An intentional action, intervention, or condition applied during an experiment to observe its effect on a subject or system."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000078",
"lbl" : "epoch-related manipulation",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A manipulation that is applied or relevant to a specific, defined segment of time (an epoch) within an experiment, often coinciding with data recording."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000079",
"lbl" : "subject-related manipulation",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A manipulation applied to an experimental subject that alters its overall state, which is not necessarily linked to a specific data collection epoch. This often includes long-term interventions like pharmacological treatments or surgical procedures."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000080",
"lbl" : "parameter",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A variable, characteristic, or measurable factor that helps define a particular system, experiment, or process. Parameters are often controlled or measured to understand their effect on the outcome."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000081",
"lbl" : "identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "One or more characters used to identify, name, or characterize the nature, properties, or contents of a thing."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000082",
"lbl" : "universally unique identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A standardized number used to uniquely identify information in computer systems, ensuring that no two identifiers are the same across different systems or contexts."
},
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "UUID"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000083",
"lbl" : "enumerated identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An identifier assigned sequentially from a numbered list, typically as an integer (e.g., 1, 2, 3), to distinguish between individual items."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000084",
"lbl" : "categorical identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An identifier that assigns an item to a specific, predefined category or Class, often represented by a string or label."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000085",
"lbl" : "flag",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A binary variable, typically boolean (true/false), used to indicate the presence or absence of a specific condition, state, or attribute."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000086",
"lbl" : "ontology node",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An identifier that specifies a term within a formal ontology, which should be represented as a combination of the ontology's name and the term's unique ID (e.g., ontologyName:ontologyID)."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000087",
"lbl" : "NDI document identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A unique identifier assigned to a document within the Neuroscience Data Interface (NDI) framework, used to link experimental data to its corresponding metadata and parameters."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000088",
"lbl" : "time-related measurement",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A measurement that quantifies a property related to time, such as a specific moment, an interval, or a rate of occurrence."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000089",
"lbl" : "timestamp",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A sequence of characters or encoded information identifying when a certain event occurred, usually giving the date and time of day, sometimes to a small fraction of a second."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000090",
"lbl" : "duration",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A measurement of the total amount of time that an event or process continues from its start to its end."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000091",
"lbl" : "timepoint",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A measurement representing a single, specific moment in time at which an event occurs or an observation is made. Typically reported in seconds."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000092",
"lbl" : "elevated plus maze parameter",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A parameter that specifies the settings or technical details of an Elevated Plus Maze experiment."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000093",
"lbl" : "fear-potentiated startle parameter",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A parameter that specifies the settings or technical details of a Fear-potentiated startle experiment."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000094",
"lbl" : "ambient temperature",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The ambient room temperature recorded during an experiment. Unit: degrees Celsius."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000095",
"lbl" : "ambient humidity",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The ambient room humidity recorded during an experiment. Unit: percentage (%)."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000096",
"lbl" : "subject document identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A unique alphanumeric identifier assigned to an NDI subject document."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000097",
"lbl" : "C. elegans assay parameter",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A specific parameter related to the experimental setup or conditions of an assay involving the nematode Caenorhabditis elegans."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000098",
"lbl" : "bacterial parameter",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A specific parameter describing the properties or conditions of bacteria in an experiment."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000099",
"lbl" : "C. elegans assay phase",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A string identifier indicating the specific phase of a C. elegans experiment (e.g. 'cultivation' or 'behavior')."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000100",
"lbl" : "C. elegans behavioral assay measurement",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A quantitative or qualitative value obtained from a C. elegans behavioral assay, used to describe an aspect of the animal's movement, position, or interaction with its environment."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000101",
"lbl" : "C. elegans behavioral assay parameter",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A controlled or measured variable specifically related to the design and execution of a C. elegans behavioral assay."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000102",
"lbl" : "C. elegans cultivation parameter",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A parameter related to the conditions under which C. elegans were grown and maintained before being used in an experiment, such as the food source or temperature."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000103",
"lbl" : "experiment session identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A unique numerical identifier for a distinct experimental session."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000104",
"lbl" : "bacterial strain document identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Unique alphanumeric identifier that links to an OpenMINDs document describing the strain of bacteria used in an experiment."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000105",
"lbl" : "bacterial OD600 (target) at seeding",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The intended or nominal optical density at 600 nm (OD 600) to which the bacterial solution was diluted for creating bacterial patches on agar plates. Unit: dimensionless."
}
}
}, {
"id" : "http://purl.obolibrary.org/obo/EMPTY_0000106",
"lbl" : "bacterial plate seeding timestamp",