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 96 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
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
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:EmbargoedAccess
  5. approach:
  6. - name: behavioral approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2025-03-12T16:25:29.750000-04:00'
  9. contentSize: 10736909
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/7687541c-4ab1-4d0a-a94f-40de35a498e3/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/bbe/b4c/bbeb4cdf-9108-4348-bdce-20d307ce0188
  13. dateModified: '2025-04-28T10:55:42.972874-04:00'
  14. digest:
  15. dandi:dandi-etag: eca10eed93e615733a403d30ced736f4-1
  16. dandi:sha2-256: c928ae98cac8961a5ec99005c7a454739ecec8b7fd5e992ebe3babfe1e36d7f8
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:7687541c-4ab1-4d0a-a94f-40de35a498e3
  19. identifier: 7687541c-4ab1-4d0a-a94f-40de35a498e3
  20. measurementTechnique:
  21. - name: behavioral technique
  22. schemaKey: MeasurementTechniqueType
  23. - name: analytical technique
  24. schemaKey: MeasurementTechniqueType
  25. path: sub-acute-1-b20-f3-20250312-gcamp6s-#2025-3-12/sub-acute-1-b20-f3-20250312-gcamp6s-#2025-3-12_ses-20250312T133100_behavior.nwb
  26. schemaKey: Asset
  27. schemaVersion: 0.6.9
  28. variableMeasured:
  29. - schemaKey: PropertyValue
  30. value: BehavioralTimeSeries
  31. - schemaKey: PropertyValue
  32. value: CompassDirection
  33. - schemaKey: PropertyValue
  34. value: ProcessingModule
  35. - schemaKey: PropertyValue
  36. value: Position
  37. - schemaKey: PropertyValue
  38. value: SpatialSeries
  39. wasAttributedTo:
  40. - age:
  41. schemaKey: PropertyValue
  42. unitText: ISO-8601 duration
  43. value: P6DT45060S
  44. valueReference:
  45. schemaKey: PropertyValue
  46. value: dandi:BirthReference
  47. identifier: acute-1-b20-f3-20250312_gcamp6s_#2025_3_12
  48. schemaKey: Participant
  49. sex:
  50. name: Unknown
  51. schemaKey: SexType
  52. species:
  53. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  54. name: Danio rerio - Zebra fish
  55. schemaKey: SpeciesType
  56. wasGeneratedBy:
  57. - description: acute
  58. name: Acquisition session
  59. schemaKey: Session
  60. startDate: '2025-03-12T13:31:00-04:00'
  61. - description: Metadata generated by DANDI cli
  62. endDate: '2025-04-28T10:55:42.972846-04:00'
  63. id: urn:uuid:1e2bb6c4-68f3-41f0-882d-189091034840
  64. name: Metadata generation
  65. schemaKey: Activity
  66. startDate: '2025-04-28T10:55:42.969461-04:00'
  67. wasAssociatedWith:
  68. - identifier: RRID:SCR_019009
  69. name: DANDI Command Line Interface
  70. schemaKey: Software
  71. url: https://github.com/dandi/dandi-cli
  72. version: 0.66.7
  73. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  74. access:
  75. - schemaKey: AccessRequirements
  76. status: dandi:EmbargoedAccess
  77. approach:
  78. - name: behavioral approach
  79. schemaKey: ApproachType
  80. blobDateModified: '2025-03-21T14:34:52.330000-04:00'
  81. contentSize: 10400088
  82. contentUrl:
  83. - https://api.dandiarchive.org/api/assets/4d8180cb-675c-4c3e-b4ed-edacd91a0512/download/
  84. - https://dandiarchive.s3.amazonaws.com/blobs/e16/356/e1635626-a8cc-45db-9eec-b980575db32f
  85. dateModified: '2025-04-28T10:55:43.124717-04:00'
  86. digest:
  87. dandi:dandi-etag: 63be53db1371bcf27b3b7654e9702d43-1
  88. dandi:sha2-256: 76bd822dbae769a780e8744190d6dd26a69db94458b6dbfb9665f67d5be16825
  89. encodingFormat: application/x-nwb
  90. id: dandiasset:4d8180cb-675c-4c3e-b4ed-edacd91a0512
  91. identifier: 4d8180cb-675c-4c3e-b4ed-edacd91a0512
  92. measurementTechnique:
  93. - name: behavioral technique
  94. schemaKey: MeasurementTechniqueType
  95. - name: analytical technique
  96. schemaKey: MeasurementTechniqueType
  97. path: sub-acute-1-b20-f30-20250321-gcamp6s-#2025-3-21/sub-acute-1-b20-f30-20250321-gcamp6s-#2025-3-21_ses-20250321T111100_behavior.nwb
  98. schemaKey: Asset
  99. schemaVersion: 0.6.9
  100. variableMeasured:
  101. - schemaKey: PropertyValue
  102. value: BehavioralTimeSeries
  103. - schemaKey: PropertyValue
  104. value: CompassDirection
  105. - schemaKey: PropertyValue
  106. value: ProcessingModule
  107. - schemaKey: PropertyValue
  108. value: Position
  109. - schemaKey: PropertyValue
  110. value: SpatialSeries
  111. wasAttributedTo:
  112. - age:
  113. schemaKey: PropertyValue
  114. unitText: ISO-8601 duration
  115. value: P6DT40260S
  116. valueReference:
  117. schemaKey: PropertyValue
  118. value: dandi:BirthReference
  119. identifier: acute-1-b20-f30-20250321_gcamp6s_#2025_3_21
  120. schemaKey: Participant
  121. sex:
  122. name: Unknown
  123. schemaKey: SexType
  124. species:
  125. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  126. name: Danio rerio - Zebra fish
  127. schemaKey: SpeciesType
  128. wasGeneratedBy:
  129. - description: acute
  130. name: Acquisition session
  131. schemaKey: Session
  132. startDate: '2025-03-21T11:11:00-04:00'
  133. - description: Metadata generated by DANDI cli
  134. endDate: '2025-04-28T10:55:43.124694-04:00'
  135. id: urn:uuid:6885e31b-23fb-460f-a2b0-d04ae274015e
  136. name: Metadata generation
  137. schemaKey: Activity
  138. startDate: '2025-04-28T10:55:43.115731-04:00'
  139. wasAssociatedWith:
  140. - identifier: RRID:SCR_019009
  141. name: DANDI Command Line Interface
  142. schemaKey: Software
  143. url: https://github.com/dandi/dandi-cli
  144. version: 0.66.7
  145. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  146. access:
  147. - schemaKey: AccessRequirements
  148. status: dandi:EmbargoedAccess
  149. approach:
  150. - name: behavioral approach
  151. schemaKey: ApproachType
  152. blobDateModified: '2025-04-17T14:57:50.210000-04:00'
  153. contentSize: 10563306
  154. contentUrl:
  155. - https://api.dandiarchive.org/api/assets/842559dc-03de-4e44-9127-5fc4dab0bbcd/download/
  156. - https://dandiarchive.s3.amazonaws.com/blobs/4b6/0fe/4b60feb4-604f-4af6-8723-a066f76839b7
  157. dateModified: '2025-04-28T10:55:43.068398-04:00'
  158. digest:
  159. dandi:dandi-etag: 9cd8bce5acad1279aeab25daa3a5792e-1
  160. dandi:sha2-256: 8c8b73e7a08c9f2ecf501dda1b12bbf1ac4b41661ca60a2bdfb68b3256de798d
  161. encodingFormat: application/x-nwb
  162. id: dandiasset:842559dc-03de-4e44-9127-5fc4dab0bbcd
  163. identifier: 842559dc-03de-4e44-9127-5fc4dab0bbcd
  164. measurementTechnique:
  165. - name: behavioral technique
  166. schemaKey: MeasurementTechniqueType
  167. - name: analytical technique
  168. schemaKey: MeasurementTechniqueType
  169. path: sub-acute-1-b20-f3-20250417-gcamp6s-#2025-4-17/sub-acute-1-b20-f3-20250417-gcamp6s-#2025-4-17_ses-20250417T103800_behavior.nwb
  170. schemaKey: Asset
  171. schemaVersion: 0.6.9
  172. variableMeasured:
  173. - schemaKey: PropertyValue
  174. value: BehavioralTimeSeries
  175. - schemaKey: PropertyValue
  176. value: CompassDirection
  177. - schemaKey: PropertyValue
  178. value: ProcessingModule
  179. - schemaKey: PropertyValue
  180. value: Position
  181. - schemaKey: PropertyValue
  182. value: SpatialSeries
  183. wasAttributedTo:
  184. - age:
  185. schemaKey: PropertyValue
  186. unitText: ISO-8601 duration
  187. value: P6DT38280S
  188. valueReference:
  189. schemaKey: PropertyValue
  190. value: dandi:BirthReference
  191. identifier: acute-1-b20-f3-20250417_gcamp6s_#2025_4_17
  192. schemaKey: Participant
  193. sex:
  194. name: Unknown
  195. schemaKey: SexType
  196. species:
  197. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  198. name: Danio rerio - Zebra fish
  199. schemaKey: SpeciesType
  200. wasGeneratedBy:
  201. - description: acute
  202. name: Acquisition session
  203. schemaKey: Session
  204. startDate: '2025-04-17T10:38:00-04:00'
  205. - description: Metadata generated by DANDI cli
  206. endDate: '2025-04-28T10:55:43.068376-04:00'
  207. id: urn:uuid:84b2c235-96d5-4d42-a693-5340ca291f0d
  208. name: Metadata generation
  209. schemaKey: Activity
  210. startDate: '2025-04-28T10:55:43.064949-04:00'
  211. wasAssociatedWith:
  212. - identifier: RRID:SCR_019009
  213. name: DANDI Command Line Interface
  214. schemaKey: Software
  215. url: https://github.com/dandi/dandi-cli
  216. version: 0.66.7
  217. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  218. access:
  219. - schemaKey: AccessRequirements
  220. status: dandi:EmbargoedAccess
  221. approach:
  222. - name: behavioral approach
  223. schemaKey: ApproachType
  224. blobDateModified: '2025-04-25T14:53:07.510000-04:00'
  225. contentSize: 10566400
  226. contentUrl:
  227. - https://api.dandiarchive.org/api/assets/d7763c81-76b8-40df-8244-6b3247ded1fb/download/
  228. - https://dandiarchive.s3.amazonaws.com/blobs/822/223/82222383-b7e9-45e7-a873-09deb0262d12
  229. dateModified: '2025-04-28T10:55:43.125274-04:00'
  230. digest:
  231. dandi:dandi-etag: 78719958a175e6f7261fe1e501dcb096-1
  232. dandi:sha2-256: 21ef9a990422f6571bb9b3a03470055ae069f6e39a7e9409cc22b8dd03089c61
  233. encodingFormat: application/x-nwb
  234. id: dandiasset:d7763c81-76b8-40df-8244-6b3247ded1fb
  235. identifier: d7763c81-76b8-40df-8244-6b3247ded1fb
  236. measurementTechnique:
  237. - name: behavioral technique
  238. schemaKey: MeasurementTechniqueType
  239. - name: analytical technique
  240. schemaKey: MeasurementTechniqueType
  241. path: sub-acute-1-b20-f30-20250425-gcamp6s-#2025-4-25/sub-acute-1-b20-f30-20250425-gcamp6s-#2025-4-25_ses-20250425T111100_behavior.nwb
  242. schemaKey: Asset
  243. schemaVersion: 0.6.9
  244. variableMeasured:
  245. - schemaKey: PropertyValue
  246. value: BehavioralTimeSeries
  247. - schemaKey: PropertyValue
  248. value: CompassDirection
  249. - schemaKey: PropertyValue
  250. value: ProcessingModule
  251. - schemaKey: PropertyValue
  252. value: Position
  253. - schemaKey: PropertyValue
  254. value: SpatialSeries
  255. wasAttributedTo:
  256. - age:
  257. schemaKey: PropertyValue
  258. unitText: ISO-8601 duration
  259. value: P6DT40260S
  260. valueReference:
  261. schemaKey: PropertyValue
  262. value: dandi:BirthReference
  263. identifier: acute-1-b20-f30-20250425_gcamp6s_#2025_4_25
  264. schemaKey: Participant
  265. sex:
  266. name: Unknown
  267. schemaKey: SexType
  268. species:
  269. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  270. name: Danio rerio - Zebra fish
  271. schemaKey: SpeciesType
  272. wasGeneratedBy:
  273. - description: acute
  274. name: Acquisition session
  275. schemaKey: Session
  276. startDate: '2025-04-25T11:11:00-04:00'
  277. - description: Metadata generated by DANDI cli
  278. endDate: '2025-04-28T10:55:43.125253-04:00'
  279. id: urn:uuid:5d32f23d-4fd5-4c8c-8858-7f33f72c0410
  280. name: Metadata generation
  281. schemaKey: Activity
  282. startDate: '2025-04-28T10:55:43.120976-04:00'
  283. wasAssociatedWith:
  284. - identifier: RRID:SCR_019009
  285. name: DANDI Command Line Interface
  286. schemaKey: Software
  287. url: https://github.com/dandi/dandi-cli
  288. version: 0.66.7
  289. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  290. access:
  291. - schemaKey: AccessRequirements
  292. status: dandi:EmbargoedAccess
  293. approach:
  294. - name: behavioral approach
  295. schemaKey: ApproachType
  296. blobDateModified: '2025-02-27T15:05:48.020000-05:00'
  297. contentSize: 10567224
  298. contentUrl:
  299. - https://api.dandiarchive.org/api/assets/73c6f6be-c46d-46de-af7d-ca63c25141b9/download/
  300. - https://dandiarchive.s3.amazonaws.com/blobs/b9b/bd0/b9bbd0fc-9788-45b6-9141-07e18c15c8e9
  301. dateModified: '2025-04-28T10:55:43.067600-04:00'
  302. digest:
  303. dandi:dandi-etag: 27c64e6b42dd360e62d30f3d93305b1c-1
  304. dandi:sha2-256: 4564817b9f970e88ebe8c27b50cb51a0f96c6035dd16edefc59eea8da6a20e91
  305. encodingFormat: application/x-nwb
  306. id: dandiasset:73c6f6be-c46d-46de-af7d-ca63c25141b9
  307. identifier: 73c6f6be-c46d-46de-af7d-ca63c25141b9
  308. measurementTechnique:
  309. - name: behavioral technique
  310. schemaKey: MeasurementTechniqueType
  311. - name: analytical technique
  312. schemaKey: MeasurementTechniqueType
  313. path: sub-acute-1-b20-f30-20250227-gcamp6s-#2025-2-27/sub-acute-1-b20-f30-20250227-gcamp6s-#2025-2-27_ses-20250227T094900_behavior.nwb
  314. schemaKey: Asset
  315. schemaVersion: 0.6.9
  316. variableMeasured:
  317. - schemaKey: PropertyValue
  318. value: BehavioralTimeSeries
  319. - schemaKey: PropertyValue
  320. value: CompassDirection
  321. - schemaKey: PropertyValue
  322. value: ProcessingModule
  323. - schemaKey: PropertyValue
  324. value: Position
  325. - schemaKey: PropertyValue
  326. value: SpatialSeries
  327. wasAttributedTo:
  328. - age:
  329. schemaKey: PropertyValue
  330. unitText: ISO-8601 duration
  331. value: P5DT35340S
  332. valueReference:
  333. schemaKey: PropertyValue
  334. value: dandi:BirthReference
  335. identifier: acute-1-b20-f30-20250227_gcamp6s_#2025_2_27
  336. schemaKey: Participant
  337. sex:
  338. name: Unknown
  339. schemaKey: SexType
  340. species:
  341. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  342. name: Danio rerio - Zebra fish
  343. schemaKey: SpeciesType
  344. wasGeneratedBy:
  345. - description: acute
  346. name: Acquisition session
  347. schemaKey: Session
  348. startDate: '2025-02-27T09:49:00-05:00'
  349. - description: Metadata generated by DANDI cli
  350. endDate: '2025-04-28T10:55:43.067571-04:00'
  351. id: urn:uuid:53592d8b-d764-4db3-a349-94a36a731fac
  352. name: Metadata generation
  353. schemaKey: Activity
  354. startDate: '2025-04-28T10:55:43.058780-04:00'
  355. wasAssociatedWith:
  356. - identifier: RRID:SCR_019009
  357. name: DANDI Command Line Interface
  358. schemaKey: Software
  359. url: https://github.com/dandi/dandi-cli
  360. version: 0.66.7
  361. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  362. access:
  363. - schemaKey: AccessRequirements
  364. status: dandi:EmbargoedAccess
  365. approach:
  366. - name: behavioral approach
  367. schemaKey: ApproachType
  368. blobDateModified: '2025-02-27T15:04:17.790000-05:00'
  369. contentSize: 10638365
  370. contentUrl:
  371. - https://api.dandiarchive.org/api/assets/1e80dbef-a0a0-4378-8736-6ddb61e7f0c4/download/
  372. - https://dandiarchive.s3.amazonaws.com/blobs/3e5/3d5/3e53d5d9-ac81-4f17-9c30-9334fc0a2c63
  373. dateModified: '2025-04-28T10:55:45.904501-04:00'
  374. digest:
  375. dandi:dandi-etag: b116c43c62cad47d98d2b59b279a6ca3-1
  376. dandi:sha2-256: 1464b6f824d5aa8f84a5b5f39af052201ecdf4fad0fc3fb42bf6009bfaaa7df3
  377. encodingFormat: application/x-nwb
  378. id: dandiasset:1e80dbef-a0a0-4378-8736-6ddb61e7f0c4
  379. identifier: 1e80dbef-a0a0-4378-8736-6ddb61e7f0c4
  380. measurementTechnique:
  381. - name: behavioral technique
  382. schemaKey: MeasurementTechniqueType
  383. - name: analytical technique
  384. schemaKey: MeasurementTechniqueType
  385. path: sub-acute-2-b20-f30-20250227-gcamp6s-#2025-2-27/sub-acute-2-b20-f30-20250227-gcamp6s-#2025-2-27_ses-20250227T112100_behavior.nwb
  386. schemaKey: Asset
  387. schemaVersion: 0.6.9
  388. variableMeasured:
  389. - schemaKey: PropertyValue
  390. value: BehavioralTimeSeries
  391. - schemaKey: PropertyValue
  392. value: CompassDirection
  393. - schemaKey: PropertyValue
  394. value: ProcessingModule
  395. - schemaKey: PropertyValue
  396. value: Position
  397. - schemaKey: PropertyValue
  398. value: SpatialSeries
  399. wasAttributedTo:
  400. - age:
  401. schemaKey: PropertyValue
  402. unitText: ISO-8601 duration
  403. value: P5DT40860S
  404. valueReference:
  405. schemaKey: PropertyValue
  406. value: dandi:BirthReference
  407. identifier: acute-2-b20-f30-20250227_gcamp6s_#2025_2_27
  408. schemaKey: Participant
  409. sex:
  410. name: Unknown
  411. schemaKey: SexType
  412. species:
  413. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  414. name: Danio rerio - Zebra fish
  415. schemaKey: SpeciesType
  416. wasGeneratedBy:
  417. - description: acute
  418. name: Acquisition session
  419. schemaKey: Session
  420. startDate: '2025-02-27T11:21:00-05:00'
  421. - description: Metadata generated by DANDI cli
  422. endDate: '2025-04-28T10:55:45.904471-04:00'
  423. id: urn:uuid:a240b7d7-5c31-4dec-acd9-f5b529edeac0
  424. name: Metadata generation
  425. schemaKey: Activity
  426. startDate: '2025-04-28T10:55:45.880796-04:00'
  427. wasAssociatedWith:
  428. - identifier: RRID:SCR_019009
  429. name: DANDI Command Line Interface
  430. schemaKey: Software
  431. url: https://github.com/dandi/dandi-cli
  432. version: 0.66.7
  433. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  434. access:
  435. - schemaKey: AccessRequirements
  436. status: dandi:EmbargoedAccess
  437. approach:
  438. - name: behavioral approach
  439. schemaKey: ApproachType
  440. blobDateModified: '2025-04-25T14:52:05.500000-04:00'
  441. contentSize: 9700329
  442. contentUrl:
  443. - https://api.dandiarchive.org/api/assets/a9110576-26e7-40b8-85c4-dc1a2cce6aa5/download/
  444. - https://dandiarchive.s3.amazonaws.com/blobs/1ad/96b/1ad96b67-348a-4de4-bd54-222d1988015f
  445. dateModified: '2025-04-28T10:55:47.701630-04:00'
  446. digest:
  447. dandi:dandi-etag: 11aaeb4849b0ce48863bec6f1ae23772-1
  448. dandi:sha2-256: 663b296f04109f5e6065852440421611e6e2dcf1b724abc999fdacbae3b72f3e
  449. encodingFormat: application/x-nwb
  450. id: dandiasset:a9110576-26e7-40b8-85c4-dc1a2cce6aa5
  451. identifier: a9110576-26e7-40b8-85c4-dc1a2cce6aa5
  452. measurementTechnique:
  453. - name: behavioral technique
  454. schemaKey: MeasurementTechniqueType
  455. - name: analytical technique
  456. schemaKey: MeasurementTechniqueType
  457. path: sub-acute-2-b20-f30-20250425-gcamp6s-#2025-4-25/sub-acute-2-b20-f30-20250425-gcamp6s-#2025-4-25_ses-20250425T124600_behavior.nwb
  458. schemaKey: Asset
  459. schemaVersion: 0.6.9
  460. variableMeasured:
  461. - schemaKey: PropertyValue
  462. value: BehavioralTimeSeries
  463. - schemaKey: PropertyValue
  464. value: CompassDirection
  465. - schemaKey: PropertyValue
  466. value: ProcessingModule
  467. - schemaKey: PropertyValue
  468. value: Position
  469. - schemaKey: PropertyValue
  470. value: SpatialSeries
  471. wasAttributedTo:
  472. - age:
  473. schemaKey: PropertyValue
  474. unitText: ISO-8601 duration
  475. value: P6DT45960S
  476. valueReference:
  477. schemaKey: PropertyValue
  478. value: dandi:BirthReference
  479. identifier: acute-2-b20-f30-20250425_gcamp6s_#2025_4_25
  480. schemaKey: Participant
  481. sex:
  482. name: Unknown
  483. schemaKey: SexType
  484. species:
  485. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  486. name: Danio rerio - Zebra fish
  487. schemaKey: SpeciesType
  488. wasGeneratedBy:
  489. - description: acute
  490. name: Acquisition session
  491. schemaKey: Session
  492. startDate: '2025-04-25T12:46:00-04:00'
  493. - description: Metadata generated by DANDI cli
  494. endDate: '2025-04-28T10:55:47.701597-04:00'
  495. id: urn:uuid:000c31bd-66ec-4087-864c-98d7673816b5
  496. name: Metadata generation
  497. schemaKey: Activity
  498. startDate: '2025-04-28T10:55:47.679349-04:00'
  499. wasAssociatedWith:
  500. - identifier: RRID:SCR_019009
  501. name: DANDI Command Line Interface
  502. schemaKey: Software
  503. url: https://github.com/dandi/dandi-cli
  504. version: 0.66.7
  505. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  506. access:
  507. - schemaKey: AccessRequirements
  508. status: dandi:EmbargoedAccess
  509. approach:
  510. - name: behavioral approach
  511. schemaKey: ApproachType
  512. blobDateModified: '2025-03-14T13:57:53.790000-04:00'
  513. contentSize: 10744077
  514. contentUrl:
  515. - https://api.dandiarchive.org/api/assets/4106f4ea-34db-4b11-b98b-56c6da82b357/download/
  516. - https://dandiarchive.s3.amazonaws.com/blobs/e74/896/e74896b0-1cb2-4119-89c1-d495e49a53ef
  517. dateModified: '2025-04-28T10:55:47.893438-04:00'
  518. digest:
  519. dandi:dandi-etag: 18c10a3008adcab222b0138a22e82898-1
  520. dandi:sha2-256: 8c7fa8af264dc6476a554d524af79e1100b950a7e9df3c4b06cd657c4925f418
  521. encodingFormat: application/x-nwb
  522. id: dandiasset:4106f4ea-34db-4b11-b98b-56c6da82b357
  523. identifier: 4106f4ea-34db-4b11-b98b-56c6da82b357
  524. measurementTechnique:
  525. - name: behavioral technique
  526. schemaKey: MeasurementTechniqueType
  527. - name: analytical technique
  528. schemaKey: MeasurementTechniqueType
  529. path: sub-acute-b20-f3-20250314-gcamp6s-#2025-3-14/sub-acute-b20-f3-20250314-gcamp6s-#2025-3-14_ses-20250314T120700_behavior.nwb
  530. schemaKey: Asset
  531. schemaVersion: 0.6.9
  532. variableMeasured:
  533. - schemaKey: PropertyValue
  534. value: BehavioralTimeSeries
  535. - schemaKey: PropertyValue
  536. value: CompassDirection
  537. - schemaKey: PropertyValue
  538. value: ProcessingModule
  539. - schemaKey: PropertyValue
  540. value: Position
  541. - schemaKey: PropertyValue
  542. value: SpatialSeries
  543. wasAttributedTo:
  544. - age:
  545. schemaKey: PropertyValue
  546. unitText: ISO-8601 duration
  547. value: P6DT40020S
  548. valueReference:
  549. schemaKey: PropertyValue
  550. value: dandi:BirthReference
  551. identifier: acute-b20-f3-20250314_gcamp6s_#2025_3_14
  552. schemaKey: Participant
  553. sex:
  554. name: Unknown
  555. schemaKey: SexType
  556. species:
  557. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  558. name: Danio rerio - Zebra fish
  559. schemaKey: SpeciesType
  560. wasGeneratedBy:
  561. - description: acute
  562. name: Acquisition session
  563. schemaKey: Session
  564. startDate: '2025-03-14T12:07:00-04:00'
  565. - description: Metadata generated by DANDI cli
  566. endDate: '2025-04-28T10:55:47.893415-04:00'
  567. id: urn:uuid:374a1f80-c9a0-4759-8afa-fc5cf074128a
  568. name: Metadata generation
  569. schemaKey: Activity
  570. startDate: '2025-04-28T10:55:47.890876-04:00'
  571. wasAssociatedWith:
  572. - identifier: RRID:SCR_019009
  573. name: DANDI Command Line Interface
  574. schemaKey: Software
  575. url: https://github.com/dandi/dandi-cli
  576. version: 0.66.7
  577. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  578. access:
  579. - schemaKey: AccessRequirements
  580. status: dandi:EmbargoedAccess
  581. approach:
  582. - name: behavioral approach
  583. schemaKey: ApproachType
  584. blobDateModified: '2025-03-06T11:54:03.700000-05:00'
  585. contentSize: 10606280
  586. contentUrl:
  587. - https://api.dandiarchive.org/api/assets/38b9f216-f426-49ea-8a73-0045c3670f5f/download/
  588. - https://dandiarchive.s3.amazonaws.com/blobs/653/82c/65382c1c-fafe-4fa9-ba2f-d0076fe4d555
  589. dateModified: '2025-04-28T10:55:49.588461-04:00'
  590. digest:
  591. dandi:dandi-etag: bb7fedf59f729edef15bc50d5946b4eb-1
  592. dandi:sha2-256: 7f37d6d931fbc7ffb048d3064e3a3e45bc7db4adaaeb2d8df410ab38ae45c84b
  593. encodingFormat: application/x-nwb
  594. id: dandiasset:38b9f216-f426-49ea-8a73-0045c3670f5f
  595. identifier: 38b9f216-f426-49ea-8a73-0045c3670f5f
  596. measurementTechnique:
  597. - name: behavioral technique
  598. schemaKey: MeasurementTechniqueType
  599. - name: analytical technique
  600. schemaKey: MeasurementTechniqueType
  601. path: sub-acute-b20-f30-20250306-gcamp6s-#2025-3-6/sub-acute-b20-f30-20250306-gcamp6s-#2025-3-6_ses-20250306T110200_behavior.nwb
  602. schemaKey: Asset
  603. schemaVersion: 0.6.9
  604. variableMeasured:
  605. - schemaKey: PropertyValue
  606. value: BehavioralTimeSeries
  607. - schemaKey: PropertyValue
  608. value: CompassDirection
  609. - schemaKey: PropertyValue
  610. value: ProcessingModule
  611. - schemaKey: PropertyValue
  612. value: Position
  613. - schemaKey: PropertyValue
  614. value: SpatialSeries
  615. wasAttributedTo:
  616. - age:
  617. schemaKey: PropertyValue
  618. unitText: ISO-8601 duration
  619. value: P6DT39720S
  620. valueReference:
  621. schemaKey: PropertyValue
  622. value: dandi:BirthReference
  623. identifier: acute-b20-f30-20250306_gcamp6s_#2025_3_6
  624. schemaKey: Participant
  625. sex:
  626. name: Unknown
  627. schemaKey: SexType
  628. species:
  629. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  630. name: Danio rerio - Zebra fish
  631. schemaKey: SpeciesType
  632. wasGeneratedBy:
  633. - description: acute
  634. name: Acquisition session
  635. schemaKey: Session
  636. startDate: '2025-03-06T11:02:00-05:00'
  637. - description: Metadata generated by DANDI cli
  638. endDate: '2025-04-28T10:55:49.588435-04:00'
  639. id: urn:uuid:64f6835b-efd6-49ea-b15c-e45e20a37d59
  640. name: Metadata generation
  641. schemaKey: Activity
  642. startDate: '2025-04-28T10:55:49.585990-04:00'
  643. wasAssociatedWith:
  644. - identifier: RRID:SCR_019009
  645. name: DANDI Command Line Interface
  646. schemaKey: Software
  647. url: https://github.com/dandi/dandi-cli
  648. version: 0.66.7
  649. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  650. access:
  651. - schemaKey: AccessRequirements
  652. status: dandi:EmbargoedAccess
  653. approach:
  654. - name: behavioral approach
  655. schemaKey: ApproachType
  656. blobDateModified: '2025-04-14T14:27:34.230000-04:00'
  657. contentSize: 10566690
  658. contentUrl:
  659. - https://api.dandiarchive.org/api/assets/f058c8a2-afde-4aa6-8ff0-0c4ac12e5d0a/download/
  660. - https://dandiarchive.s3.amazonaws.com/blobs/1e4/0da/1e40da8a-f938-455a-a67c-1eeb489dac74
  661. dateModified: '2025-04-28T10:55:50.383536-04:00'
  662. digest:
  663. dandi:dandi-etag: a5200089077d21c414af6a335edc4e2d-1
  664. dandi:sha2-256: 0f84e7fafd2cb305b6c6abb1ba15bbf1c751a9359f9f83a0a52b00d2decf57dd
  665. encodingFormat: application/x-nwb
  666. id: dandiasset:f058c8a2-afde-4aa6-8ff0-0c4ac12e5d0a
  667. identifier: f058c8a2-afde-4aa6-8ff0-0c4ac12e5d0a
  668. measurementTechnique:
  669. - name: behavioral technique
  670. schemaKey: MeasurementTechniqueType
  671. - name: analytical technique
  672. schemaKey: MeasurementTechniqueType
  673. path: sub-acute-b20-f30-20250411-gcamp6s-#2025-4-11/sub-acute-b20-f30-20250411-gcamp6s-#2025-4-11_ses-20250411T104500_behavior.nwb
  674. schemaKey: Asset
  675. schemaVersion: 0.6.9
  676. variableMeasured:
  677. - schemaKey: PropertyValue
  678. value: BehavioralTimeSeries
  679. - schemaKey: PropertyValue
  680. value: CompassDirection
  681. - schemaKey: PropertyValue
  682. value: ProcessingModule
  683. - schemaKey: PropertyValue
  684. value: Position
  685. - schemaKey: PropertyValue
  686. value: SpatialSeries
  687. wasAttributedTo:
  688. - age:
  689. schemaKey: PropertyValue
  690. unitText: ISO-8601 duration
  691. value: P6DT38700S
  692. valueReference:
  693. schemaKey: PropertyValue
  694. value: dandi:BirthReference
  695. identifier: acute-b20-f30-20250411_gcamp6s_#2025_4_11
  696. schemaKey: Participant
  697. sex:
  698. name: Unknown
  699. schemaKey: SexType
  700. species:
  701. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  702. name: Danio rerio - Zebra fish
  703. schemaKey: SpeciesType
  704. wasGeneratedBy:
  705. - description: acute
  706. name: Acquisition session
  707. schemaKey: Session
  708. startDate: '2025-04-11T10:45:00-04:00'
  709. - description: Metadata generated by DANDI cli
  710. endDate: '2025-04-28T10:55:50.383511-04:00'
  711. id: urn:uuid:04c2f081-fe9e-4232-beb4-bad0cbf79d65
  712. name: Metadata generation
  713. schemaKey: Activity
  714. startDate: '2025-04-28T10:55:50.381083-04:00'
  715. wasAssociatedWith:
  716. - identifier: RRID:SCR_019009
  717. name: DANDI Command Line Interface
  718. schemaKey: Software
  719. url: https://github.com/dandi/dandi-cli
  720. version: 0.66.7
  721. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  722. access:
  723. - schemaKey: AccessRequirements
  724. status: dandi:EmbargoedAccess
  725. approach:
  726. - name: behavioral approach
  727. schemaKey: ApproachType
  728. blobDateModified: '2025-03-12T16:25:27.140000-04:00'
  729. contentSize: 10500890
  730. contentUrl:
  731. - https://api.dandiarchive.org/api/assets/317be947-cd7e-4891-a389-a9ff9701719d/download/
  732. - https://dandiarchive.s3.amazonaws.com/blobs/1c2/2f6/1c22f66d-0d0a-4eaf-aa6d-042c70d2e49d
  733. dateModified: '2025-04-28T10:55:51.687863-04:00'
  734. digest:
  735. dandi:dandi-etag: feba9aca684d38f9c02b336e2e1b2ebb-1
  736. dandi:sha2-256: d0d87d6842e964b47493b488d3930cf010e0cc59c0bfa928a0a78d2fbb8ceda6
  737. encodingFormat: application/x-nwb
  738. id: dandiasset:317be947-cd7e-4891-a389-a9ff9701719d
  739. identifier: 317be947-cd7e-4891-a389-a9ff9701719d
  740. measurementTechnique:
  741. - name: behavioral technique
  742. schemaKey: MeasurementTechniqueType
  743. - name: analytical technique
  744. schemaKey: MeasurementTechniqueType
  745. path: sub-chronic-1-b20-f3-20250312-gcamp6s-#2025-3-12/sub-chronic-1-b20-f3-20250312-gcamp6s-#2025-3-12_ses-20250312T130000_behavior.nwb
  746. schemaKey: Asset
  747. schemaVersion: 0.6.9
  748. variableMeasured:
  749. - schemaKey: PropertyValue
  750. value: BehavioralTimeSeries
  751. - schemaKey: PropertyValue
  752. value: CompassDirection
  753. - schemaKey: PropertyValue
  754. value: ProcessingModule
  755. - schemaKey: PropertyValue
  756. value: Position
  757. - schemaKey: PropertyValue
  758. value: SpatialSeries
  759. wasAttributedTo:
  760. - age:
  761. schemaKey: PropertyValue
  762. unitText: ISO-8601 duration
  763. value: P6DT43200S
  764. valueReference:
  765. schemaKey: PropertyValue
  766. value: dandi:BirthReference
  767. identifier: chronic-1-b20-f3-20250312_gcamp6s_#2025_3_12
  768. schemaKey: Participant
  769. sex:
  770. name: Unknown
  771. schemaKey: SexType
  772. species:
  773. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  774. name: Danio rerio - Zebra fish
  775. schemaKey: SpeciesType
  776. wasGeneratedBy:
  777. - description: chronic
  778. name: Acquisition session
  779. schemaKey: Session
  780. startDate: '2025-03-12T13:00:00-04:00'
  781. - description: Metadata generated by DANDI cli
  782. endDate: '2025-04-28T10:55:51.687840-04:00'
  783. id: urn:uuid:c69ac1b6-0764-416d-b59c-f31061d262c8
  784. name: Metadata generation
  785. schemaKey: Activity
  786. startDate: '2025-04-28T10:55:51.685436-04:00'
  787. wasAssociatedWith:
  788. - identifier: RRID:SCR_019009
  789. name: DANDI Command Line Interface
  790. schemaKey: Software
  791. url: https://github.com/dandi/dandi-cli
  792. version: 0.66.7
  793. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  794. access:
  795. - schemaKey: AccessRequirements
  796. status: dandi:EmbargoedAccess
  797. approach:
  798. - name: behavioral approach
  799. schemaKey: ApproachType
  800. blobDateModified: '2025-03-12T16:23:29.440000-04:00'
  801. contentSize: 10877476
  802. contentUrl:
  803. - https://api.dandiarchive.org/api/assets/e0a6caf3-afd2-42d8-a7d6-4123320037aa/download/
  804. - https://dandiarchive.s3.amazonaws.com/blobs/b18/522/b18522b0-9099-4030-b338-be9b92887d7e
  805. dateModified: '2025-04-28T10:55:45.741285-04:00'
  806. digest:
  807. dandi:dandi-etag: b011f7c0c010247d34136b5e5b9cef4e-1
  808. dandi:sha2-256: 265add4c59e495ab8a37eb52668037aeac657563cfe84bf648eacaa83d760270
  809. encodingFormat: application/x-nwb
  810. id: dandiasset:e0a6caf3-afd2-42d8-a7d6-4123320037aa
  811. identifier: e0a6caf3-afd2-42d8-a7d6-4123320037aa
  812. measurementTechnique:
  813. - name: behavioral technique
  814. schemaKey: MeasurementTechniqueType
  815. - name: analytical technique
  816. schemaKey: MeasurementTechniqueType
  817. path: sub-acute-2-b20-f3-20250312-gcamp6s-#2025-3-12/sub-acute-2-b20-f3-20250312-gcamp6s-#2025-3-12_ses-20250312T151000_behavior.nwb
  818. schemaKey: Asset
  819. schemaVersion: 0.6.9
  820. variableMeasured:
  821. - schemaKey: PropertyValue
  822. value: BehavioralTimeSeries
  823. - schemaKey: PropertyValue
  824. value: CompassDirection
  825. - schemaKey: PropertyValue
  826. value: ProcessingModule
  827. - schemaKey: PropertyValue
  828. value: Position
  829. - schemaKey: PropertyValue
  830. value: SpatialSeries
  831. wasAttributedTo:
  832. - age:
  833. schemaKey: PropertyValue
  834. unitText: ISO-8601 duration
  835. value: P6DT51000S
  836. valueReference:
  837. schemaKey: PropertyValue
  838. value: dandi:BirthReference
  839. identifier: acute-2-b20-f3-20250312_gcamp6s_#2025_3_12
  840. schemaKey: Participant
  841. sex:
  842. name: Unknown
  843. schemaKey: SexType
  844. species:
  845. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  846. name: Danio rerio - Zebra fish
  847. schemaKey: SpeciesType
  848. wasGeneratedBy:
  849. - description: acute
  850. name: Acquisition session
  851. schemaKey: Session
  852. startDate: '2025-03-12T15:10:00-04:00'
  853. - description: Metadata generated by DANDI cli
  854. endDate: '2025-04-28T10:55:45.741258-04:00'
  855. id: urn:uuid:fb03644c-95ae-42cd-a32f-ec501a659250
  856. name: Metadata generation
  857. schemaKey: Activity
  858. startDate: '2025-04-28T10:55:45.645021-04:00'
  859. wasAssociatedWith:
  860. - identifier: RRID:SCR_019009
  861. name: DANDI Command Line Interface
  862. schemaKey: Software
  863. url: https://github.com/dandi/dandi-cli
  864. version: 0.66.7
  865. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  866. access:
  867. - schemaKey: AccessRequirements
  868. status: dandi:EmbargoedAccess
  869. approach:
  870. - name: behavioral approach
  871. schemaKey: ApproachType
  872. blobDateModified: '2025-02-27T15:04:15.140000-05:00'
  873. contentSize: 10565725
  874. contentUrl:
  875. - https://api.dandiarchive.org/api/assets/5290b376-b29c-44e6-b40c-0ef37ee7b55d/download/
  876. - https://dandiarchive.s3.amazonaws.com/blobs/5f1/df5/5f1df5a6-edc8-4a2c-91a0-dd343d120a71
  877. dateModified: '2025-04-28T10:55:52.504325-04:00'
  878. digest:
  879. dandi:dandi-etag: 2f787a10424a6e6e014938b3ece679a4-1
  880. dandi:sha2-256: 26843efa0619b436810f8ec00facf34fc752c878b0ac6eaabc4fcd0b97b1deab
  881. encodingFormat: application/x-nwb
  882. id: dandiasset:5290b376-b29c-44e6-b40c-0ef37ee7b55d
  883. identifier: 5290b376-b29c-44e6-b40c-0ef37ee7b55d
  884. measurementTechnique:
  885. - name: behavioral technique
  886. schemaKey: MeasurementTechniqueType
  887. - name: analytical technique
  888. schemaKey: MeasurementTechniqueType
  889. path: sub-chronic-1-b20-f30-20250227-gcamp6s-#2025-2-27/sub-chronic-1-b20-f30-20250227-gcamp6s-#2025-2-27_ses-20250227T091700_behavior.nwb
  890. schemaKey: Asset
  891. schemaVersion: 0.6.9
  892. variableMeasured:
  893. - schemaKey: PropertyValue
  894. value: BehavioralTimeSeries
  895. - schemaKey: PropertyValue
  896. value: CompassDirection
  897. - schemaKey: PropertyValue
  898. value: ProcessingModule
  899. - schemaKey: PropertyValue
  900. value: Position
  901. - schemaKey: PropertyValue
  902. value: SpatialSeries
  903. wasAttributedTo:
  904. - age:
  905. schemaKey: PropertyValue
  906. unitText: ISO-8601 duration
  907. value: P5DT33420S
  908. valueReference:
  909. schemaKey: PropertyValue
  910. value: dandi:BirthReference
  911. identifier: chronic-1-b20-f30-20250227_gcamp6s_#2025_2_27
  912. schemaKey: Participant
  913. sex:
  914. name: Unknown
  915. schemaKey: SexType
  916. species:
  917. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  918. name: Danio rerio - Zebra fish
  919. schemaKey: SpeciesType
  920. wasGeneratedBy:
  921. - description: chronic
  922. name: Acquisition session
  923. schemaKey: Session
  924. startDate: '2025-02-27T09:17:00-05:00'
  925. - description: Metadata generated by DANDI cli
  926. endDate: '2025-04-28T10:55:52.504299-04:00'
  927. id: urn:uuid:7e3a1507-c932-434f-96a7-c6730f0ab7fe
  928. name: Metadata generation
  929. schemaKey: Activity
  930. startDate: '2025-04-28T10:55:52.501710-04:00'
  931. wasAssociatedWith:
  932. - identifier: RRID:SCR_019009
  933. name: DANDI Command Line Interface
  934. schemaKey: Software
  935. url: https://github.com/dandi/dandi-cli
  936. version: 0.66.7
  937. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  938. access:
  939. - schemaKey: AccessRequirements
  940. status: dandi:EmbargoedAccess
  941. approach:
  942. - name: behavioral approach
  943. schemaKey: ApproachType
  944. blobDateModified: '2025-03-21T14:35:57.260000-04:00'
  945. contentSize: 10542043
  946. contentUrl:
  947. - https://api.dandiarchive.org/api/assets/8489107f-41ea-4eb1-ab47-145720c6eb11/download/
  948. - https://dandiarchive.s3.amazonaws.com/blobs/b68/f92/b68f92f4-6f5f-4768-a4f0-19c78ca23e23
  949. dateModified: '2025-04-28T10:55:46.210140-04:00'
  950. digest:
  951. dandi:dandi-etag: 44341c6bdf465ae3b842c6c5155424b6-1
  952. dandi:sha2-256: 862de2941490b919e8454bf2cedf65e79b766fec8d1ae8663155ce70f1f702fa
  953. encodingFormat: application/x-nwb
  954. id: dandiasset:8489107f-41ea-4eb1-ab47-145720c6eb11
  955. identifier: 8489107f-41ea-4eb1-ab47-145720c6eb11
  956. measurementTechnique:
  957. - name: behavioral technique
  958. schemaKey: MeasurementTechniqueType
  959. - name: analytical technique
  960. schemaKey: MeasurementTechniqueType
  961. path: sub-acute-2-b20-f30-20250321-gcamp6s-#2025-3-21/sub-acute-2-b20-f30-20250321-gcamp6s-#2025-3-21_ses-20250321T124800_behavior.nwb
  962. schemaKey: Asset
  963. schemaVersion: 0.6.9
  964. variableMeasured:
  965. - schemaKey: PropertyValue
  966. value: BehavioralTimeSeries
  967. - schemaKey: PropertyValue
  968. value: CompassDirection
  969. - schemaKey: PropertyValue
  970. value: ProcessingModule
  971. - schemaKey: PropertyValue
  972. value: Position
  973. - schemaKey: PropertyValue
  974. value: SpatialSeries
  975. wasAttributedTo:
  976. - age:
  977. schemaKey: PropertyValue
  978. unitText: ISO-8601 duration
  979. value: P6DT46080S
  980. valueReference:
  981. schemaKey: PropertyValue
  982. value: dandi:BirthReference
  983. identifier: acute-2-b20-f30-20250321_gcamp6s_#2025_3_21
  984. schemaKey: Participant
  985. sex:
  986. name: Unknown
  987. schemaKey: SexType
  988. species:
  989. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  990. name: Danio rerio - Zebra fish
  991. schemaKey: SpeciesType
  992. wasGeneratedBy:
  993. - description: acute
  994. name: Acquisition session
  995. schemaKey: Session
  996. startDate: '2025-03-21T12:48:00-04:00'
  997. - description: Metadata generated by DANDI cli
  998. endDate: '2025-04-28T10:55:46.210115-04:00'
  999. id: urn:uuid:aed66b9c-af0d-4f27-a3f4-d865746bc2d2
  1000. name: Metadata generation
  1001. schemaKey: Activity
  1002. startDate: '2025-04-28T10:55:46.207636-04:00'
  1003. wasAssociatedWith:
  1004. - identifier: RRID:SCR_019009
  1005. name: DANDI Command Line Interface
  1006. schemaKey: Software
  1007. url: https://github.com/dandi/dandi-cli
  1008. version: 0.66.7
  1009. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1010. access:
  1011. - schemaKey: AccessRequirements
  1012. status: dandi:EmbargoedAccess
  1013. approach:
  1014. - name: behavioral approach
  1015. schemaKey: ApproachType
  1016. blobDateModified: '2025-03-21T14:35:54.590000-04:00'
  1017. contentSize: 10362735
  1018. contentUrl:
  1019. - https://api.dandiarchive.org/api/assets/eb7c076a-874f-425e-8acb-df5f2040b3ab/download/
  1020. - https://dandiarchive.s3.amazonaws.com/blobs/dd0/965/dd096591-4cb7-45af-8409-0705271c05a0
  1021. dateModified: '2025-04-28T10:55:53.941497-04:00'
  1022. digest:
  1023. dandi:dandi-etag: c02b423b56b924e125980b655d192357-1
  1024. dandi:sha2-256: d2a82870e4f12d48cb4939390935c3c0b508f0f46bedca341478aa6d7b11dd8c
  1025. encodingFormat: application/x-nwb
  1026. id: dandiasset:eb7c076a-874f-425e-8acb-df5f2040b3ab
  1027. identifier: eb7c076a-874f-425e-8acb-df5f2040b3ab
  1028. measurementTechnique:
  1029. - name: behavioral technique
  1030. schemaKey: MeasurementTechniqueType
  1031. - name: analytical technique
  1032. schemaKey: MeasurementTechniqueType
  1033. path: sub-chronic-1-b20-f30-20250321-gcamp6s-#2025-3-21/sub-chronic-1-b20-f30-20250321-gcamp6s-#2025-3-21_ses-20250321T114200_behavior.nwb
  1034. schemaKey: Asset
  1035. schemaVersion: 0.6.9
  1036. variableMeasured:
  1037. - schemaKey: PropertyValue
  1038. value: BehavioralTimeSeries
  1039. - schemaKey: PropertyValue
  1040. value: CompassDirection
  1041. - schemaKey: PropertyValue
  1042. value: ProcessingModule
  1043. - schemaKey: PropertyValue
  1044. value: Position
  1045. - schemaKey: PropertyValue
  1046. value: SpatialSeries
  1047. wasAttributedTo:
  1048. - age:
  1049. schemaKey: PropertyValue
  1050. unitText: ISO-8601 duration
  1051. value: P6DT42120S
  1052. valueReference:
  1053. schemaKey: PropertyValue
  1054. value: dandi:BirthReference
  1055. identifier: chronic-1-b20-f30-20250321_gcamp6s_#2025_3_21
  1056. schemaKey: Participant
  1057. sex:
  1058. name: Unknown
  1059. schemaKey: SexType
  1060. species:
  1061. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1062. name: Danio rerio - Zebra fish
  1063. schemaKey: SpeciesType
  1064. wasGeneratedBy:
  1065. - description: chronic
  1066. name: Acquisition session
  1067. schemaKey: Session
  1068. startDate: '2025-03-21T11:42:00-04:00'
  1069. - description: Metadata generated by DANDI cli
  1070. endDate: '2025-04-28T10:55:53.941470-04:00'
  1071. id: urn:uuid:cf32887b-d9f0-4ed0-899d-201a5d886fc0
  1072. name: Metadata generation
  1073. schemaKey: Activity
  1074. startDate: '2025-04-28T10:55:53.880172-04:00'
  1075. wasAssociatedWith:
  1076. - identifier: RRID:SCR_019009
  1077. name: DANDI Command Line Interface
  1078. schemaKey: Software
  1079. url: https://github.com/dandi/dandi-cli
  1080. version: 0.66.7
  1081. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1082. access:
  1083. - schemaKey: AccessRequirements
  1084. status: dandi:EmbargoedAccess
  1085. approach:
  1086. - name: behavioral approach
  1087. schemaKey: ApproachType
  1088. blobDateModified: '2025-04-17T14:56:39.700000-04:00'
  1089. contentSize: 10776299
  1090. contentUrl:
  1091. - https://api.dandiarchive.org/api/assets/fe5030d8-5d0a-4a8d-8921-8044743696f7/download/
  1092. - https://dandiarchive.s3.amazonaws.com/blobs/21e/0e8/21e0e86d-1cc5-4137-b013-279e324c83fc
  1093. dateModified: '2025-04-28T10:55:54.583337-04:00'
  1094. digest:
  1095. dandi:dandi-etag: 38a54f373a0dc1fae16c13c3e4239350-1
  1096. dandi:sha2-256: 06ae43a60cbaff928e0d4e7da8fbb67734076aaf02f1cb29d54da2d1a7119e48
  1097. encodingFormat: application/x-nwb
  1098. id: dandiasset:fe5030d8-5d0a-4a8d-8921-8044743696f7
  1099. identifier: fe5030d8-5d0a-4a8d-8921-8044743696f7
  1100. measurementTechnique:
  1101. - name: behavioral technique
  1102. schemaKey: MeasurementTechniqueType
  1103. - name: analytical technique
  1104. schemaKey: MeasurementTechniqueType
  1105. path: sub-chronic-1-b20-f30-20250417-gcamp6s-#2025-4-17/sub-chronic-1-b20-f30-20250417-gcamp6s-#2025-4-17_ses-20250417T110900_behavior.nwb
  1106. schemaKey: Asset
  1107. schemaVersion: 0.6.9
  1108. variableMeasured:
  1109. - schemaKey: PropertyValue
  1110. value: BehavioralTimeSeries
  1111. - schemaKey: PropertyValue
  1112. value: CompassDirection
  1113. - schemaKey: PropertyValue
  1114. value: ProcessingModule
  1115. - schemaKey: PropertyValue
  1116. value: Position
  1117. - schemaKey: PropertyValue
  1118. value: SpatialSeries
  1119. wasAttributedTo:
  1120. - age:
  1121. schemaKey: PropertyValue
  1122. unitText: ISO-8601 duration
  1123. value: P6DT40140S
  1124. valueReference:
  1125. schemaKey: PropertyValue
  1126. value: dandi:BirthReference
  1127. identifier: chronic-1-b20-f30-20250417_gcamp6s_#2025_4_17
  1128. schemaKey: Participant
  1129. sex:
  1130. name: Unknown
  1131. schemaKey: SexType
  1132. species:
  1133. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1134. name: Danio rerio - Zebra fish
  1135. schemaKey: SpeciesType
  1136. wasGeneratedBy:
  1137. - description: chronic
  1138. name: Acquisition session
  1139. schemaKey: Session
  1140. startDate: '2025-04-17T11:09:00-04:00'
  1141. - description: Metadata generated by DANDI cli
  1142. endDate: '2025-04-28T10:55:54.583313-04:00'
  1143. id: urn:uuid:df1567c5-328e-4e82-9fd5-043ddd561f55
  1144. name: Metadata generation
  1145. schemaKey: Activity
  1146. startDate: '2025-04-28T10:55:54.579580-04:00'
  1147. wasAssociatedWith:
  1148. - identifier: RRID:SCR_019009
  1149. name: DANDI Command Line Interface
  1150. schemaKey: Software
  1151. url: https://github.com/dandi/dandi-cli
  1152. version: 0.66.7
  1153. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1154. access:
  1155. - schemaKey: AccessRequirements
  1156. status: dandi:EmbargoedAccess
  1157. approach:
  1158. - name: behavioral approach
  1159. schemaKey: ApproachType
  1160. blobDateModified: '2025-04-25T14:53:11.520000-04:00'
  1161. contentSize: 10813713
  1162. contentUrl:
  1163. - https://api.dandiarchive.org/api/assets/2b953244-6b8f-4ccd-aa10-7fda36937331/download/
  1164. - https://dandiarchive.s3.amazonaws.com/blobs/3f5/919/3f59190c-43c0-40be-94db-815c0c962522
  1165. dateModified: '2025-04-28T10:55:54.890471-04:00'
  1166. digest:
  1167. dandi:dandi-etag: 619483081d0cc5dc04bafea6a38a3a00-1
  1168. dandi:sha2-256: 84b9807e2407e710dc964c27fce914e1e65f25e87918444bd37918a501e19de6
  1169. encodingFormat: application/x-nwb
  1170. id: dandiasset:2b953244-6b8f-4ccd-aa10-7fda36937331
  1171. identifier: 2b953244-6b8f-4ccd-aa10-7fda36937331
  1172. measurementTechnique:
  1173. - name: behavioral technique
  1174. schemaKey: MeasurementTechniqueType
  1175. - name: analytical technique
  1176. schemaKey: MeasurementTechniqueType
  1177. path: sub-chronic-1-b20-f30-20250425-gcamp6s-#2025-4-25/sub-chronic-1-b20-f30-20250425-gcamp6s-#2025-4-25_ses-20250425T114200_behavior.nwb
  1178. schemaKey: Asset
  1179. schemaVersion: 0.6.9
  1180. variableMeasured:
  1181. - schemaKey: PropertyValue
  1182. value: BehavioralTimeSeries
  1183. - schemaKey: PropertyValue
  1184. value: CompassDirection
  1185. - schemaKey: PropertyValue
  1186. value: ProcessingModule
  1187. - schemaKey: PropertyValue
  1188. value: Position
  1189. - schemaKey: PropertyValue
  1190. value: SpatialSeries
  1191. wasAttributedTo:
  1192. - age:
  1193. schemaKey: PropertyValue
  1194. unitText: ISO-8601 duration
  1195. value: P6DT42120S
  1196. valueReference:
  1197. schemaKey: PropertyValue
  1198. value: dandi:BirthReference
  1199. identifier: chronic-1-b20-f30-20250425_gcamp6s_#2025_4_25
  1200. schemaKey: Participant
  1201. sex:
  1202. name: Unknown
  1203. schemaKey: SexType
  1204. species:
  1205. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1206. name: Danio rerio - Zebra fish
  1207. schemaKey: SpeciesType
  1208. wasGeneratedBy:
  1209. - description: chronic
  1210. name: Acquisition session
  1211. schemaKey: Session
  1212. startDate: '2025-04-25T11:42:00-04:00'
  1213. - description: Metadata generated by DANDI cli
  1214. endDate: '2025-04-28T10:55:54.890442-04:00'
  1215. id: urn:uuid:84f056f3-87e0-46aa-affe-5c1e7648d913
  1216. name: Metadata generation
  1217. schemaKey: Activity
  1218. startDate: '2025-04-28T10:55:54.813778-04:00'
  1219. wasAssociatedWith:
  1220. - identifier: RRID:SCR_019009
  1221. name: DANDI Command Line Interface
  1222. schemaKey: Software
  1223. url: https://github.com/dandi/dandi-cli
  1224. version: 0.66.7
  1225. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1226. access:
  1227. - schemaKey: AccessRequirements
  1228. status: dandi:EmbargoedAccess
  1229. approach:
  1230. - name: behavioral approach
  1231. schemaKey: ApproachType
  1232. blobDateModified: '2025-03-12T16:24:42.860000-04:00'
  1233. contentSize: 10633035
  1234. contentUrl:
  1235. - https://api.dandiarchive.org/api/assets/3e6f05e2-6ac3-454f-bf28-ffc0b7b78170/download/
  1236. - https://dandiarchive.s3.amazonaws.com/blobs/74d/7c2/74d7c2be-f638-42da-8073-9ac676d6fe8b
  1237. dateModified: '2025-04-28T10:55:55.185754-04:00'
  1238. digest:
  1239. dandi:dandi-etag: 179b5203338758f37ff36e0c3e127bce-1
  1240. dandi:sha2-256: d5719c98ca46647dfa592345b6e3ba171e85b64de54a5835d162f16422269b35
  1241. encodingFormat: application/x-nwb
  1242. id: dandiasset:3e6f05e2-6ac3-454f-bf28-ffc0b7b78170
  1243. identifier: 3e6f05e2-6ac3-454f-bf28-ffc0b7b78170
  1244. measurementTechnique:
  1245. - name: behavioral technique
  1246. schemaKey: MeasurementTechniqueType
  1247. - name: analytical technique
  1248. schemaKey: MeasurementTechniqueType
  1249. path: sub-chronic-2-b20-f3-20250312-gcamp6s-#2025-3-12/sub-chronic-2-b20-f3-20250312-gcamp6s-#2025-3-12_ses-20250312T143400_behavior.nwb
  1250. schemaKey: Asset
  1251. schemaVersion: 0.6.9
  1252. variableMeasured:
  1253. - schemaKey: PropertyValue
  1254. value: BehavioralTimeSeries
  1255. - schemaKey: PropertyValue
  1256. value: CompassDirection
  1257. - schemaKey: PropertyValue
  1258. value: ProcessingModule
  1259. - schemaKey: PropertyValue
  1260. value: Position
  1261. - schemaKey: PropertyValue
  1262. value: SpatialSeries
  1263. wasAttributedTo:
  1264. - age:
  1265. schemaKey: PropertyValue
  1266. unitText: ISO-8601 duration
  1267. value: P6DT48840S
  1268. valueReference:
  1269. schemaKey: PropertyValue
  1270. value: dandi:BirthReference
  1271. identifier: chronic-2-b20-f3-20250312_gcamp6s_#2025_3_12
  1272. schemaKey: Participant
  1273. sex:
  1274. name: Unknown
  1275. schemaKey: SexType
  1276. species:
  1277. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1278. name: Danio rerio - Zebra fish
  1279. schemaKey: SpeciesType
  1280. wasGeneratedBy:
  1281. - description: chronic
  1282. name: Acquisition session
  1283. schemaKey: Session
  1284. startDate: '2025-03-12T14:34:00-04:00'
  1285. - description: Metadata generated by DANDI cli
  1286. endDate: '2025-04-28T10:55:55.185731-04:00'
  1287. id: urn:uuid:10fd7609-b6ad-49dd-9a1d-dd0624942067
  1288. name: Metadata generation
  1289. schemaKey: Activity
  1290. startDate: '2025-04-28T10:55:55.183299-04:00'
  1291. wasAssociatedWith:
  1292. - identifier: RRID:SCR_019009
  1293. name: DANDI Command Line Interface
  1294. schemaKey: Software
  1295. url: https://github.com/dandi/dandi-cli
  1296. version: 0.66.7
  1297. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1298. access:
  1299. - schemaKey: AccessRequirements
  1300. status: dandi:EmbargoedAccess
  1301. approach:
  1302. - name: behavioral approach
  1303. schemaKey: ApproachType
  1304. blobDateModified: '2025-02-27T15:05:45.390000-05:00'
  1305. contentSize: 10719033
  1306. contentUrl:
  1307. - https://api.dandiarchive.org/api/assets/d942e4ce-b7ec-41d5-907d-b9430dc9dc4d/download/
  1308. - https://dandiarchive.s3.amazonaws.com/blobs/a52/6f7/a526f78c-4932-4e4f-a392-6e8d825226be
  1309. dateModified: '2025-04-28T10:55:55.862668-04:00'
  1310. digest:
  1311. dandi:dandi-etag: 7d886940bc13510e192e28ae138638a5-1
  1312. dandi:sha2-256: e382fdade28f8bdc8690f6646cf21343bbebad69550b1b88e74a67c5f3272fe3
  1313. encodingFormat: application/x-nwb
  1314. id: dandiasset:d942e4ce-b7ec-41d5-907d-b9430dc9dc4d
  1315. identifier: d942e4ce-b7ec-41d5-907d-b9430dc9dc4d
  1316. measurementTechnique:
  1317. - name: behavioral technique
  1318. schemaKey: MeasurementTechniqueType
  1319. - name: analytical technique
  1320. schemaKey: MeasurementTechniqueType
  1321. path: sub-chronic-2-b20-f30-20250227-gcamp6s-#2025-2-27/sub-chronic-2-b20-f30-20250227-gcamp6s-#2025-2-27_ses-20250227T104900_behavior.nwb
  1322. schemaKey: Asset
  1323. schemaVersion: 0.6.9
  1324. variableMeasured:
  1325. - schemaKey: PropertyValue
  1326. value: BehavioralTimeSeries
  1327. - schemaKey: PropertyValue
  1328. value: CompassDirection
  1329. - schemaKey: PropertyValue
  1330. value: ProcessingModule
  1331. - schemaKey: PropertyValue
  1332. value: Position
  1333. - schemaKey: PropertyValue
  1334. value: SpatialSeries
  1335. wasAttributedTo:
  1336. - age:
  1337. schemaKey: PropertyValue
  1338. unitText: ISO-8601 duration
  1339. value: P5DT38940S
  1340. valueReference:
  1341. schemaKey: PropertyValue
  1342. value: dandi:BirthReference
  1343. identifier: chronic-2-b20-f30-20250227_gcamp6s_#2025_2_27
  1344. schemaKey: Participant
  1345. sex:
  1346. name: Unknown
  1347. schemaKey: SexType
  1348. species:
  1349. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1350. name: Danio rerio - Zebra fish
  1351. schemaKey: SpeciesType
  1352. wasGeneratedBy:
  1353. - description: chronic
  1354. name: Acquisition session
  1355. schemaKey: Session
  1356. startDate: '2025-02-27T10:49:00-05:00'
  1357. - description: Metadata generated by DANDI cli
  1358. endDate: '2025-04-28T10:55:55.862641-04:00'
  1359. id: urn:uuid:b28b0b76-a41d-48c9-9c64-c0a6a5364533
  1360. name: Metadata generation
  1361. schemaKey: Activity
  1362. startDate: '2025-04-28T10:55:55.859809-04:00'
  1363. wasAssociatedWith:
  1364. - identifier: RRID:SCR_019009
  1365. name: DANDI Command Line Interface
  1366. schemaKey: Software
  1367. url: https://github.com/dandi/dandi-cli
  1368. version: 0.66.7
  1369. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1370. access:
  1371. - schemaKey: AccessRequirements
  1372. status: dandi:EmbargoedAccess
  1373. approach:
  1374. - name: behavioral approach
  1375. schemaKey: ApproachType
  1376. blobDateModified: '2025-04-17T14:57:53.360000-04:00'
  1377. contentSize: 10893876
  1378. contentUrl:
  1379. - https://api.dandiarchive.org/api/assets/902da955-dc49-42a1-9f25-3b680c03f844/download/
  1380. - https://dandiarchive.s3.amazonaws.com/blobs/b7a/378/b7a378b0-4063-4fcd-a4a8-18c3d850e3e1
  1381. dateModified: '2025-04-28T10:55:57.523721-04:00'
  1382. digest:
  1383. dandi:dandi-etag: 32f3d5420698d9622ed941053804c180-1
  1384. dandi:sha2-256: 76d50ee190f22fb7ffd76fd4d006596190cd8ce757c5c67598bf284c06cd06b8
  1385. encodingFormat: application/x-nwb
  1386. id: dandiasset:902da955-dc49-42a1-9f25-3b680c03f844
  1387. identifier: 902da955-dc49-42a1-9f25-3b680c03f844
  1388. measurementTechnique:
  1389. - name: behavioral technique
  1390. schemaKey: MeasurementTechniqueType
  1391. - name: analytical technique
  1392. schemaKey: MeasurementTechniqueType
  1393. path: sub-chronic-2-b20-f30-20250417-gcamp6s-#2025-4-17/sub-chronic-2-b20-f30-20250417-gcamp6s-#2025-4-17_ses-20250417T124300_behavior.nwb
  1394. schemaKey: Asset
  1395. schemaVersion: 0.6.9
  1396. variableMeasured:
  1397. - schemaKey: PropertyValue
  1398. value: BehavioralTimeSeries
  1399. - schemaKey: PropertyValue
  1400. value: CompassDirection
  1401. - schemaKey: PropertyValue
  1402. value: ProcessingModule
  1403. - schemaKey: PropertyValue
  1404. value: Position
  1405. - schemaKey: PropertyValue
  1406. value: SpatialSeries
  1407. wasAttributedTo:
  1408. - age:
  1409. schemaKey: PropertyValue
  1410. unitText: ISO-8601 duration
  1411. value: P6DT45780S
  1412. valueReference:
  1413. schemaKey: PropertyValue
  1414. value: dandi:BirthReference
  1415. identifier: chronic-2-b20-f30-20250417_gcamp6s_#2025_4_17
  1416. schemaKey: Participant
  1417. sex:
  1418. name: Unknown
  1419. schemaKey: SexType
  1420. species:
  1421. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1422. name: Danio rerio - Zebra fish
  1423. schemaKey: SpeciesType
  1424. wasGeneratedBy:
  1425. - description: chronic
  1426. name: Acquisition session
  1427. schemaKey: Session
  1428. startDate: '2025-04-17T12:43:00-04:00'
  1429. - description: Metadata generated by DANDI cli
  1430. endDate: '2025-04-28T10:55:57.523691-04:00'
  1431. id: urn:uuid:8bfb7296-4e16-45ba-8426-94041dbfb40f
  1432. name: Metadata generation
  1433. schemaKey: Activity
  1434. startDate: '2025-04-28T10:55:57.454183-04:00'
  1435. wasAssociatedWith:
  1436. - identifier: RRID:SCR_019009
  1437. name: DANDI Command Line Interface
  1438. schemaKey: Software
  1439. url: https://github.com/dandi/dandi-cli
  1440. version: 0.66.7
  1441. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1442. access:
  1443. - schemaKey: AccessRequirements
  1444. status: dandi:EmbargoedAccess
  1445. approach:
  1446. - name: behavioral approach
  1447. schemaKey: ApproachType
  1448. blobDateModified: '2025-03-06T11:54:00.810000-05:00'
  1449. contentSize: 10593971
  1450. contentUrl:
  1451. - https://api.dandiarchive.org/api/assets/7133dd66-0032-4a30-bb10-a8b600c217ea/download/
  1452. - https://dandiarchive.s3.amazonaws.com/blobs/db3/4df/db34df52-fefb-4c67-a867-3e5ef2c655a5
  1453. dateModified: '2025-04-28T10:55:58.939162-04:00'
  1454. digest:
  1455. dandi:dandi-etag: cede991d3ffff4ddd5a194445b1809b2-1
  1456. dandi:sha2-256: 731d20cb793798904a2646b52615cfd7ba1ad306ab97df64445c6174f39177ea
  1457. encodingFormat: application/x-nwb
  1458. id: dandiasset:7133dd66-0032-4a30-bb10-a8b600c217ea
  1459. identifier: 7133dd66-0032-4a30-bb10-a8b600c217ea
  1460. measurementTechnique:
  1461. - name: behavioral technique
  1462. schemaKey: MeasurementTechniqueType
  1463. - name: analytical technique
  1464. schemaKey: MeasurementTechniqueType
  1465. path: sub-chronic-b20-f30-20250306-gcamp6s-#2025-3-6/sub-chronic-b20-f30-20250306-gcamp6s-#2025-3-6_ses-20250306T095700_behavior.nwb
  1466. schemaKey: Asset
  1467. schemaVersion: 0.6.9
  1468. variableMeasured:
  1469. - schemaKey: PropertyValue
  1470. value: BehavioralTimeSeries
  1471. - schemaKey: PropertyValue
  1472. value: CompassDirection
  1473. - schemaKey: PropertyValue
  1474. value: ProcessingModule
  1475. - schemaKey: PropertyValue
  1476. value: Position
  1477. - schemaKey: PropertyValue
  1478. value: SpatialSeries
  1479. wasAttributedTo:
  1480. - age:
  1481. schemaKey: PropertyValue
  1482. unitText: ISO-8601 duration
  1483. value: P6DT35820S
  1484. valueReference:
  1485. schemaKey: PropertyValue
  1486. value: dandi:BirthReference
  1487. identifier: chronic-b20-f30-20250306_gcamp6s_#2025_3_6
  1488. schemaKey: Participant
  1489. sex:
  1490. name: Unknown
  1491. schemaKey: SexType
  1492. species:
  1493. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1494. name: Danio rerio - Zebra fish
  1495. schemaKey: SpeciesType
  1496. wasGeneratedBy:
  1497. - description: chronic
  1498. name: Acquisition session
  1499. schemaKey: Session
  1500. startDate: '2025-03-06T09:57:00-05:00'
  1501. - description: Metadata generated by DANDI cli
  1502. endDate: '2025-04-28T10:55:58.939138-04:00'
  1503. id: urn:uuid:e159e150-ee50-4503-9cad-56a19798a6e8
  1504. name: Metadata generation
  1505. schemaKey: Activity
  1506. startDate: '2025-04-28T10:55:58.936651-04:00'
  1507. wasAssociatedWith:
  1508. - identifier: RRID:SCR_019009
  1509. name: DANDI Command Line Interface
  1510. schemaKey: Software
  1511. url: https://github.com/dandi/dandi-cli
  1512. version: 0.66.7
  1513. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1514. access:
  1515. - schemaKey: AccessRequirements
  1516. status: dandi:EmbargoedAccess
  1517. approach:
  1518. - name: behavioral approach
  1519. schemaKey: ApproachType
  1520. blobDateModified: '2025-04-14T14:27:31.170000-04:00'
  1521. contentSize: 10276018
  1522. contentUrl:
  1523. - https://api.dandiarchive.org/api/assets/f7b194d3-b1c5-4a38-ac2f-06647658c297/download/
  1524. - https://dandiarchive.s3.amazonaws.com/blobs/9b6/d70/9b6d70be-d037-4ca9-b75f-cfb33902a2b1
  1525. dateModified: '2025-04-28T10:55:59.541608-04:00'
  1526. digest:
  1527. dandi:dandi-etag: f01133a63963362d60c39a1066d657f6-1
  1528. dandi:sha2-256: a585431e7b93a9e46c97ddd1cc873fa06492304d9bcc581c7f9c53d030cf5d04
  1529. encodingFormat: application/x-nwb
  1530. id: dandiasset:f7b194d3-b1c5-4a38-ac2f-06647658c297
  1531. identifier: f7b194d3-b1c5-4a38-ac2f-06647658c297
  1532. measurementTechnique:
  1533. - name: behavioral technique
  1534. schemaKey: MeasurementTechniqueType
  1535. - name: analytical technique
  1536. schemaKey: MeasurementTechniqueType
  1537. path: sub-chronic-b20-f30-20250411-gcamp6s-#2025-4-11/sub-chronic-b20-f30-20250411-gcamp6s-#2025-4-11_ses-20250411T114800_behavior.nwb
  1538. schemaKey: Asset
  1539. schemaVersion: 0.6.9
  1540. variableMeasured:
  1541. - schemaKey: PropertyValue
  1542. value: BehavioralTimeSeries
  1543. - schemaKey: PropertyValue
  1544. value: CompassDirection
  1545. - schemaKey: PropertyValue
  1546. value: ProcessingModule
  1547. - schemaKey: PropertyValue
  1548. value: Position
  1549. - schemaKey: PropertyValue
  1550. value: SpatialSeries
  1551. wasAttributedTo:
  1552. - age:
  1553. schemaKey: PropertyValue
  1554. unitText: ISO-8601 duration
  1555. value: P6DT42480S
  1556. valueReference:
  1557. schemaKey: PropertyValue
  1558. value: dandi:BirthReference
  1559. identifier: chronic-b20-f30-20250411_gcamp6s_#2025_4_11
  1560. schemaKey: Participant
  1561. sex:
  1562. name: Unknown
  1563. schemaKey: SexType
  1564. species:
  1565. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1566. name: Danio rerio - Zebra fish
  1567. schemaKey: SpeciesType
  1568. wasGeneratedBy:
  1569. - description: chronic
  1570. name: Acquisition session
  1571. schemaKey: Session
  1572. startDate: '2025-04-11T11:48:00-04:00'
  1573. - description: Metadata generated by DANDI cli
  1574. endDate: '2025-04-28T10:55:59.541585-04:00'
  1575. id: urn:uuid:a195bd95-7afe-42a4-8c60-18a6431c813a
  1576. name: Metadata generation
  1577. schemaKey: Activity
  1578. startDate: '2025-04-28T10:55:59.539119-04:00'
  1579. wasAssociatedWith:
  1580. - identifier: RRID:SCR_019009
  1581. name: DANDI Command Line Interface
  1582. schemaKey: Software
  1583. url: https://github.com/dandi/dandi-cli
  1584. version: 0.66.7
  1585. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1586. access:
  1587. - schemaKey: AccessRequirements
  1588. status: dandi:EmbargoedAccess
  1589. approach:
  1590. - name: behavioral approach
  1591. schemaKey: ApproachType
  1592. blobDateModified: '2025-03-21T14:34:49.720000-04:00'
  1593. contentSize: 10337957
  1594. contentUrl:
  1595. - https://api.dandiarchive.org/api/assets/84ab8445-8d12-4abb-88ca-79db9f0868e7/download/
  1596. - https://dandiarchive.s3.amazonaws.com/blobs/fa1/feb/fa1feba1-0787-4507-aa1f-ef6fffa9868c
  1597. dateModified: '2025-04-28T10:55:56.728327-04:00'
  1598. digest:
  1599. dandi:dandi-etag: 180dc6967f1e1f8f28000519feac3633-1
  1600. dandi:sha2-256: 872bc7604c8fbe2f9d74e2419088473d09fc52096105455ced60da5b0f4f323d
  1601. encodingFormat: application/x-nwb
  1602. id: dandiasset:84ab8445-8d12-4abb-88ca-79db9f0868e7
  1603. identifier: 84ab8445-8d12-4abb-88ca-79db9f0868e7
  1604. measurementTechnique:
  1605. - name: behavioral technique
  1606. schemaKey: MeasurementTechniqueType
  1607. - name: analytical technique
  1608. schemaKey: MeasurementTechniqueType
  1609. path: sub-chronic-2-b20-f30-20250321-gcamp6s-#2025-3-21/sub-chronic-2-b20-f30-20250321-gcamp6s-#2025-3-21_ses-20250321T132000_behavior.nwb
  1610. schemaKey: Asset
  1611. schemaVersion: 0.6.9
  1612. variableMeasured:
  1613. - schemaKey: PropertyValue
  1614. value: BehavioralTimeSeries
  1615. - schemaKey: PropertyValue
  1616. value: CompassDirection
  1617. - schemaKey: PropertyValue
  1618. value: ProcessingModule
  1619. - schemaKey: PropertyValue
  1620. value: Position
  1621. - schemaKey: PropertyValue
  1622. value: SpatialSeries
  1623. wasAttributedTo:
  1624. - age:
  1625. schemaKey: PropertyValue
  1626. unitText: ISO-8601 duration
  1627. value: P6DT48000S
  1628. valueReference:
  1629. schemaKey: PropertyValue
  1630. value: dandi:BirthReference
  1631. identifier: chronic-2-b20-f30-20250321_gcamp6s_#2025_3_21
  1632. schemaKey: Participant
  1633. sex:
  1634. name: Unknown
  1635. schemaKey: SexType
  1636. species:
  1637. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1638. name: Danio rerio - Zebra fish
  1639. schemaKey: SpeciesType
  1640. wasGeneratedBy:
  1641. - description: chronic
  1642. name: Acquisition session
  1643. schemaKey: Session
  1644. startDate: '2025-03-21T13:20:00-04:00'
  1645. - description: Metadata generated by DANDI cli
  1646. endDate: '2025-04-28T10:55:56.728301-04:00'
  1647. id: urn:uuid:1e9a61aa-ec4f-4d7f-ad92-0814f35f748e
  1648. name: Metadata generation
  1649. schemaKey: Activity
  1650. startDate: '2025-04-28T10:55:56.724409-04:00'
  1651. wasAssociatedWith:
  1652. - identifier: RRID:SCR_019009
  1653. name: DANDI Command Line Interface
  1654. schemaKey: Software
  1655. url: https://github.com/dandi/dandi-cli
  1656. version: 0.66.7
  1657. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1658. access:
  1659. - schemaKey: AccessRequirements
  1660. status: dandi:EmbargoedAccess
  1661. approach:
  1662. - name: behavioral approach
  1663. schemaKey: ApproachType
  1664. blobDateModified: '2025-02-27T15:05:42.760000-05:00'
  1665. contentSize: 10507669
  1666. contentUrl:
  1667. - https://api.dandiarchive.org/api/assets/3aa0b08e-95fd-4a1c-825b-cbae80e96d33/download/
  1668. - https://dandiarchive.s3.amazonaws.com/blobs/b10/697/b10697b8-6a37-4344-bcd5-d9cc28d9b647
  1669. dateModified: '2025-04-28T10:56:01.747181-04:00'
  1670. digest:
  1671. dandi:dandi-etag: 76c6e95c39bc9b5a741a9664ac622f62-1
  1672. dandi:sha2-256: 90fd9332427ba3f42ee756b300376cfcaff0db488ba97163a55b018ee0b53ba1
  1673. encodingFormat: application/x-nwb
  1674. id: dandiasset:3aa0b08e-95fd-4a1c-825b-cbae80e96d33
  1675. identifier: 3aa0b08e-95fd-4a1c-825b-cbae80e96d33
  1676. measurementTechnique:
  1677. - name: behavioral technique
  1678. schemaKey: MeasurementTechniqueType
  1679. - name: analytical technique
  1680. schemaKey: MeasurementTechniqueType
  1681. path: sub-dmso-1-b20-f30-20250227-gcamp6s-#2025-2-27/sub-dmso-1-b20-f30-20250227-gcamp6s-#2025-2-27_ses-20250227T084500_behavior.nwb
  1682. schemaKey: Asset
  1683. schemaVersion: 0.6.9
  1684. variableMeasured:
  1685. - schemaKey: PropertyValue
  1686. value: BehavioralTimeSeries
  1687. - schemaKey: PropertyValue
  1688. value: CompassDirection
  1689. - schemaKey: PropertyValue
  1690. value: ProcessingModule
  1691. - schemaKey: PropertyValue
  1692. value: Position
  1693. - schemaKey: PropertyValue
  1694. value: SpatialSeries
  1695. wasAttributedTo:
  1696. - age:
  1697. schemaKey: PropertyValue
  1698. unitText: ISO-8601 duration
  1699. value: P5DT31500S
  1700. valueReference:
  1701. schemaKey: PropertyValue
  1702. value: dandi:BirthReference
  1703. identifier: dmso-1-b20-f30-20250227_gcamp6s_#2025_2_27
  1704. schemaKey: Participant
  1705. sex:
  1706. name: Unknown
  1707. schemaKey: SexType
  1708. species:
  1709. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1710. name: Danio rerio - Zebra fish
  1711. schemaKey: SpeciesType
  1712. wasGeneratedBy:
  1713. - description: DMSO
  1714. name: Acquisition session
  1715. schemaKey: Session
  1716. startDate: '2025-02-27T08:45:00-05:00'
  1717. - description: Metadata generated by DANDI cli
  1718. endDate: '2025-04-28T10:56:01.747145-04:00'
  1719. id: urn:uuid:3111c03e-d030-4da0-95c0-afee111445e7
  1720. name: Metadata generation
  1721. schemaKey: Activity
  1722. startDate: '2025-04-28T10:56:01.743758-04:00'
  1723. wasAssociatedWith:
  1724. - identifier: RRID:SCR_019009
  1725. name: DANDI Command Line Interface
  1726. schemaKey: Software
  1727. url: https://github.com/dandi/dandi-cli
  1728. version: 0.66.7
  1729. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1730. access:
  1731. - schemaKey: AccessRequirements
  1732. status: dandi:EmbargoedAccess
  1733. approach:
  1734. - name: behavioral approach
  1735. schemaKey: ApproachType
  1736. blobDateModified: '2025-03-12T16:25:24.500000-04:00'
  1737. contentSize: 10713713
  1738. contentUrl:
  1739. - https://api.dandiarchive.org/api/assets/ccb3870e-00a3-43ea-8c2f-9659576b4ab4/download/
  1740. - https://dandiarchive.s3.amazonaws.com/blobs/8a8/b36/8a8b36b0-e5d5-44dd-a934-bbf8c60862ae
  1741. dateModified: '2025-04-28T10:56:01.526130-04:00'
  1742. digest:
  1743. dandi:dandi-etag: 262371dac7ff989dfc7a9a85a62c7332-1
  1744. dandi:sha2-256: ef6195a4d10a690edc38e8f07caf57fe863112b6a65475a3ae648e158b1e1857
  1745. encodingFormat: application/x-nwb
  1746. id: dandiasset:ccb3870e-00a3-43ea-8c2f-9659576b4ab4
  1747. identifier: ccb3870e-00a3-43ea-8c2f-9659576b4ab4
  1748. measurementTechnique:
  1749. - name: behavioral technique
  1750. schemaKey: MeasurementTechniqueType
  1751. - name: analytical technique
  1752. schemaKey: MeasurementTechniqueType
  1753. path: sub-dmso-1-b20-f3-20250312-gcamp6s-#2025-3-12/sub-dmso-1-b20-f3-20250312-gcamp6s-#2025-3-12_ses-20250312T140200_behavior.nwb
  1754. schemaKey: Asset
  1755. schemaVersion: 0.6.9
  1756. variableMeasured:
  1757. - schemaKey: PropertyValue
  1758. value: BehavioralTimeSeries
  1759. - schemaKey: PropertyValue
  1760. value: CompassDirection
  1761. - schemaKey: PropertyValue
  1762. value: ProcessingModule
  1763. - schemaKey: PropertyValue
  1764. value: Position
  1765. - schemaKey: PropertyValue
  1766. value: SpatialSeries
  1767. wasAttributedTo:
  1768. - age:
  1769. schemaKey: PropertyValue
  1770. unitText: ISO-8601 duration
  1771. value: P6DT46920S
  1772. valueReference:
  1773. schemaKey: PropertyValue
  1774. value: dandi:BirthReference
  1775. identifier: dmso-1-b20-f3-20250312_gcamp6s_#2025_3_12
  1776. schemaKey: Participant
  1777. sex:
  1778. name: Unknown
  1779. schemaKey: SexType
  1780. species:
  1781. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1782. name: Danio rerio - Zebra fish
  1783. schemaKey: SpeciesType
  1784. wasGeneratedBy:
  1785. - description: DMSO
  1786. name: Acquisition session
  1787. schemaKey: Session
  1788. startDate: '2025-03-12T14:02:00-04:00'
  1789. - description: Metadata generated by DANDI cli
  1790. endDate: '2025-04-28T10:56:01.526101-04:00'
  1791. id: urn:uuid:26ba9147-9d40-49d2-9e56-a8b8d94cb370
  1792. name: Metadata generation
  1793. schemaKey: Activity
  1794. startDate: '2025-04-28T10:56:01.468496-04:00'
  1795. wasAssociatedWith:
  1796. - identifier: RRID:SCR_019009
  1797. name: DANDI Command Line Interface
  1798. schemaKey: Software
  1799. url: https://github.com/dandi/dandi-cli
  1800. version: 0.66.7
  1801. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1802. access:
  1803. - schemaKey: AccessRequirements
  1804. status: dandi:EmbargoedAccess
  1805. approach:
  1806. - name: behavioral approach
  1807. schemaKey: ApproachType
  1808. blobDateModified: '2025-04-17T14:57:47.100000-04:00'
  1809. contentSize: 10714229
  1810. contentUrl:
  1811. - https://api.dandiarchive.org/api/assets/1a95097a-ecc7-4ccc-9641-ea42bf0337e0/download/
  1812. - https://dandiarchive.s3.amazonaws.com/blobs/e46/bac/e46bacc2-d633-4c0d-83b3-4dc64d211b33
  1813. dateModified: '2025-04-28T10:56:03.979795-04:00'
  1814. digest:
  1815. dandi:dandi-etag: d0514f1040b78bf4cd657135425d8ac0-1
  1816. dandi:sha2-256: 45da55c1205ae9b6dca33970d11c9f581548beb7b35d186d834618846ce3f18b
  1817. encodingFormat: application/x-nwb
  1818. id: dandiasset:1a95097a-ecc7-4ccc-9641-ea42bf0337e0
  1819. identifier: 1a95097a-ecc7-4ccc-9641-ea42bf0337e0
  1820. measurementTechnique:
  1821. - name: behavioral technique
  1822. schemaKey: MeasurementTechniqueType
  1823. - name: analytical technique
  1824. schemaKey: MeasurementTechniqueType
  1825. path: sub-dmso-1-b20-f30-20250417-gcamp6s-#2025-4-17/sub-dmso-1-b20-f30-20250417-gcamp6s-#2025-4-17_ses-20250417T114000_behavior.nwb
  1826. schemaKey: Asset
  1827. schemaVersion: 0.6.9
  1828. variableMeasured:
  1829. - schemaKey: PropertyValue
  1830. value: BehavioralTimeSeries
  1831. - schemaKey: PropertyValue
  1832. value: CompassDirection
  1833. - schemaKey: PropertyValue
  1834. value: ProcessingModule
  1835. - schemaKey: PropertyValue
  1836. value: Position
  1837. - schemaKey: PropertyValue
  1838. value: SpatialSeries
  1839. wasAttributedTo:
  1840. - age:
  1841. schemaKey: PropertyValue
  1842. unitText: ISO-8601 duration
  1843. value: P6DT42000S
  1844. valueReference:
  1845. schemaKey: PropertyValue
  1846. value: dandi:BirthReference
  1847. identifier: dmso-1-b20-f30-20250417_gcamp6s_#2025_4_17
  1848. schemaKey: Participant
  1849. sex:
  1850. name: Unknown
  1851. schemaKey: SexType
  1852. species:
  1853. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1854. name: Danio rerio - Zebra fish
  1855. schemaKey: SpeciesType
  1856. wasGeneratedBy:
  1857. - description: DMSO
  1858. name: Acquisition session
  1859. schemaKey: Session
  1860. startDate: '2025-04-17T11:40:00-04:00'
  1861. - description: Metadata generated by DANDI cli
  1862. endDate: '2025-04-28T10:56:03.979764-04:00'
  1863. id: urn:uuid:8978fb49-6504-4368-b122-b3cdf2338725
  1864. name: Metadata generation
  1865. schemaKey: Activity
  1866. startDate: '2025-04-28T10:56:03.941608-04:00'
  1867. wasAssociatedWith:
  1868. - identifier: RRID:SCR_019009
  1869. name: DANDI Command Line Interface
  1870. schemaKey: Software
  1871. url: https://github.com/dandi/dandi-cli
  1872. version: 0.66.7
  1873. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1874. access:
  1875. - schemaKey: AccessRequirements
  1876. status: dandi:EmbargoedAccess
  1877. approach:
  1878. - name: behavioral approach
  1879. schemaKey: ApproachType
  1880. blobDateModified: '2025-04-25T14:52:02.380000-04:00'
  1881. contentSize: 9686211
  1882. contentUrl:
  1883. - https://api.dandiarchive.org/api/assets/7f777632-50e2-440c-ac7b-1a4e032e1489/download/
  1884. - https://dandiarchive.s3.amazonaws.com/blobs/fba/4e0/fba4e049-cc2d-4a8d-a165-b63ce8aff612
  1885. dateModified: '2025-04-28T10:56:04.201966-04:00'
  1886. digest:
  1887. dandi:dandi-etag: 4df1414bc6686d94095ac0a862aaeb16-1
  1888. dandi:sha2-256: a1bf6a8945f4970c35ac9554c53c5408ad4cd235c79b2e59c68c0182dd8b8349
  1889. encodingFormat: application/x-nwb
  1890. id: dandiasset:7f777632-50e2-440c-ac7b-1a4e032e1489
  1891. identifier: 7f777632-50e2-440c-ac7b-1a4e032e1489
  1892. measurementTechnique:
  1893. - name: behavioral technique
  1894. schemaKey: MeasurementTechniqueType
  1895. - name: analytical technique
  1896. schemaKey: MeasurementTechniqueType
  1897. path: sub-dmso-1-b20-f30-20250425-gcamp6s-#2025-4-25/sub-dmso-1-b20-f30-20250425-gcamp6s-#2025-4-25_ses-20250425T103900_behavior.nwb
  1898. schemaKey: Asset
  1899. schemaVersion: 0.6.9
  1900. variableMeasured:
  1901. - schemaKey: PropertyValue
  1902. value: BehavioralTimeSeries
  1903. - schemaKey: PropertyValue
  1904. value: CompassDirection
  1905. - schemaKey: PropertyValue
  1906. value: ProcessingModule
  1907. - schemaKey: PropertyValue
  1908. value: Position
  1909. - schemaKey: PropertyValue
  1910. value: SpatialSeries
  1911. wasAttributedTo:
  1912. - age:
  1913. schemaKey: PropertyValue
  1914. unitText: ISO-8601 duration
  1915. value: P6DT38340S
  1916. valueReference:
  1917. schemaKey: PropertyValue
  1918. value: dandi:BirthReference
  1919. identifier: dmso-1-b20-f30-20250425_gcamp6s_#2025_4_25
  1920. schemaKey: Participant
  1921. sex:
  1922. name: Unknown
  1923. schemaKey: SexType
  1924. species:
  1925. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1926. name: Danio rerio - Zebra fish
  1927. schemaKey: SpeciesType
  1928. wasGeneratedBy:
  1929. - description: DMSO
  1930. name: Acquisition session
  1931. schemaKey: Session
  1932. startDate: '2025-04-25T10:39:00-04:00'
  1933. - description: Metadata generated by DANDI cli
  1934. endDate: '2025-04-28T10:56:04.201939-04:00'
  1935. id: urn:uuid:3bd263fb-1006-4f00-ba29-d0890f16a0d1
  1936. name: Metadata generation
  1937. schemaKey: Activity
  1938. startDate: '2025-04-28T10:56:04.199160-04:00'
  1939. wasAssociatedWith:
  1940. - identifier: RRID:SCR_019009
  1941. name: DANDI Command Line Interface
  1942. schemaKey: Software
  1943. url: https://github.com/dandi/dandi-cli
  1944. version: 0.66.7
  1945. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1946. access:
  1947. - schemaKey: AccessRequirements
  1948. status: dandi:EmbargoedAccess
  1949. approach:
  1950. - name: behavioral approach
  1951. schemaKey: ApproachType
  1952. blobDateModified: '2025-03-21T14:34:47.070000-04:00'
  1953. contentSize: 9984471
  1954. contentUrl:
  1955. - https://api.dandiarchive.org/api/assets/452870c6-be20-4109-ae39-6cd2dd983eb8/download/
  1956. - https://dandiarchive.s3.amazonaws.com/blobs/97b/998/97b998d5-67c1-45b7-9ecf-e8d08b57a2a3
  1957. dateModified: '2025-04-28T10:56:02.809716-04:00'
  1958. digest:
  1959. dandi:dandi-etag: b84a20dec42c037bb780a3a93c0ce613-1
  1960. dandi:sha2-256: f8c406c62b62b5136da8b793d6a55e105844f83e23f52cee2213fee4889c4756
  1961. encodingFormat: application/x-nwb
  1962. id: dandiasset:452870c6-be20-4109-ae39-6cd2dd983eb8
  1963. identifier: 452870c6-be20-4109-ae39-6cd2dd983eb8
  1964. measurementTechnique:
  1965. - name: behavioral technique
  1966. schemaKey: MeasurementTechniqueType
  1967. - name: analytical technique
  1968. schemaKey: MeasurementTechniqueType
  1969. path: sub-dmso-1-b20-f30-20250321-gcamp6s-#2025-3-21/sub-dmso-1-b20-f30-20250321-gcamp6s-#2025-3-21_ses-20250321T121400_behavior.nwb
  1970. schemaKey: Asset
  1971. schemaVersion: 0.6.9
  1972. variableMeasured:
  1973. - schemaKey: PropertyValue
  1974. value: BehavioralTimeSeries
  1975. - schemaKey: PropertyValue
  1976. value: CompassDirection
  1977. - schemaKey: PropertyValue
  1978. value: ProcessingModule
  1979. - schemaKey: PropertyValue
  1980. value: Position
  1981. - schemaKey: PropertyValue
  1982. value: SpatialSeries
  1983. wasAttributedTo:
  1984. - age:
  1985. schemaKey: PropertyValue
  1986. unitText: ISO-8601 duration
  1987. value: P6DT44040S
  1988. valueReference:
  1989. schemaKey: PropertyValue
  1990. value: dandi:BirthReference
  1991. identifier: dmso-1-b20-f30-20250321_gcamp6s_#2025_3_21
  1992. schemaKey: Participant
  1993. sex:
  1994. name: Unknown
  1995. schemaKey: SexType
  1996. species:
  1997. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1998. name: Danio rerio - Zebra fish
  1999. schemaKey: SpeciesType
  2000. wasGeneratedBy:
  2001. - description: DMSO
  2002. name: Acquisition session
  2003. schemaKey: Session
  2004. startDate: '2025-03-21T12:14:00-04:00'
  2005. - description: Metadata generated by DANDI cli
  2006. endDate: '2025-04-28T10:56:02.809695-04:00'
  2007. id: urn:uuid:3ddb9cbd-c0e7-4291-9c10-2afc05d877d3
  2008. name: Metadata generation
  2009. schemaKey: Activity
  2010. startDate: '2025-04-28T10:56:02.807266-04:00'
  2011. wasAssociatedWith:
  2012. - identifier: RRID:SCR_019009
  2013. name: DANDI Command Line Interface
  2014. schemaKey: Software
  2015. url: https://github.com/dandi/dandi-cli
  2016. version: 0.66.7
  2017. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2018. access:
  2019. - schemaKey: AccessRequirements
  2020. status: dandi:EmbargoedAccess
  2021. approach:
  2022. - name: behavioral approach
  2023. schemaKey: ApproachType
  2024. blobDateModified: '2025-03-12T16:23:25.780000-04:00'
  2025. contentSize: 10518410
  2026. contentUrl:
  2027. - https://api.dandiarchive.org/api/assets/c0d76415-ab68-4cb4-8e96-bc0adf0970a6/download/
  2028. - https://dandiarchive.s3.amazonaws.com/blobs/210/244/21024475-9fc1-401f-9343-ed5fdf6057fd
  2029. dateModified: '2025-04-28T10:56:06.847074-04:00'
  2030. digest:
  2031. dandi:dandi-etag: 3c8a799dd8db593cd117afb6d700678f-1
  2032. dandi:sha2-256: 3de2787a184330465561450673dc156c740b0bbea41bc359fae53d7c6c9dc509
  2033. encodingFormat: application/x-nwb
  2034. id: dandiasset:c0d76415-ab68-4cb4-8e96-bc0adf0970a6
  2035. identifier: c0d76415-ab68-4cb4-8e96-bc0adf0970a6
  2036. measurementTechnique:
  2037. - name: behavioral technique
  2038. schemaKey: MeasurementTechniqueType
  2039. - name: analytical technique
  2040. schemaKey: MeasurementTechniqueType
  2041. path: sub-dmso-2-b20-f3-20250312-gcamp6s-#2025-3-12/sub-dmso-2-b20-f3-20250312-gcamp6s-#2025-3-12_ses-20250312T154100_behavior.nwb
  2042. schemaKey: Asset
  2043. schemaVersion: 0.6.9
  2044. variableMeasured:
  2045. - schemaKey: PropertyValue
  2046. value: BehavioralTimeSeries
  2047. - schemaKey: PropertyValue
  2048. value: CompassDirection
  2049. - schemaKey: PropertyValue
  2050. value: ProcessingModule
  2051. - schemaKey: PropertyValue
  2052. value: Position
  2053. - schemaKey: PropertyValue
  2054. value: SpatialSeries
  2055. wasAttributedTo:
  2056. - age:
  2057. schemaKey: PropertyValue
  2058. unitText: ISO-8601 duration
  2059. value: P6DT52860S
  2060. valueReference:
  2061. schemaKey: PropertyValue
  2062. value: dandi:BirthReference
  2063. identifier: dmso-2-b20-f3-20250312_gcamp6s_#2025_3_12
  2064. schemaKey: Participant
  2065. sex:
  2066. name: Unknown
  2067. schemaKey: SexType
  2068. species:
  2069. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2070. name: Danio rerio - Zebra fish
  2071. schemaKey: SpeciesType
  2072. wasGeneratedBy:
  2073. - description: DMSO
  2074. name: Acquisition session
  2075. schemaKey: Session
  2076. startDate: '2025-03-12T15:41:00-04:00'
  2077. - description: Metadata generated by DANDI cli
  2078. endDate: '2025-04-28T10:56:06.847051-04:00'
  2079. id: urn:uuid:7433ce90-234a-4ce9-a0f6-22db9a014914
  2080. name: Metadata generation
  2081. schemaKey: Activity
  2082. startDate: '2025-04-28T10:56:06.843809-04:00'
  2083. wasAssociatedWith:
  2084. - identifier: RRID:SCR_019009
  2085. name: DANDI Command Line Interface
  2086. schemaKey: Software
  2087. url: https://github.com/dandi/dandi-cli
  2088. version: 0.66.7
  2089. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2090. access:
  2091. - schemaKey: AccessRequirements
  2092. status: dandi:EmbargoedAccess
  2093. approach:
  2094. - name: behavioral approach
  2095. schemaKey: ApproachType
  2096. blobDateModified: '2025-04-17T14:56:42.830000-04:00'
  2097. contentSize: 10745116
  2098. contentUrl:
  2099. - https://api.dandiarchive.org/api/assets/88124d5a-965d-4d91-bdb5-d767e5cdd09f/download/
  2100. - https://dandiarchive.s3.amazonaws.com/blobs/f1e/25b/f1e25bc9-78d5-40ea-b052-3e3bd15c69f0
  2101. dateModified: '2025-04-28T10:55:47.239399-04:00'
  2102. digest:
  2103. dandi:dandi-etag: 307ed04c666da665ca1a30ab8898ed63-1
  2104. dandi:sha2-256: 89e2262abe0ac6a2f0fd9de4c903920c8cf22c9631f699bdd572f3b0166b5378
  2105. encodingFormat: application/x-nwb
  2106. id: dandiasset:88124d5a-965d-4d91-bdb5-d767e5cdd09f
  2107. identifier: 88124d5a-965d-4d91-bdb5-d767e5cdd09f
  2108. measurementTechnique:
  2109. - name: behavioral technique
  2110. schemaKey: MeasurementTechniqueType
  2111. - name: analytical technique
  2112. schemaKey: MeasurementTechniqueType
  2113. path: sub-acute-2-b20-f30-20250417-gcamp6s-#2025-4-17/sub-acute-2-b20-f30-20250417-gcamp6s-#2025-4-17_ses-20250417T121200_behavior.nwb
  2114. schemaKey: Asset
  2115. schemaVersion: 0.6.9
  2116. variableMeasured:
  2117. - schemaKey: PropertyValue
  2118. value: BehavioralTimeSeries
  2119. - schemaKey: PropertyValue
  2120. value: CompassDirection
  2121. - schemaKey: PropertyValue
  2122. value: ProcessingModule
  2123. - schemaKey: PropertyValue
  2124. value: Position
  2125. - schemaKey: PropertyValue
  2126. value: SpatialSeries
  2127. wasAttributedTo:
  2128. - age:
  2129. schemaKey: PropertyValue
  2130. unitText: ISO-8601 duration
  2131. value: P6DT43920S
  2132. valueReference:
  2133. schemaKey: PropertyValue
  2134. value: dandi:BirthReference
  2135. identifier: acute-2-b20-f30-20250417_gcamp6s_#2025_4_17
  2136. schemaKey: Participant
  2137. sex:
  2138. name: Unknown
  2139. schemaKey: SexType
  2140. species:
  2141. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2142. name: Danio rerio - Zebra fish
  2143. schemaKey: SpeciesType
  2144. wasGeneratedBy:
  2145. - description: acute
  2146. name: Acquisition session
  2147. schemaKey: Session
  2148. startDate: '2025-04-17T12:12:00-04:00'
  2149. - description: Metadata generated by DANDI cli
  2150. endDate: '2025-04-28T10:55:47.239367-04:00'
  2151. id: urn:uuid:e65409eb-86dd-45b2-8d98-eaab5944185e
  2152. name: Metadata generation
  2153. schemaKey: Activity
  2154. startDate: '2025-04-28T10:55:47.174937-04:00'
  2155. wasAssociatedWith:
  2156. - identifier: RRID:SCR_019009
  2157. name: DANDI Command Line Interface
  2158. schemaKey: Software
  2159. url: https://github.com/dandi/dandi-cli
  2160. version: 0.66.7
  2161. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2162. access:
  2163. - schemaKey: AccessRequirements
  2164. status: dandi:EmbargoedAccess
  2165. approach:
  2166. - name: behavioral approach
  2167. schemaKey: ApproachType
  2168. blobDateModified: '2025-04-25T14:52:08.800000-04:00'
  2169. contentSize: 10095608
  2170. contentUrl:
  2171. - https://api.dandiarchive.org/api/assets/d2fe3238-2f15-4605-b15c-9ff61d913583/download/
  2172. - https://dandiarchive.s3.amazonaws.com/blobs/3c5/0ab/3c50ab77-b3f0-4cb0-a1e7-36ad03c464d0
  2173. dateModified: '2025-04-28T10:55:57.798522-04:00'
  2174. digest:
  2175. dandi:dandi-etag: 223819128132e214ab3848589990ae45-1
  2176. dandi:sha2-256: 966c77ecd5201d890a06d9fc5df65a3b09149611fff480a672408367a462f3f5
  2177. encodingFormat: application/x-nwb
  2178. id: dandiasset:d2fe3238-2f15-4605-b15c-9ff61d913583
  2179. identifier: d2fe3238-2f15-4605-b15c-9ff61d913583
  2180. measurementTechnique:
  2181. - name: behavioral technique
  2182. schemaKey: MeasurementTechniqueType
  2183. - name: analytical technique
  2184. schemaKey: MeasurementTechniqueType
  2185. path: sub-chronic-2-b20-f30-20250425-gcamp6s-#2025-4-25/sub-chronic-2-b20-f30-20250425-gcamp6s-#2025-4-25_ses-20250425T131800_behavior.nwb
  2186. schemaKey: Asset
  2187. schemaVersion: 0.6.9
  2188. variableMeasured:
  2189. - schemaKey: PropertyValue
  2190. value: BehavioralTimeSeries
  2191. - schemaKey: PropertyValue
  2192. value: CompassDirection
  2193. - schemaKey: PropertyValue
  2194. value: ProcessingModule
  2195. - schemaKey: PropertyValue
  2196. value: Position
  2197. - schemaKey: PropertyValue
  2198. value: SpatialSeries
  2199. wasAttributedTo:
  2200. - age:
  2201. schemaKey: PropertyValue
  2202. unitText: ISO-8601 duration
  2203. value: P6DT47880S
  2204. valueReference:
  2205. schemaKey: PropertyValue
  2206. value: dandi:BirthReference
  2207. identifier: chronic-2-b20-f30-20250425_gcamp6s_#2025_4_25
  2208. schemaKey: Participant
  2209. sex:
  2210. name: Unknown
  2211. schemaKey: SexType
  2212. species:
  2213. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2214. name: Danio rerio - Zebra fish
  2215. schemaKey: SpeciesType
  2216. wasGeneratedBy:
  2217. - description: chronic
  2218. name: Acquisition session
  2219. schemaKey: Session
  2220. startDate: '2025-04-25T13:18:00-04:00'
  2221. - description: Metadata generated by DANDI cli
  2222. endDate: '2025-04-28T10:55:57.798493-04:00'
  2223. id: urn:uuid:228fa7ed-bb98-4217-a9e6-f2d8f4756444
  2224. name: Metadata generation
  2225. schemaKey: Activity
  2226. startDate: '2025-04-28T10:55:57.795664-04:00'
  2227. wasAssociatedWith:
  2228. - identifier: RRID:SCR_019009
  2229. name: DANDI Command Line Interface
  2230. schemaKey: Software
  2231. url: https://github.com/dandi/dandi-cli
  2232. version: 0.66.7
  2233. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2234. access:
  2235. - schemaKey: AccessRequirements
  2236. status: dandi:EmbargoedAccess
  2237. approach:
  2238. - name: behavioral approach
  2239. schemaKey: ApproachType
  2240. blobDateModified: '2025-02-27T15:04:12.480000-05:00'
  2241. contentSize: 10338155
  2242. contentUrl:
  2243. - https://api.dandiarchive.org/api/assets/d2946f01-185c-4775-b473-3783d082801a/download/
  2244. - https://dandiarchive.s3.amazonaws.com/blobs/c59/ba2/c59ba297-1b88-4570-be32-14cf972f110b
  2245. dateModified: '2025-04-28T10:56:06.846192-04:00'
  2246. digest:
  2247. dandi:dandi-etag: 7e2a338eb2fd4ff005c081f1449f949a-1
  2248. dandi:sha2-256: 022dbe87756483256435681771b85d3d4ea8099e766088e6a1ecfce1392e4652
  2249. encodingFormat: application/x-nwb
  2250. id: dandiasset:d2946f01-185c-4775-b473-3783d082801a
  2251. identifier: d2946f01-185c-4775-b473-3783d082801a
  2252. measurementTechnique:
  2253. - name: behavioral technique
  2254. schemaKey: MeasurementTechniqueType
  2255. - name: analytical technique
  2256. schemaKey: MeasurementTechniqueType
  2257. path: sub-dmso-2-b20-f30-20250227-gcamp6s-#2025-2-27/sub-dmso-2-b20-f30-20250227-gcamp6s-#2025-2-27_ses-20250227T102000_behavior.nwb
  2258. schemaKey: Asset
  2259. schemaVersion: 0.6.9
  2260. variableMeasured:
  2261. - schemaKey: PropertyValue
  2262. value: BehavioralTimeSeries
  2263. - schemaKey: PropertyValue
  2264. value: CompassDirection
  2265. - schemaKey: PropertyValue
  2266. value: ProcessingModule
  2267. - schemaKey: PropertyValue
  2268. value: Position
  2269. - schemaKey: PropertyValue
  2270. value: SpatialSeries
  2271. wasAttributedTo:
  2272. - age:
  2273. schemaKey: PropertyValue
  2274. unitText: ISO-8601 duration
  2275. value: P5DT37200S
  2276. valueReference:
  2277. schemaKey: PropertyValue
  2278. value: dandi:BirthReference
  2279. identifier: dmso-2-b20-f30-20250227_gcamp6s_#2025_2_27
  2280. schemaKey: Participant
  2281. sex:
  2282. name: Unknown
  2283. schemaKey: SexType
  2284. species:
  2285. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2286. name: Danio rerio - Zebra fish
  2287. schemaKey: SpeciesType
  2288. wasGeneratedBy:
  2289. - description: DMSO
  2290. name: Acquisition session
  2291. schemaKey: Session
  2292. startDate: '2025-02-27T10:20:00-05:00'
  2293. - description: Metadata generated by DANDI cli
  2294. endDate: '2025-04-28T10:56:06.846168-04:00'
  2295. id: urn:uuid:bd8c04bd-c284-41f0-9f86-5dfb1f9a11bb
  2296. name: Metadata generation
  2297. schemaKey: Activity
  2298. startDate: '2025-04-28T10:56:06.837525-04:00'
  2299. wasAssociatedWith:
  2300. - identifier: RRID:SCR_019009
  2301. name: DANDI Command Line Interface
  2302. schemaKey: Software
  2303. url: https://github.com/dandi/dandi-cli
  2304. version: 0.66.7
  2305. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2306. access:
  2307. - schemaKey: AccessRequirements
  2308. status: dandi:EmbargoedAccess
  2309. approach:
  2310. - name: behavioral approach
  2311. schemaKey: ApproachType
  2312. blobDateModified: '2025-03-14T13:57:48.500000-04:00'
  2313. contentSize: 10009590
  2314. contentUrl:
  2315. - https://api.dandiarchive.org/api/assets/5cee5bde-dee9-410a-a6fb-18abbf4127d5/download/
  2316. - https://dandiarchive.s3.amazonaws.com/blobs/b64/d63/b64d63d9-7ef6-40fa-9b8b-5648b71a95f4
  2317. dateModified: '2025-04-28T10:56:11.040108-04:00'
  2318. digest:
  2319. dandi:dandi-etag: c85c2a716e89d33e97324d9176b408b5-1
  2320. dandi:sha2-256: 362af6a029ef8268d93d4875d23063d3153e6d5a1d420c78d4f3633f44a0e98e
  2321. encodingFormat: application/x-nwb
  2322. id: dandiasset:5cee5bde-dee9-410a-a6fb-18abbf4127d5
  2323. identifier: 5cee5bde-dee9-410a-a6fb-18abbf4127d5
  2324. measurementTechnique:
  2325. - name: behavioral technique
  2326. schemaKey: MeasurementTechniqueType
  2327. - name: analytical technique
  2328. schemaKey: MeasurementTechniqueType
  2329. path: sub-dmso-b20-f3-20250314-gcamp6s-#2025-3-14/sub-dmso-b20-f3-20250314-gcamp6s-#2025-3-14_ses-20250314T124200_behavior.nwb
  2330. schemaKey: Asset
  2331. schemaVersion: 0.6.9
  2332. variableMeasured:
  2333. - schemaKey: PropertyValue
  2334. value: BehavioralTimeSeries
  2335. - schemaKey: PropertyValue
  2336. value: CompassDirection
  2337. - schemaKey: PropertyValue
  2338. value: ProcessingModule
  2339. - schemaKey: PropertyValue
  2340. value: Position
  2341. - schemaKey: PropertyValue
  2342. value: SpatialSeries
  2343. wasAttributedTo:
  2344. - age:
  2345. schemaKey: PropertyValue
  2346. unitText: ISO-8601 duration
  2347. value: P6DT42120S
  2348. valueReference:
  2349. schemaKey: PropertyValue
  2350. value: dandi:BirthReference
  2351. identifier: dmso-b20-f3-20250314_gcamp6s_#2025_3_14
  2352. schemaKey: Participant
  2353. sex:
  2354. name: Unknown
  2355. schemaKey: SexType
  2356. species:
  2357. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2358. name: Danio rerio - Zebra fish
  2359. schemaKey: SpeciesType
  2360. wasGeneratedBy:
  2361. - description: DMSO
  2362. name: Acquisition session
  2363. schemaKey: Session
  2364. startDate: '2025-03-14T12:42:00-04:00'
  2365. - description: Metadata generated by DANDI cli
  2366. endDate: '2025-04-28T10:56:11.040085-04:00'
  2367. id: urn:uuid:979dd601-ba75-4cc6-9a12-1441b8c86f79
  2368. name: Metadata generation
  2369. schemaKey: Activity
  2370. startDate: '2025-04-28T10:56:11.037558-04:00'
  2371. wasAssociatedWith:
  2372. - identifier: RRID:SCR_019009
  2373. name: DANDI Command Line Interface
  2374. schemaKey: Software
  2375. url: https://github.com/dandi/dandi-cli
  2376. version: 0.66.7
  2377. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2378. access:
  2379. - schemaKey: AccessRequirements
  2380. status: dandi:EmbargoedAccess
  2381. approach:
  2382. - name: behavioral approach
  2383. schemaKey: ApproachType
  2384. blobDateModified: '2025-04-25T14:53:04.340000-04:00'
  2385. contentSize: 10272185
  2386. contentUrl:
  2387. - https://api.dandiarchive.org/api/assets/dc31222c-8ced-4f37-a7c8-3671b046e160/download/
  2388. - https://dandiarchive.s3.amazonaws.com/blobs/8b9/5d4/8b95d446-18c7-48f3-becb-19a421a259a6
  2389. dateModified: '2025-04-28T10:56:09.964784-04:00'
  2390. digest:
  2391. dandi:dandi-etag: 779aeff50562388eef3cb60044c03aeb-1
  2392. dandi:sha2-256: 525ce20774f05ee3f6c15392898e167c983513f0418ccacba3261597f45617d8
  2393. encodingFormat: application/x-nwb
  2394. id: dandiasset:dc31222c-8ced-4f37-a7c8-3671b046e160
  2395. identifier: dc31222c-8ced-4f37-a7c8-3671b046e160
  2396. measurementTechnique:
  2397. - name: behavioral technique
  2398. schemaKey: MeasurementTechniqueType
  2399. - name: analytical technique
  2400. schemaKey: MeasurementTechniqueType
  2401. path: sub-dmso-2-b20-f30-20250425-gcamp6s-#2025-4-25/sub-dmso-2-b20-f30-20250425-gcamp6s-#2025-4-25_ses-20250425T121400_behavior.nwb
  2402. schemaKey: Asset
  2403. schemaVersion: 0.6.9
  2404. variableMeasured:
  2405. - schemaKey: PropertyValue
  2406. value: BehavioralTimeSeries
  2407. - schemaKey: PropertyValue
  2408. value: CompassDirection
  2409. - schemaKey: PropertyValue
  2410. value: ProcessingModule
  2411. - schemaKey: PropertyValue
  2412. value: Position
  2413. - schemaKey: PropertyValue
  2414. value: SpatialSeries
  2415. wasAttributedTo:
  2416. - age:
  2417. schemaKey: PropertyValue
  2418. unitText: ISO-8601 duration
  2419. value: P6DT44040S
  2420. valueReference:
  2421. schemaKey: PropertyValue
  2422. value: dandi:BirthReference
  2423. identifier: dmso-2-b20-f30-20250425_gcamp6s_#2025_4_25
  2424. schemaKey: Participant
  2425. sex:
  2426. name: Unknown
  2427. schemaKey: SexType
  2428. species:
  2429. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2430. name: Danio rerio - Zebra fish
  2431. schemaKey: SpeciesType
  2432. wasGeneratedBy:
  2433. - description: DMSO
  2434. name: Acquisition session
  2435. schemaKey: Session
  2436. startDate: '2025-04-25T12:14:00-04:00'
  2437. - description: Metadata generated by DANDI cli
  2438. endDate: '2025-04-28T10:56:09.964757-04:00'
  2439. id: urn:uuid:356b7eea-a665-44af-860a-abf726ae677f
  2440. name: Metadata generation
  2441. schemaKey: Activity
  2442. startDate: '2025-04-28T10:56:09.961922-04:00'
  2443. wasAssociatedWith:
  2444. - identifier: RRID:SCR_019009
  2445. name: DANDI Command Line Interface
  2446. schemaKey: Software
  2447. url: https://github.com/dandi/dandi-cli
  2448. version: 0.66.7
  2449. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2450. access:
  2451. - schemaKey: AccessRequirements
  2452. status: dandi:EmbargoedAccess
  2453. approach:
  2454. - name: behavioral approach
  2455. schemaKey: ApproachType
  2456. blobDateModified: '2025-03-06T11:53:58.100000-05:00'
  2457. contentSize: 10618368
  2458. contentUrl:
  2459. - https://api.dandiarchive.org/api/assets/01c7de00-c20f-4100-ac1f-2d8c19611f7c/download/
  2460. - https://dandiarchive.s3.amazonaws.com/blobs/6ad/c5c/6adc5c98-48d1-4a1d-aacb-33f9791878e7
  2461. dateModified: '2025-04-28T10:56:11.901346-04:00'
  2462. digest:
  2463. dandi:dandi-etag: cbc586b37bffaf0ee810246b163348bc-1
  2464. dandi:sha2-256: 06f5f1bee257c7ac8a969078d1a7e0762821c9cfe5edfdccb63bdc04ba0a5ef1
  2465. encodingFormat: application/x-nwb
  2466. id: dandiasset:01c7de00-c20f-4100-ac1f-2d8c19611f7c
  2467. identifier: 01c7de00-c20f-4100-ac1f-2d8c19611f7c
  2468. measurementTechnique:
  2469. - name: behavioral technique
  2470. schemaKey: MeasurementTechniqueType
  2471. - name: analytical technique
  2472. schemaKey: MeasurementTechniqueType
  2473. path: sub-dmso-b20-f30-20250306-gcamp6s-#2025-3-6/sub-dmso-b20-f30-20250306-gcamp6s-#2025-3-6_ses-20250306T103000_behavior.nwb
  2474. schemaKey: Asset
  2475. schemaVersion: 0.6.9
  2476. variableMeasured:
  2477. - schemaKey: PropertyValue
  2478. value: BehavioralTimeSeries
  2479. - schemaKey: PropertyValue
  2480. value: CompassDirection
  2481. - schemaKey: PropertyValue
  2482. value: ProcessingModule
  2483. - schemaKey: PropertyValue
  2484. value: Position
  2485. - schemaKey: PropertyValue
  2486. value: SpatialSeries
  2487. wasAttributedTo:
  2488. - age:
  2489. schemaKey: PropertyValue
  2490. unitText: ISO-8601 duration
  2491. value: P6DT37800S
  2492. valueReference:
  2493. schemaKey: PropertyValue
  2494. value: dandi:BirthReference
  2495. identifier: dmso-b20-f30-20250306_gcamp6s_#2025_3_6
  2496. schemaKey: Participant
  2497. sex:
  2498. name: Unknown
  2499. schemaKey: SexType
  2500. species:
  2501. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2502. name: Danio rerio - Zebra fish
  2503. schemaKey: SpeciesType
  2504. wasGeneratedBy:
  2505. - description: DMSO
  2506. name: Acquisition session
  2507. schemaKey: Session
  2508. startDate: '2025-03-06T10:30:00-05:00'
  2509. - description: Metadata generated by DANDI cli
  2510. endDate: '2025-04-28T10:56:11.901321-04:00'
  2511. id: urn:uuid:adefbef3-dca8-42a7-a73b-76105ace3dcb
  2512. name: Metadata generation
  2513. schemaKey: Activity
  2514. startDate: '2025-04-28T10:56:11.898585-04:00'
  2515. wasAssociatedWith:
  2516. - identifier: RRID:SCR_019009
  2517. name: DANDI Command Line Interface
  2518. schemaKey: Software
  2519. url: https://github.com/dandi/dandi-cli
  2520. version: 0.66.7
  2521. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2522. access:
  2523. - schemaKey: AccessRequirements
  2524. status: dandi:EmbargoedAccess
  2525. approach:
  2526. - name: behavioral approach
  2527. schemaKey: ApproachType
  2528. blobDateModified: '2025-03-21T14:35:51.800000-04:00'
  2529. contentSize: 10497930
  2530. contentUrl:
  2531. - https://api.dandiarchive.org/api/assets/77809707-cca4-48f1-b99f-58e5293504e7/download/
  2532. - https://dandiarchive.s3.amazonaws.com/blobs/288/b56/288b566f-a77b-4863-aaeb-cc8c5830b8e8
  2533. dateModified: '2025-04-28T10:56:08.423552-04:00'
  2534. digest:
  2535. dandi:dandi-etag: 004d6ca43f306147ed46b43dcaf29ba5-1
  2536. dandi:sha2-256: 5b4f33009d68a383332867986e3d7f10565cc81f3d948d0514d49d16744e6b4b
  2537. encodingFormat: application/x-nwb
  2538. id: dandiasset:77809707-cca4-48f1-b99f-58e5293504e7
  2539. identifier: 77809707-cca4-48f1-b99f-58e5293504e7
  2540. measurementTechnique:
  2541. - name: behavioral technique
  2542. schemaKey: MeasurementTechniqueType
  2543. - name: analytical technique
  2544. schemaKey: MeasurementTechniqueType
  2545. path: sub-dmso-2-b20-f30-20250321-gcamp6s-#2025-3-21/sub-dmso-2-b20-f30-20250321-gcamp6s-#2025-3-21_ses-20250321T135100_behavior.nwb
  2546. schemaKey: Asset
  2547. schemaVersion: 0.6.9
  2548. variableMeasured:
  2549. - schemaKey: PropertyValue
  2550. value: BehavioralTimeSeries
  2551. - schemaKey: PropertyValue
  2552. value: CompassDirection
  2553. - schemaKey: PropertyValue
  2554. value: ProcessingModule
  2555. - schemaKey: PropertyValue
  2556. value: Position
  2557. - schemaKey: PropertyValue
  2558. value: SpatialSeries
  2559. wasAttributedTo:
  2560. - age:
  2561. schemaKey: PropertyValue
  2562. unitText: ISO-8601 duration
  2563. value: P6DT49860S
  2564. valueReference:
  2565. schemaKey: PropertyValue
  2566. value: dandi:BirthReference
  2567. identifier: dmso-2-b20-f30-20250321_gcamp6s_#2025_3_21
  2568. schemaKey: Participant
  2569. sex:
  2570. name: Unknown
  2571. schemaKey: SexType
  2572. species:
  2573. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2574. name: Danio rerio - Zebra fish
  2575. schemaKey: SpeciesType
  2576. wasGeneratedBy:
  2577. - description: DMSO
  2578. name: Acquisition session
  2579. schemaKey: Session
  2580. startDate: '2025-03-21T13:51:00-04:00'
  2581. - description: Metadata generated by DANDI cli
  2582. endDate: '2025-04-28T10:56:08.423527-04:00'
  2583. id: urn:uuid:c405acb2-1903-4327-be4f-342495ca76eb
  2584. name: Metadata generation
  2585. schemaKey: Activity
  2586. startDate: '2025-04-28T10:56:08.421085-04:00'
  2587. wasAssociatedWith:
  2588. - identifier: RRID:SCR_019009
  2589. name: DANDI Command Line Interface
  2590. schemaKey: Software
  2591. url: https://github.com/dandi/dandi-cli
  2592. version: 0.66.7
  2593. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2594. access:
  2595. - schemaKey: AccessRequirements
  2596. status: dandi:EmbargoedAccess
  2597. approach:
  2598. - name: behavioral approach
  2599. schemaKey: ApproachType
  2600. blobDateModified: '2025-04-17T14:56:36.570000-04:00'
  2601. contentSize: 10580910
  2602. contentUrl:
  2603. - https://api.dandiarchive.org/api/assets/83d5cc6d-7160-4a91-9016-95073f226be9/download/
  2604. - https://dandiarchive.s3.amazonaws.com/blobs/c5c/761/c5c76168-45d6-40f6-999e-80344a6bcba6
  2605. dateModified: '2025-04-28T10:56:09.212082-04:00'
  2606. digest:
  2607. dandi:dandi-etag: ad4371c68729117bc159ea7e88109196-1
  2608. dandi:sha2-256: 5c24bc0d79da9f9047a9bcada11e29b70627046b02d171ad102eb0a4d66122a5
  2609. encodingFormat: application/x-nwb
  2610. id: dandiasset:83d5cc6d-7160-4a91-9016-95073f226be9
  2611. identifier: 83d5cc6d-7160-4a91-9016-95073f226be9
  2612. measurementTechnique:
  2613. - name: behavioral technique
  2614. schemaKey: MeasurementTechniqueType
  2615. - name: analytical technique
  2616. schemaKey: MeasurementTechniqueType
  2617. path: sub-dmso-2-b20-f30-20250417-gcamp6s-#2025-4-17/sub-dmso-2-b20-f30-20250417-gcamp6s-#2025-4-17_ses-20250417T131500_behavior.nwb
  2618. schemaKey: Asset
  2619. schemaVersion: 0.6.9
  2620. variableMeasured:
  2621. - schemaKey: PropertyValue
  2622. value: BehavioralTimeSeries
  2623. - schemaKey: PropertyValue
  2624. value: CompassDirection
  2625. - schemaKey: PropertyValue
  2626. value: ProcessingModule
  2627. - schemaKey: PropertyValue
  2628. value: Position
  2629. - schemaKey: PropertyValue
  2630. value: SpatialSeries
  2631. wasAttributedTo:
  2632. - age:
  2633. schemaKey: PropertyValue
  2634. unitText: ISO-8601 duration
  2635. value: P6DT47700S
  2636. valueReference:
  2637. schemaKey: PropertyValue
  2638. value: dandi:BirthReference
  2639. identifier: dmso-2-b20-f30-20250417_gcamp6s_#2025_4_17
  2640. schemaKey: Participant
  2641. sex:
  2642. name: Unknown
  2643. schemaKey: SexType
  2644. species:
  2645. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2646. name: Danio rerio - Zebra fish
  2647. schemaKey: SpeciesType
  2648. wasGeneratedBy:
  2649. - description: DMSO
  2650. name: Acquisition session
  2651. schemaKey: Session
  2652. startDate: '2025-04-17T13:15:00-04:00'
  2653. - description: Metadata generated by DANDI cli
  2654. endDate: '2025-04-28T10:56:09.212059-04:00'
  2655. id: urn:uuid:d72cfa44-7baf-41bd-85a7-3c598144db9c
  2656. name: Metadata generation
  2657. schemaKey: Activity
  2658. startDate: '2025-04-28T10:56:09.209637-04:00'
  2659. wasAssociatedWith:
  2660. - identifier: RRID:SCR_019009
  2661. name: DANDI Command Line Interface
  2662. schemaKey: Software
  2663. url: https://github.com/dandi/dandi-cli
  2664. version: 0.66.7
  2665. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2666. access:
  2667. - schemaKey: AccessRequirements
  2668. status: dandi:EmbargoedAccess
  2669. approach:
  2670. - name: behavioral approach
  2671. schemaKey: ApproachType
  2672. blobDateModified: '2025-04-14T14:27:28.150000-04:00'
  2673. contentSize: 10393198
  2674. contentUrl:
  2675. - https://api.dandiarchive.org/api/assets/3259499d-cc49-4bc3-9e47-dcdb869a1841/download/
  2676. - https://dandiarchive.s3.amazonaws.com/blobs/26d/8c6/26d8c622-1c30-4229-a292-072ad015f2fb
  2677. dateModified: '2025-04-28T10:56:14.081574-04:00'
  2678. digest:
  2679. dandi:dandi-etag: a650509f2f5a929d7f4e778b99ba2f2b-1
  2680. dandi:sha2-256: 121145b4185587e00440ffd39f75cb9255cefadc52b4d6804682abcd9eaef7d9
  2681. encodingFormat: application/x-nwb
  2682. id: dandiasset:3259499d-cc49-4bc3-9e47-dcdb869a1841
  2683. identifier: 3259499d-cc49-4bc3-9e47-dcdb869a1841
  2684. measurementTechnique:
  2685. - name: behavioral technique
  2686. schemaKey: MeasurementTechniqueType
  2687. - name: analytical technique
  2688. schemaKey: MeasurementTechniqueType
  2689. path: sub-dmso-b20-f30-20250411-gcamp6s-#2025-4-11/sub-dmso-b20-f30-20250411-gcamp6s-#2025-4-11_ses-20250411T111700_behavior.nwb
  2690. schemaKey: Asset
  2691. schemaVersion: 0.6.9
  2692. variableMeasured:
  2693. - schemaKey: PropertyValue
  2694. value: BehavioralTimeSeries
  2695. - schemaKey: PropertyValue
  2696. value: CompassDirection
  2697. - schemaKey: PropertyValue
  2698. value: ProcessingModule
  2699. - schemaKey: PropertyValue
  2700. value: Position
  2701. - schemaKey: PropertyValue
  2702. value: SpatialSeries
  2703. wasAttributedTo:
  2704. - age:
  2705. schemaKey: PropertyValue
  2706. unitText: ISO-8601 duration
  2707. value: P6DT40620S
  2708. valueReference:
  2709. schemaKey: PropertyValue
  2710. value: dandi:BirthReference
  2711. identifier: dmso-b20-f30-20250411_gcamp6s_#2025_4_11
  2712. schemaKey: Participant
  2713. sex:
  2714. name: Unknown
  2715. schemaKey: SexType
  2716. species:
  2717. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2718. name: Danio rerio - Zebra fish
  2719. schemaKey: SpeciesType
  2720. wasGeneratedBy:
  2721. - description: DMSO
  2722. name: Acquisition session
  2723. schemaKey: Session
  2724. startDate: '2025-04-11T11:17:00-04:00'
  2725. - description: Metadata generated by DANDI cli
  2726. endDate: '2025-04-28T10:56:14.081551-04:00'
  2727. id: urn:uuid:587934cc-7ccd-4f5d-9156-530cffbd0f6e
  2728. name: Metadata generation
  2729. schemaKey: Activity
  2730. startDate: '2025-04-28T10:56:14.079174-04:00'
  2731. wasAssociatedWith:
  2732. - identifier: RRID:SCR_019009
  2733. name: DANDI Command Line Interface
  2734. schemaKey: Software
  2735. url: https://github.com/dandi/dandi-cli
  2736. version: 0.66.7
Tip!

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

Comments

Loading...