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 59 KB
Raw

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
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
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
  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:54:22.150000-05:00'
  9. contentSize: 9493175
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/908efcf5-e4e2-4071-a7cd-f662cbb32319/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/874/fc9/874fc92e-cae7-4eb4-a1a9-4731f45b854a
  13. dateModified: '2023-11-11T11:08:49.701302-05:00'
  14. datePublished: '2025-08-14T19:15:55.654650+00:00'
  15. digest:
  16. dandi:dandi-etag: 9041cfa3a0a05a3df6996d2b77426005-1
  17. dandi:sha2-256: e2ad0c9022748b59070063f83df587249fab752ca760cf69f3be6e88cc56c0da
  18. encodingFormat: application/x-nwb
  19. id: dandiasset:908efcf5-e4e2-4071-a7cd-f662cbb32319
  20. identifier: 908efcf5-e4e2-4071-a7cd-f662cbb32319
  21. measurementTechnique:
  22. - name: analytical technique
  23. schemaKey: MeasurementTechniqueType
  24. - name: behavioral technique
  25. schemaKey: MeasurementTechniqueType
  26. path: sub-Temp-pref-F32-B32-5dpf-01-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-01-unsorted-nac_ses-20230711T115100_behavior.nwb
  27. publishedBy:
  28. endDate: '2025-08-14T19:15:55.654650+00:00'
  29. id: urn:uuid:b0e54baa-08b0-469e-91ab-65f6d29b4688
  30. name: DANDI publish
  31. schemaKey: PublishActivity
  32. startDate: '2025-08-14T19:15:55.654650+00:00'
  33. wasAssociatedWith:
  34. - id: urn:uuid:9d67320a-a900-4a0e-9867-1d04663c95f3
  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: CompassDirection
  44. - schemaKey: PropertyValue
  45. value: BehavioralTimeSeries
  46. - schemaKey: PropertyValue
  47. value: Position
  48. - schemaKey: PropertyValue
  49. value: SpatialSeries
  50. - schemaKey: PropertyValue
  51. value: ProcessingModule
  52. wasAttributedTo:
  53. - age:
  54. schemaKey: PropertyValue
  55. unitText: ISO-8601 duration
  56. value: P5DT42660S
  57. valueReference:
  58. schemaKey: PropertyValue
  59. value: dandi:BirthReference
  60. identifier: Temp_pref_F32_B32_5dpf_01_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: Hot Avoidance behavior
  71. name: Acquisition session
  72. schemaKey: Session
  73. startDate: '2023-07-11T11:51:00-04:00'
  74. - description: Metadata generated by DANDI cli
  75. endDate: '2023-11-11T11:08:49.701302-05:00'
  76. id: urn:uuid:91d177d5-7fe9-41ce-8ffc-66bd9dbb8928
  77. name: Metadata generation
  78. schemaKey: Activity
  79. startDate: '2023-11-11T11:08:49.671651-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:54:25.680000-05:00'
  94. contentSize: 9672745
  95. contentUrl:
  96. - https://api.dandiarchive.org/api/assets/e549d6ea-34ed-44e5-890d-75dc8d3eaa11/download/
  97. - https://dandiarchive.s3.amazonaws.com/blobs/63d/b17/63db17ea-1650-4555-b6d9-cb7600749671
  98. dateModified: '2023-11-11T11:08:49.861303-05:00'
  99. datePublished: '2025-08-14T19:15:55.663037+00:00'
  100. digest:
  101. dandi:dandi-etag: 53c5ff5b52ac3f5f7f1e7d75d7eed8db-1
  102. dandi:sha2-256: 706ea710ec4c22c2c03d7a18b6f6ae63c7cee1131596436306989118dda93325
  103. encodingFormat: application/x-nwb
  104. id: dandiasset:e549d6ea-34ed-44e5-890d-75dc8d3eaa11
  105. identifier: e549d6ea-34ed-44e5-890d-75dc8d3eaa11
  106. measurementTechnique:
  107. - name: analytical technique
  108. schemaKey: MeasurementTechniqueType
  109. - name: behavioral technique
  110. schemaKey: MeasurementTechniqueType
  111. path: sub-Temp-pref-F32-B32-5dpf-02-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-02-unsorted-nac_ses-20230711T122700_behavior.nwb
  112. publishedBy:
  113. endDate: '2025-08-14T19:15:55.663037+00:00'
  114. id: urn:uuid:1833d047-5813-460a-8dd1-f4057b8708f3
  115. name: DANDI publish
  116. schemaKey: PublishActivity
  117. startDate: '2025-08-14T19:15:55.663037+00:00'
  118. wasAssociatedWith:
  119. - id: urn:uuid:d7e9f36b-33d5-4f1d-ab1c-f7ae8ce6f30f
  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: CompassDirection
  129. - schemaKey: PropertyValue
  130. value: BehavioralTimeSeries
  131. - schemaKey: PropertyValue
  132. value: Position
  133. - schemaKey: PropertyValue
  134. value: SpatialSeries
  135. - schemaKey: PropertyValue
  136. value: ProcessingModule
  137. wasAttributedTo:
  138. - age:
  139. schemaKey: PropertyValue
  140. unitText: ISO-8601 duration
  141. value: P5DT44820S
  142. valueReference:
  143. schemaKey: PropertyValue
  144. value: dandi:BirthReference
  145. identifier: Temp_pref_F32_B32_5dpf_02_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: Hot Avoidance behavior
  156. name: Acquisition session
  157. schemaKey: Session
  158. startDate: '2023-07-11T12:27:00-04:00'
  159. - description: Metadata generated by DANDI cli
  160. endDate: '2023-11-11T11:08:49.861303-05:00'
  161. id: urn:uuid:35a2c389-6b59-44d5-996d-c9897e72568e
  162. name: Metadata generation
  163. schemaKey: Activity
  164. startDate: '2023-11-11T11:08:49.861303-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:54:29.140000-05:00'
  179. contentSize: 9590849
  180. contentUrl:
  181. - https://api.dandiarchive.org/api/assets/b949a229-fd37-4cec-933f-082aa543f119/download/
  182. - https://dandiarchive.s3.amazonaws.com/blobs/fed/67e/fed67ebf-ed7b-42c3-b200-597136d7409c
  183. dateModified: '2023-11-11T11:08:49.841302-05:00'
  184. datePublished: '2025-08-14T19:15:55.670370+00:00'
  185. digest:
  186. dandi:dandi-etag: 625e9c8b6d12a5d7d8f5ccdd9fbb152c-1
  187. dandi:sha2-256: db5bd3f809768743ae1d3912d18c477f8c9b4e4feab10eb78d42a7b15a930803
  188. encodingFormat: application/x-nwb
  189. id: dandiasset:b949a229-fd37-4cec-933f-082aa543f119
  190. identifier: b949a229-fd37-4cec-933f-082aa543f119
  191. measurementTechnique:
  192. - name: analytical technique
  193. schemaKey: MeasurementTechniqueType
  194. - name: behavioral technique
  195. schemaKey: MeasurementTechniqueType
  196. path: sub-Temp-pref-F32-B32-5dpf-03-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-03-unsorted-nac_ses-20230711T130000_behavior.nwb
  197. publishedBy:
  198. endDate: '2025-08-14T19:15:55.670370+00:00'
  199. id: urn:uuid:0ad076a5-7021-4d59-90c0-9f39290d11f4
  200. name: DANDI publish
  201. schemaKey: PublishActivity
  202. startDate: '2025-08-14T19:15:55.670370+00:00'
  203. wasAssociatedWith:
  204. - id: urn:uuid:f64e50ef-e0b2-4a53-aee2-0570e18c8dd1
  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: CompassDirection
  214. - schemaKey: PropertyValue
  215. value: BehavioralTimeSeries
  216. - schemaKey: PropertyValue
  217. value: Position
  218. - schemaKey: PropertyValue
  219. value: SpatialSeries
  220. - schemaKey: PropertyValue
  221. value: ProcessingModule
  222. wasAttributedTo:
  223. - age:
  224. schemaKey: PropertyValue
  225. unitText: ISO-8601 duration
  226. value: P5DT46800S
  227. valueReference:
  228. schemaKey: PropertyValue
  229. value: dandi:BirthReference
  230. identifier: Temp_pref_F32_B32_5dpf_03_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: Hot Avoidance behavior
  241. name: Acquisition session
  242. schemaKey: Session
  243. startDate: '2023-07-11T13:00:00-04:00'
  244. - description: Metadata generated by DANDI cli
  245. endDate: '2023-11-11T11:08:49.841302-05:00'
  246. id: urn:uuid:b1db3101-80eb-47cd-94aa-12a6d08490a6
  247. name: Metadata generation
  248. schemaKey: Activity
  249. startDate: '2023-11-11T11:08:49.831654-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:54:36.090000-05:00'
  264. contentSize: 9671834
  265. contentUrl:
  266. - https://api.dandiarchive.org/api/assets/05a3fcbc-79b4-4e0a-8a72-35a831dbce88/download/
  267. - https://dandiarchive.s3.amazonaws.com/blobs/504/589/504589da-394d-40da-bd92-f79e10b1c55b
  268. dateModified: '2023-11-11T11:08:49.911653-05:00'
  269. datePublished: '2025-08-14T19:15:55.677999+00:00'
  270. digest:
  271. dandi:dandi-etag: 546cb16bb43739445848f1bf80bcf5f9-1
  272. dandi:sha2-256: 81a0e0f8ead08f58ab532ab0fbf72437cf3371edbe49260d2c9c37db07ddce22
  273. encodingFormat: application/x-nwb
  274. id: dandiasset:05a3fcbc-79b4-4e0a-8a72-35a831dbce88
  275. identifier: 05a3fcbc-79b4-4e0a-8a72-35a831dbce88
  276. measurementTechnique:
  277. - name: analytical technique
  278. schemaKey: MeasurementTechniqueType
  279. - name: behavioral technique
  280. schemaKey: MeasurementTechniqueType
  281. path: sub-Temp-pref-F32-B32-5dpf-05-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-05-unsorted-nac_ses-20230711T140600_behavior.nwb
  282. publishedBy:
  283. endDate: '2025-08-14T19:15:55.677999+00:00'
  284. id: urn:uuid:18fea7ea-5a23-4275-9e6e-c7a7d49a4efe
  285. name: DANDI publish
  286. schemaKey: PublishActivity
  287. startDate: '2025-08-14T19:15:55.677999+00:00'
  288. wasAssociatedWith:
  289. - id: urn:uuid:004e31e3-26db-4258-887d-76fd04671f81
  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: CompassDirection
  299. - schemaKey: PropertyValue
  300. value: BehavioralTimeSeries
  301. - schemaKey: PropertyValue
  302. value: Position
  303. - schemaKey: PropertyValue
  304. value: SpatialSeries
  305. - schemaKey: PropertyValue
  306. value: ProcessingModule
  307. wasAttributedTo:
  308. - age:
  309. schemaKey: PropertyValue
  310. unitText: ISO-8601 duration
  311. value: P5DT50760S
  312. valueReference:
  313. schemaKey: PropertyValue
  314. value: dandi:BirthReference
  315. identifier: Temp_pref_F32_B32_5dpf_05_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: Hot Avoidance behavior
  326. name: Acquisition session
  327. schemaKey: Session
  328. startDate: '2023-07-11T14:06:00-04:00'
  329. - description: Metadata generated by DANDI cli
  330. endDate: '2023-11-11T11:08:49.911653-05:00'
  331. id: urn:uuid:c78182fb-16dc-4f93-9468-426ff3727e15
  332. name: Metadata generation
  333. schemaKey: Activity
  334. startDate: '2023-11-11T11:08:49.901656-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:54:32.620000-05:00'
  349. contentSize: 9628253
  350. contentUrl:
  351. - https://api.dandiarchive.org/api/assets/853b7a4d-5be3-4517-a84c-128d0d06bddf/download/
  352. - https://dandiarchive.s3.amazonaws.com/blobs/6c7/9ed/6c79edca-3109-4fb8-ba60-77a5bc9ef3e3
  353. dateModified: '2023-11-11T11:08:49.971650-05:00'
  354. datePublished: '2025-08-14T19:15:55.686512+00:00'
  355. digest:
  356. dandi:dandi-etag: e9921832f62a488c3e591b69ccc39e34-1
  357. dandi:sha2-256: 62ec820927d5328b8dacf8e680ed0b8145b25e2a652c28a39ee7eb5b10a1dd37
  358. encodingFormat: application/x-nwb
  359. id: dandiasset:853b7a4d-5be3-4517-a84c-128d0d06bddf
  360. identifier: 853b7a4d-5be3-4517-a84c-128d0d06bddf
  361. measurementTechnique:
  362. - name: analytical technique
  363. schemaKey: MeasurementTechniqueType
  364. - name: behavioral technique
  365. schemaKey: MeasurementTechniqueType
  366. path: sub-Temp-pref-F32-B32-5dpf-04-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-04-unsorted-nac_ses-20230711T133200_behavior.nwb
  367. publishedBy:
  368. endDate: '2025-08-14T19:15:55.686512+00:00'
  369. id: urn:uuid:6649a3e0-b95b-4766-8a7b-44110c2120f6
  370. name: DANDI publish
  371. schemaKey: PublishActivity
  372. startDate: '2025-08-14T19:15:55.686512+00:00'
  373. wasAssociatedWith:
  374. - id: urn:uuid:fcfa2ecc-7a56-47d9-95ae-e72cf111e5d2
  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: CompassDirection
  384. - schemaKey: PropertyValue
  385. value: BehavioralTimeSeries
  386. - schemaKey: PropertyValue
  387. value: Position
  388. - schemaKey: PropertyValue
  389. value: SpatialSeries
  390. - schemaKey: PropertyValue
  391. value: ProcessingModule
  392. wasAttributedTo:
  393. - age:
  394. schemaKey: PropertyValue
  395. unitText: ISO-8601 duration
  396. value: P5DT48720S
  397. valueReference:
  398. schemaKey: PropertyValue
  399. value: dandi:BirthReference
  400. identifier: Temp_pref_F32_B32_5dpf_04_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: Hot Avoidance behavior
  411. name: Acquisition session
  412. schemaKey: Session
  413. startDate: '2023-07-11T13:32:00-04:00'
  414. - description: Metadata generated by DANDI cli
  415. endDate: '2023-11-11T11:08:49.971650-05:00'
  416. id: urn:uuid:f722680e-77d0-45fd-8858-fd768cdee61f
  417. name: Metadata generation
  418. schemaKey: Activity
  419. startDate: '2023-11-11T11:08:49.971650-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:54:39.610000-05:00'
  434. contentSize: 9048627
  435. contentUrl:
  436. - https://api.dandiarchive.org/api/assets/df4738f7-6814-4557-8e8e-ea5b0edb5e2c/download/
  437. - https://dandiarchive.s3.amazonaws.com/blobs/d65/a69/d65a699b-6465-4f79-8d69-c411e99a16be
  438. dateModified: '2023-11-11T11:08:53.214618-05:00'
  439. datePublished: '2025-08-14T19:15:55.695668+00:00'
  440. digest:
  441. dandi:dandi-etag: f7948cf8e4eab595f8d957b090b8517d-1
  442. dandi:sha2-256: 6c116e37e5daa50a18bfd18457ae1fd177dc380af35aa20e74ef05cadc30428a
  443. encodingFormat: application/x-nwb
  444. id: dandiasset:df4738f7-6814-4557-8e8e-ea5b0edb5e2c
  445. identifier: df4738f7-6814-4557-8e8e-ea5b0edb5e2c
  446. measurementTechnique:
  447. - name: analytical technique
  448. schemaKey: MeasurementTechniqueType
  449. - name: behavioral technique
  450. schemaKey: MeasurementTechniqueType
  451. path: sub-Temp-pref-F32-B32-5dpf-06-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-06-unsorted-nac_ses-20230711T143800_behavior.nwb
  452. publishedBy:
  453. endDate: '2025-08-14T19:15:55.695668+00:00'
  454. id: urn:uuid:d56717e2-6a2d-40f5-8fe4-77f646f1e7cb
  455. name: DANDI publish
  456. schemaKey: PublishActivity
  457. startDate: '2025-08-14T19:15:55.695668+00:00'
  458. wasAssociatedWith:
  459. - id: urn:uuid:c6fbca23-3ef5-4470-80b8-0d5ce2fccd55
  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: CompassDirection
  469. - schemaKey: PropertyValue
  470. value: BehavioralTimeSeries
  471. - schemaKey: PropertyValue
  472. value: Position
  473. - schemaKey: PropertyValue
  474. value: SpatialSeries
  475. - schemaKey: PropertyValue
  476. value: ProcessingModule
  477. wasAttributedTo:
  478. - age:
  479. schemaKey: PropertyValue
  480. unitText: ISO-8601 duration
  481. value: P5DT52680S
  482. valueReference:
  483. schemaKey: PropertyValue
  484. value: dandi:BirthReference
  485. identifier: Temp_pref_F32_B32_5dpf_06_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: Hot Avoidance behavior
  496. name: Acquisition session
  497. schemaKey: Session
  498. startDate: '2023-07-11T14:38:00-04:00'
  499. - description: Metadata generated by DANDI cli
  500. endDate: '2023-11-11T11:08:53.214618-05:00'
  501. id: urn:uuid:bf4dd1de-613a-4165-b177-a635e5c2de80
  502. name: Metadata generation
  503. schemaKey: Activity
  504. startDate: '2023-11-11T11:08:53.164617-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:54:46.590000-05:00'
  519. contentSize: 9677271
  520. contentUrl:
  521. - https://api.dandiarchive.org/api/assets/7d77ca2e-6356-475e-bff5-91ef7835b3ec/download/
  522. - https://dandiarchive.s3.amazonaws.com/blobs/bfb/7d5/bfb7d567-cccc-4a11-9407-ef48ba0836af
  523. dateModified: '2023-11-11T11:08:53.614619-05:00'
  524. datePublished: '2025-08-14T19:15:55.704095+00:00'
  525. digest:
  526. dandi:dandi-etag: 6f3207bb3bec69eff9fbd3d7aa746edd-1
  527. dandi:sha2-256: 5cbcccbc69f3d2b7b655fcffe92843b55cebc6947bf2f8c4229d815f0c4b7217
  528. encodingFormat: application/x-nwb
  529. id: dandiasset:7d77ca2e-6356-475e-bff5-91ef7835b3ec
  530. identifier: 7d77ca2e-6356-475e-bff5-91ef7835b3ec
  531. measurementTechnique:
  532. - name: analytical technique
  533. schemaKey: MeasurementTechniqueType
  534. - name: behavioral technique
  535. schemaKey: MeasurementTechniqueType
  536. path: sub-Temp-pref-F32-B32-5dpf-08-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-08-unsorted-nac_ses-20230711T154400_behavior.nwb
  537. publishedBy:
  538. endDate: '2025-08-14T19:15:55.704095+00:00'
  539. id: urn:uuid:30f211f5-2f78-4571-9ddb-94e8ce241ade
  540. name: DANDI publish
  541. schemaKey: PublishActivity
  542. startDate: '2025-08-14T19:15:55.704095+00:00'
  543. wasAssociatedWith:
  544. - id: urn:uuid:59a4be23-9f0e-46c5-a16a-690302cc2d4b
  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: CompassDirection
  554. - schemaKey: PropertyValue
  555. value: BehavioralTimeSeries
  556. - schemaKey: PropertyValue
  557. value: Position
  558. - schemaKey: PropertyValue
  559. value: SpatialSeries
  560. - schemaKey: PropertyValue
  561. value: ProcessingModule
  562. wasAttributedTo:
  563. - age:
  564. schemaKey: PropertyValue
  565. unitText: ISO-8601 duration
  566. value: P5DT56640S
  567. valueReference:
  568. schemaKey: PropertyValue
  569. value: dandi:BirthReference
  570. identifier: Temp_pref_F32_B32_5dpf_08_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: Hot Avoidance behavior
  581. name: Acquisition session
  582. schemaKey: Session
  583. startDate: '2023-07-11T15:44:00-04:00'
  584. - description: Metadata generated by DANDI cli
  585. endDate: '2023-11-11T11:08:53.614619-05:00'
  586. id: urn:uuid:da3da23b-254c-4e81-a960-4f8b20070ee0
  587. name: Metadata generation
  588. schemaKey: Activity
  589. startDate: '2023-11-11T11:08:53.514433-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:54:43.040000-05:00'
  604. contentSize: 9661769
  605. contentUrl:
  606. - https://api.dandiarchive.org/api/assets/b111f6f9-5b3f-4ad2-a66f-32b3884f9b28/download/
  607. - https://dandiarchive.s3.amazonaws.com/blobs/d3b/1b0/d3b1b031-fffa-4b8a-bd35-3b939842b91e
  608. dateModified: '2023-11-11T11:08:53.254615-05:00'
  609. datePublished: '2025-08-14T19:15:55.713114+00:00'
  610. digest:
  611. dandi:dandi-etag: 77e5c2a4aeeced7b2df42aec2fa9834f-1
  612. dandi:sha2-256: 7aaf2df448a1f94fa1252fc21ec4018dbbb0efaf1e8446dac94242bdd3942668
  613. encodingFormat: application/x-nwb
  614. id: dandiasset:b111f6f9-5b3f-4ad2-a66f-32b3884f9b28
  615. identifier: b111f6f9-5b3f-4ad2-a66f-32b3884f9b28
  616. measurementTechnique:
  617. - name: analytical technique
  618. schemaKey: MeasurementTechniqueType
  619. - name: behavioral technique
  620. schemaKey: MeasurementTechniqueType
  621. path: sub-Temp-pref-F32-B32-5dpf-07-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-07-unsorted-nac_ses-20230711T151200_behavior.nwb
  622. publishedBy:
  623. endDate: '2025-08-14T19:15:55.713114+00:00'
  624. id: urn:uuid:04801516-8818-4f6a-95d1-add0a347eefe
  625. name: DANDI publish
  626. schemaKey: PublishActivity
  627. startDate: '2025-08-14T19:15:55.713114+00:00'
  628. wasAssociatedWith:
  629. - id: urn:uuid:add0cfb5-0c24-4704-9fba-442a7b7d0e3e
  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: CompassDirection
  639. - schemaKey: PropertyValue
  640. value: BehavioralTimeSeries
  641. - schemaKey: PropertyValue
  642. value: Position
  643. - schemaKey: PropertyValue
  644. value: SpatialSeries
  645. - schemaKey: PropertyValue
  646. value: ProcessingModule
  647. wasAttributedTo:
  648. - age:
  649. schemaKey: PropertyValue
  650. unitText: ISO-8601 duration
  651. value: P5DT54720S
  652. valueReference:
  653. schemaKey: PropertyValue
  654. value: dandi:BirthReference
  655. identifier: Temp_pref_F32_B32_5dpf_07_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: Hot Avoidance behavior
  666. name: Acquisition session
  667. schemaKey: Session
  668. startDate: '2023-07-11T15:12:00-04:00'
  669. - description: Metadata generated by DANDI cli
  670. endDate: '2023-11-11T11:08:53.254615-05:00'
  671. id: urn:uuid:e6c392b2-c676-466f-84e3-86f3e3aba489
  672. name: Metadata generation
  673. schemaKey: Activity
  674. startDate: '2023-11-11T11:08:53.214618-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:54:53.730000-05:00'
  689. contentSize: 9568058
  690. contentUrl:
  691. - https://api.dandiarchive.org/api/assets/d3451647-106f-4e2c-8d91-d9a647051264/download/
  692. - https://dandiarchive.s3.amazonaws.com/blobs/9af/e0a/9afe0af6-ba9c-4cda-a50a-91eabd133700
  693. dateModified: '2023-11-11T11:08:54.769683-05:00'
  694. datePublished: '2025-08-14T19:15:55.721324+00:00'
  695. digest:
  696. dandi:dandi-etag: 5800d8cfdd9ca39fee832ede85dfab96-1
  697. dandi:sha2-256: c8d70c32fda204bccb4c380e8b3ca8eed23b3ddc6730a3ee34378b61143c101d
  698. encodingFormat: application/x-nwb
  699. id: dandiasset:d3451647-106f-4e2c-8d91-d9a647051264
  700. identifier: d3451647-106f-4e2c-8d91-d9a647051264
  701. measurementTechnique:
  702. - name: analytical technique
  703. schemaKey: MeasurementTechniqueType
  704. - name: behavioral technique
  705. schemaKey: MeasurementTechniqueType
  706. path: sub-Temp-pref-F32-B32-5dpf-10-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-10-unsorted-nac_ses-20230711T165300_behavior.nwb
  707. publishedBy:
  708. endDate: '2025-08-14T19:15:55.721324+00:00'
  709. id: urn:uuid:0fbb100f-f8d6-4171-b75e-094646351861
  710. name: DANDI publish
  711. schemaKey: PublishActivity
  712. startDate: '2025-08-14T19:15:55.721324+00:00'
  713. wasAssociatedWith:
  714. - id: urn:uuid:8e72b2ce-5924-43d0-b307-26009ca2c83f
  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: CompassDirection
  724. - schemaKey: PropertyValue
  725. value: BehavioralTimeSeries
  726. - schemaKey: PropertyValue
  727. value: Position
  728. - schemaKey: PropertyValue
  729. value: SpatialSeries
  730. - schemaKey: PropertyValue
  731. value: ProcessingModule
  732. wasAttributedTo:
  733. - age:
  734. schemaKey: PropertyValue
  735. unitText: ISO-8601 duration
  736. value: P5DT60780S
  737. valueReference:
  738. schemaKey: PropertyValue
  739. value: dandi:BirthReference
  740. identifier: Temp_pref_F32_B32_5dpf_10_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: Hot Avoidance behavior
  751. name: Acquisition session
  752. schemaKey: Session
  753. startDate: '2023-07-11T16:53:00-04:00'
  754. - description: Metadata generated by DANDI cli
  755. endDate: '2023-11-11T11:08:54.769683-05:00'
  756. id: urn:uuid:74cf9d34-9f56-48f3-a285-8de77c42c5e8
  757. name: Metadata generation
  758. schemaKey: Activity
  759. startDate: '2023-11-11T11:08:54.714483-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:54:50.080000-05:00'
  774. contentSize: 9781498
  775. contentUrl:
  776. - https://api.dandiarchive.org/api/assets/bbd1bcbc-303c-453a-a8c3-244332be0850/download/
  777. - https://dandiarchive.s3.amazonaws.com/blobs/8aa/459/8aa45932-78e2-41b7-8fc6-b40c4ca9ba35
  778. dateModified: '2023-11-11T11:08:54.729326-05:00'
  779. datePublished: '2025-08-14T19:15:55.729229+00:00'
  780. digest:
  781. dandi:dandi-etag: c699f1985b7cb00d21eb20783a38734c-1
  782. dandi:sha2-256: 3e16bebacba6120fe343f70e0e25c2c5b6480af1bc42d3f5f3a89a6656a0a728
  783. encodingFormat: application/x-nwb
  784. id: dandiasset:bbd1bcbc-303c-453a-a8c3-244332be0850
  785. identifier: bbd1bcbc-303c-453a-a8c3-244332be0850
  786. measurementTechnique:
  787. - name: analytical technique
  788. schemaKey: MeasurementTechniqueType
  789. - name: behavioral technique
  790. schemaKey: MeasurementTechniqueType
  791. path: sub-Temp-pref-F32-B32-5dpf-09-unsorted-nac/sub-Temp-pref-F32-B32-5dpf-09-unsorted-nac_ses-20230711T161900_behavior.nwb
  792. publishedBy:
  793. endDate: '2025-08-14T19:15:55.729229+00:00'
  794. id: urn:uuid:6dbfb19d-77b0-45da-8d6b-c4e7cc804165
  795. name: DANDI publish
  796. schemaKey: PublishActivity
  797. startDate: '2025-08-14T19:15:55.729229+00:00'
  798. wasAssociatedWith:
  799. - id: urn:uuid:2be9843c-cfa9-4dfe-a996-7d40367f9110
  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: CompassDirection
  809. - schemaKey: PropertyValue
  810. value: BehavioralTimeSeries
  811. - schemaKey: PropertyValue
  812. value: Position
  813. - schemaKey: PropertyValue
  814. value: SpatialSeries
  815. - schemaKey: PropertyValue
  816. value: ProcessingModule
  817. wasAttributedTo:
  818. - age:
  819. schemaKey: PropertyValue
  820. unitText: ISO-8601 duration
  821. value: P5DT58740S
  822. valueReference:
  823. schemaKey: PropertyValue
  824. value: dandi:BirthReference
  825. identifier: Temp_pref_F32_B32_5dpf_09_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: Hot Avoidance behavior
  836. name: Acquisition session
  837. schemaKey: Session
  838. startDate: '2023-07-11T16:19:00-04:00'
  839. - description: Metadata generated by DANDI cli
  840. endDate: '2023-11-11T11:08:54.729326-05:00'
  841. id: urn:uuid:4f2603a4-b7da-47e4-adb2-4118de57f194
  842. name: Metadata generation
  843. schemaKey: Activity
  844. startDate: '2023-11-11T11:08:54.694137-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:55:04.330000-05:00'
  859. contentSize: 9595596
  860. contentUrl:
  861. - https://api.dandiarchive.org/api/assets/08bebc38-5d6d-4394-a068-54902816947d/download/
  862. - https://dandiarchive.s3.amazonaws.com/blobs/e84/9f5/e849f5ff-d1ac-400e-bdce-65bda2f0fc04
  863. dateModified: '2023-11-11T11:08:56.765791-05:00'
  864. datePublished: '2025-08-14T19:15:55.737304+00:00'
  865. digest:
  866. dandi:dandi-etag: 74b8b021e72b63b0e8ec1c8f62e0d5e3-1
  867. dandi:sha2-256: ee2e67a95ae742709f9f55942c2f46a7a9816a3c7fe15cc23986b6fd55082357
  868. encodingFormat: application/x-nwb
  869. id: dandiasset:08bebc38-5d6d-4394-a068-54902816947d
  870. identifier: 08bebc38-5d6d-4394-a068-54902816947d
  871. measurementTechnique:
  872. - name: analytical technique
  873. schemaKey: MeasurementTechniqueType
  874. - name: behavioral technique
  875. schemaKey: MeasurementTechniqueType
  876. path: sub-Temp-pref-F32-B32-6dpf-13-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-13-unsorted-nac_ses-20230712T112100_behavior.nwb
  877. publishedBy:
  878. endDate: '2025-08-14T19:15:55.737304+00:00'
  879. id: urn:uuid:4db61635-e3bc-43b0-8435-34292c6477b8
  880. name: DANDI publish
  881. schemaKey: PublishActivity
  882. startDate: '2025-08-14T19:15:55.737304+00:00'
  883. wasAssociatedWith:
  884. - id: urn:uuid:b099efb0-6e1b-4706-8649-9e9cc95be1bf
  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: CompassDirection
  894. - schemaKey: PropertyValue
  895. value: BehavioralTimeSeries
  896. - schemaKey: PropertyValue
  897. value: Position
  898. - schemaKey: PropertyValue
  899. value: SpatialSeries
  900. - schemaKey: PropertyValue
  901. value: ProcessingModule
  902. wasAttributedTo:
  903. - age:
  904. schemaKey: PropertyValue
  905. unitText: ISO-8601 duration
  906. value: P6DT40860S
  907. valueReference:
  908. schemaKey: PropertyValue
  909. value: dandi:BirthReference
  910. identifier: Temp_pref_F32_B32_6dpf_13_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: Hot Avoidance behavior
  921. name: Acquisition session
  922. schemaKey: Session
  923. startDate: '2023-07-12T11:21:00-04:00'
  924. - description: Metadata generated by DANDI cli
  925. endDate: '2023-11-11T11:08:56.765791-05:00'
  926. id: urn:uuid:b8a34d64-7548-488e-9937-543762e71608
  927. name: Metadata generation
  928. schemaKey: Activity
  929. startDate: '2023-11-11T11:08:56.725437-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:55:00.750000-05:00'
  944. contentSize: 9660903
  945. contentUrl:
  946. - https://api.dandiarchive.org/api/assets/56ec7ac6-bc78-402b-ae00-275c0d34f15a/download/
  947. - https://dandiarchive.s3.amazonaws.com/blobs/6f5/9fd/6f59fd89-a663-406b-84fe-cdde58343beb
  948. dateModified: '2023-11-11T11:08:56.795787-05:00'
  949. datePublished: '2025-08-14T19:15:55.745290+00:00'
  950. digest:
  951. dandi:dandi-etag: c4dd36f2494d2653fe80218e54fcc85f-1
  952. dandi:sha2-256: c9a1e3e7c09eed9256ebb56818910da1be844bdce90a758fa448e5f0862a5ed6
  953. encodingFormat: application/x-nwb
  954. id: dandiasset:56ec7ac6-bc78-402b-ae00-275c0d34f15a
  955. identifier: 56ec7ac6-bc78-402b-ae00-275c0d34f15a
  956. measurementTechnique:
  957. - name: analytical technique
  958. schemaKey: MeasurementTechniqueType
  959. - name: behavioral technique
  960. schemaKey: MeasurementTechniqueType
  961. path: sub-Temp-pref-F32-B32-6dpf-12-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-12-unsorted-nac_ses-20230712T104500_behavior.nwb
  962. publishedBy:
  963. endDate: '2025-08-14T19:15:55.745290+00:00'
  964. id: urn:uuid:fd10fc2c-0f37-494d-a8b9-925894e58a78
  965. name: DANDI publish
  966. schemaKey: PublishActivity
  967. startDate: '2025-08-14T19:15:55.745290+00:00'
  968. wasAssociatedWith:
  969. - id: urn:uuid:20ce66ba-9354-4508-83a6-e069bcd016d4
  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: CompassDirection
  979. - schemaKey: PropertyValue
  980. value: BehavioralTimeSeries
  981. - schemaKey: PropertyValue
  982. value: Position
  983. - schemaKey: PropertyValue
  984. value: SpatialSeries
  985. - schemaKey: PropertyValue
  986. value: ProcessingModule
  987. wasAttributedTo:
  988. - age:
  989. schemaKey: PropertyValue
  990. unitText: ISO-8601 duration
  991. value: P6DT38700S
  992. valueReference:
  993. schemaKey: PropertyValue
  994. value: dandi:BirthReference
  995. identifier: Temp_pref_F32_B32_6dpf_12_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: Hot Avoidance behavior
  1006. name: Acquisition session
  1007. schemaKey: Session
  1008. startDate: '2023-07-12T10:45:00-04:00'
  1009. - description: Metadata generated by DANDI cli
  1010. endDate: '2023-11-11T11:08:56.795787-05:00'
  1011. id: urn:uuid:08a6cb3a-b8f0-4a98-982f-98c3182251a8
  1012. name: Metadata generation
  1013. schemaKey: Activity
  1014. startDate: '2023-11-11T11:08:56.755791-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:54:57.190000-05:00'
  1029. contentSize: 9448314
  1030. contentUrl:
  1031. - https://api.dandiarchive.org/api/assets/8ade2b16-d8a6-4272-aad4-48d755607c6e/download/
  1032. - https://dandiarchive.s3.amazonaws.com/blobs/701/635/70163500-e4fd-4a6e-994f-f1edcf1413fa
  1033. dateModified: '2023-11-11T11:08:56.755791-05:00'
  1034. datePublished: '2025-08-14T19:15:55.753829+00:00'
  1035. digest:
  1036. dandi:dandi-etag: 0ec8ea2598a64a163068c1a955d9836c-1
  1037. dandi:sha2-256: d92dee6224b618db9e3bbe244d6f82ba309f1eb08dd018db60e1b29c2ebd39d5
  1038. encodingFormat: application/x-nwb
  1039. id: dandiasset:8ade2b16-d8a6-4272-aad4-48d755607c6e
  1040. identifier: 8ade2b16-d8a6-4272-aad4-48d755607c6e
  1041. measurementTechnique:
  1042. - name: analytical technique
  1043. schemaKey: MeasurementTechniqueType
  1044. - name: behavioral technique
  1045. schemaKey: MeasurementTechniqueType
  1046. path: sub-Temp-pref-F32-B32-6dpf-11-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-11-unsorted-nac_ses-20230712T101300_behavior.nwb
  1047. publishedBy:
  1048. endDate: '2025-08-14T19:15:55.753829+00:00'
  1049. id: urn:uuid:cabcc801-d4f1-434c-afe8-2882b3b0f886
  1050. name: DANDI publish
  1051. schemaKey: PublishActivity
  1052. startDate: '2025-08-14T19:15:55.753829+00:00'
  1053. wasAssociatedWith:
  1054. - id: urn:uuid:af86e10f-849f-4d45-bda7-92cb36187a9a
  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: CompassDirection
  1064. - schemaKey: PropertyValue
  1065. value: BehavioralTimeSeries
  1066. - schemaKey: PropertyValue
  1067. value: Position
  1068. - schemaKey: PropertyValue
  1069. value: SpatialSeries
  1070. - schemaKey: PropertyValue
  1071. value: ProcessingModule
  1072. wasAttributedTo:
  1073. - age:
  1074. schemaKey: PropertyValue
  1075. unitText: ISO-8601 duration
  1076. value: P6DT36780S
  1077. valueReference:
  1078. schemaKey: PropertyValue
  1079. value: dandi:BirthReference
  1080. identifier: Temp_pref_F32_B32_6dpf_11_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: Hot Avoidance behavior
  1091. name: Acquisition session
  1092. schemaKey: Session
  1093. startDate: '2023-07-12T10:13:00-04:00'
  1094. - description: Metadata generated by DANDI cli
  1095. endDate: '2023-11-11T11:08:56.755791-05:00'
  1096. id: urn:uuid:a1b73405-b4ec-44f4-9237-7622788a0f32
  1097. name: Metadata generation
  1098. schemaKey: Activity
  1099. startDate: '2023-11-11T11:08:56.699780-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:55:11.470000-05:00'
  1114. contentSize: 9513473
  1115. contentUrl:
  1116. - https://api.dandiarchive.org/api/assets/4a2f072c-6a5d-4e50-b8ef-b5a8d2dbe8a3/download/
  1117. - https://dandiarchive.s3.amazonaws.com/blobs/d8c/142/d8c142f5-1c95-44f1-a1a2-f6abd963e8d5
  1118. dateModified: '2023-11-11T11:08:57.625441-05:00'
  1119. datePublished: '2025-08-14T19:15:55.763595+00:00'
  1120. digest:
  1121. dandi:dandi-etag: 84f025dae2797ed28fc4d926b8fa2398-1
  1122. dandi:sha2-256: ce87af76b0fffe7ee2354165b01955de7b3859ce2046790c1f8116654f5d7fc8
  1123. encodingFormat: application/x-nwb
  1124. id: dandiasset:4a2f072c-6a5d-4e50-b8ef-b5a8d2dbe8a3
  1125. identifier: 4a2f072c-6a5d-4e50-b8ef-b5a8d2dbe8a3
  1126. measurementTechnique:
  1127. - name: analytical technique
  1128. schemaKey: MeasurementTechniqueType
  1129. - name: behavioral technique
  1130. schemaKey: MeasurementTechniqueType
  1131. path: sub-Temp-pref-F32-B32-6dpf-15-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-15-unsorted-nac_ses-20230712T122600_behavior.nwb
  1132. publishedBy:
  1133. endDate: '2025-08-14T19:15:55.763595+00:00'
  1134. id: urn:uuid:7eb6f31b-286b-4e1a-b1da-40757c4ef327
  1135. name: DANDI publish
  1136. schemaKey: PublishActivity
  1137. startDate: '2025-08-14T19:15:55.763595+00:00'
  1138. wasAssociatedWith:
  1139. - id: urn:uuid:69935460-1e1f-42b1-97c4-03037c7ccefb
  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: CompassDirection
  1149. - schemaKey: PropertyValue
  1150. value: BehavioralTimeSeries
  1151. - schemaKey: PropertyValue
  1152. value: Position
  1153. - schemaKey: PropertyValue
  1154. value: SpatialSeries
  1155. - schemaKey: PropertyValue
  1156. value: ProcessingModule
  1157. wasAttributedTo:
  1158. - age:
  1159. schemaKey: PropertyValue
  1160. unitText: ISO-8601 duration
  1161. value: P6DT44760S
  1162. valueReference:
  1163. schemaKey: PropertyValue
  1164. value: dandi:BirthReference
  1165. identifier: Temp_pref_F32_B32_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: Hot Avoidance behavior
  1176. name: Acquisition session
  1177. schemaKey: Session
  1178. startDate: '2023-07-12T12:26:00-04:00'
  1179. - description: Metadata generated by DANDI cli
  1180. endDate: '2023-11-11T11:08:57.625441-05:00'
  1181. id: urn:uuid:2ffae215-4ed2-4aff-9442-95722695d686
  1182. name: Metadata generation
  1183. schemaKey: Activity
  1184. startDate: '2023-11-11T11:08:57.625441-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:55:07.880000-05:00'
  1199. contentSize: 9544780
  1200. contentUrl:
  1201. - https://api.dandiarchive.org/api/assets/44b83dec-92c8-4a76-8774-254cbb11469f/download/
  1202. - https://dandiarchive.s3.amazonaws.com/blobs/9b9/b0e/9b9b0edc-b886-4c82-8d6c-d3eac0004fa3
  1203. dateModified: '2023-11-11T11:08:57.625441-05:00'
  1204. datePublished: '2025-08-14T19:15:55.779949+00:00'
  1205. digest:
  1206. dandi:dandi-etag: 4144d927071a6fe3e5974095c9537a75-1
  1207. dandi:sha2-256: 4f2d4aeaadccb8eb573a62d38c2923d67be21f5c73d225059737e577297964ae
  1208. encodingFormat: application/x-nwb
  1209. id: dandiasset:44b83dec-92c8-4a76-8774-254cbb11469f
  1210. identifier: 44b83dec-92c8-4a76-8774-254cbb11469f
  1211. measurementTechnique:
  1212. - name: analytical technique
  1213. schemaKey: MeasurementTechniqueType
  1214. - name: behavioral technique
  1215. schemaKey: MeasurementTechniqueType
  1216. path: sub-Temp-pref-F32-B32-6dpf-14-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-14-unsorted-nac_ses-20230712T115300_behavior.nwb
  1217. publishedBy:
  1218. endDate: '2025-08-14T19:15:55.779949+00:00'
  1219. id: urn:uuid:62be7e25-e981-4478-bb91-61a926450068
  1220. name: DANDI publish
  1221. schemaKey: PublishActivity
  1222. startDate: '2025-08-14T19:15:55.779949+00:00'
  1223. wasAssociatedWith:
  1224. - id: urn:uuid:2030079d-f1d7-41aa-bd29-3332d7c7c2c7
  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: CompassDirection
  1234. - schemaKey: PropertyValue
  1235. value: BehavioralTimeSeries
  1236. - schemaKey: PropertyValue
  1237. value: Position
  1238. - schemaKey: PropertyValue
  1239. value: SpatialSeries
  1240. - schemaKey: PropertyValue
  1241. value: ProcessingModule
  1242. wasAttributedTo:
  1243. - age:
  1244. schemaKey: PropertyValue
  1245. unitText: ISO-8601 duration
  1246. value: P6DT42780S
  1247. valueReference:
  1248. schemaKey: PropertyValue
  1249. value: dandi:BirthReference
  1250. identifier: Temp_pref_F32_B32_6dpf_14_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: Hot Avoidance behavior
  1261. name: Acquisition session
  1262. schemaKey: Session
  1263. startDate: '2023-07-12T11:53:00-04:00'
  1264. - description: Metadata generated by DANDI cli
  1265. endDate: '2023-11-11T11:08:57.625441-05:00'
  1266. id: urn:uuid:299f171f-ea33-48a8-934f-311a7423d24d
  1267. name: Metadata generation
  1268. schemaKey: Activity
  1269. startDate: '2023-11-11T11:08:57.595441-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
  1276. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1277. access:
  1278. - schemaKey: AccessRequirements
  1279. status: dandi:OpenAccess
  1280. approach:
  1281. - name: behavioral approach
  1282. schemaKey: ApproachType
  1283. blobDateModified: '2023-11-10T11:55:15.060000-05:00'
  1284. contentSize: 9563893
  1285. contentUrl:
  1286. - https://api.dandiarchive.org/api/assets/50ec99e9-292e-4f4a-a3b2-374784d00bd8/download/
  1287. - https://dandiarchive.s3.amazonaws.com/blobs/861/a23/861a23d4-4b27-4ddf-bfd6-48f757f88ca9
  1288. dateModified: '2023-11-11T11:08:59.691811-05:00'
  1289. datePublished: '2025-08-14T19:15:55.788692+00:00'
  1290. digest:
  1291. dandi:dandi-etag: dd8bcddcc2147dd05d8a6d8bdbaea1ca-1
  1292. dandi:sha2-256: 656aae11d4c0549a906cc4b3e2d01bc4018c2b22d99b2686b50cf5933f9dd277
  1293. encodingFormat: application/x-nwb
  1294. id: dandiasset:50ec99e9-292e-4f4a-a3b2-374784d00bd8
  1295. identifier: 50ec99e9-292e-4f4a-a3b2-374784d00bd8
  1296. measurementTechnique:
  1297. - name: analytical technique
  1298. schemaKey: MeasurementTechniqueType
  1299. - name: behavioral technique
  1300. schemaKey: MeasurementTechniqueType
  1301. path: sub-Temp-pref-F32-B32-6dpf-16-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-16-unsorted-nac_ses-20230712T125900_behavior.nwb
  1302. publishedBy:
  1303. endDate: '2025-08-14T19:15:55.788692+00:00'
  1304. id: urn:uuid:56758aa1-32e3-49f8-b4eb-a8aa62a7cee4
  1305. name: DANDI publish
  1306. schemaKey: PublishActivity
  1307. startDate: '2025-08-14T19:15:55.788692+00:00'
  1308. wasAssociatedWith:
  1309. - id: urn:uuid:471a689b-36a0-4b50-8f49-aa4952994ce1
  1310. identifier: RRID:SCR_017571
  1311. name: DANDI API
  1312. schemaKey: Software
  1313. version: 0.1.0
  1314. schemaKey: Asset
  1315. schemaVersion: 0.6.4
  1316. variableMeasured:
  1317. - schemaKey: PropertyValue
  1318. value: CompassDirection
  1319. - schemaKey: PropertyValue
  1320. value: BehavioralTimeSeries
  1321. - schemaKey: PropertyValue
  1322. value: Position
  1323. - schemaKey: PropertyValue
  1324. value: SpatialSeries
  1325. - schemaKey: PropertyValue
  1326. value: ProcessingModule
  1327. wasAttributedTo:
  1328. - age:
  1329. schemaKey: PropertyValue
  1330. unitText: ISO-8601 duration
  1331. value: P6DT46740S
  1332. valueReference:
  1333. schemaKey: PropertyValue
  1334. value: dandi:BirthReference
  1335. identifier: Temp_pref_F32_B32_6dpf_16_unsorted_nac
  1336. schemaKey: Participant
  1337. sex:
  1338. name: Unknown
  1339. schemaKey: SexType
  1340. species:
  1341. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1342. name: Danio rerio - Zebra fish
  1343. schemaKey: SpeciesType
  1344. wasGeneratedBy:
  1345. - description: Hot Avoidance behavior
  1346. name: Acquisition session
  1347. schemaKey: Session
  1348. startDate: '2023-07-12T12:59:00-04:00'
  1349. - description: Metadata generated by DANDI cli
  1350. endDate: '2023-11-11T11:08:59.691811-05:00'
  1351. id: urn:uuid:e49121e9-0449-42b2-819b-435b3474781f
  1352. name: Metadata generation
  1353. schemaKey: Activity
  1354. startDate: '2023-11-11T11:08:59.682161-05:00'
  1355. wasAssociatedWith:
  1356. - identifier: RRID:SCR_019009
  1357. name: DANDI Command Line Interface
  1358. schemaKey: Software
  1359. url: https://github.com/dandi/dandi-cli
  1360. version: 0.58.0
  1361. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1362. access:
  1363. - schemaKey: AccessRequirements
  1364. status: dandi:OpenAccess
  1365. approach:
  1366. - name: behavioral approach
  1367. schemaKey: ApproachType
  1368. blobDateModified: '2023-11-10T11:55:22.070000-05:00'
  1369. contentSize: 9644106
  1370. contentUrl:
  1371. - https://api.dandiarchive.org/api/assets/46aad1ad-ff18-4f3f-ad46-2d847cbce557/download/
  1372. - https://dandiarchive.s3.amazonaws.com/blobs/ca4/a12/ca4a1272-e949-4ca3-8460-1898a8ff9e4b
  1373. dateModified: '2023-11-11T11:09:00.081812-05:00'
  1374. datePublished: '2025-08-14T19:15:55.798989+00:00'
  1375. digest:
  1376. dandi:dandi-etag: 5b2f0033d4fb38d39850caea67a45e0b-1
  1377. dandi:sha2-256: ff4ba21f087bd74bc62f5ea759ff90fff2bfb93e69ac7afa1c96732636870033
  1378. encodingFormat: application/x-nwb
  1379. id: dandiasset:46aad1ad-ff18-4f3f-ad46-2d847cbce557
  1380. identifier: 46aad1ad-ff18-4f3f-ad46-2d847cbce557
  1381. measurementTechnique:
  1382. - name: analytical technique
  1383. schemaKey: MeasurementTechniqueType
  1384. - name: behavioral technique
  1385. schemaKey: MeasurementTechniqueType
  1386. path: sub-Temp-pref-F32-B32-6dpf-18-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-18-unsorted-nac_ses-20230712T142400_behavior.nwb
  1387. publishedBy:
  1388. endDate: '2025-08-14T19:15:55.798989+00:00'
  1389. id: urn:uuid:668040fe-a2e6-48e0-aabc-2ba790dd0eef
  1390. name: DANDI publish
  1391. schemaKey: PublishActivity
  1392. startDate: '2025-08-14T19:15:55.798989+00:00'
  1393. wasAssociatedWith:
  1394. - id: urn:uuid:f248097b-4eef-4098-b262-6ac29ea3e7a0
  1395. identifier: RRID:SCR_017571
  1396. name: DANDI API
  1397. schemaKey: Software
  1398. version: 0.1.0
  1399. schemaKey: Asset
  1400. schemaVersion: 0.6.4
  1401. variableMeasured:
  1402. - schemaKey: PropertyValue
  1403. value: CompassDirection
  1404. - schemaKey: PropertyValue
  1405. value: BehavioralTimeSeries
  1406. - schemaKey: PropertyValue
  1407. value: Position
  1408. - schemaKey: PropertyValue
  1409. value: SpatialSeries
  1410. - schemaKey: PropertyValue
  1411. value: ProcessingModule
  1412. wasAttributedTo:
  1413. - age:
  1414. schemaKey: PropertyValue
  1415. unitText: ISO-8601 duration
  1416. value: P6DT51840S
  1417. valueReference:
  1418. schemaKey: PropertyValue
  1419. value: dandi:BirthReference
  1420. identifier: Temp_pref_F32_B32_6dpf_18_unsorted_nac
  1421. schemaKey: Participant
  1422. sex:
  1423. name: Unknown
  1424. schemaKey: SexType
  1425. species:
  1426. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1427. name: Danio rerio - Zebra fish
  1428. schemaKey: SpeciesType
  1429. wasGeneratedBy:
  1430. - description: Hot Avoidance behavior
  1431. name: Acquisition session
  1432. schemaKey: Session
  1433. startDate: '2023-07-12T14:24:00-04:00'
  1434. - description: Metadata generated by DANDI cli
  1435. endDate: '2023-11-11T11:09:00.081812-05:00'
  1436. id: urn:uuid:77af5f89-4053-42c7-8ef9-928277c99e09
  1437. name: Metadata generation
  1438. schemaKey: Activity
  1439. startDate: '2023-11-11T11:09:00.041812-05:00'
  1440. wasAssociatedWith:
  1441. - identifier: RRID:SCR_019009
  1442. name: DANDI Command Line Interface
  1443. schemaKey: Software
  1444. url: https://github.com/dandi/dandi-cli
  1445. version: 0.58.0
  1446. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1447. access:
  1448. - schemaKey: AccessRequirements
  1449. status: dandi:OpenAccess
  1450. approach:
  1451. - name: behavioral approach
  1452. schemaKey: ApproachType
  1453. blobDateModified: '2023-11-10T11:55:18.600000-05:00'
  1454. contentSize: 9559052
  1455. contentUrl:
  1456. - https://api.dandiarchive.org/api/assets/f22df184-ddec-40f9-8dfe-3bdac457ab1b/download/
  1457. - https://dandiarchive.s3.amazonaws.com/blobs/483/6d3/4836d39b-32b1-4247-80ff-f2dba92c7e58
  1458. dateModified: '2023-11-11T11:08:59.842161-05:00'
  1459. datePublished: '2025-08-14T19:15:55.807899+00:00'
  1460. digest:
  1461. dandi:dandi-etag: 1be86e2c12f827f86649fb2596bfffee-1
  1462. dandi:sha2-256: 07365beb903424bd6b35615c5f5d8cff8b37b2c7979493d8a3a142a6e30cbf85
  1463. encodingFormat: application/x-nwb
  1464. id: dandiasset:f22df184-ddec-40f9-8dfe-3bdac457ab1b
  1465. identifier: f22df184-ddec-40f9-8dfe-3bdac457ab1b
  1466. measurementTechnique:
  1467. - name: analytical technique
  1468. schemaKey: MeasurementTechniqueType
  1469. - name: behavioral technique
  1470. schemaKey: MeasurementTechniqueType
  1471. path: sub-Temp-pref-F32-B32-6dpf-17-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-17-unsorted-nac_ses-20230712T133000_behavior.nwb
  1472. publishedBy:
  1473. endDate: '2025-08-14T19:15:55.807899+00:00'
  1474. id: urn:uuid:2e4af916-690c-41c1-8c83-6cdef9a5c6d5
  1475. name: DANDI publish
  1476. schemaKey: PublishActivity
  1477. startDate: '2025-08-14T19:15:55.807899+00:00'
  1478. wasAssociatedWith:
  1479. - id: urn:uuid:b971e079-7df9-4119-9f75-381bd8f42e02
  1480. identifier: RRID:SCR_017571
  1481. name: DANDI API
  1482. schemaKey: Software
  1483. version: 0.1.0
  1484. schemaKey: Asset
  1485. schemaVersion: 0.6.4
  1486. variableMeasured:
  1487. - schemaKey: PropertyValue
  1488. value: CompassDirection
  1489. - schemaKey: PropertyValue
  1490. value: BehavioralTimeSeries
  1491. - schemaKey: PropertyValue
  1492. value: Position
  1493. - schemaKey: PropertyValue
  1494. value: SpatialSeries
  1495. - schemaKey: PropertyValue
  1496. value: ProcessingModule
  1497. wasAttributedTo:
  1498. - age:
  1499. schemaKey: PropertyValue
  1500. unitText: ISO-8601 duration
  1501. value: P6DT48600S
  1502. valueReference:
  1503. schemaKey: PropertyValue
  1504. value: dandi:BirthReference
  1505. identifier: Temp_pref_F32_B32_6dpf_17_unsorted_nac
  1506. schemaKey: Participant
  1507. sex:
  1508. name: Unknown
  1509. schemaKey: SexType
  1510. species:
  1511. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1512. name: Danio rerio - Zebra fish
  1513. schemaKey: SpeciesType
  1514. wasGeneratedBy:
  1515. - description: Hot Avoidance behavior
  1516. name: Acquisition session
  1517. schemaKey: Session
  1518. startDate: '2023-07-12T13:30:00-04:00'
  1519. - description: Metadata generated by DANDI cli
  1520. endDate: '2023-11-11T11:08:59.842161-05:00'
  1521. id: urn:uuid:b0a2a128-7fc3-4fe2-ab81-cd62f8443527
  1522. name: Metadata generation
  1523. schemaKey: Activity
  1524. startDate: '2023-11-11T11:08:59.801816-05:00'
  1525. wasAssociatedWith:
  1526. - identifier: RRID:SCR_019009
  1527. name: DANDI Command Line Interface
  1528. schemaKey: Software
  1529. url: https://github.com/dandi/dandi-cli
  1530. version: 0.58.0
  1531. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1532. access:
  1533. - schemaKey: AccessRequirements
  1534. status: dandi:OpenAccess
  1535. approach:
  1536. - name: behavioral approach
  1537. schemaKey: ApproachType
  1538. blobDateModified: '2023-11-10T11:55:25.530000-05:00'
  1539. contentSize: 9550336
  1540. contentUrl:
  1541. - https://api.dandiarchive.org/api/assets/559d52c6-800a-460f-806d-9c943548397c/download/
  1542. - https://dandiarchive.s3.amazonaws.com/blobs/e06/c5f/e06c5f35-6613-4f88-becc-0056e201533a
  1543. dateModified: '2023-11-11T11:09:00.817658-05:00'
  1544. datePublished: '2025-08-14T19:15:55.815530+00:00'
  1545. digest:
  1546. dandi:dandi-etag: 377ef5a4d404c0bd1ac7600392af3b98-1
  1547. dandi:sha2-256: 1c33ec788123cce2b8c1eada4cceffd1e2c7a1180b8ba9ae6c80375b632f5324
  1548. encodingFormat: application/x-nwb
  1549. id: dandiasset:559d52c6-800a-460f-806d-9c943548397c
  1550. identifier: 559d52c6-800a-460f-806d-9c943548397c
  1551. measurementTechnique:
  1552. - name: analytical technique
  1553. schemaKey: MeasurementTechniqueType
  1554. - name: behavioral technique
  1555. schemaKey: MeasurementTechniqueType
  1556. path: sub-Temp-pref-F32-B32-6dpf-19-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-19-unsorted-nac_ses-20230712T145800_behavior.nwb
  1557. publishedBy:
  1558. endDate: '2025-08-14T19:15:55.815530+00:00'
  1559. id: urn:uuid:db3cc305-d2e6-4452-99fa-f1aa3cc1ad3b
  1560. name: DANDI publish
  1561. schemaKey: PublishActivity
  1562. startDate: '2025-08-14T19:15:55.815530+00:00'
  1563. wasAssociatedWith:
  1564. - id: urn:uuid:f2f5e52e-b8de-4bcf-874d-0b192a102da0
  1565. identifier: RRID:SCR_017571
  1566. name: DANDI API
  1567. schemaKey: Software
  1568. version: 0.1.0
  1569. schemaKey: Asset
  1570. schemaVersion: 0.6.4
  1571. variableMeasured:
  1572. - schemaKey: PropertyValue
  1573. value: CompassDirection
  1574. - schemaKey: PropertyValue
  1575. value: BehavioralTimeSeries
  1576. - schemaKey: PropertyValue
  1577. value: Position
  1578. - schemaKey: PropertyValue
  1579. value: SpatialSeries
  1580. - schemaKey: PropertyValue
  1581. value: ProcessingModule
  1582. wasAttributedTo:
  1583. - age:
  1584. schemaKey: PropertyValue
  1585. unitText: ISO-8601 duration
  1586. value: P6DT53880S
  1587. valueReference:
  1588. schemaKey: PropertyValue
  1589. value: dandi:BirthReference
  1590. identifier: Temp_pref_F32_B32_6dpf_19_unsorted_nac
  1591. schemaKey: Participant
  1592. sex:
  1593. name: Unknown
  1594. schemaKey: SexType
  1595. species:
  1596. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1597. name: Danio rerio - Zebra fish
  1598. schemaKey: SpeciesType
  1599. wasGeneratedBy:
  1600. - description: Hot Avoidance behavior
  1601. name: Acquisition session
  1602. schemaKey: Session
  1603. startDate: '2023-07-12T14:58:00-04:00'
  1604. - description: Metadata generated by DANDI cli
  1605. endDate: '2023-11-11T11:09:00.817658-05:00'
  1606. id: urn:uuid:cf649cad-1b05-4cb9-9098-967eaee7f241
  1607. name: Metadata generation
  1608. schemaKey: Activity
  1609. startDate: '2023-11-11T11:09:00.787658-05:00'
  1610. wasAssociatedWith:
  1611. - identifier: RRID:SCR_019009
  1612. name: DANDI Command Line Interface
  1613. schemaKey: Software
  1614. url: https://github.com/dandi/dandi-cli
  1615. version: 0.58.0
  1616. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1617. access:
  1618. - schemaKey: AccessRequirements
  1619. status: dandi:OpenAccess
  1620. approach:
  1621. - name: behavioral approach
  1622. schemaKey: ApproachType
  1623. blobDateModified: '2023-11-10T11:55:29.020000-05:00'
  1624. contentSize: 9511347
  1625. contentUrl:
  1626. - https://api.dandiarchive.org/api/assets/680deb2b-9604-459e-b9c1-3ddb5753b149/download/
  1627. - https://dandiarchive.s3.amazonaws.com/blobs/450/149/4501491e-a797-48fc-99d7-23b468868788
  1628. dateModified: '2023-11-11T11:09:00.817658-05:00'
  1629. datePublished: '2025-08-14T19:15:55.824668+00:00'
  1630. digest:
  1631. dandi:dandi-etag: 4d74eabe45567def5c0d4d0e41f058f5-1
  1632. dandi:sha2-256: 9938db92ea04b404bffce5f100f19e1347482eea1c1c8b98fc054267a44ededf
  1633. encodingFormat: application/x-nwb
  1634. id: dandiasset:680deb2b-9604-459e-b9c1-3ddb5753b149
  1635. identifier: 680deb2b-9604-459e-b9c1-3ddb5753b149
  1636. measurementTechnique:
  1637. - name: analytical technique
  1638. schemaKey: MeasurementTechniqueType
  1639. - name: behavioral technique
  1640. schemaKey: MeasurementTechniqueType
  1641. path: sub-Temp-pref-F32-B32-6dpf-20-unsorted-nac/sub-Temp-pref-F32-B32-6dpf-20-unsorted-nac_ses-20230712T153100_behavior.nwb
  1642. publishedBy:
  1643. endDate: '2025-08-14T19:15:55.824668+00:00'
  1644. id: urn:uuid:61c33248-c73b-4a61-91f3-469820d4d337
  1645. name: DANDI publish
  1646. schemaKey: PublishActivity
  1647. startDate: '2025-08-14T19:15:55.824668+00:00'
  1648. wasAssociatedWith:
  1649. - id: urn:uuid:062163c5-ab1b-45ed-958e-a8d9a19f5663
  1650. identifier: RRID:SCR_017571
  1651. name: DANDI API
  1652. schemaKey: Software
  1653. version: 0.1.0
  1654. schemaKey: Asset
  1655. schemaVersion: 0.6.4
  1656. variableMeasured:
  1657. - schemaKey: PropertyValue
  1658. value: CompassDirection
  1659. - schemaKey: PropertyValue
  1660. value: BehavioralTimeSeries
  1661. - schemaKey: PropertyValue
  1662. value: Position
  1663. - schemaKey: PropertyValue
  1664. value: SpatialSeries
  1665. - schemaKey: PropertyValue
  1666. value: ProcessingModule
  1667. wasAttributedTo:
  1668. - age:
  1669. schemaKey: PropertyValue
  1670. unitText: ISO-8601 duration
  1671. value: P6DT55860S
  1672. valueReference:
  1673. schemaKey: PropertyValue
  1674. value: dandi:BirthReference
  1675. identifier: Temp_pref_F32_B32_6dpf_20_unsorted_nac
  1676. schemaKey: Participant
  1677. sex:
  1678. name: Unknown
  1679. schemaKey: SexType
  1680. species:
  1681. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1682. name: Danio rerio - Zebra fish
  1683. schemaKey: SpeciesType
  1684. wasGeneratedBy:
  1685. - description: Hot Avoidance behavior
  1686. name: Acquisition session
  1687. schemaKey: Session
  1688. startDate: '2023-07-12T15:31:00-04:00'
  1689. - description: Metadata generated by DANDI cli
  1690. endDate: '2023-11-11T11:09:00.817658-05:00'
  1691. id: urn:uuid:e79fad32-c04e-43b2-832e-205dd5ceb352
  1692. name: Metadata generation
  1693. schemaKey: Activity
  1694. startDate: '2023-11-11T11:09:00.747659-05:00'
  1695. wasAssociatedWith:
  1696. - identifier: RRID:SCR_019009
  1697. name: DANDI Command Line Interface
  1698. schemaKey: Software
  1699. url: https://github.com/dandi/dandi-cli
  1700. version: 0.58.0
Tip!

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

Comments

Loading...