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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:13.380000-05:00'
contentSize: 9067744
contentUrl:
- https://api.dandiarchive.org/api/assets/c88aa2de-ba68-4c15-a2be-be9f68a91439/download/
- https://dandiarchive.s3.amazonaws.com/blobs/337/f18/337f1885-2ec6-4483-b7a7-f5b00e8d61ba
dateModified: '2023-11-11T10:50:00.578648-05:00'
datePublished: '2025-08-14T19:13:23.067331+00:00'
digest:
dandi:dandi-etag: 71b0d43f934f13bb2739a97375f13cef-1
dandi:sha2-256: 1ed8094ff25877db93aa04e2362f5f12107cd42585d08790383a07f142eeb15f
encodingFormat: application/x-nwb
id: dandiasset:c88aa2de-ba68-4c15-a2be-be9f68a91439
identifier: c88aa2de-ba68-4c15-a2be-be9f68a91439
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-6dpf-03-unsorted-nac/sub-Temp-pref-F22-B22-6dpf-03-unsorted-nac_ses-20230605T160000_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.067331+00:00'
id: urn:uuid:08764f19-f5f9-47d8-96a6-0c5c5a1a2974
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.067331+00:00'
wasAssociatedWith:
- id: urn:uuid:d40e5d31-f6fa-437a-822c-00c7647713a9
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT57600S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_6dpf_03_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-05T16:00:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:00.578648-05:00'
id: urn:uuid:6702f6a4-84bf-4de9-8751-86357709c260
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:00.558623-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:09.460000-05:00'
contentSize: 9113298
contentUrl:
- https://api.dandiarchive.org/api/assets/bbe818bc-e5ae-4b12-ba38-cf8a292fd9b4/download/
- https://dandiarchive.s3.amazonaws.com/blobs/3d6/276/3d627601-0021-4c42-96cf-ded995cf2393
dateModified: '2023-11-11T10:50:00.578648-05:00'
datePublished: '2025-08-14T19:13:23.088113+00:00'
digest:
dandi:dandi-etag: 6cbb897c8430ced9f739626c425ae403-1
dandi:sha2-256: 7bfa35666260ef3b417a66fb9a6f46cac04876cd89bbffdb5c5ad4b8d9a2fabb
encodingFormat: application/x-nwb
id: dandiasset:bbe818bc-e5ae-4b12-ba38-cf8a292fd9b4
identifier: bbe818bc-e5ae-4b12-ba38-cf8a292fd9b4
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-6dpf-02-unsorted-nac/sub-Temp-pref-F22-B22-6dpf-02-unsorted-nac_ses-20230605T152900_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.088113+00:00'
id: urn:uuid:c2b7e5c1-faed-419b-8ce5-395ac5158f30
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.088113+00:00'
wasAssociatedWith:
- id: urn:uuid:af20c18c-d7a8-49ad-8c94-957545d56e32
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT55740S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_6dpf_02_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-05T15:29:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:00.578648-05:00'
id: urn:uuid:c880f45e-c8cb-48b8-b28d-f6b8f1847e76
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:00.518622-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:16.840000-05:00'
contentSize: 9221022
contentUrl:
- https://api.dandiarchive.org/api/assets/e92cebb1-df18-4b3b-9a0e-8ad6264731ad/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ef7/039/ef7039c0-def6-491d-8306-4ee2cf8e56c8
dateModified: '2023-11-11T10:50:00.578648-05:00'
datePublished: '2025-08-14T19:13:23.102969+00:00'
digest:
dandi:dandi-etag: 9a06a026e3d3544d0b2f3882b7ba1930-1
dandi:sha2-256: aeaa91343e1fea210c1b2b0dee78033e60fa5d4c7d7bef944054faf67e12238f
encodingFormat: application/x-nwb
id: dandiasset:e92cebb1-df18-4b3b-9a0e-8ad6264731ad
identifier: e92cebb1-df18-4b3b-9a0e-8ad6264731ad
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-6dpf-04-unsorted-nac/sub-Temp-pref-F22-B22-6dpf-04-unsorted-nac_ses-20230605T163200_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.102969+00:00'
id: urn:uuid:f6b2a706-1e05-4207-9e22-bf8ec45e5b07
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.102969+00:00'
wasAssociatedWith:
- id: urn:uuid:cc904464-ccf2-48c6-b65f-0d63bc356686
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT59520S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_6dpf_04_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-05T16:32:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:00.578648-05:00'
id: urn:uuid:6bf472e2-5ad7-4f88-baf5-eef318d56554
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:00.538622-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:05.880000-05:00'
contentSize: 9166209
contentUrl:
- https://api.dandiarchive.org/api/assets/1c967610-e8af-497f-b8db-86763c752d10/download/
- https://dandiarchive.s3.amazonaws.com/blobs/bf5/cc3/bf5cc3fa-fffb-4957-b500-890589a2308d
dateModified: '2023-11-11T10:50:00.478270-05:00'
datePublished: '2025-08-14T19:13:23.117139+00:00'
digest:
dandi:dandi-etag: 95d623fb9977065945897a5505f6bbe0-1
dandi:sha2-256: 24554b307f42aa5482c4c2151b755993ef334c7277ac4dead8a46cfd043e894d
encodingFormat: application/x-nwb
id: dandiasset:1c967610-e8af-497f-b8db-86763c752d10
identifier: 1c967610-e8af-497f-b8db-86763c752d10
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-6dpf-01-unsorted-nac/sub-Temp-pref-F22-B22-6dpf-01-unsorted-nac_ses-20230605T145500_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.117139+00:00'
id: urn:uuid:5c74c222-8caa-420a-8c27-5d80eafc849b
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.117139+00:00'
wasAssociatedWith:
- id: urn:uuid:d7005230-2265-4d0b-83c4-37a377feed1b
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT53700S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_6dpf_01_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-05T14:55:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:00.478270-05:00'
id: urn:uuid:66b15626-74f9-4bf8-b80f-7e454c657c12
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:00.468617-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:20.410000-05:00'
contentSize: 9188472
contentUrl:
- https://api.dandiarchive.org/api/assets/7ddc6904-9d9c-4b1a-9a33-95ff91ba48aa/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c47/1b5/c471b519-01ca-42a8-9260-dbbb4d0cd0ee
dateModified: '2023-11-11T10:50:00.578648-05:00'
datePublished: '2025-08-14T19:13:23.132968+00:00'
digest:
dandi:dandi-etag: b62cd739329b40c2e699fad741fa5f27-1
dandi:sha2-256: 34989874e48e91ad40b3678a9bd83d46a29f3e3e104b4e0efad7059274e8eef1
encodingFormat: application/x-nwb
id: dandiasset:7ddc6904-9d9c-4b1a-9a33-95ff91ba48aa
identifier: 7ddc6904-9d9c-4b1a-9a33-95ff91ba48aa
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-6dpf-14-unsorted-nac/sub-Temp-pref-F22-B22-6dpf-14-unsorted-nac_ses-20230612T113200_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.132968+00:00'
id: urn:uuid:98256a6a-d661-4bb0-b584-46ecd872754a
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.132968+00:00'
wasAssociatedWith:
- id: urn:uuid:9f86bc54-7919-4fa3-9035-f0a60b0af44a
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT41520S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_6dpf_14_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-12T11:32:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:00.578648-05:00'
id: urn:uuid:80422a52-16a3-4517-9775-6f341a3e6fbe
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:00.578648-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:23.850000-05:00'
contentSize: 9227534
contentUrl:
- https://api.dandiarchive.org/api/assets/486b888f-67a3-49ef-aa72-63228faaf93a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/426/43a/42643af9-112b-4798-aa24-79cc474462bb
dateModified: '2023-11-11T10:50:03.895788-05:00'
datePublished: '2025-08-14T19:13:23.143612+00:00'
digest:
dandi:dandi-etag: 387ba82bf4b508e5e229374a21a9607c-1
dandi:sha2-256: 855d98e30490cfa4f40e337c3391935e2d5c23d0100758ba1f1f1fd8e3026c61
encodingFormat: application/x-nwb
id: dandiasset:486b888f-67a3-49ef-aa72-63228faaf93a
identifier: 486b888f-67a3-49ef-aa72-63228faaf93a
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-6dpf-15-unsorted-nac/sub-Temp-pref-F22-B22-6dpf-15-unsorted-nac_ses-20230612T120500_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.143612+00:00'
id: urn:uuid:25ff7c95-644d-4d41-b882-7b77dc9f8e56
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.143612+00:00'
wasAssociatedWith:
- id: urn:uuid:39550a94-22f6-46df-8cfa-9d699cc54ea4
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT43500S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_6dpf_15_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-12T12:05:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:03.895788-05:00'
id: urn:uuid:c7f0bfdd-98c4-4d43-acd4-3a411163841a
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:03.886134-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:27.430000-05:00'
contentSize: 9179256
contentUrl:
- https://api.dandiarchive.org/api/assets/e40875e0-9aa8-4f6c-a850-5f2166f68063/download/
- https://dandiarchive.s3.amazonaws.com/blobs/9b1/b77/9b1b7783-6c03-4295-b2f6-dba00712fb1a
dateModified: '2023-11-11T10:50:04.156438-05:00'
datePublished: '2025-08-14T19:13:23.156823+00:00'
digest:
dandi:dandi-etag: 780d7f8e56e738568725bbaa166d0ad0-1
dandi:sha2-256: ffef9e92f1bb0d7a2c91e39994a6789fac958c8a926fe8518c1116661883e367
encodingFormat: application/x-nwb
id: dandiasset:e40875e0-9aa8-4f6c-a850-5f2166f68063
identifier: e40875e0-9aa8-4f6c-a850-5f2166f68063
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-7dpf-05-unsorted-nac/sub-Temp-pref-F22-B22-7dpf-05-unsorted-nac_ses-20230606T100500_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.156823+00:00'
id: urn:uuid:f16193bc-6bd2-4728-9d89-336d52a6873a
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.156823+00:00'
wasAssociatedWith:
- id: urn:uuid:c0d33118-0a9d-44d3-baf2-35d2f1c08562
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT36300S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_7dpf_05_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-06T10:05:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:04.156438-05:00'
id: urn:uuid:887b8afd-fd91-4986-a237-bc4ecc3b2348
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:04.146434-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:34.850000-05:00'
contentSize: 9076973
contentUrl:
- https://api.dandiarchive.org/api/assets/53cb3103-ca42-468b-af8f-48a4d3785fa1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/2f2/4d0/2f24d0c2-48c7-4f53-bb44-0797590cabd9
dateModified: '2023-11-11T10:50:05.242767-05:00'
datePublished: '2025-08-14T19:13:23.166410+00:00'
digest:
dandi:dandi-etag: bc7599c5387cd1f7dc21b105057284cd-1
dandi:sha2-256: c09eeb8ef300795e15d1437c5e259fd9bd89cdbf4ca7508b50e8bd3c60b6b571
encodingFormat: application/x-nwb
id: dandiasset:53cb3103-ca42-468b-af8f-48a4d3785fa1
identifier: 53cb3103-ca42-468b-af8f-48a4d3785fa1
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-7dpf-07-unsorted-nac/sub-Temp-pref-F22-B22-7dpf-07-unsorted-nac_ses-20230606T111900_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.166410+00:00'
id: urn:uuid:92e50b48-71b0-4a19-8414-31e5dd25e200
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.166410+00:00'
wasAssociatedWith:
- id: urn:uuid:2df0db3a-b9e9-4795-b701-9d69ed1dd019
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT40740S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_7dpf_07_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-06T11:19:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:05.242767-05:00'
id: urn:uuid:dae9a939-2438-4820-8235-78a915d0a641
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:05.082774-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:30.880000-05:00'
contentSize: 9080921
contentUrl:
- https://api.dandiarchive.org/api/assets/1e6ce06e-56df-4070-98d9-967ce0db64a2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/785/4bf/7854bf1a-dd84-4db0-ba91-290ffa997480
dateModified: '2023-11-11T10:50:05.062422-05:00'
datePublished: '2025-08-14T19:13:23.183243+00:00'
digest:
dandi:dandi-etag: 0be37505492b3d5a3c0609ee3a59db48-1
dandi:sha2-256: 1ce17ce4edba2386ab0f181700a91b9773b44e4009f201b50919450f73cc61cb
encodingFormat: application/x-nwb
id: dandiasset:1e6ce06e-56df-4070-98d9-967ce0db64a2
identifier: 1e6ce06e-56df-4070-98d9-967ce0db64a2
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-7dpf-06-unsorted-nac/sub-Temp-pref-F22-B22-7dpf-06-unsorted-nac_ses-20230606T104200_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.183243+00:00'
id: urn:uuid:c0338ccb-e7e8-473d-9c4c-7759a7f98b64
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.183243+00:00'
wasAssociatedWith:
- id: urn:uuid:3d3cbd5c-5fe8-4c76-a654-ccb4639e80a0
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT38520S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_7dpf_06_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-06T10:42:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:05.062422-05:00'
id: urn:uuid:14be3d80-07e9-40dc-8296-60414ed37aae
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:04.962671-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:38.320000-05:00'
contentSize: 8952003
contentUrl:
- https://api.dandiarchive.org/api/assets/5c3e84dd-396c-46c2-8419-878c857b7ff7/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c02/7db/c027dbb6-6d27-46da-b317-55632b0a0d4e
dateModified: '2023-11-11T10:50:06.133426-05:00'
datePublished: '2025-08-14T19:13:23.199913+00:00'
digest:
dandi:dandi-etag: d4af0ad5424bf44cca1168817f570f68-1
dandi:sha2-256: 3fb166a36e312ef47f3c511daad8da39f52df4e2e56930cae55a7d4177f6e465
encodingFormat: application/x-nwb
id: dandiasset:5c3e84dd-396c-46c2-8419-878c857b7ff7
identifier: 5c3e84dd-396c-46c2-8419-878c857b7ff7
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-7dpf-08-unsorted-nac/sub-Temp-pref-F22-B22-7dpf-08-unsorted-nac_ses-20230606T115200_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.199913+00:00'
id: urn:uuid:a1fe162e-e60f-4665-80ea-1417afbed9a1
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.199913+00:00'
wasAssociatedWith:
- id: urn:uuid:89f9c663-3bdd-4f13-a286-88335e898b4b
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT42720S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_7dpf_08_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-06T11:52:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:06.133426-05:00'
id: urn:uuid:bbc30bbf-9ac7-432c-ae0f-f714bc9ad8b6
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:05.993074-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:41.920000-05:00'
contentSize: 9302428
contentUrl:
- https://api.dandiarchive.org/api/assets/6a0e0c64-a57f-4965-9855-2f600b3d5fcd/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a23/107/a2310755-262c-4d13-aebc-bd79b6fc3bba
dateModified: '2023-11-11T10:50:06.543076-05:00'
datePublished: '2025-08-14T19:13:23.215377+00:00'
digest:
dandi:dandi-etag: 49bfb2626438b2a990bd0d8fcdb45414-1
dandi:sha2-256: 75e36d02f8e342ee50a2ebe9f67c2f8a5303dc82e67f45d7fecd0197f345ce61
encodingFormat: application/x-nwb
id: dandiasset:6a0e0c64-a57f-4965-9855-2f600b3d5fcd
identifier: 6a0e0c64-a57f-4965-9855-2f600b3d5fcd
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-7dpf-09-unsorted-nac/sub-Temp-pref-F22-B22-7dpf-09-unsorted-nac_ses-20230606T122400_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.215377+00:00'
id: urn:uuid:01fe74c0-b882-493d-b88c-201c49c38de4
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.215377+00:00'
wasAssociatedWith:
- id: urn:uuid:5d300811-83a4-4cf4-ac1a-862423098f2f
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT44640S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_7dpf_09_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-06T12:24:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:06.543076-05:00'
id: urn:uuid:58f1d239-f029-4f53-bf79-a31a3e7d3a9f
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:06.533421-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:45.610000-05:00'
contentSize: 9265080
contentUrl:
- https://api.dandiarchive.org/api/assets/00da21e5-312e-4d33-95ca-0ef19e6ff8a2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/1c5/b7b/1c5b7beb-f716-48bb-baa2-e6eb3a5ec15b
dateModified: '2023-11-11T10:50:07.238889-05:00'
datePublished: '2025-08-14T19:13:23.235604+00:00'
digest:
dandi:dandi-etag: bea0e46abd6e799cee756e07fb4e288b-1
dandi:sha2-256: 048c841e37b55197bbf0e604bd0f88da185f9f917a94b0ee5fb42bdfc79d54ba
encodingFormat: application/x-nwb
id: dandiasset:00da21e5-312e-4d33-95ca-0ef19e6ff8a2
identifier: 00da21e5-312e-4d33-95ca-0ef19e6ff8a2
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-7dpf-10-unsorted-nac/sub-Temp-pref-F22-B22-7dpf-10-unsorted-nac_ses-20230606T125600_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.235604+00:00'
id: urn:uuid:10f55c4a-7846-437a-b1de-4ffc06d80000
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.235604+00:00'
wasAssociatedWith:
- id: urn:uuid:4cef042a-2942-4551-9465-353ce3bf0430
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT46560S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_7dpf_10_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-06T12:56:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:07.238889-05:00'
id: urn:uuid:21a6b44f-6691-4e11-b637-93bc961044fe
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:07.238889-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:52.660000-05:00'
contentSize: 9286460
contentUrl:
- https://api.dandiarchive.org/api/assets/7c04120d-81e4-4bd1-9cad-8c4d190d0c8c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/5f5/7ca/5f57ca87-a723-4308-8e06-55e0c375a7d5
dateModified: '2023-11-11T10:50:08.268753-05:00'
datePublished: '2025-08-14T19:13:23.246858+00:00'
digest:
dandi:dandi-etag: b2fedd152c81f067cdc37071fcd5d66c-1
dandi:sha2-256: 0d39bbbe9d824011afd6bb7e8ad32683b5cbadd083c4c60430278679f3c22370
encodingFormat: application/x-nwb
id: dandiasset:7c04120d-81e4-4bd1-9cad-8c4d190d0c8c
identifier: 7c04120d-81e4-4bd1-9cad-8c4d190d0c8c
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-7dpf-12-unsorted-nac/sub-Temp-pref-F22-B22-7dpf-12-unsorted-nac_ses-20230606T144900_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.246858+00:00'
id: urn:uuid:e76f5cd2-2650-4799-be52-adafd7046ae9
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.246858+00:00'
wasAssociatedWith:
- id: urn:uuid:5bfe4c8b-e204-4997-be0d-9bdc2c9c89e0
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT53340S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_7dpf_12_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-06T14:49:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:08.268753-05:00'
id: urn:uuid:9f30657d-981f-4f42-a77b-e3722d99ed81
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:08.268753-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:49.220000-05:00'
contentSize: 9212675
contentUrl:
- https://api.dandiarchive.org/api/assets/278e6685-d90e-40e9-96fa-b1bfd84b42a2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b95/b77/b95b77cc-d171-449e-a992-680890303e0e
dateModified: '2023-11-11T10:50:08.268753-05:00'
datePublished: '2025-08-14T19:13:23.254787+00:00'
digest:
dandi:dandi-etag: b60015ac89a4eefbd1bca49f58ba3c08-1
dandi:sha2-256: c2fd0545caa32bbb85672251893a129a12c78e12e326eb94357f42fae45a95ad
encodingFormat: application/x-nwb
id: dandiasset:278e6685-d90e-40e9-96fa-b1bfd84b42a2
identifier: 278e6685-d90e-40e9-96fa-b1bfd84b42a2
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-7dpf-11-unsorted-nac/sub-Temp-pref-F22-B22-7dpf-11-unsorted-nac_ses-20230606T135500_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.254787+00:00'
id: urn:uuid:221e89f9-c22d-4be6-9dcd-9a859ef9041f
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.254787+00:00'
wasAssociatedWith:
- id: urn:uuid:50da160d-ea7a-4487-9d62-3ea65480887a
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT50100S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_7dpf_11_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-06T13:55:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:08.268753-05:00'
id: urn:uuid:0d55daac-46d0-4aae-aaa0-0bd5766ec4a1
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:08.229101-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2023-11-10T11:46:56.270000-05:00'
contentSize: 9281215
contentUrl:
- https://api.dandiarchive.org/api/assets/d80b4d0b-ce8b-4e22-9e9e-077aae351b18/download/
- https://dandiarchive.s3.amazonaws.com/blobs/e33/379/e333797c-b5c6-46c1-93c5-d783cd5b55b5
dateModified: '2023-11-11T10:50:08.804444-05:00'
datePublished: '2025-08-14T19:13:23.264219+00:00'
digest:
dandi:dandi-etag: 753d7373465313893b31af7a986609e8-1
dandi:sha2-256: c42d9e614fb48000e925e2af9d4d4bcf42b077fe4a46015a5bd89e1c341d3d2c
encodingFormat: application/x-nwb
id: dandiasset:d80b4d0b-ce8b-4e22-9e9e-077aae351b18
identifier: d80b4d0b-ce8b-4e22-9e9e-077aae351b18
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F22-B22-7dpf-13-unsorted-nac/sub-Temp-pref-F22-B22-7dpf-13-unsorted-nac_ses-20230606T160000_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:13:23.264219+00:00'
id: urn:uuid:c8b2e17f-ff01-443d-a562-d5d28fe4a689
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:13:23.264219+00:00'
wasAssociatedWith:
- id: urn:uuid:4305f595-3414-4eb2-9fc2-953f1c232b87
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: BehavioralTimeSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT57600S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F22_B22_7dpf_13_unsorted_nac
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Uniform temperature gradient
name: Acquisition session
schemaKey: Session
startDate: '2023-06-06T16:00:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T10:50:08.804444-05:00'
id: urn:uuid:2979948a-b735-4d53-9dc2-e69343e61718
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T10:50:08.804444-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.58.0
Tip!
Press p or to see the previous file or,
n or to see the next file