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
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
- '@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:56:42.630000-05:00'
contentSize: 9756850
contentUrl:
- https://api.dandiarchive.org/api/assets/8f0f2ecd-c7ff-4758-940a-c21371d8bad0/download/
- https://dandiarchive.s3.amazonaws.com/blobs/0ab/75a/0ab75af3-5f9a-4482-a92c-88621087d5a4
dateModified: '2023-11-11T11:11:21.525755-05:00'
datePublished: '2025-08-14T19:16:25.468982+00:00'
digest:
dandi:dandi-etag: 1ee62a2d2a493c5193806af9314ee2e7-1
dandi:sha2-256: 4b9ea4449dda9adb9725889ca9a95ad2d454f1cff280846b0062562e8fa7b317
encodingFormat: application/x-nwb
id: dandiasset:8f0f2ecd-c7ff-4758-940a-c21371d8bad0
identifier: 8f0f2ecd-c7ff-4758-940a-c21371d8bad0
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-5dpf-03-unsorted-nac/sub-Temp-pref-F34-B34-5dpf-03-unsorted-nac_ses-20230705T131900_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.468982+00:00'
id: urn:uuid:a2bcb07d-15b4-401d-a61c-14b7e6ae7ed2
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.468982+00:00'
wasAssociatedWith:
- id: urn:uuid:0bea9af4-4627-44e3-baf9-1c4da66136c1
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT47940S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_5dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-05T13:19:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:21.525755-05:00'
id: urn:uuid:15f584f5-5c0c-446c-9f2b-4f193cd7ab69
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:21.505750-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:56:35.640000-05:00'
contentSize: 9765864
contentUrl:
- https://api.dandiarchive.org/api/assets/6cd96e88-9179-4d68-86be-bde6968a6b25/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a25/bfb/a25bfb5e-c536-41ff-a7e2-858c9a884e70
dateModified: '2023-11-11T11:11:21.345195-05:00'
datePublished: '2025-08-14T19:16:25.477952+00:00'
digest:
dandi:dandi-etag: e2cc939a10ac599d2ffe1abb577cf5a2-1
dandi:sha2-256: f387853b0a4727deb4ee147704d7ef664b98200ae04e9e4dabafa464f1af58e5
encodingFormat: application/x-nwb
id: dandiasset:6cd96e88-9179-4d68-86be-bde6968a6b25
identifier: 6cd96e88-9179-4d68-86be-bde6968a6b25
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-5dpf-01-unsorted-nac/sub-Temp-pref-F34-B34-5dpf-01-unsorted-nac_ses-20230705T120200_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.477952+00:00'
id: urn:uuid:27d278d5-be4b-4db2-a52d-d1cc72f2a850
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.477952+00:00'
wasAssociatedWith:
- id: urn:uuid:f4a2e40c-cfea-4b20-b44a-bc37861e6190
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT43320S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_5dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-05T12:02:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:21.345195-05:00'
id: urn:uuid:2ad1f81a-b267-4e86-850d-9c6f59ae5a7c
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:21.285543-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:56:39.180000-05:00'
contentSize: 9741238
contentUrl:
- https://api.dandiarchive.org/api/assets/1a77adb7-e06f-4365-a261-d38285cc2c18/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d15/251/d15251be-2ab2-4054-9719-3aacb60f8387
dateModified: '2023-11-11T11:11:21.405193-05:00'
datePublished: '2025-08-14T19:16:25.488004+00:00'
digest:
dandi:dandi-etag: 89f6d2062a2aca8d94ba3d537e27173e-1
dandi:sha2-256: 246139a39be3c2d1a4b15c4363c360186196208213cef132e116e8f324fda36a
encodingFormat: application/x-nwb
id: dandiasset:1a77adb7-e06f-4365-a261-d38285cc2c18
identifier: 1a77adb7-e06f-4365-a261-d38285cc2c18
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-5dpf-02-unsorted-nac/sub-Temp-pref-F34-B34-5dpf-02-unsorted-nac_ses-20230705T123600_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.488004+00:00'
id: urn:uuid:c707f124-1ade-4d5f-a237-f0d1255f3a79
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.488004+00:00'
wasAssociatedWith:
- id: urn:uuid:c43bd60e-f081-4836-935b-211bbcfa8c5f
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT45360S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_5dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-05T12:36:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:21.405193-05:00'
id: urn:uuid:df36fa92-2c86-43cb-acb9-3ec7463a08b5
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:21.405193-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:56:49.610000-05:00'
contentSize: 9154855
contentUrl:
- https://api.dandiarchive.org/api/assets/f34772ed-ce2d-4789-a2d0-c72ce2e2e591/download/
- https://dandiarchive.s3.amazonaws.com/blobs/fb0/ba7/fb0ba742-c882-4b00-bad7-2a2ad8df02b5
dateModified: '2023-11-11T11:11:21.525755-05:00'
datePublished: '2025-08-14T19:16:25.499336+00:00'
digest:
dandi:dandi-etag: 9dce76dcd4513d5e5eda92520e97928e-1
dandi:sha2-256: 6a1529e1720ca00bbcde2b4d9812a48b6ebda33f07ff449c70622381c098439d
encodingFormat: application/x-nwb
id: dandiasset:f34772ed-ce2d-4789-a2d0-c72ce2e2e591
identifier: f34772ed-ce2d-4789-a2d0-c72ce2e2e591
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-5dpf-05-unsorted-nac/sub-Temp-pref-F34-B34-5dpf-05-unsorted-nac_ses-20230705T142500_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.499336+00:00'
id: urn:uuid:f926c2e9-44bd-44bb-9867-d7eb20b0e464
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.499336+00:00'
wasAssociatedWith:
- id: urn:uuid:c1341242-1d16-4b84-94da-043eae441d5c
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT51900S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_5dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-05T14:25:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:21.525755-05:00'
id: urn:uuid:8e970505-8aa4-4197-9973-749f0702a51f
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:21.525755-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:56:46.150000-05:00'
contentSize: 9600294
contentUrl:
- https://api.dandiarchive.org/api/assets/a72343e5-0d39-4fee-833b-70bf0d30bab1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ef0/1ec/ef01ec27-8142-4424-8ec2-ea972e737314
dateModified: '2023-11-11T11:11:21.475542-05:00'
datePublished: '2025-08-14T19:16:25.508865+00:00'
digest:
dandi:dandi-etag: 705c37244e2a1da1756a7dd23da3e3ec-1
dandi:sha2-256: ac69b073e81e2a9b5040ac206d8791e6c67f24b38ef4ead42b65195d21b6c4c1
encodingFormat: application/x-nwb
id: dandiasset:a72343e5-0d39-4fee-833b-70bf0d30bab1
identifier: a72343e5-0d39-4fee-833b-70bf0d30bab1
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-5dpf-04-unsorted-nac/sub-Temp-pref-F34-B34-5dpf-04-unsorted-nac_ses-20230705T135300_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.508865+00:00'
id: urn:uuid:a4e54b93-ce1a-41ce-8f8b-2ffa9a1d37a3
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.508865+00:00'
wasAssociatedWith:
- id: urn:uuid:9b515879-d3d1-408a-9687-8f130c24334b
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT49980S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_5dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-05T13:53:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:21.475542-05:00'
id: urn:uuid:8ad756ed-67b9-4ef9-aa06-f637f094bea5
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:21.475542-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:56:53.170000-05:00'
contentSize: 9560226
contentUrl:
- https://api.dandiarchive.org/api/assets/bee98478-08e6-4cc2-97da-936ca17629de/download/
- https://dandiarchive.s3.amazonaws.com/blobs/80c/91e/80c91ed2-8e15-486d-801a-b359d34182e7
dateModified: '2023-11-11T11:11:24.757488-05:00'
datePublished: '2025-08-14T19:16:25.520254+00:00'
digest:
dandi:dandi-etag: 3e42cc8a6cc55617ccff4c57b5073d09-1
dandi:sha2-256: 9fa0001c49f90dec881f009b0e7d88bde318263458ab99b9c5bb73db6c116454
encodingFormat: application/x-nwb
id: dandiasset:bee98478-08e6-4cc2-97da-936ca17629de
identifier: bee98478-08e6-4cc2-97da-936ca17629de
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-5dpf-06-unsorted-nac/sub-Temp-pref-F34-B34-5dpf-06-unsorted-nac_ses-20230705T145700_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.520254+00:00'
id: urn:uuid:d74abeb9-18c0-4d15-a1f6-4ca6322b79c3
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.520254+00:00'
wasAssociatedWith:
- id: urn:uuid:2b295e24-0bdd-49ce-9c5b-1e858141cf69
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT53820S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_5dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-05T14:57:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:24.757488-05:00'
id: urn:uuid:9fb8a05a-ba60-4e0e-a3df-c7755ccd53e1
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:24.747469-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:56:56.640000-05:00'
contentSize: 9240329
contentUrl:
- https://api.dandiarchive.org/api/assets/ecdd8846-e3e2-4f94-8cd5-cdbe15970c08/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d93/d06/d93d067a-aaa7-496b-bff8-1b1e9b326e2b
dateModified: '2023-11-11T11:11:25.547203-05:00'
datePublished: '2025-08-14T19:16:25.529242+00:00'
digest:
dandi:dandi-etag: 5a5473fc6e2f50592b9d1f71a262bd9f-1
dandi:sha2-256: 1a4b498eb777415e6b8e71c0866c5b3811f6ce14bd8f11ff6fb658a47bc111bc
encodingFormat: application/x-nwb
id: dandiasset:ecdd8846-e3e2-4f94-8cd5-cdbe15970c08
identifier: ecdd8846-e3e2-4f94-8cd5-cdbe15970c08
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-5dpf-07-unsorted-nac/sub-Temp-pref-F34-B34-5dpf-07-unsorted-nac_ses-20230705T153000_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.529242+00:00'
id: urn:uuid:b8abb847-b9d6-4d02-baf3-627283f0baf0
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.529242+00:00'
wasAssociatedWith:
- id: urn:uuid:ca3b9a97-f4aa-4b66-a6fa-2c1810c3d872
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT55800S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_5dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-05T15:30:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:25.547203-05:00'
id: urn:uuid:492c8b8e-5bb9-4e62-8aff-ca2cf9e70f00
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:25.427554-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:57:03.640000-05:00'
contentSize: 9723637
contentUrl:
- https://api.dandiarchive.org/api/assets/f3a8cc4d-8fff-496a-817b-f9cd2be51fe6/download/
- https://dandiarchive.s3.amazonaws.com/blobs/320/161/32016138-e22b-4aee-9a4c-049fd0cb0fdc
dateModified: '2023-11-11T11:11:25.597549-05:00'
datePublished: '2025-08-14T19:16:25.537854+00:00'
digest:
dandi:dandi-etag: 4edbc9dba76524bbf51f71bbb33b0b9d-1
dandi:sha2-256: 70a7f62735a77ed3c38b2152ff34bcb5a4980bfca34ef71cb8bb53afc250ae6c
encodingFormat: application/x-nwb
id: dandiasset:f3a8cc4d-8fff-496a-817b-f9cd2be51fe6
identifier: f3a8cc4d-8fff-496a-817b-f9cd2be51fe6
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-6dpf-09-unsorted-nac/sub-Temp-pref-F34-B34-6dpf-09-unsorted-nac_ses-20230706T102500_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.537854+00:00'
id: urn:uuid:6ea93bcf-b2d5-4de5-95d8-0499fe1c274e
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.537854+00:00'
wasAssociatedWith:
- id: urn:uuid:4bba6a46-93a2-4800-8004-c6d288d99aa4
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT37500S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_6dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-06T10:25:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:25.597549-05:00'
id: urn:uuid:4eda02c8-79d2-4dff-93dc-f40fa0929bdb
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:25.487552-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:57:00.180000-05:00'
contentSize: 9690499
contentUrl:
- https://api.dandiarchive.org/api/assets/22c39dfc-b9fe-47b5-a02c-68b715830d64/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c2e/152/c2e1522b-177f-4b05-91fe-186eb62414e7
dateModified: '2023-11-11T11:11:25.577552-05:00'
datePublished: '2025-08-14T19:16:25.547303+00:00'
digest:
dandi:dandi-etag: 6866e801ab4730ff06a9a80290fddf34-1
dandi:sha2-256: d741bacfbc41e66e60593dd708113a02373195f0f045ee3b0216484fe54080d6
encodingFormat: application/x-nwb
id: dandiasset:22c39dfc-b9fe-47b5-a02c-68b715830d64
identifier: 22c39dfc-b9fe-47b5-a02c-68b715830d64
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-5dpf-08-unsorted-nac/sub-Temp-pref-F34-B34-5dpf-08-unsorted-nac_ses-20230705T160300_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.547303+00:00'
id: urn:uuid:6adc8c94-a067-4351-bfb6-180c039a0ed7
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.547303+00:00'
wasAssociatedWith:
- id: urn:uuid:226892be-0395-4f4d-a2a4-5b8f96d01483
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT57780S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_5dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-05T16:03:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:25.577552-05:00'
id: urn:uuid:385cc4ce-22ed-4606-a552-acc0ad8ea700
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:25.457553-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:57:07.210000-05:00'
contentSize: 9622473
contentUrl:
- https://api.dandiarchive.org/api/assets/e0caadae-ae6b-4bbf-a30c-1180f62d5752/download/
- https://dandiarchive.s3.amazonaws.com/blobs/8ed/63c/8ed63ca3-8741-4ee9-a7a3-187d8de6d998
dateModified: '2023-11-11T11:11:25.637551-05:00'
datePublished: '2025-08-14T19:16:25.554643+00:00'
digest:
dandi:dandi-etag: d2600adb55f0fa506b97da0e56aa8988-1
dandi:sha2-256: 3c2a544f4e58014671596f940d1e5f42ce090727701833695f8db38bf97f1925
encodingFormat: application/x-nwb
id: dandiasset:e0caadae-ae6b-4bbf-a30c-1180f62d5752
identifier: e0caadae-ae6b-4bbf-a30c-1180f62d5752
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-6dpf-10-unsorted-nac/sub-Temp-pref-F34-B34-6dpf-10-unsorted-nac_ses-20230706T105700_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.554643+00:00'
id: urn:uuid:90aac11f-facb-4240-95a7-77a31bdc536c
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.554643+00:00'
wasAssociatedWith:
- id: urn:uuid:11c440ed-d64a-48c4-b18e-ab78be525ac3
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT39420S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_6dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-06T10:57:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:25.637551-05:00'
id: urn:uuid:b538c480-04b9-4d45-a7db-13714997305d
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:25.517554-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:57:10.800000-05:00'
contentSize: 9667573
contentUrl:
- https://api.dandiarchive.org/api/assets/59cd3b32-e3cc-4238-9fae-96a6436cfc5b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/dbf/d81/dbfd8101-f356-41c5-8328-4d5fb60a3346
dateModified: '2023-11-11T11:11:26.717272-05:00'
datePublished: '2025-08-14T19:16:25.561310+00:00'
digest:
dandi:dandi-etag: 456fd4576e56c3615b226a4bf718bfc2-1
dandi:sha2-256: b09f5e35c2787292987016e588ab1f41beb477a571069e13a4c606b822afb222
encodingFormat: application/x-nwb
id: dandiasset:59cd3b32-e3cc-4238-9fae-96a6436cfc5b
identifier: 59cd3b32-e3cc-4238-9fae-96a6436cfc5b
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-6dpf-11-unsorted-nac/sub-Temp-pref-F34-B34-6dpf-11-unsorted-nac_ses-20230706T113000_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.561310+00:00'
id: urn:uuid:b7925eed-d37f-424c-9345-dc8a27cd472b
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.561310+00:00'
wasAssociatedWith:
- id: urn:uuid:09ac23db-d913-4d27-9d4f-f0f846fff2d5
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT41400S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_6dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-06T11:30:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:26.717272-05:00'
id: urn:uuid:b488a1e3-97bd-44cd-85fa-1258634cad6f
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:26.717272-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:57:14.360000-05:00'
contentSize: 9550426
contentUrl:
- https://api.dandiarchive.org/api/assets/f44451cd-1b29-4fa1-8dfd-a4f7b0d5d42d/download/
- https://dandiarchive.s3.amazonaws.com/blobs/553/1db/5531db70-bf68-4f1c-b50b-1463e0c6b5c0
dateModified: '2023-11-11T11:11:28.622461-05:00'
datePublished: '2025-08-14T19:16:25.571167+00:00'
digest:
dandi:dandi-etag: 15fb0df929cb8a5fb3738b63e1e0eafa-1
dandi:sha2-256: 189cc29b72fd90debc1bac4c021f9a859c0e08ad04ea1e79086ffc7eb50ebdb0
encodingFormat: application/x-nwb
id: dandiasset:f44451cd-1b29-4fa1-8dfd-a4f7b0d5d42d
identifier: f44451cd-1b29-4fa1-8dfd-a4f7b0d5d42d
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-6dpf-12-unsorted-nac/sub-Temp-pref-F34-B34-6dpf-12-unsorted-nac_ses-20230706T120200_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.571167+00:00'
id: urn:uuid:9788f5af-4c65-4762-8dae-dd3f20b288a2
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.571167+00:00'
wasAssociatedWith:
- id: urn:uuid:b6c97785-c41e-4b75-8a5c-70ba81228a18
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT43320S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_6dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-06T12:02:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:28.622461-05:00'
id: urn:uuid:cdfefcd6-d54e-44ff-83d1-fdf850aa9921
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:28.522605-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:57:24.920000-05:00'
contentSize: 9724116
contentUrl:
- https://api.dandiarchive.org/api/assets/4e499c23-2c4e-4e6b-b11a-18b755b5f68d/download/
- https://dandiarchive.s3.amazonaws.com/blobs/338/d1f/338d1fd2-3e70-4f21-b6ff-67947a6524fa
dateModified: '2023-11-11T11:11:29.012502-05:00'
datePublished: '2025-08-14T19:16:25.581506+00:00'
digest:
dandi:dandi-etag: 243ff5e4bb0b55ae3b71cba2462565ea-1
dandi:sha2-256: 14cdde15c4aef0c4a2f01acbcf1aa0fbf9adeaddc4b660408db16dbdcdd0ec3c
encodingFormat: application/x-nwb
id: dandiasset:4e499c23-2c4e-4e6b-b11a-18b755b5f68d
identifier: 4e499c23-2c4e-4e6b-b11a-18b755b5f68d
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-6dpf-15-unsorted-nac/sub-Temp-pref-F34-B34-6dpf-15-unsorted-nac_ses-20230706T160600_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.581506+00:00'
id: urn:uuid:91eb9b50-fc7a-4a75-9b74-a2f1e73c8aa9
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.581506+00:00'
wasAssociatedWith:
- id: urn:uuid:fe0afdcf-8a09-4489-96a2-e54bdaf7556d
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT57960S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-06T16:06:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:29.012502-05:00'
id: urn:uuid:12141b22-7c40-442b-9b0c-0197519b85c2
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:28.982139-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:57:17.810000-05:00'
contentSize: 9446270
contentUrl:
- https://api.dandiarchive.org/api/assets/a68df38c-2201-439b-95eb-dbe1224bcfbf/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c66/674/c6667400-1f27-41af-92f1-a0a42d3d6f06
dateModified: '2023-11-11T11:11:29.072352-05:00'
datePublished: '2025-08-14T19:16:25.589120+00:00'
digest:
dandi:dandi-etag: 7a6658de04031fccb6a3af13f6b67562-1
dandi:sha2-256: a6ee9c8bc09682571946faa323c24bd423c998ca4095a60ca1def3622af13bcf
encodingFormat: application/x-nwb
id: dandiasset:a68df38c-2201-439b-95eb-dbe1224bcfbf
identifier: a68df38c-2201-439b-95eb-dbe1224bcfbf
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-6dpf-13-unsorted-nac/sub-Temp-pref-F34-B34-6dpf-13-unsorted-nac_ses-20230706T123400_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.589120+00:00'
id: urn:uuid:e3996781-1a8b-460a-9fcd-69836351a8aa
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.589120+00:00'
wasAssociatedWith:
- id: urn:uuid:058eaf5e-b145-4613-aacd-0c13141c6e43
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT45240S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_6dpf_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-06T12:34:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:29.072352-05:00'
id: urn:uuid:403faab7-d82c-4639-8d82-55d60ed638f9
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:29.012502-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:57:28.430000-05:00'
contentSize: 9634705
contentUrl:
- https://api.dandiarchive.org/api/assets/b279f659-d42b-4996-80e1-0be61c53461f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/9dd/796/9dd79601-3a14-4c83-8128-7a5fef14be9f
dateModified: '2023-11-11T11:11:29.571350-05:00'
datePublished: '2025-08-14T19:16:25.597276+00:00'
digest:
dandi:dandi-etag: 631f4e228d593d46bc18c82a73ee64ce-1
dandi:sha2-256: f26872ab6bcb63a6b7193f1051a7dec075e470d1a7ffbb2312b0141b53c0b671
encodingFormat: application/x-nwb
id: dandiasset:b279f659-d42b-4996-80e1-0be61c53461f
identifier: b279f659-d42b-4996-80e1-0be61c53461f
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-6dpf-16-unsorted-nac/sub-Temp-pref-F34-B34-6dpf-16-unsorted-nac_ses-20230706T163800_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.597276+00:00'
id: urn:uuid:15f92791-fdbe-483d-a544-15a65296ec14
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.597276+00:00'
wasAssociatedWith:
- id: urn:uuid:e9ace9d9-62f6-44ef-8a02-3b46b9ba5f6c
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT59880S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_6dpf_16_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-06T16:38:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:29.571350-05:00'
id: urn:uuid:b7eb6f0e-a03a-4501-90f3-ffa250246f2d
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:29.561350-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:57:21.370000-05:00'
contentSize: 9572798
contentUrl:
- https://api.dandiarchive.org/api/assets/b401dc97-a14d-4832-8642-c54c0ea1292f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/510/f28/510f28d1-8213-4a12-8ca0-bbb7628c9f23
dateModified: '2023-11-11T11:11:29.012502-05:00'
datePublished: '2025-08-14T19:16:25.607381+00:00'
digest:
dandi:dandi-etag: 856d1c58d8f36024131a715c0583e8ea-1
dandi:sha2-256: c9484b0e4ba2013f89dc67faa2de0349d497b9334b14043515d5461cd9f7286e
encodingFormat: application/x-nwb
id: dandiasset:b401dc97-a14d-4832-8642-c54c0ea1292f
identifier: b401dc97-a14d-4832-8642-c54c0ea1292f
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-Temp-pref-F34-B34-6dpf-14-unsorted-nac/sub-Temp-pref-F34-B34-6dpf-14-unsorted-nac_ses-20230706T130500_behavior.nwb
publishedBy:
endDate: '2025-08-14T19:16:25.607381+00:00'
id: urn:uuid:ed63b1f3-f4cb-4d7d-b2ac-f98729bbb05a
name: DANDI publish
schemaKey: PublishActivity
startDate: '2025-08-14T19:16:25.607381+00:00'
wasAssociatedWith:
- id: urn:uuid:782ffe87-548d-493e-99f0-10b6ce936887
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: CompassDirection
- schemaKey: PropertyValue
value: Position
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT47100S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: Temp_pref_F34_B34_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: Hot Avoidance behavior
name: Acquisition session
schemaKey: Session
startDate: '2023-07-06T13:05:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-11-11T11:11:29.012502-05:00'
id: urn:uuid:857b280e-4e85-40a9-afe9-855bedac4d14
name: Metadata generation
schemaKey: Activity
startDate: '2023-11-11T11:11:28.942490-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