Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

assets.yaml 44 KB

You have to be logged in to leave a comment. Sign In
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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: behavioral approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2023-11-10T11:43:25.580000-05:00'
  9. contentSize: 9038552
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/2156e75f-7e58-48eb-93ec-6d60fdb4ad94/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/6eb/787/6eb787ee-afb8-4c07-8b4c-c17acacf1446
  13. dateModified: '2023-11-11T10:39:27.944383-05:00'
  14. datePublished: '2025-08-14T19:11:22.537166+00:00'
  15. digest:
  16. dandi:dandi-etag: 09288600b30c957dc0c8d0349ad21eb1-1
  17. dandi:sha2-256: a1bb1ca23f207e20a358f363e9348f0852e6a8e8a545ca31286ff7cf0dc6b8da
  18. encodingFormat: application/x-nwb
  19. id: dandiasset:2156e75f-7e58-48eb-93ec-6d60fdb4ad94
  20. identifier: 2156e75f-7e58-48eb-93ec-6d60fdb4ad94
  21. measurementTechnique:
  22. - name: behavioral technique
  23. schemaKey: MeasurementTechniqueType
  24. - name: analytical technique
  25. schemaKey: MeasurementTechniqueType
  26. path: sub-Temp-pref-F16-B16-6dpf-05-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-05-unsorted-nac_ses-20230720T164700_behavior.nwb
  27. publishedBy:
  28. endDate: '2025-08-14T19:11:22.537166+00:00'
  29. id: urn:uuid:cf09f74e-5245-48ee-9a4d-69bd4d47eff2
  30. name: DANDI publish
  31. schemaKey: PublishActivity
  32. startDate: '2025-08-14T19:11:22.537166+00:00'
  33. wasAssociatedWith:
  34. - id: urn:uuid:324db516-54de-4d09-a913-2cbe95e7f076
  35. identifier: RRID:SCR_017571
  36. name: DANDI API
  37. schemaKey: Software
  38. version: 0.1.0
  39. schemaKey: Asset
  40. schemaVersion: 0.6.4
  41. variableMeasured:
  42. - schemaKey: PropertyValue
  43. value: SpatialSeries
  44. - schemaKey: PropertyValue
  45. value: Position
  46. - schemaKey: PropertyValue
  47. value: ProcessingModule
  48. - schemaKey: PropertyValue
  49. value: CompassDirection
  50. - schemaKey: PropertyValue
  51. value: BehavioralTimeSeries
  52. wasAttributedTo:
  53. - age:
  54. schemaKey: PropertyValue
  55. unitText: ISO-8601 duration
  56. value: P6DT60420S
  57. valueReference:
  58. schemaKey: PropertyValue
  59. value: dandi:BirthReference
  60. identifier: Temp_pref_F16_B16_6dpf_05_unsorted_nac
  61. schemaKey: Participant
  62. sex:
  63. name: Unknown
  64. schemaKey: SexType
  65. species:
  66. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  67. name: Danio rerio - Zebra fish
  68. schemaKey: SpeciesType
  69. wasGeneratedBy:
  70. - description: Cold Avoidance behavior
  71. name: Acquisition session
  72. schemaKey: Session
  73. startDate: '2023-07-20T16:47:00-04:00'
  74. - description: Metadata generated by DANDI cli
  75. endDate: '2023-11-11T10:39:27.944383-05:00'
  76. id: urn:uuid:19cee66e-f806-466a-a7c6-5782f1930fe2
  77. name: Metadata generation
  78. schemaKey: Activity
  79. startDate: '2023-11-11T10:39:27.944383-05:00'
  80. wasAssociatedWith:
  81. - identifier: RRID:SCR_019009
  82. name: DANDI Command Line Interface
  83. schemaKey: Software
  84. url: https://github.com/dandi/dandi-cli
  85. version: 0.58.0
  86. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  87. access:
  88. - schemaKey: AccessRequirements
  89. status: dandi:OpenAccess
  90. approach:
  91. - name: behavioral approach
  92. schemaKey: ApproachType
  93. blobDateModified: '2023-11-10T11:43:18.640000-05:00'
  94. contentSize: 8065995
  95. contentUrl:
  96. - https://api.dandiarchive.org/api/assets/4d9af5ed-cce2-4415-9c9a-fed5ef2a1c81/download/
  97. - https://dandiarchive.s3.amazonaws.com/blobs/670/e0b/670e0baa-a81e-4f5c-b61a-86e911793428
  98. dateModified: '2023-11-11T10:39:27.684731-05:00'
  99. datePublished: '2025-08-14T19:11:22.555559+00:00'
  100. digest:
  101. dandi:dandi-etag: 8cac7daf3be4a4d8988cc491822e4383-1
  102. dandi:sha2-256: f183283027ccbbea106688f82ddc3f5a28c5608ec164590587814760a678e772
  103. encodingFormat: application/x-nwb
  104. id: dandiasset:4d9af5ed-cce2-4415-9c9a-fed5ef2a1c81
  105. identifier: 4d9af5ed-cce2-4415-9c9a-fed5ef2a1c81
  106. measurementTechnique:
  107. - name: behavioral technique
  108. schemaKey: MeasurementTechniqueType
  109. - name: analytical technique
  110. schemaKey: MeasurementTechniqueType
  111. path: sub-Temp-pref-F16-B16-6dpf-03-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-03-unsorted-nac_ses-20230720T154200_behavior.nwb
  112. publishedBy:
  113. endDate: '2025-08-14T19:11:22.555559+00:00'
  114. id: urn:uuid:43331796-b9c2-42d4-9eb2-b061b66048b6
  115. name: DANDI publish
  116. schemaKey: PublishActivity
  117. startDate: '2025-08-14T19:11:22.555559+00:00'
  118. wasAssociatedWith:
  119. - id: urn:uuid:b42de37e-a427-4063-bd69-05ae68407ba1
  120. identifier: RRID:SCR_017571
  121. name: DANDI API
  122. schemaKey: Software
  123. version: 0.1.0
  124. schemaKey: Asset
  125. schemaVersion: 0.6.4
  126. variableMeasured:
  127. - schemaKey: PropertyValue
  128. value: SpatialSeries
  129. - schemaKey: PropertyValue
  130. value: Position
  131. - schemaKey: PropertyValue
  132. value: ProcessingModule
  133. - schemaKey: PropertyValue
  134. value: CompassDirection
  135. - schemaKey: PropertyValue
  136. value: BehavioralTimeSeries
  137. wasAttributedTo:
  138. - age:
  139. schemaKey: PropertyValue
  140. unitText: ISO-8601 duration
  141. value: P6DT56520S
  142. valueReference:
  143. schemaKey: PropertyValue
  144. value: dandi:BirthReference
  145. identifier: Temp_pref_F16_B16_6dpf_03_unsorted_nac
  146. schemaKey: Participant
  147. sex:
  148. name: Unknown
  149. schemaKey: SexType
  150. species:
  151. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  152. name: Danio rerio - Zebra fish
  153. schemaKey: SpeciesType
  154. wasGeneratedBy:
  155. - description: Cold Avoidance behavior
  156. name: Acquisition session
  157. schemaKey: Session
  158. startDate: '2023-07-20T15:42:00-04:00'
  159. - description: Metadata generated by DANDI cli
  160. endDate: '2023-11-11T10:39:27.684731-05:00'
  161. id: urn:uuid:e94dd0ea-37fb-4457-bc32-99806df54d53
  162. name: Metadata generation
  163. schemaKey: Activity
  164. startDate: '2023-11-11T10:39:27.654381-05:00'
  165. wasAssociatedWith:
  166. - identifier: RRID:SCR_019009
  167. name: DANDI Command Line Interface
  168. schemaKey: Software
  169. url: https://github.com/dandi/dandi-cli
  170. version: 0.58.0
  171. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  172. access:
  173. - schemaKey: AccessRequirements
  174. status: dandi:OpenAccess
  175. approach:
  176. - name: behavioral approach
  177. schemaKey: ApproachType
  178. blobDateModified: '2023-11-10T11:43:11.790000-05:00'
  179. contentSize: 8949529
  180. contentUrl:
  181. - https://api.dandiarchive.org/api/assets/7fa1413a-97af-4fcc-9e5d-dae4c93ab388/download/
  182. - https://dandiarchive.s3.amazonaws.com/blobs/631/0f5/6310f53e-4ada-4038-93df-e8f46767ef52
  183. dateModified: '2023-11-11T10:39:27.544381-05:00'
  184. datePublished: '2025-08-14T19:11:22.563456+00:00'
  185. digest:
  186. dandi:dandi-etag: d4cdadb214e13738abbf5dc7768aeff3-1
  187. dandi:sha2-256: 258714b0b7ce3f6bfd5a9113b603c13ddc265ed5715a062158535e944ef702a7
  188. encodingFormat: application/x-nwb
  189. id: dandiasset:7fa1413a-97af-4fcc-9e5d-dae4c93ab388
  190. identifier: 7fa1413a-97af-4fcc-9e5d-dae4c93ab388
  191. measurementTechnique:
  192. - name: behavioral technique
  193. schemaKey: MeasurementTechniqueType
  194. - name: analytical technique
  195. schemaKey: MeasurementTechniqueType
  196. path: sub-Temp-pref-F16-B16-6dpf-01-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-01-unsorted-nac_ses-20230720T143700_behavior.nwb
  197. publishedBy:
  198. endDate: '2025-08-14T19:11:22.563456+00:00'
  199. id: urn:uuid:e7c56e8e-a425-4aa7-8799-bfb49c6bb4e0
  200. name: DANDI publish
  201. schemaKey: PublishActivity
  202. startDate: '2025-08-14T19:11:22.563456+00:00'
  203. wasAssociatedWith:
  204. - id: urn:uuid:516464e6-ed59-43fe-89ea-2a390241bb68
  205. identifier: RRID:SCR_017571
  206. name: DANDI API
  207. schemaKey: Software
  208. version: 0.1.0
  209. schemaKey: Asset
  210. schemaVersion: 0.6.4
  211. variableMeasured:
  212. - schemaKey: PropertyValue
  213. value: SpatialSeries
  214. - schemaKey: PropertyValue
  215. value: Position
  216. - schemaKey: PropertyValue
  217. value: ProcessingModule
  218. - schemaKey: PropertyValue
  219. value: CompassDirection
  220. - schemaKey: PropertyValue
  221. value: BehavioralTimeSeries
  222. wasAttributedTo:
  223. - age:
  224. schemaKey: PropertyValue
  225. unitText: ISO-8601 duration
  226. value: P6DT52620S
  227. valueReference:
  228. schemaKey: PropertyValue
  229. value: dandi:BirthReference
  230. identifier: Temp_pref_F16_B16_6dpf_01_unsorted_nac
  231. schemaKey: Participant
  232. sex:
  233. name: Unknown
  234. schemaKey: SexType
  235. species:
  236. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  237. name: Danio rerio - Zebra fish
  238. schemaKey: SpeciesType
  239. wasGeneratedBy:
  240. - description: Cold Avoidance behavior
  241. name: Acquisition session
  242. schemaKey: Session
  243. startDate: '2023-07-20T14:37:00-04:00'
  244. - description: Metadata generated by DANDI cli
  245. endDate: '2023-11-11T10:39:27.544381-05:00'
  246. id: urn:uuid:19512a83-334f-4156-98e6-85953f843f15
  247. name: Metadata generation
  248. schemaKey: Activity
  249. startDate: '2023-11-11T10:39:27.544381-05:00'
  250. wasAssociatedWith:
  251. - identifier: RRID:SCR_019009
  252. name: DANDI Command Line Interface
  253. schemaKey: Software
  254. url: https://github.com/dandi/dandi-cli
  255. version: 0.58.0
  256. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  257. access:
  258. - schemaKey: AccessRequirements
  259. status: dandi:OpenAccess
  260. approach:
  261. - name: behavioral approach
  262. schemaKey: ApproachType
  263. blobDateModified: '2023-11-10T11:43:22.070000-05:00'
  264. contentSize: 8658340
  265. contentUrl:
  266. - https://api.dandiarchive.org/api/assets/7244cf20-96fd-4ea0-8485-ad81c40d0d34/download/
  267. - https://dandiarchive.s3.amazonaws.com/blobs/ae9/c4e/ae9c4e76-5c66-4100-a3df-4fdc99bbb79d
  268. dateModified: '2023-11-11T10:39:27.824732-05:00'
  269. datePublished: '2025-08-14T19:11:22.578344+00:00'
  270. digest:
  271. dandi:dandi-etag: d9906708ee05b0322b92f34b14e4b2b3-1
  272. dandi:sha2-256: 264f3082b22dadf10e147dfbe5ccf930e36c0fd79b6afb5cc961b2dbff38fce9
  273. encodingFormat: application/x-nwb
  274. id: dandiasset:7244cf20-96fd-4ea0-8485-ad81c40d0d34
  275. identifier: 7244cf20-96fd-4ea0-8485-ad81c40d0d34
  276. measurementTechnique:
  277. - name: behavioral technique
  278. schemaKey: MeasurementTechniqueType
  279. - name: analytical technique
  280. schemaKey: MeasurementTechniqueType
  281. path: sub-Temp-pref-F16-B16-6dpf-04-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-04-unsorted-nac_ses-20230720T161600_behavior.nwb
  282. publishedBy:
  283. endDate: '2025-08-14T19:11:22.578344+00:00'
  284. id: urn:uuid:6ffd75b6-e1d5-4fa3-81f9-ab2de80664ee
  285. name: DANDI publish
  286. schemaKey: PublishActivity
  287. startDate: '2025-08-14T19:11:22.578344+00:00'
  288. wasAssociatedWith:
  289. - id: urn:uuid:6aedef21-1924-450b-86f0-efd5f67cbd30
  290. identifier: RRID:SCR_017571
  291. name: DANDI API
  292. schemaKey: Software
  293. version: 0.1.0
  294. schemaKey: Asset
  295. schemaVersion: 0.6.4
  296. variableMeasured:
  297. - schemaKey: PropertyValue
  298. value: SpatialSeries
  299. - schemaKey: PropertyValue
  300. value: Position
  301. - schemaKey: PropertyValue
  302. value: ProcessingModule
  303. - schemaKey: PropertyValue
  304. value: CompassDirection
  305. - schemaKey: PropertyValue
  306. value: BehavioralTimeSeries
  307. wasAttributedTo:
  308. - age:
  309. schemaKey: PropertyValue
  310. unitText: ISO-8601 duration
  311. value: P6DT58560S
  312. valueReference:
  313. schemaKey: PropertyValue
  314. value: dandi:BirthReference
  315. identifier: Temp_pref_F16_B16_6dpf_04_unsorted_nac
  316. schemaKey: Participant
  317. sex:
  318. name: Unknown
  319. schemaKey: SexType
  320. species:
  321. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  322. name: Danio rerio - Zebra fish
  323. schemaKey: SpeciesType
  324. wasGeneratedBy:
  325. - description: Cold Avoidance behavior
  326. name: Acquisition session
  327. schemaKey: Session
  328. startDate: '2023-07-20T16:16:00-04:00'
  329. - description: Metadata generated by DANDI cli
  330. endDate: '2023-11-11T10:39:27.824732-05:00'
  331. id: urn:uuid:9560a504-0859-45dc-a38c-fddfa4e0d46f
  332. name: Metadata generation
  333. schemaKey: Activity
  334. startDate: '2023-11-11T10:39:27.824732-05:00'
  335. wasAssociatedWith:
  336. - identifier: RRID:SCR_019009
  337. name: DANDI Command Line Interface
  338. schemaKey: Software
  339. url: https://github.com/dandi/dandi-cli
  340. version: 0.58.0
  341. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  342. access:
  343. - schemaKey: AccessRequirements
  344. status: dandi:OpenAccess
  345. approach:
  346. - name: behavioral approach
  347. schemaKey: ApproachType
  348. blobDateModified: '2023-11-10T11:43:15.230000-05:00'
  349. contentSize: 9142650
  350. contentUrl:
  351. - https://api.dandiarchive.org/api/assets/9eb9a8fa-ffab-4d9a-ba84-8c7dc18a9f83/download/
  352. - https://dandiarchive.s3.amazonaws.com/blobs/ea5/230/ea52300b-862d-43ca-b834-54b0d704ae17
  353. dateModified: '2023-11-11T10:39:27.924737-05:00'
  354. datePublished: '2025-08-14T19:11:22.602851+00:00'
  355. digest:
  356. dandi:dandi-etag: 1b06004c3bb20ca6ca536f51129630ea-1
  357. dandi:sha2-256: cf263efa59cb260d62dc2105d622cec51b171a676e1ec8f00b927661dab24793
  358. encodingFormat: application/x-nwb
  359. id: dandiasset:9eb9a8fa-ffab-4d9a-ba84-8c7dc18a9f83
  360. identifier: 9eb9a8fa-ffab-4d9a-ba84-8c7dc18a9f83
  361. measurementTechnique:
  362. - name: behavioral technique
  363. schemaKey: MeasurementTechniqueType
  364. - name: analytical technique
  365. schemaKey: MeasurementTechniqueType
  366. path: sub-Temp-pref-F16-B16-6dpf-02-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-02-unsorted-nac_ses-20230720T150900_behavior.nwb
  367. publishedBy:
  368. endDate: '2025-08-14T19:11:22.602851+00:00'
  369. id: urn:uuid:f34f5d7f-f8ce-4e7d-b880-64a56148ff45
  370. name: DANDI publish
  371. schemaKey: PublishActivity
  372. startDate: '2025-08-14T19:11:22.602851+00:00'
  373. wasAssociatedWith:
  374. - id: urn:uuid:0ca17dc4-8eac-442c-8cfa-fb215b987252
  375. identifier: RRID:SCR_017571
  376. name: DANDI API
  377. schemaKey: Software
  378. version: 0.1.0
  379. schemaKey: Asset
  380. schemaVersion: 0.6.4
  381. variableMeasured:
  382. - schemaKey: PropertyValue
  383. value: SpatialSeries
  384. - schemaKey: PropertyValue
  385. value: Position
  386. - schemaKey: PropertyValue
  387. value: ProcessingModule
  388. - schemaKey: PropertyValue
  389. value: CompassDirection
  390. - schemaKey: PropertyValue
  391. value: BehavioralTimeSeries
  392. wasAttributedTo:
  393. - age:
  394. schemaKey: PropertyValue
  395. unitText: ISO-8601 duration
  396. value: P6DT54540S
  397. valueReference:
  398. schemaKey: PropertyValue
  399. value: dandi:BirthReference
  400. identifier: Temp_pref_F16_B16_6dpf_02_unsorted_nac
  401. schemaKey: Participant
  402. sex:
  403. name: Unknown
  404. schemaKey: SexType
  405. species:
  406. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  407. name: Danio rerio - Zebra fish
  408. schemaKey: SpeciesType
  409. wasGeneratedBy:
  410. - description: Cold Avoidance behavior
  411. name: Acquisition session
  412. schemaKey: Session
  413. startDate: '2023-07-20T15:09:00-04:00'
  414. - description: Metadata generated by DANDI cli
  415. endDate: '2023-11-11T10:39:27.924737-05:00'
  416. id: urn:uuid:72df703f-4179-43aa-9b82-cc11a9c105f1
  417. name: Metadata generation
  418. schemaKey: Activity
  419. startDate: '2023-11-11T10:39:27.914730-05:00'
  420. wasAssociatedWith:
  421. - identifier: RRID:SCR_019009
  422. name: DANDI Command Line Interface
  423. schemaKey: Software
  424. url: https://github.com/dandi/dandi-cli
  425. version: 0.58.0
  426. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  427. access:
  428. - schemaKey: AccessRequirements
  429. status: dandi:OpenAccess
  430. approach:
  431. - name: behavioral approach
  432. schemaKey: ApproachType
  433. blobDateModified: '2023-11-10T11:43:32.600000-05:00'
  434. contentSize: 9052191
  435. contentUrl:
  436. - https://api.dandiarchive.org/api/assets/e471a444-f154-416c-9049-b0e45be487ed/download/
  437. - https://dandiarchive.s3.amazonaws.com/blobs/ec0/932/ec09323c-62a4-4baa-86c7-d95cbd9cd7ca
  438. dateModified: '2023-11-11T10:39:31.712191-05:00'
  439. datePublished: '2025-08-14T19:11:22.619449+00:00'
  440. digest:
  441. dandi:dandi-etag: 85fa536b82633a5c3ceebae635060fbc-1
  442. dandi:sha2-256: bd5e995f4ede73f05a5c58bfd3356491cfb3a099d602372f9c0e1cc2a43dbc83
  443. encodingFormat: application/x-nwb
  444. id: dandiasset:e471a444-f154-416c-9049-b0e45be487ed
  445. identifier: e471a444-f154-416c-9049-b0e45be487ed
  446. measurementTechnique:
  447. - name: behavioral technique
  448. schemaKey: MeasurementTechniqueType
  449. - name: analytical technique
  450. schemaKey: MeasurementTechniqueType
  451. path: sub-Temp-pref-F16-B16-6dpf-07-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-07-unsorted-nac_ses-20231025T113900_behavior.nwb
  452. publishedBy:
  453. endDate: '2025-08-14T19:11:22.619449+00:00'
  454. id: urn:uuid:7f6daf25-dd8f-443d-8467-e82cabbbcfe2
  455. name: DANDI publish
  456. schemaKey: PublishActivity
  457. startDate: '2025-08-14T19:11:22.619449+00:00'
  458. wasAssociatedWith:
  459. - id: urn:uuid:d84a4981-30d7-4ef8-8f37-13e1a257c76c
  460. identifier: RRID:SCR_017571
  461. name: DANDI API
  462. schemaKey: Software
  463. version: 0.1.0
  464. schemaKey: Asset
  465. schemaVersion: 0.6.4
  466. variableMeasured:
  467. - schemaKey: PropertyValue
  468. value: SpatialSeries
  469. - schemaKey: PropertyValue
  470. value: Position
  471. - schemaKey: PropertyValue
  472. value: ProcessingModule
  473. - schemaKey: PropertyValue
  474. value: CompassDirection
  475. - schemaKey: PropertyValue
  476. value: BehavioralTimeSeries
  477. wasAttributedTo:
  478. - age:
  479. schemaKey: PropertyValue
  480. unitText: ISO-8601 duration
  481. value: P6DT41940S
  482. valueReference:
  483. schemaKey: PropertyValue
  484. value: dandi:BirthReference
  485. identifier: Temp_pref_F16_B16_6dpf_07_unsorted_nac
  486. schemaKey: Participant
  487. sex:
  488. name: Unknown
  489. schemaKey: SexType
  490. species:
  491. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  492. name: Danio rerio - Zebra fish
  493. schemaKey: SpeciesType
  494. wasGeneratedBy:
  495. - description: Cold Avoidance behavior
  496. name: Acquisition session
  497. schemaKey: Session
  498. startDate: '2023-10-25T11:39:00-04:00'
  499. - description: Metadata generated by DANDI cli
  500. endDate: '2023-11-11T10:39:31.712191-05:00'
  501. id: urn:uuid:413bed6a-fde0-4d11-9331-f2ac6f4f7174
  502. name: Metadata generation
  503. schemaKey: Activity
  504. startDate: '2023-11-11T10:39:31.682538-05:00'
  505. wasAssociatedWith:
  506. - identifier: RRID:SCR_019009
  507. name: DANDI Command Line Interface
  508. schemaKey: Software
  509. url: https://github.com/dandi/dandi-cli
  510. version: 0.58.0
  511. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  512. access:
  513. - schemaKey: AccessRequirements
  514. status: dandi:OpenAccess
  515. approach:
  516. - name: behavioral approach
  517. schemaKey: ApproachType
  518. blobDateModified: '2023-11-10T11:43:29.010000-05:00'
  519. contentSize: 8754239
  520. contentUrl:
  521. - https://api.dandiarchive.org/api/assets/38daf945-0551-4f7f-9795-6675cafcf85e/download/
  522. - https://dandiarchive.s3.amazonaws.com/blobs/35b/ba0/35bba058-6c4a-4736-90c2-3d46b362dd01
  523. dateModified: '2023-11-11T10:39:32.102253-05:00'
  524. datePublished: '2025-08-14T19:11:22.643240+00:00'
  525. digest:
  526. dandi:dandi-etag: 4e276c9a786e49def7812a0091ed98dc-1
  527. dandi:sha2-256: ff0070f358ff5767429e57f5288457cbdb7da9a36aec0b6053cfb383e9db0d8c
  528. encodingFormat: application/x-nwb
  529. id: dandiasset:38daf945-0551-4f7f-9795-6675cafcf85e
  530. identifier: 38daf945-0551-4f7f-9795-6675cafcf85e
  531. measurementTechnique:
  532. - name: behavioral technique
  533. schemaKey: MeasurementTechniqueType
  534. - name: analytical technique
  535. schemaKey: MeasurementTechniqueType
  536. path: sub-Temp-pref-F16-B16-6dpf-06-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-06-unsorted-nac_ses-20231025T110800_behavior.nwb
  537. publishedBy:
  538. endDate: '2025-08-14T19:11:22.643240+00:00'
  539. id: urn:uuid:b8b5972a-8062-430c-b76e-51d2caded744
  540. name: DANDI publish
  541. schemaKey: PublishActivity
  542. startDate: '2025-08-14T19:11:22.643240+00:00'
  543. wasAssociatedWith:
  544. - id: urn:uuid:18cc010d-8b05-4c60-b00f-d14a05043a35
  545. identifier: RRID:SCR_017571
  546. name: DANDI API
  547. schemaKey: Software
  548. version: 0.1.0
  549. schemaKey: Asset
  550. schemaVersion: 0.6.4
  551. variableMeasured:
  552. - schemaKey: PropertyValue
  553. value: SpatialSeries
  554. - schemaKey: PropertyValue
  555. value: Position
  556. - schemaKey: PropertyValue
  557. value: ProcessingModule
  558. - schemaKey: PropertyValue
  559. value: CompassDirection
  560. - schemaKey: PropertyValue
  561. value: BehavioralTimeSeries
  562. wasAttributedTo:
  563. - age:
  564. schemaKey: PropertyValue
  565. unitText: ISO-8601 duration
  566. value: P6DT40080S
  567. valueReference:
  568. schemaKey: PropertyValue
  569. value: dandi:BirthReference
  570. identifier: Temp_pref_F16_B16_6dpf_06_unsorted_nac
  571. schemaKey: Participant
  572. sex:
  573. name: Unknown
  574. schemaKey: SexType
  575. species:
  576. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  577. name: Danio rerio - Zebra fish
  578. schemaKey: SpeciesType
  579. wasGeneratedBy:
  580. - description: Cold Avoidance behavior
  581. name: Acquisition session
  582. schemaKey: Session
  583. startDate: '2023-10-25T11:08:00-04:00'
  584. - description: Metadata generated by DANDI cli
  585. endDate: '2023-11-11T10:39:32.102253-05:00'
  586. id: urn:uuid:6e824eda-8451-406f-a0a0-bcd04899c793
  587. name: Metadata generation
  588. schemaKey: Activity
  589. startDate: '2023-11-11T10:39:32.061905-05:00'
  590. wasAssociatedWith:
  591. - identifier: RRID:SCR_019009
  592. name: DANDI Command Line Interface
  593. schemaKey: Software
  594. url: https://github.com/dandi/dandi-cli
  595. version: 0.58.0
  596. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  597. access:
  598. - schemaKey: AccessRequirements
  599. status: dandi:OpenAccess
  600. approach:
  601. - name: behavioral approach
  602. schemaKey: ApproachType
  603. blobDateModified: '2023-11-10T11:43:36.030000-05:00'
  604. contentSize: 9068166
  605. contentUrl:
  606. - https://api.dandiarchive.org/api/assets/e7a2fb6d-924c-418e-af0e-4a3aa1f98607/download/
  607. - https://dandiarchive.s3.amazonaws.com/blobs/684/eae/684eaed4-ef87-4d68-a7ee-fea1a755d805
  608. dateModified: '2023-11-11T10:39:32.381489-05:00'
  609. datePublished: '2025-08-14T19:11:22.666802+00:00'
  610. digest:
  611. dandi:dandi-etag: c29d5c260da1e1c337baa6d6ed4f9714-1
  612. dandi:sha2-256: b8dde5c8f60f34caa67a0ed14659c2d203241849d28ebcb18d4c7db5541606ee
  613. encodingFormat: application/x-nwb
  614. id: dandiasset:e7a2fb6d-924c-418e-af0e-4a3aa1f98607
  615. identifier: e7a2fb6d-924c-418e-af0e-4a3aa1f98607
  616. measurementTechnique:
  617. - name: behavioral technique
  618. schemaKey: MeasurementTechniqueType
  619. - name: analytical technique
  620. schemaKey: MeasurementTechniqueType
  621. path: sub-Temp-pref-F16-B16-6dpf-08-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-08-unsorted-nac_ses-20231025T121400_behavior.nwb
  622. publishedBy:
  623. endDate: '2025-08-14T19:11:22.666802+00:00'
  624. id: urn:uuid:1fe2c73c-bb7d-4139-885f-15694957ff56
  625. name: DANDI publish
  626. schemaKey: PublishActivity
  627. startDate: '2025-08-14T19:11:22.666802+00:00'
  628. wasAssociatedWith:
  629. - id: urn:uuid:5fdc627b-c782-4c99-8cc4-ac4b9c9c7632
  630. identifier: RRID:SCR_017571
  631. name: DANDI API
  632. schemaKey: Software
  633. version: 0.1.0
  634. schemaKey: Asset
  635. schemaVersion: 0.6.4
  636. variableMeasured:
  637. - schemaKey: PropertyValue
  638. value: SpatialSeries
  639. - schemaKey: PropertyValue
  640. value: Position
  641. - schemaKey: PropertyValue
  642. value: ProcessingModule
  643. - schemaKey: PropertyValue
  644. value: CompassDirection
  645. - schemaKey: PropertyValue
  646. value: BehavioralTimeSeries
  647. wasAttributedTo:
  648. - age:
  649. schemaKey: PropertyValue
  650. unitText: ISO-8601 duration
  651. value: P6DT44040S
  652. valueReference:
  653. schemaKey: PropertyValue
  654. value: dandi:BirthReference
  655. identifier: Temp_pref_F16_B16_6dpf_08_unsorted_nac
  656. schemaKey: Participant
  657. sex:
  658. name: Unknown
  659. schemaKey: SexType
  660. species:
  661. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  662. name: Danio rerio - Zebra fish
  663. schemaKey: SpeciesType
  664. wasGeneratedBy:
  665. - description: Cold Avoidance behavior
  666. name: Acquisition session
  667. schemaKey: Session
  668. startDate: '2023-10-25T12:14:00-04:00'
  669. - description: Metadata generated by DANDI cli
  670. endDate: '2023-11-11T10:39:32.381489-05:00'
  671. id: urn:uuid:3a445d1a-23a3-4845-92d8-2fc6d6afda4c
  672. name: Metadata generation
  673. schemaKey: Activity
  674. startDate: '2023-11-11T10:39:32.301978-05:00'
  675. wasAssociatedWith:
  676. - identifier: RRID:SCR_019009
  677. name: DANDI Command Line Interface
  678. schemaKey: Software
  679. url: https://github.com/dandi/dandi-cli
  680. version: 0.58.0
  681. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  682. access:
  683. - schemaKey: AccessRequirements
  684. status: dandi:OpenAccess
  685. approach:
  686. - name: behavioral approach
  687. schemaKey: ApproachType
  688. blobDateModified: '2023-11-10T11:43:39.580000-05:00'
  689. contentSize: 8206084
  690. contentUrl:
  691. - https://api.dandiarchive.org/api/assets/9e4ea6ff-c1c1-47da-b1a6-fa501925c608/download/
  692. - https://dandiarchive.s3.amazonaws.com/blobs/cbc/3d3/cbc3d3f4-33b7-4fb9-84f7-58ef1d69f9e0
  693. dateModified: '2023-11-11T10:39:32.521558-05:00'
  694. datePublished: '2025-08-14T19:11:22.674836+00:00'
  695. digest:
  696. dandi:dandi-etag: 4414e74c7c154e9d21f1184a3f853990-1
  697. dandi:sha2-256: f6fac71317404a33bfab95b6f04d2710222d3180561de9fbd51663401a1c2497
  698. encodingFormat: application/x-nwb
  699. id: dandiasset:9e4ea6ff-c1c1-47da-b1a6-fa501925c608
  700. identifier: 9e4ea6ff-c1c1-47da-b1a6-fa501925c608
  701. measurementTechnique:
  702. - name: behavioral technique
  703. schemaKey: MeasurementTechniqueType
  704. - name: analytical technique
  705. schemaKey: MeasurementTechniqueType
  706. path: sub-Temp-pref-F16-B16-6dpf-09-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-09-unsorted-nac_ses-20231025T124900_behavior.nwb
  707. publishedBy:
  708. endDate: '2025-08-14T19:11:22.674836+00:00'
  709. id: urn:uuid:e566611d-4d83-4c73-b2ec-1ad0b82430c6
  710. name: DANDI publish
  711. schemaKey: PublishActivity
  712. startDate: '2025-08-14T19:11:22.674836+00:00'
  713. wasAssociatedWith:
  714. - id: urn:uuid:af1f6906-8ee4-4971-a04f-1ba7660a2089
  715. identifier: RRID:SCR_017571
  716. name: DANDI API
  717. schemaKey: Software
  718. version: 0.1.0
  719. schemaKey: Asset
  720. schemaVersion: 0.6.4
  721. variableMeasured:
  722. - schemaKey: PropertyValue
  723. value: SpatialSeries
  724. - schemaKey: PropertyValue
  725. value: Position
  726. - schemaKey: PropertyValue
  727. value: ProcessingModule
  728. - schemaKey: PropertyValue
  729. value: CompassDirection
  730. - schemaKey: PropertyValue
  731. value: BehavioralTimeSeries
  732. wasAttributedTo:
  733. - age:
  734. schemaKey: PropertyValue
  735. unitText: ISO-8601 duration
  736. value: P6DT46140S
  737. valueReference:
  738. schemaKey: PropertyValue
  739. value: dandi:BirthReference
  740. identifier: Temp_pref_F16_B16_6dpf_09_unsorted_nac
  741. schemaKey: Participant
  742. sex:
  743. name: Unknown
  744. schemaKey: SexType
  745. species:
  746. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  747. name: Danio rerio - Zebra fish
  748. schemaKey: SpeciesType
  749. wasGeneratedBy:
  750. - description: Cold Avoidance behavior
  751. name: Acquisition session
  752. schemaKey: Session
  753. startDate: '2023-10-25T12:49:00-04:00'
  754. - description: Metadata generated by DANDI cli
  755. endDate: '2023-11-11T10:39:32.521558-05:00'
  756. id: urn:uuid:edd6dafc-868f-45a3-800a-146f2d2953d0
  757. name: Metadata generation
  758. schemaKey: Activity
  759. startDate: '2023-11-11T10:39:32.521558-05:00'
  760. wasAssociatedWith:
  761. - identifier: RRID:SCR_019009
  762. name: DANDI Command Line Interface
  763. schemaKey: Software
  764. url: https://github.com/dandi/dandi-cli
  765. version: 0.58.0
  766. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  767. access:
  768. - schemaKey: AccessRequirements
  769. status: dandi:OpenAccess
  770. approach:
  771. - name: behavioral approach
  772. schemaKey: ApproachType
  773. blobDateModified: '2023-11-10T11:43:43-05:00'
  774. contentSize: 9065151
  775. contentUrl:
  776. - https://api.dandiarchive.org/api/assets/ce352fba-5e7b-4ecd-8dbe-66486b091d71/download/
  777. - https://dandiarchive.s3.amazonaws.com/blobs/aad/a15/aada15b3-6228-430f-b6d5-15c0d747b0b0
  778. dateModified: '2023-11-11T10:39:32.776521-05:00'
  779. datePublished: '2025-08-14T19:11:22.687876+00:00'
  780. digest:
  781. dandi:dandi-etag: 2b7a81f4d87a33c3d122ae7b5ee3d907-1
  782. dandi:sha2-256: 9c95b7cebd25b11e50d1e1207e4c7055a8028d0707e856f5b8c6d9f65b4ad7c2
  783. encodingFormat: application/x-nwb
  784. id: dandiasset:ce352fba-5e7b-4ecd-8dbe-66486b091d71
  785. identifier: ce352fba-5e7b-4ecd-8dbe-66486b091d71
  786. measurementTechnique:
  787. - name: behavioral technique
  788. schemaKey: MeasurementTechniqueType
  789. - name: analytical technique
  790. schemaKey: MeasurementTechniqueType
  791. path: sub-Temp-pref-F16-B16-6dpf-10-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-10-unsorted-nac_ses-20231025T132000_behavior.nwb
  792. publishedBy:
  793. endDate: '2025-08-14T19:11:22.687876+00:00'
  794. id: urn:uuid:045c5194-9f61-4247-93fb-1fd30d56613d
  795. name: DANDI publish
  796. schemaKey: PublishActivity
  797. startDate: '2025-08-14T19:11:22.687876+00:00'
  798. wasAssociatedWith:
  799. - id: urn:uuid:d0a53df4-3e34-477d-a5da-72c892fb2961
  800. identifier: RRID:SCR_017571
  801. name: DANDI API
  802. schemaKey: Software
  803. version: 0.1.0
  804. schemaKey: Asset
  805. schemaVersion: 0.6.4
  806. variableMeasured:
  807. - schemaKey: PropertyValue
  808. value: SpatialSeries
  809. - schemaKey: PropertyValue
  810. value: Position
  811. - schemaKey: PropertyValue
  812. value: ProcessingModule
  813. - schemaKey: PropertyValue
  814. value: CompassDirection
  815. - schemaKey: PropertyValue
  816. value: BehavioralTimeSeries
  817. wasAttributedTo:
  818. - age:
  819. schemaKey: PropertyValue
  820. unitText: ISO-8601 duration
  821. value: P6DT48000S
  822. valueReference:
  823. schemaKey: PropertyValue
  824. value: dandi:BirthReference
  825. identifier: Temp_pref_F16_B16_6dpf_10_unsorted_nac
  826. schemaKey: Participant
  827. sex:
  828. name: Unknown
  829. schemaKey: SexType
  830. species:
  831. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  832. name: Danio rerio - Zebra fish
  833. schemaKey: SpeciesType
  834. wasGeneratedBy:
  835. - description: Cold Avoidance behavior
  836. name: Acquisition session
  837. schemaKey: Session
  838. startDate: '2023-10-25T13:20:00-04:00'
  839. - description: Metadata generated by DANDI cli
  840. endDate: '2023-11-11T10:39:32.776521-05:00'
  841. id: urn:uuid:c638c0bd-9af5-4f0a-8c5f-81fc42ea4414
  842. name: Metadata generation
  843. schemaKey: Activity
  844. startDate: '2023-11-11T10:39:32.736871-05:00'
  845. wasAssociatedWith:
  846. - identifier: RRID:SCR_019009
  847. name: DANDI Command Line Interface
  848. schemaKey: Software
  849. url: https://github.com/dandi/dandi-cli
  850. version: 0.58.0
  851. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  852. access:
  853. - schemaKey: AccessRequirements
  854. status: dandi:OpenAccess
  855. approach:
  856. - name: behavioral approach
  857. schemaKey: ApproachType
  858. blobDateModified: '2023-11-10T11:43:49.960000-05:00'
  859. contentSize: 8294551
  860. contentUrl:
  861. - https://api.dandiarchive.org/api/assets/43d070e4-0914-4bae-927b-61c0b2f71302/download/
  862. - https://dandiarchive.s3.amazonaws.com/blobs/218/327/218327c0-de59-47da-bf3e-68f06200a093
  863. dateModified: '2023-11-11T10:39:34.586379-05:00'
  864. datePublished: '2025-08-14T19:11:22.698404+00:00'
  865. digest:
  866. dandi:dandi-etag: 0145b5117379f1643c92cfbfff85ed45-1
  867. dandi:sha2-256: 9d23bd8dc0fc8ce56b15e63900869d0d96817ed40a42447ffa812cf0e10c5e51
  868. encodingFormat: application/x-nwb
  869. id: dandiasset:43d070e4-0914-4bae-927b-61c0b2f71302
  870. identifier: 43d070e4-0914-4bae-927b-61c0b2f71302
  871. measurementTechnique:
  872. - name: behavioral technique
  873. schemaKey: MeasurementTechniqueType
  874. - name: analytical technique
  875. schemaKey: MeasurementTechniqueType
  876. path: sub-Temp-pref-F16-B16-6dpf-12-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-12-unsorted-nac_ses-20231025T142200_behavior.nwb
  877. publishedBy:
  878. endDate: '2025-08-14T19:11:22.698404+00:00'
  879. id: urn:uuid:ce1fdab6-30bc-46a9-b2b9-c81824a8c275
  880. name: DANDI publish
  881. schemaKey: PublishActivity
  882. startDate: '2025-08-14T19:11:22.698404+00:00'
  883. wasAssociatedWith:
  884. - id: urn:uuid:469657a3-7744-4cfa-9256-10c24c5b7a44
  885. identifier: RRID:SCR_017571
  886. name: DANDI API
  887. schemaKey: Software
  888. version: 0.1.0
  889. schemaKey: Asset
  890. schemaVersion: 0.6.4
  891. variableMeasured:
  892. - schemaKey: PropertyValue
  893. value: SpatialSeries
  894. - schemaKey: PropertyValue
  895. value: Position
  896. - schemaKey: PropertyValue
  897. value: ProcessingModule
  898. - schemaKey: PropertyValue
  899. value: CompassDirection
  900. - schemaKey: PropertyValue
  901. value: BehavioralTimeSeries
  902. wasAttributedTo:
  903. - age:
  904. schemaKey: PropertyValue
  905. unitText: ISO-8601 duration
  906. value: P6DT51720S
  907. valueReference:
  908. schemaKey: PropertyValue
  909. value: dandi:BirthReference
  910. identifier: Temp_pref_F16_B16_6dpf_12_unsorted_nac
  911. schemaKey: Participant
  912. sex:
  913. name: Unknown
  914. schemaKey: SexType
  915. species:
  916. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  917. name: Danio rerio - Zebra fish
  918. schemaKey: SpeciesType
  919. wasGeneratedBy:
  920. - description: Cold Avoidance behavior
  921. name: Acquisition session
  922. schemaKey: Session
  923. startDate: '2023-10-25T14:22:00-04:00'
  924. - description: Metadata generated by DANDI cli
  925. endDate: '2023-11-11T10:39:34.586379-05:00'
  926. id: urn:uuid:181c1c14-56ea-4abb-aeb9-727209b8611f
  927. name: Metadata generation
  928. schemaKey: Activity
  929. startDate: '2023-11-11T10:39:34.576300-05:00'
  930. wasAssociatedWith:
  931. - identifier: RRID:SCR_019009
  932. name: DANDI Command Line Interface
  933. schemaKey: Software
  934. url: https://github.com/dandi/dandi-cli
  935. version: 0.58.0
  936. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  937. access:
  938. - schemaKey: AccessRequirements
  939. status: dandi:OpenAccess
  940. approach:
  941. - name: behavioral approach
  942. schemaKey: ApproachType
  943. blobDateModified: '2023-11-10T11:43:46.540000-05:00'
  944. contentSize: 8513669
  945. contentUrl:
  946. - https://api.dandiarchive.org/api/assets/43589d51-31a8-4533-9d16-fb74907780b7/download/
  947. - https://dandiarchive.s3.amazonaws.com/blobs/d54/d01/d54d015a-cd23-4e49-b21e-8b0cd2b68ff7
  948. dateModified: '2023-11-11T10:39:34.576300-05:00'
  949. datePublished: '2025-08-14T19:11:22.708044+00:00'
  950. digest:
  951. dandi:dandi-etag: f162e63049741753723f4c0af38abf64-1
  952. dandi:sha2-256: 8c4b18fee3693869f07060c7ad226a12a4434cb4d3408a05de8c9f071c6537cb
  953. encodingFormat: application/x-nwb
  954. id: dandiasset:43589d51-31a8-4533-9d16-fb74907780b7
  955. identifier: 43589d51-31a8-4533-9d16-fb74907780b7
  956. measurementTechnique:
  957. - name: behavioral technique
  958. schemaKey: MeasurementTechniqueType
  959. - name: analytical technique
  960. schemaKey: MeasurementTechniqueType
  961. path: sub-Temp-pref-F16-B16-6dpf-11-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-11-unsorted-nac_ses-20231025T135000_behavior.nwb
  962. publishedBy:
  963. endDate: '2025-08-14T19:11:22.708044+00:00'
  964. id: urn:uuid:bfaf354c-03bb-450d-a217-aa255bffeed1
  965. name: DANDI publish
  966. schemaKey: PublishActivity
  967. startDate: '2025-08-14T19:11:22.708044+00:00'
  968. wasAssociatedWith:
  969. - id: urn:uuid:20667818-39a2-4913-8846-00041171fd56
  970. identifier: RRID:SCR_017571
  971. name: DANDI API
  972. schemaKey: Software
  973. version: 0.1.0
  974. schemaKey: Asset
  975. schemaVersion: 0.6.4
  976. variableMeasured:
  977. - schemaKey: PropertyValue
  978. value: SpatialSeries
  979. - schemaKey: PropertyValue
  980. value: Position
  981. - schemaKey: PropertyValue
  982. value: ProcessingModule
  983. - schemaKey: PropertyValue
  984. value: CompassDirection
  985. - schemaKey: PropertyValue
  986. value: BehavioralTimeSeries
  987. wasAttributedTo:
  988. - age:
  989. schemaKey: PropertyValue
  990. unitText: ISO-8601 duration
  991. value: P6DT49800S
  992. valueReference:
  993. schemaKey: PropertyValue
  994. value: dandi:BirthReference
  995. identifier: Temp_pref_F16_B16_6dpf_11_unsorted_nac
  996. schemaKey: Participant
  997. sex:
  998. name: Unknown
  999. schemaKey: SexType
  1000. species:
  1001. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1002. name: Danio rerio - Zebra fish
  1003. schemaKey: SpeciesType
  1004. wasGeneratedBy:
  1005. - description: Cold Avoidance behavior
  1006. name: Acquisition session
  1007. schemaKey: Session
  1008. startDate: '2023-10-25T13:50:00-04:00'
  1009. - description: Metadata generated by DANDI cli
  1010. endDate: '2023-11-11T10:39:34.576300-05:00'
  1011. id: urn:uuid:1f6aa9fe-6d93-4d2b-b48e-ab81ce80c7af
  1012. name: Metadata generation
  1013. schemaKey: Activity
  1014. startDate: '2023-11-11T10:39:34.536377-05:00'
  1015. wasAssociatedWith:
  1016. - identifier: RRID:SCR_019009
  1017. name: DANDI Command Line Interface
  1018. schemaKey: Software
  1019. url: https://github.com/dandi/dandi-cli
  1020. version: 0.58.0
  1021. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1022. access:
  1023. - schemaKey: AccessRequirements
  1024. status: dandi:OpenAccess
  1025. approach:
  1026. - name: behavioral approach
  1027. schemaKey: ApproachType
  1028. blobDateModified: '2023-11-10T11:43:53.470000-05:00'
  1029. contentSize: 8432287
  1030. contentUrl:
  1031. - https://api.dandiarchive.org/api/assets/474a712f-0a65-4e49-95a1-cec0d99c1abd/download/
  1032. - https://dandiarchive.s3.amazonaws.com/blobs/f20/88c/f2088c0d-9a70-4c86-b628-033a51cec4bd
  1033. dateModified: '2023-11-11T10:39:35.471963-05:00'
  1034. datePublished: '2025-08-14T19:11:22.724886+00:00'
  1035. digest:
  1036. dandi:dandi-etag: 52e6597c0bb8620d2bd77199446d70f9-1
  1037. dandi:sha2-256: e93482a89fc2e32d1d28c39dbcd21ad9aa413e67f761159d20b2e52fbf769104
  1038. encodingFormat: application/x-nwb
  1039. id: dandiasset:474a712f-0a65-4e49-95a1-cec0d99c1abd
  1040. identifier: 474a712f-0a65-4e49-95a1-cec0d99c1abd
  1041. measurementTechnique:
  1042. - name: behavioral technique
  1043. schemaKey: MeasurementTechniqueType
  1044. - name: analytical technique
  1045. schemaKey: MeasurementTechniqueType
  1046. path: sub-Temp-pref-F16-B16-6dpf-13-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-13-unsorted-nac_ses-20231025T145300_behavior.nwb
  1047. publishedBy:
  1048. endDate: '2025-08-14T19:11:22.724886+00:00'
  1049. id: urn:uuid:594bde9b-0c67-434d-95ed-5e5c13855526
  1050. name: DANDI publish
  1051. schemaKey: PublishActivity
  1052. startDate: '2025-08-14T19:11:22.724886+00:00'
  1053. wasAssociatedWith:
  1054. - id: urn:uuid:52a8fcc5-97ba-4b6b-aef1-4751029fe23f
  1055. identifier: RRID:SCR_017571
  1056. name: DANDI API
  1057. schemaKey: Software
  1058. version: 0.1.0
  1059. schemaKey: Asset
  1060. schemaVersion: 0.6.4
  1061. variableMeasured:
  1062. - schemaKey: PropertyValue
  1063. value: SpatialSeries
  1064. - schemaKey: PropertyValue
  1065. value: Position
  1066. - schemaKey: PropertyValue
  1067. value: ProcessingModule
  1068. - schemaKey: PropertyValue
  1069. value: CompassDirection
  1070. - schemaKey: PropertyValue
  1071. value: BehavioralTimeSeries
  1072. wasAttributedTo:
  1073. - age:
  1074. schemaKey: PropertyValue
  1075. unitText: ISO-8601 duration
  1076. value: P6DT53580S
  1077. valueReference:
  1078. schemaKey: PropertyValue
  1079. value: dandi:BirthReference
  1080. identifier: Temp_pref_F16_B16_6dpf_13_unsorted_nac
  1081. schemaKey: Participant
  1082. sex:
  1083. name: Unknown
  1084. schemaKey: SexType
  1085. species:
  1086. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1087. name: Danio rerio - Zebra fish
  1088. schemaKey: SpeciesType
  1089. wasGeneratedBy:
  1090. - description: Cold Avoidance behavior
  1091. name: Acquisition session
  1092. schemaKey: Session
  1093. startDate: '2023-10-25T14:53:00-04:00'
  1094. - description: Metadata generated by DANDI cli
  1095. endDate: '2023-11-11T10:39:35.471963-05:00'
  1096. id: urn:uuid:5c8b1809-5c17-4f2b-9e69-a6f6d1645a6b
  1097. name: Metadata generation
  1098. schemaKey: Activity
  1099. startDate: '2023-11-11T10:39:35.351751-05:00'
  1100. wasAssociatedWith:
  1101. - identifier: RRID:SCR_019009
  1102. name: DANDI Command Line Interface
  1103. schemaKey: Software
  1104. url: https://github.com/dandi/dandi-cli
  1105. version: 0.58.0
  1106. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1107. access:
  1108. - schemaKey: AccessRequirements
  1109. status: dandi:OpenAccess
  1110. approach:
  1111. - name: behavioral approach
  1112. schemaKey: ApproachType
  1113. blobDateModified: '2023-11-10T11:44:02.440000-05:00'
  1114. contentSize: 8991476
  1115. contentUrl:
  1116. - https://api.dandiarchive.org/api/assets/920098f0-5c87-41d7-8531-74c441aa8724/download/
  1117. - https://dandiarchive.s3.amazonaws.com/blobs/266/681/26668177-924d-4dc2-9af7-d03f053818bb
  1118. dateModified: '2023-11-11T10:39:36.431183-05:00'
  1119. datePublished: '2025-08-14T19:11:22.739039+00:00'
  1120. digest:
  1121. dandi:dandi-etag: 834b54dd1e55747ef791d1cbbfae298b-1
  1122. dandi:sha2-256: 592a47c6b35548839e21f313bf403206141d01ee391495f9d674e757c764a1bf
  1123. encodingFormat: application/x-nwb
  1124. id: dandiasset:920098f0-5c87-41d7-8531-74c441aa8724
  1125. identifier: 920098f0-5c87-41d7-8531-74c441aa8724
  1126. measurementTechnique:
  1127. - name: behavioral technique
  1128. schemaKey: MeasurementTechniqueType
  1129. - name: analytical technique
  1130. schemaKey: MeasurementTechniqueType
  1131. path: sub-Temp-pref-F16-B16-6dpf-15-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-15-unsorted-nac_ses-20231025T165000_behavior.nwb
  1132. publishedBy:
  1133. endDate: '2025-08-14T19:11:22.739039+00:00'
  1134. id: urn:uuid:7449a5aa-b6e9-4b64-ab46-6ff1c020ac75
  1135. name: DANDI publish
  1136. schemaKey: PublishActivity
  1137. startDate: '2025-08-14T19:11:22.739039+00:00'
  1138. wasAssociatedWith:
  1139. - id: urn:uuid:151638e5-477e-41f3-9ece-6eb636f5f897
  1140. identifier: RRID:SCR_017571
  1141. name: DANDI API
  1142. schemaKey: Software
  1143. version: 0.1.0
  1144. schemaKey: Asset
  1145. schemaVersion: 0.6.4
  1146. variableMeasured:
  1147. - schemaKey: PropertyValue
  1148. value: SpatialSeries
  1149. - schemaKey: PropertyValue
  1150. value: Position
  1151. - schemaKey: PropertyValue
  1152. value: ProcessingModule
  1153. - schemaKey: PropertyValue
  1154. value: CompassDirection
  1155. - schemaKey: PropertyValue
  1156. value: BehavioralTimeSeries
  1157. wasAttributedTo:
  1158. - age:
  1159. schemaKey: PropertyValue
  1160. unitText: ISO-8601 duration
  1161. value: P6DT60600S
  1162. valueReference:
  1163. schemaKey: PropertyValue
  1164. value: dandi:BirthReference
  1165. identifier: Temp_pref_F16_B16_6dpf_15_unsorted_nac
  1166. schemaKey: Participant
  1167. sex:
  1168. name: Unknown
  1169. schemaKey: SexType
  1170. species:
  1171. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1172. name: Danio rerio - Zebra fish
  1173. schemaKey: SpeciesType
  1174. wasGeneratedBy:
  1175. - description: Cold Avoidance behavior
  1176. name: Acquisition session
  1177. schemaKey: Session
  1178. startDate: '2023-10-25T16:50:00-04:00'
  1179. - description: Metadata generated by DANDI cli
  1180. endDate: '2023-11-11T10:39:36.431183-05:00'
  1181. id: urn:uuid:78ac737a-39e9-4578-9b9b-20115af8951f
  1182. name: Metadata generation
  1183. schemaKey: Activity
  1184. startDate: '2023-11-11T10:39:36.431183-05:00'
  1185. wasAssociatedWith:
  1186. - identifier: RRID:SCR_019009
  1187. name: DANDI Command Line Interface
  1188. schemaKey: Software
  1189. url: https://github.com/dandi/dandi-cli
  1190. version: 0.58.0
  1191. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1192. access:
  1193. - schemaKey: AccessRequirements
  1194. status: dandi:OpenAccess
  1195. approach:
  1196. - name: behavioral approach
  1197. schemaKey: ApproachType
  1198. blobDateModified: '2023-11-10T11:43:58.920000-05:00'
  1199. contentSize: 16298561
  1200. contentUrl:
  1201. - https://api.dandiarchive.org/api/assets/745d5d0d-4db6-4925-8aa3-36b9b8ae31b5/download/
  1202. - https://dandiarchive.s3.amazonaws.com/blobs/190/d65/190d6582-e9d2-4552-9917-66107d276e82
  1203. dateModified: '2023-11-11T10:39:35.831210-05:00'
  1204. datePublished: '2025-08-14T19:11:22.751593+00:00'
  1205. digest:
  1206. dandi:dandi-etag: 57a2f1c8e31c496409e58d6afb16dde6-1
  1207. dandi:sha2-256: ea8675e8ea8ad39351534781bd57f366812f3ff47be52db2adbcf55d7d530cd3
  1208. encodingFormat: application/x-nwb
  1209. id: dandiasset:745d5d0d-4db6-4925-8aa3-36b9b8ae31b5
  1210. identifier: 745d5d0d-4db6-4925-8aa3-36b9b8ae31b5
  1211. measurementTechnique:
  1212. - name: behavioral technique
  1213. schemaKey: MeasurementTechniqueType
  1214. - name: analytical technique
  1215. schemaKey: MeasurementTechniqueType
  1216. path: sub-Temp-pref-F16-B16-6dpf-14-long-unsorted-nac/sub-Temp-pref-F16-B16-6dpf-14-long-unsorted-nac_ses-20231025T152800_behavior.nwb
  1217. publishedBy:
  1218. endDate: '2025-08-14T19:11:22.751593+00:00'
  1219. id: urn:uuid:00ca8c71-8c4d-48f7-8099-f33bedb8be00
  1220. name: DANDI publish
  1221. schemaKey: PublishActivity
  1222. startDate: '2025-08-14T19:11:22.751593+00:00'
  1223. wasAssociatedWith:
  1224. - id: urn:uuid:bd1b97df-ec38-4102-95d5-36d20624cd56
  1225. identifier: RRID:SCR_017571
  1226. name: DANDI API
  1227. schemaKey: Software
  1228. version: 0.1.0
  1229. schemaKey: Asset
  1230. schemaVersion: 0.6.4
  1231. variableMeasured:
  1232. - schemaKey: PropertyValue
  1233. value: SpatialSeries
  1234. - schemaKey: PropertyValue
  1235. value: Position
  1236. - schemaKey: PropertyValue
  1237. value: ProcessingModule
  1238. - schemaKey: PropertyValue
  1239. value: CompassDirection
  1240. - schemaKey: PropertyValue
  1241. value: BehavioralTimeSeries
  1242. wasAttributedTo:
  1243. - age:
  1244. schemaKey: PropertyValue
  1245. unitText: ISO-8601 duration
  1246. value: P6DT55680S
  1247. valueReference:
  1248. schemaKey: PropertyValue
  1249. value: dandi:BirthReference
  1250. identifier: Temp_pref_F16_B16_6dpf_14_long_unsorted_nac
  1251. schemaKey: Participant
  1252. sex:
  1253. name: Unknown
  1254. schemaKey: SexType
  1255. species:
  1256. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1257. name: Danio rerio - Zebra fish
  1258. schemaKey: SpeciesType
  1259. wasGeneratedBy:
  1260. - description: Cold Avoidance behavior
  1261. name: Acquisition session
  1262. schemaKey: Session
  1263. startDate: '2023-10-25T15:28:00-04:00'
  1264. - description: Metadata generated by DANDI cli
  1265. endDate: '2023-11-11T10:39:35.831210-05:00'
  1266. id: urn:uuid:a5fb0a12-2346-434c-bbb5-ee9f4897131d
  1267. name: Metadata generation
  1268. schemaKey: Activity
  1269. startDate: '2023-11-11T10:39:35.821555-05:00'
  1270. wasAssociatedWith:
  1271. - identifier: RRID:SCR_019009
  1272. name: DANDI Command Line Interface
  1273. schemaKey: Software
  1274. url: https://github.com/dandi/dandi-cli
  1275. version: 0.58.0
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...