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
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:11:53.491297-05:00'
contentSize: 35229526
contentUrl:
- https://api.dandiarchive.org/api/assets/c2f52e8c-9a5c-43e6-bd55-f8dc0470f182/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/853/37f/85337fa0-55b0-4e70-834e-1423499eeee7
dateModified: '2024-02-12T09:51:56.659391-05:00'
digest:
dandi:dandi-etag: 82ca0137e00e4aa646f55db15c2a79ec-1
dandi:sha2-256: a1573ecfccd4bac7406839d9fc0cace9808d4803c7869418320c3455951492b3
encodingFormat: application/x-nwb
id: dandiasset:c2f52e8c-9a5c-43e6-bd55-f8dc0470f182
identifier: c2f52e8c-9a5c-43e6-bd55-f8dc0470f182
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-01-6dpf-1122-nac-het-#2023-11-28/sub-la-replay-01-6dpf-1122-nac-het-#2023-11-28_ses-20231128T141700_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT51420S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_01_6dpf_1122_nac het_#2023_11_28
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-11-28T14:17:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:51:56.659391-05:00'
id: urn:uuid:88f04cd9-a971-439f-9466-f2f7a8758fff
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:51:56.655296-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:15:14.037843-05:00'
contentSize: 36131544
contentUrl:
- https://api.dandiarchive.org/api/assets/b1861929-07b9-4acb-87a4-dd912d91a6eb/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/0e1/3bb/0e13bb95-e700-4946-906d-0b9091a3125c
dateModified: '2024-02-12T09:51:57.196130-05:00'
digest:
dandi:dandi-etag: 9646dbf0b4b86a2c6d716b633f858a30-1
dandi:sha2-256: 5e212d1c7b406af98c6528e18795034d11cec85e8bf36846a46239df4495422b
encodingFormat: application/x-nwb
id: dandiasset:b1861929-07b9-4acb-87a4-dd912d91a6eb
identifier: b1861929-07b9-4acb-87a4-dd912d91a6eb
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-01-0119-nac-het-#2024-1-25/sub-la-replay-01-0119-nac-het-#2024-1-25_ses-20240125T103000_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT37800S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_01_0119_nac het_#2024_1_25
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-01-25T10:30:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:51:57.196130-05:00'
id: urn:uuid:1e5e0a0c-7a14-4453-b12a-b6612375c25b
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:51:57.191965-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:16:52.268067-05:00'
contentSize: 35395072
contentUrl:
- https://api.dandiarchive.org/api/assets/635be2f2-05ae-4397-af4f-00fa341248d9/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/aef/36e/aef36ef1-9a90-45da-8d2b-ffa3e66c8a85
dateModified: '2024-02-12T09:51:56.905915-05:00'
digest:
dandi:dandi-etag: 653bbe96a55fa76e97461da1f8d072d0-1
dandi:sha2-256: 24c2e2b9f88ece5f534b7b3156185fec9b3e5543210f799edca60671d3757f25
encodingFormat: application/x-nwb
id: dandiasset:635be2f2-05ae-4397-af4f-00fa341248d9
identifier: 635be2f2-05ae-4397-af4f-00fa341248d9
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-01-0126-nac-het-#2024-2-1/sub-la-replay-01-0126-nac-het-#2024-2-1_ses-20240201T124100_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT45660S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_01_0126_nac het_#2024_2_1
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-02-01T12:41:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:51:56.905915-05:00'
id: urn:uuid:15f3056c-23dd-4a6a-976d-c9e75e344df9
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:51:56.902846-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:13:31.642634-05:00'
contentSize: 35292207
contentUrl:
- https://api.dandiarchive.org/api/assets/11493ab9-1cfe-48fd-a3d5-4ba8ee0d4edd/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/ba4/275/ba4275d8-b571-4be0-a055-f495370a49af
dateModified: '2024-02-12T09:51:56.801777-05:00'
digest:
dandi:dandi-etag: 22f835754e460146351b81bb001ea434-1
dandi:sha2-256: 557f7b9115a99887a5a884918f188efb8a26a462eee16a8c1323052052c03138
encodingFormat: application/x-nwb
id: dandiasset:11493ab9-1cfe-48fd-a3d5-4ba8ee0d4edd
identifier: 11493ab9-1cfe-48fd-a3d5-4ba8ee0d4edd
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-01-6dpf-0118-nac-het-#2024-1-18/sub-la-replay-01-6dpf-0118-nac-het-#2024-1-18_ses-20240118T131300_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT47580S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_01_6dpf_0118_nac het_#2024_1_18
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-01-18T13:13:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:51:56.801777-05:00'
id: urn:uuid:2cff8fa2-b8bb-4dc2-8a47-518fae2ed012
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:51:56.796790-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:16:15.317674-05:00'
contentSize: 35309227
contentUrl:
- https://api.dandiarchive.org/api/assets/8415a22a-0dc3-4aea-b977-e616c5a9a0b6/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/3f0/0ab/3f00ab27-5f18-411c-81a0-631febda0588
dateModified: '2024-02-12T09:51:57.082836-05:00'
digest:
dandi:dandi-etag: b7aeeb7c1a4a1f66d451ff0f699f7baf-1
dandi:sha2-256: 5c95aafb306da1582532c9e449d94192a368b84df5a298a967878f3780d28f8f
encodingFormat: application/x-nwb
id: dandiasset:8415a22a-0dc3-4aea-b977-e616c5a9a0b6
identifier: 8415a22a-0dc3-4aea-b977-e616c5a9a0b6
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-01-0124-nac-het-#2024-1-30/sub-la-replay-01-0124-nac-het-#2024-1-30_ses-20240130T122800_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT44880S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_01_0124_nac het_#2024_1_30
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-01-30T12:28:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:51:57.082836-05:00'
id: urn:uuid:3fea6bf0-8c61-43a2-a05a-a5d6273fcf31
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:51:57.079450-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:12:43.117706-05:00'
contentSize: 35432417
contentUrl:
- https://api.dandiarchive.org/api/assets/d8493c30-8c85-4bc6-9f5a-02ff73a2e96e/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/553/2c0/5532c041-a1c3-4096-a459-148d8018368a
dateModified: '2024-02-12T09:52:01.884388-05:00'
digest:
dandi:dandi-etag: 1db7e7729e570bf9f9c92b5b25e464f5-1
dandi:sha2-256: 830b7dcda5f08756e6bcd4f4e5e73a1d11ac14d634094e4e25cc830d4ed5187d
encodingFormat: application/x-nwb
id: dandiasset:d8493c30-8c85-4bc6-9f5a-02ff73a2e96e
identifier: d8493c30-8c85-4bc6-9f5a-02ff73a2e96e
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-01-6dpf-1124-nac-het-#2023-11-30/sub-la-replay-01-6dpf-1124-nac-het-#2023-11-30_ses-20231130T140400_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT50640S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_01_6dpf_1124_nac het_#2023_11_30
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-11-30T14:04:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:01.884388-05:00'
id: urn:uuid:4beda7bf-5c4d-47e3-8f48-09b4349a7e5d
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:01.877320-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:14:09.895015-05:00'
contentSize: 35000535
contentUrl:
- https://api.dandiarchive.org/api/assets/8c42c21c-6c0b-436f-a890-292360e6c243/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/0f6/ee4/0f6ee431-a0d0-443a-b99b-e6f1584caa47
dateModified: '2024-02-12T09:52:02.116410-05:00'
digest:
dandi:dandi-etag: 47e5b014fe854e8251458df6431687db-1
dandi:sha2-256: c09c2643afcc44b3d66892563707d45e479387494e944638138fdcf5c701b2ec
encodingFormat: application/x-nwb
id: dandiasset:8c42c21c-6c0b-436f-a890-292360e6c243
identifier: 8c42c21c-6c0b-436f-a890-292360e6c243
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-02-0117-nac-het-#2024-1-23/sub-la-replay-02-0117-nac-het-#2024-1-23_ses-20240123T154500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT56700S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_02_0117_nac het_#2024_1_23
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-01-23T15:45:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:02.116410-05:00'
id: urn:uuid:dcef42f4-b1d8-4743-a438-51ea2cb421ee
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:02.098153-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:15:26.277973-05:00'
contentSize: 36149957
contentUrl:
- https://api.dandiarchive.org/api/assets/590c59a1-a2c8-4a44-8561-6e1d0c204e27/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/d1f/800/d1f8008e-6d0a-4a48-a090-43f446cd65a9
dateModified: '2024-02-12T09:52:03.468817-05:00'
digest:
dandi:dandi-etag: 03ff2a54a322d901a609272d14b3d7c3-1
dandi:sha2-256: d380b8396441f92e29bf82090a5d6767a3832c12ff21d012d24e1db3d1b31549
encodingFormat: application/x-nwb
id: dandiasset:590c59a1-a2c8-4a44-8561-6e1d0c204e27
identifier: 590c59a1-a2c8-4a44-8561-6e1d0c204e27
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-02-0119-nac-het-#2024-1-25/sub-la-replay-02-0119-nac-het-#2024-1-25_ses-20240125T122100_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT44460S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_02_0119_nac het_#2024_1_25
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-01-25T12:21:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:03.468817-05:00'
id: urn:uuid:373ad9f3-1fff-4cd7-9d32-68ac9da4fea7
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:03.407870-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:17:04.425394-05:00'
contentSize: 35226683
contentUrl:
- https://api.dandiarchive.org/api/assets/3216f5de-f4ed-43cf-a432-c7b737552737/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/d6f/fb6/d6ffb685-34f1-4284-be39-ff1b07c93b35
dateModified: '2024-02-12T09:52:03.980095-05:00'
digest:
dandi:dandi-etag: 01a65c63114cdc1277897a4ee2ba3de7-1
dandi:sha2-256: 3899f66ef462dd3d7d99b13942cd6476a7fcad0b77d4937ae0fb9d09c864a344
encodingFormat: application/x-nwb
id: dandiasset:3216f5de-f4ed-43cf-a432-c7b737552737
identifier: 3216f5de-f4ed-43cf-a432-c7b737552737
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-02-0126-nac-het-#2024-2-1/sub-la-replay-02-0126-nac-het-#2024-2-1_ses-20240201T144800_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT53280S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_02_0126_nac het_#2024_2_1
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-02-01T14:48:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:03.980095-05:00'
id: urn:uuid:866996b4-80a3-4812-b606-174ce6212080
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:03.916222-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:13:44.250453-05:00'
contentSize: 34175446
contentUrl:
- https://api.dandiarchive.org/api/assets/c5408640-2f80-4d36-bcf5-1c76bedbb4a9/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/1e6/d0e/1e6d0e84-620f-43f9-b13a-9ba0ecf32a1e
dateModified: '2024-02-12T09:52:04.324076-05:00'
digest:
dandi:dandi-etag: 5a38e8ce90e946b6a8dcbd606ab45710-1
dandi:sha2-256: e1b04618a76cdd4fc63771a00ca8d7820ac8d6a0b70bff959aea90faabb913d8
encodingFormat: application/x-nwb
id: dandiasset:c5408640-2f80-4d36-bcf5-1c76bedbb4a9
identifier: c5408640-2f80-4d36-bcf5-1c76bedbb4a9
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-02-6dpf-0118-nac-het-#2024-1-18/sub-la-replay-02-6dpf-0118-nac-het-#2024-1-18_ses-20240118T172200_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT62520S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_02_6dpf_0118_nac het_#2024_1_18
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-01-18T17:22:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:04.324076-05:00'
id: urn:uuid:f8f935c2-deaf-4728-89dd-1c090e48753d
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:04.246573-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-12T09:44:06.820571-05:00'
contentSize: 34890153
contentUrl:
- https://api.dandiarchive.org/api/assets/2d713be8-7c01-4c8a-85f0-a4a66e6923d7/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/0c5/0e5/0c50e52b-c937-4220-9313-cb16b46813da
dateModified: '2024-02-12T09:52:06.300657-05:00'
digest:
dandi:dandi-etag: 8cf81d4815ae45e92f73b9ccad0344df-1
dandi:sha2-256: 5d762a60f12cc937cc73856c5badd3d79743593a4a8edcafd3e904a586605598
encodingFormat: application/x-nwb
id: dandiasset:2d713be8-7c01-4c8a-85f0-a4a66e6923d7
identifier: 2d713be8-7c01-4c8a-85f0-a4a66e6923d7
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-02-6dpf-0201-nac-het-#2024-2-9/sub-la-replay-02-6dpf-0201-nac-het-#2024-2-9_ses-20240209T123400_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT45240S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_02_6dpf_0201_nac het_#2024_2_9
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-02-09T12:34:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:06.300657-05:00'
id: urn:uuid:f85c7f84-20c6-4f71-b4f5-82622215435a
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:06.198294-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:12:05.867063-05:00'
contentSize: 34903164
contentUrl:
- https://api.dandiarchive.org/api/assets/ad66a917-bda7-4ee4-b853-cd1eaa9247a2/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/e8f/8cd/e8f8cdc9-77a5-44c7-bdf7-3f6ea66752f1
dateModified: '2024-02-12T09:52:06.847193-05:00'
digest:
dandi:dandi-etag: fa4a0fee2b1f5292122e91689e347f8e-1
dandi:sha2-256: 43c3ec346c7746f7121d27ee1930838adecd4e5214d68db0648d96883e2b27f1
encodingFormat: application/x-nwb
id: dandiasset:ad66a917-bda7-4ee4-b853-cd1eaa9247a2
identifier: ad66a917-bda7-4ee4-b853-cd1eaa9247a2
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-02-6dpf-1122-nac-het-#2023-11-28/sub-la-replay-02-6dpf-1122-nac-het-#2023-11-28_ses-20231128T163300_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT59580S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_02_6dpf_1122_nac het_#2023_11_28
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-11-28T16:33:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:06.847193-05:00'
id: urn:uuid:bc0df769-c440-4ca8-a697-98cb776cbd15
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:06.742042-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:12:55.685261-05:00'
contentSize: 35291567
contentUrl:
- https://api.dandiarchive.org/api/assets/a2b6461b-4c2d-4260-9b50-0fbb5ccd3ba6/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/58c/a56/58ca56dc-0ee8-4422-aa3d-294aebd44e44
dateModified: '2024-02-12T09:52:07.770466-05:00'
digest:
dandi:dandi-etag: f0457bc7ea4b9cd0af411356a2d1d20a-1
dandi:sha2-256: 88dbe82fd0207f39bd98288bd54ac2728ad4866356713b164f3dab172e8531e5
encodingFormat: application/x-nwb
id: dandiasset:a2b6461b-4c2d-4260-9b50-0fbb5ccd3ba6
identifier: a2b6461b-4c2d-4260-9b50-0fbb5ccd3ba6
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-02-6dpf-1124-nac-het-#2023-11-30/sub-la-replay-02-6dpf-1124-nac-het-#2023-11-30_ses-20231130T155900_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P5DT57540S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_02_6dpf_1124_nac het_#2023_11_30
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-11-30T15:59:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:07.770466-05:00'
id: urn:uuid:6da31c88-c3f8-4992-94a2-308530b5af4e
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:07.766418-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:15:38.301168-05:00'
contentSize: 35575328
contentUrl:
- https://api.dandiarchive.org/api/assets/f41802d0-3057-4149-a865-88fc63262e0a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/e96/b14/e96b144a-d472-4c0d-a68c-601a05991741
dateModified: '2024-02-12T09:52:08.837568-05:00'
digest:
dandi:dandi-etag: b8b8aafaf2c38d4841a365c61485a68c-1
dandi:sha2-256: 98f85ad4dcf3864a99af63308884ff586a7cbcfd45fd45c4e167d5389d3e0a39
encodingFormat: application/x-nwb
id: dandiasset:f41802d0-3057-4149-a865-88fc63262e0a
identifier: f41802d0-3057-4149-a865-88fc63262e0a
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-03-0119-nac-het-#2024-1-25/sub-la-replay-03-0119-nac-het-#2024-1-25_ses-20240125T143400_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT52440S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_03_0119_nac het_#2024_1_25
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-01-25T14:34:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:08.837568-05:00'
id: urn:uuid:eb933fc1-6e11-42d8-88c1-db63fd4dea58
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:08.735643-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-12T09:44:24.806755-05:00'
contentSize: 35120058
contentUrl:
- https://api.dandiarchive.org/api/assets/dbb49a1c-11a7-4858-ab16-a90dd797d761/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/90e/786/90e786e4-102d-4085-8a5f-ea1cebcbae74
dateModified: '2024-02-12T09:52:08.880164-05:00'
digest:
dandi:dandi-etag: 969659376a60ff641d3e7cf6350dae9a-1
dandi:sha2-256: 3971c8f1eea05f77ddc6891cd56d75e1d46ed86415e75c7a174661c3abcbb823
encodingFormat: application/x-nwb
id: dandiasset:dbb49a1c-11a7-4858-ab16-a90dd797d761
identifier: dbb49a1c-11a7-4858-ab16-a90dd797d761
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-03-6dpf-0201-nac-het-#2024-2-9/sub-la-replay-03-6dpf-0201-nac-het-#2024-2-9_ses-20240209T143800_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT52680S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_03_6dpf_0201_nac het_#2024_2_9
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-02-09T14:38:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:08.880164-05:00'
id: urn:uuid:cbe115ce-b42b-4aa8-8c02-a2af3ae4afe6
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:08.790535-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:15:50.910647-05:00'
contentSize: 35544554
contentUrl:
- https://api.dandiarchive.org/api/assets/c9fe928e-4456-40d1-b68e-d4140f351c45/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/d1b/ae4/d1bae47b-92c6-4706-bb27-a741e86919c8
dateModified: '2024-02-12T09:52:11.243250-05:00'
digest:
dandi:dandi-etag: 7e7e55564e1ad4b22d2911b3ef0af94d-1
dandi:sha2-256: c99e8959f54856ca99c9eab6f5bc0a7e3f2c0dddb10550a9a05a76bf18d6a414
encodingFormat: application/x-nwb
id: dandiasset:c9fe928e-4456-40d1-b68e-d4140f351c45
identifier: c9fe928e-4456-40d1-b68e-d4140f351c45
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay-04-0119-nac-het-#2024-1-25/sub-la-replay-04-0119-nac-het-#2024-1-25_ses-20240125T162300_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT58980S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay_04_0119_nac het_#2024_1_25
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-01-25T16:23:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:11.243250-05:00'
id: urn:uuid:8d4efbfc-4181-47f0-a2e2-7c66c8836b09
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:11.162354-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-12T09:43:49.996634-05:00'
contentSize: 35069595
contentUrl:
- https://api.dandiarchive.org/api/assets/7bcc7809-8754-4f7b-b3cf-5f8c7ef71491/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/5e0/2fa/5e02fa14-5211-40d2-bfd3-2b3349824490
dateModified: '2024-02-12T09:52:12.063700-05:00'
digest:
dandi:dandi-etag: 2b3495b3456d44c5c3020c2eee00e592-1
dandi:sha2-256: 017b9cb37db79e9d61fcb3dc387690b4103ce24b171e0f68decf3dddb09dde7a
encodingFormat: application/x-nwb
id: dandiasset:7bcc7809-8754-4f7b-b3cf-5f8c7ef71491
identifier: 7bcc7809-8754-4f7b-b3cf-5f8c7ef71491
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-la-replay01-6dpf-0201-nac-het-#2024-2-9/sub-la-replay01-6dpf-0201-nac-het-#2024-2-9_ses-20240209T103500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT38100S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: la_replay01_6dpf_0201_nac het_#2024_2_9
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2024-02-09T10:35:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:12.063700-05:00'
id: urn:uuid:384dc261-8805-456e-beac-daf28d41eafe
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:11.951779-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:10:26.369404-05:00'
contentSize: 35148792
contentUrl:
- https://api.dandiarchive.org/api/assets/97733bd8-02d0-4eea-9b33-a3d7945ba2f3/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/aee/74c/aee74c3a-83de-4d73-a6ca-1af15819f100
dateModified: '2024-02-12T09:52:11.856612-05:00'
digest:
dandi:dandi-etag: de827fe61cad50d746aad1310cedd569-1
dandi:sha2-256: 4b1c67f85afe5743689dcf0cf82300f59f3bb2f304e84e621ad6265f75f35d58
encodingFormat: application/x-nwb
id: dandiasset:97733bd8-02d0-4eea-9b33-a3d7945ba2f3
identifier: 97733bd8-02d0-4eea-9b33-a3d7945ba2f3
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-10-26/sub-replay-la-plaid-01-nac-het-#2023-10-26_ses-20231026T150300_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT54180S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_10_26
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-10-26T15:03:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:11.856612-05:00'
id: urn:uuid:1c00593f-8b01-47a9-91cb-d55606978dd3
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:11.722758-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:09:23.926324-05:00'
contentSize: 34835016
contentUrl:
- https://api.dandiarchive.org/api/assets/911b0d64-49e5-4197-be52-5514fa57c073/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/772/059/772059d2-eeb1-4bc4-8d71-f48f87f772a9
dateModified: '2024-02-12T09:52:13.940381-05:00'
digest:
dandi:dandi-etag: e257850aef518b1065fb9335e0dff650-1
dandi:sha2-256: 53620f86909c4b1fea8fa944a51668f9731231daa7b04665797984ccfc71d2f5
encodingFormat: application/x-nwb
id: dandiasset:911b0d64-49e5-4197-be52-5514fa57c073
identifier: 911b0d64-49e5-4197-be52-5514fa57c073
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-11-9/sub-replay-la-plaid-01-nac-het-#2023-11-9_ses-20231109T135200_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT53520S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_11_9
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-11-09T13:52:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:13.940381-05:00'
id: urn:uuid:c21a693f-14c9-4f00-b696-cbafb5508134
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:13.832312-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:11:16.286983-05:00'
contentSize: 35239696
contentUrl:
- https://api.dandiarchive.org/api/assets/3bc6dc89-9373-49bc-a616-2edc4fdd35e5/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/651/3e6/6513e6d6-1dd6-4846-96b4-35660e1beef1
dateModified: '2024-02-12T09:52:13.992081-05:00'
digest:
dandi:dandi-etag: b87233855e240ff9f5ff2661900b5c3b-1
dandi:sha2-256: 1e35b93f0d055f123b03d082be6e9e8542842134673f2b905e628be0935e269e
encodingFormat: application/x-nwb
id: dandiasset:3bc6dc89-9373-49bc-a616-2edc4fdd35e5
identifier: 3bc6dc89-9373-49bc-a616-2edc4fdd35e5
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-11-2/sub-replay-la-plaid-01-nac-het-#2023-11-2_ses-20231102T160500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT57900S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_11_2
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-11-02T16:05:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:13.992081-05:00'
id: urn:uuid:442efe8a-5d2c-4e67-b71c-59ab3c0c4ebc
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:13.882417-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T09:55:01.737217-05:00'
contentSize: 35369520
contentUrl:
- https://api.dandiarchive.org/api/assets/088a2235-a592-45f0-bf47-104e56210505/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/79f/54d/79f54dad-cd91-4a7b-a049-c590b265d7ac
dateModified: '2024-02-12T09:52:15.637070-05:00'
digest:
dandi:dandi-etag: 04451702f1f6f58022cf3115db165495-1
dandi:sha2-256: 3b512d7cd3a6f622bd6ab18b1f9dd27846beb7899f92bc04d9a42db1e8f6ef22
encodingFormat: application/x-nwb
id: dandiasset:088a2235-a592-45f0-bf47-104e56210505
identifier: 088a2235-a592-45f0-bf47-104e56210505
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-7-12/sub-replay-la-plaid-01-nac-het-#2023-7-12_ses-20230712T144600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT53160S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_7_12
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-07-12T14:46:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:15.637070-05:00'
id: urn:uuid:c3e85298-0643-4e8a-bf38-4068c6ac04e2
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:15.632030-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T09:55:27.158376-05:00'
contentSize: 34241138
contentUrl:
- https://api.dandiarchive.org/api/assets/1d2f8d5f-56db-4f71-807a-1878d6aab8ce/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/a2d/92a/a2d92a9b-e738-4eca-a483-a7d3c4d6f156
dateModified: '2024-02-12T09:52:16.234634-05:00'
digest:
dandi:dandi-etag: 3d721c76dcda63625d578ce70208fa70-1
dandi:sha2-256: 9485f87df2fdf6dbae7948ae5f1f7ae636e66558507608fdd3fffaa9770fe84f
encodingFormat: application/x-nwb
id: dandiasset:1d2f8d5f-56db-4f71-807a-1878d6aab8ce
identifier: 1d2f8d5f-56db-4f71-807a-1878d6aab8ce
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-7-13/sub-replay-la-plaid-01-nac-het-#2023-7-13_ses-20230713T123000_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT45000S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_7_13
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-07-13T12:30:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:16.234634-05:00'
id: urn:uuid:03938668-6791-40b9-8fe7-432a3f751ba8
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:16.116299-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T09:56:33.240053-05:00'
contentSize: 35482565
contentUrl:
- https://api.dandiarchive.org/api/assets/f7b70068-8eb0-4557-85d4-ada371835f8d/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/b55/f8b/b55f8be6-1d3b-43cf-b015-c0d6ad392a01
dateModified: '2024-02-12T09:52:16.874264-05:00'
digest:
dandi:dandi-etag: 18a030cfed997a11fbb560a384ea012b-1
dandi:sha2-256: b37402ab8f50785d70f6f3cc94550699e9ef03c47754dcaef25430addbd5b9de
encodingFormat: application/x-nwb
id: dandiasset:f7b70068-8eb0-4557-85d4-ada371835f8d
identifier: f7b70068-8eb0-4557-85d4-ada371835f8d
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-7-19/sub-replay-la-plaid-01-nac-het-#2023-7-19_ses-20230719T124600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT45960S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_7_19
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-07-19T12:46:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:16.873259-05:00'
id: urn:uuid:186f6b75-a76a-4493-919f-2ef8fcb95b3c
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:16.818523-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:01:27.235455-05:00'
contentSize: 35171509
contentUrl:
- https://api.dandiarchive.org/api/assets/3a3eb0d7-6447-4609-884e-367d1348ead6/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/bac/042/bac042e0-d60b-4a46-9d31-1dbf21223d07
dateModified: '2024-02-12T09:52:18.073241-05:00'
digest:
dandi:dandi-etag: 27dc72750b70b59cde7fa6ce6e3f65e6-1
dandi:sha2-256: 0908cdca271f6a3ca333c6f177ae08bb3c1756f96ba28299cb7f79113126ea10
encodingFormat: application/x-nwb
id: dandiasset:3a3eb0d7-6447-4609-884e-367d1348ead6
identifier: 3a3eb0d7-6447-4609-884e-367d1348ead6
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-8-14/sub-replay-la-plaid-01-nac-het-#2023-8-14_ses-20230814T114500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT42300S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_8_14
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-14T11:45:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:18.073241-05:00'
id: urn:uuid:69dcbbe5-3c5c-4496-bd42-b1125dad0632
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:18.070183-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T09:57:36.792119-05:00'
contentSize: 35304628
contentUrl:
- https://api.dandiarchive.org/api/assets/4de75a42-a39a-4f28-89fd-03670dbaea30/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/fe4/a4d/fe4a4d43-339f-48fe-8545-2c0d3d7248a6
dateModified: '2024-02-12T09:52:18.428168-05:00'
digest:
dandi:dandi-etag: 7856470198941413cd53047db59a0d04-1
dandi:sha2-256: 2ba109c47b396ea3718798767a84b795dad78c0e936353c2bce979d191c6f91b
encodingFormat: application/x-nwb
id: dandiasset:4de75a42-a39a-4f28-89fd-03670dbaea30
identifier: 4de75a42-a39a-4f28-89fd-03670dbaea30
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-8-2/sub-replay-la-plaid-01-nac-het-#2023-8-2_ses-20230802T125500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT46500S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_8_2
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-02T12:55:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:18.428168-05:00'
id: urn:uuid:c66f5e98-758d-4d75-855c-ca2631e23422
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:18.425116-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:04:17.706456-05:00'
contentSize: 35130855
contentUrl:
- https://api.dandiarchive.org/api/assets/e7f7b03a-b317-469e-a962-18de53a8d9c7/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/614/978/614978ad-f907-460e-b982-60c57dc708cd
dateModified: '2024-02-12T09:52:19.594754-05:00'
digest:
dandi:dandi-etag: 3a2679ec7aa67f04abbe14a88ba3333b-1
dandi:sha2-256: 0909a67996bce2aabf6677ddf93a506608569bd20fe437164064084fcaba4ed6
encodingFormat: application/x-nwb
id: dandiasset:e7f7b03a-b317-469e-a962-18de53a8d9c7
identifier: e7f7b03a-b317-469e-a962-18de53a8d9c7
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-8-24/sub-replay-la-plaid-01-nac-het-#2023-8-24_ses-20230824T133300_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT48780S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_8_24
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-24T13:33:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:19.594754-05:00'
id: urn:uuid:90f60dd1-e4e4-43e6-9776-400419ac870e
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:19.591195-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:00:29.187003-05:00'
contentSize: 35804461
contentUrl:
- https://api.dandiarchive.org/api/assets/9b82eb87-329a-4ee4-8d2d-ca633808ab48/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/2d2/e13/2d2e1324-205f-4cae-b2d9-f6c1e75c5eb8
dateModified: '2024-02-12T09:52:21.058040-05:00'
digest:
dandi:dandi-etag: b6afdd973e8654e82bc7fdee89d592a5-1
dandi:sha2-256: 625c67af6db849f64a526e51e28505dda2a52040d5e17d08bd3eb7452d7b48c4
encodingFormat: application/x-nwb
id: dandiasset:9b82eb87-329a-4ee4-8d2d-ca633808ab48
identifier: 9b82eb87-329a-4ee4-8d2d-ca633808ab48
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-8-3/sub-replay-la-plaid-01-nac-het-#2023-8-3_ses-20230803T105400_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT39240S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_8_3
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-03T10:54:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:21.058040-05:00'
id: urn:uuid:fce52100-438f-4038-9554-9781ca7ccc5b
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:20.957670-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:05:54.546181-05:00'
contentSize: 35564532
contentUrl:
- https://api.dandiarchive.org/api/assets/9c431821-a390-4d19-8c57-b483e2518fb3/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/07e/29e/07e29ed5-ce53-449c-a44a-9d6df1255193
dateModified: '2024-02-12T09:52:21.477250-05:00'
digest:
dandi:dandi-etag: 41ab4d3d3173d682f7fb4640a075af88-1
dandi:sha2-256: 722d9b294724bbe9fd226082b36c56d70fd337987ef157baba1d90af7e2f1040
encodingFormat: application/x-nwb
id: dandiasset:9c431821-a390-4d19-8c57-b483e2518fb3
identifier: 9c431821-a390-4d19-8c57-b483e2518fb3
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-8-30/sub-replay-la-plaid-01-nac-het-#2023-8-30_ses-20230830T124600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT45960S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_8_30
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-30T12:46:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:21.477250-05:00'
id: urn:uuid:a17c8d67-9b66-45e1-860c-838db1ea14d3
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:21.359366-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:07:06.681046-05:00'
contentSize: 35079359
contentUrl:
- https://api.dandiarchive.org/api/assets/db7651b2-3c9b-4528-b62e-aa9c224305b7/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/f76/93f/f7693fcc-068f-4343-9f5f-16fa3254e0aa
dateModified: '2024-02-12T09:52:22.417661-05:00'
digest:
dandi:dandi-etag: ef4efcaae85a8763969c4cd24dcd3050-1
dandi:sha2-256: 82fb5fe48ab17bcb6bd4e1efed96b2df8c93e2d7e87fb0858e6c47ea7b1caae7
encodingFormat: application/x-nwb
id: dandiasset:db7651b2-3c9b-4528-b62e-aa9c224305b7
identifier: db7651b2-3c9b-4528-b62e-aa9c224305b7
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-8-31/sub-replay-la-plaid-01-nac-het-#2023-8-31_ses-20230831T112600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT41160S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_8_31
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-31T11:26:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:22.417661-05:00'
id: urn:uuid:657baa57-62f0-484c-ac0a-b1239a5ee0eb
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:22.413618-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:07:56.671799-05:00'
contentSize: 34967157
contentUrl:
- https://api.dandiarchive.org/api/assets/2f667dfa-3fd6-464c-a9b4-343b9beb41c6/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/821/8a9/8218a940-016c-403f-a7ed-c9e8fb522c6b
dateModified: '2024-02-12T09:52:23.315291-05:00'
digest:
dandi:dandi-etag: fcd99467725eefbe50e3b607cf3771d3-1
dandi:sha2-256: b591d70c793935da57b0d6a66ede488ae30d971b950bf38087bedb9cd07da7fd
encodingFormat: application/x-nwb
id: dandiasset:2f667dfa-3fd6-464c-a9b4-343b9beb41c6
identifier: 2f667dfa-3fd6-464c-a9b4-343b9beb41c6
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-9-13/sub-replay-la-plaid-01-nac-het-#2023-9-13_ses-20230913T142400_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT51840S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_9_13
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-09-13T14:24:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:23.315291-05:00'
id: urn:uuid:c11a7f1d-99d4-40a2-9993-78e68d5c6adc
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:23.312263-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:08:21.581257-05:00'
contentSize: 35330577
contentUrl:
- https://api.dandiarchive.org/api/assets/178b9c4d-d3a4-4bd6-8cdf-c32d87c4a174/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/ae3/457/ae345797-b0f5-4640-95fc-6573181afe8f
dateModified: '2024-02-12T09:52:23.959955-05:00'
digest:
dandi:dandi-etag: 23494e4069b389f1adbca074ae04985b-1
dandi:sha2-256: 217461bfc1ba508929fba5693c9f06211bfd7d9327c920c14b985f807189b5c3
encodingFormat: application/x-nwb
id: dandiasset:178b9c4d-d3a4-4bd6-8cdf-c32d87c4a174
identifier: 178b9c4d-d3a4-4bd6-8cdf-c32d87c4a174
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-9-14/sub-replay-la-plaid-01-nac-het-#2023-9-14_ses-20230914T133700_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT49020S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_9_14
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-09-14T13:37:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:23.959955-05:00'
id: urn:uuid:dd7f1742-e456-47e0-995b-62ab58c82415
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:23.850282-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:08:46.503110-05:00'
contentSize: 35106241
contentUrl:
- https://api.dandiarchive.org/api/assets/dc5eb6f2-84dc-43ed-a929-aed4ec948428/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/ca6/4e8/ca64e8e2-e7f1-4ae5-b2dc-6f648adb3051
dateModified: '2024-02-12T09:52:26.083006-05:00'
digest:
dandi:dandi-etag: 30c2e1070ce2e7cf3f7dcc140d3e2dfc-1
dandi:sha2-256: bff83fbb09deddacc02c58a3674d273984b98a9f44da8cfa1e481175d93a683a
encodingFormat: application/x-nwb
id: dandiasset:dc5eb6f2-84dc-43ed-a929-aed4ec948428
identifier: dc5eb6f2-84dc-43ed-a929-aed4ec948428
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-01-nac-het-#2023-9-20/sub-replay-la-plaid-01-nac-het-#2023-9-20_ses-20230920T134900_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT49740S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_01_nac het_#2023_9_20
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-09-20T13:49:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:26.083006-05:00'
id: urn:uuid:0c4c487a-86db-4651-a75b-a133e7fdd9a9
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:25.972840-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:09:36.431065-05:00'
contentSize: 35180503
contentUrl:
- https://api.dandiarchive.org/api/assets/d3adddd9-7aa8-4e33-b17f-3c34be453886/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/6db/fdb/6dbfdbad-6113-4f50-82e4-e0559f277457
dateModified: '2024-02-12T09:52:27.373567-05:00'
digest:
dandi:dandi-etag: 1d125d7d7b234065fc1da75c4b2ec72b-1
dandi:sha2-256: c638df0f3b15adef413402e0b68fab80f0ca364c92183f9904bfcb318beef0af
encodingFormat: application/x-nwb
id: dandiasset:d3adddd9-7aa8-4e33-b17f-3c34be453886
identifier: d3adddd9-7aa8-4e33-b17f-3c34be453886
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-02-nac-het-#2023-11-9/sub-replay-la-plaid-02-nac-het-#2023-11-9_ses-20231109T155500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT60900S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_02_nac het_#2023_11_9
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-11-09T15:55:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:27.373567-05:00'
id: urn:uuid:f2826117-7f10-4b29-8e7f-59c28b3a6b30
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:27.303949-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T09:55:50.350724-05:00'
contentSize: 35325202
contentUrl:
- https://api.dandiarchive.org/api/assets/17be548d-6460-4b27-9073-e7a4b75b1a27/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/5a9/7a5/5a97a5d4-7bb7-4beb-99ba-58b8f886e2e3
dateModified: '2024-02-12T09:52:27.921414-05:00'
digest:
dandi:dandi-etag: 878fb84d1cb93ade71ad65b43d9c9cfb-1
dandi:sha2-256: 5fc745f9f80a0df205197d9417d2730e046fd9cc46403d7ee3cb163387a16bd1
encodingFormat: application/x-nwb
id: dandiasset:17be548d-6460-4b27-9073-e7a4b75b1a27
identifier: 17be548d-6460-4b27-9073-e7a4b75b1a27
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-02-nac-het-#2023-7-13/sub-replay-la-plaid-02-nac-het-#2023-7-13_ses-20230713T142300_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT51780S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_02_nac het_#2023_7_13
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-07-13T14:23:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:27.921414-05:00'
id: urn:uuid:4304c2c8-1e82-44b5-a602-4f486893dca2
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:27.864335-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T09:57:15.706468-05:00'
contentSize: 35428834
contentUrl:
- https://api.dandiarchive.org/api/assets/a3c23031-269f-47b2-987b-b2491799a27d/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/48b/5fd/48b5fd66-0750-4f53-b870-78a657964494
dateModified: '2024-02-12T09:52:28.333620-05:00'
digest:
dandi:dandi-etag: eb0805214f97d2b13619f82972228e26-1
dandi:sha2-256: 123df9661f7d6396399058cd903ee49ae6da59db61849b4fd18e72c4b49a1dc5
encodingFormat: application/x-nwb
id: dandiasset:a3c23031-269f-47b2-987b-b2491799a27d
identifier: a3c23031-269f-47b2-987b-b2491799a27d
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-02-nac-het-#2023-7-26/sub-replay-la-plaid-02-nac-het-#2023-7-26_ses-20230726T152500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT55500S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_02_nac het_#2023_7_26
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-07-26T15:25:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:28.333620-05:00'
id: urn:uuid:6162f5e8-be13-483a-8cab-9e1fbab8b276
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:28.200048-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:10:38.771159-05:00'
contentSize: 35037840
contentUrl:
- https://api.dandiarchive.org/api/assets/bd743acc-3890-4ee7-b636-91d690169faf/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/6ed/c0e/6edc0e0c-0c4d-4bd5-9eb9-682c69d238c3
dateModified: '2024-02-12T09:52:26.406641-05:00'
digest:
dandi:dandi-etag: 59c8de5a5076842b21ea4448fbf86bde-1
dandi:sha2-256: 695010058ae298017d9f1622eef59f99bcd2507c55bacdaee4fbafd7c9d874d4
encodingFormat: application/x-nwb
id: dandiasset:bd743acc-3890-4ee7-b636-91d690169faf
identifier: bd743acc-3890-4ee7-b636-91d690169faf
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-02-nac-het-#2023-10-26/sub-replay-la-plaid-02-nac-het-#2023-10-26_ses-20231026T170900_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT61740S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_02_nac het_#2023_10_26
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-10-26T17:09:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:26.406641-05:00'
id: urn:uuid:ea1eecdf-e67a-4af3-9ebf-c5aaa46384ad
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:26.404459-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:01:45.536228-05:00'
contentSize: 35064129
contentUrl:
- https://api.dandiarchive.org/api/assets/3c78a946-347b-4f41-a47e-367762af94f5/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/3d6/424/3d6424fa-c4e4-4efe-a8dc-98b1cd682187
dateModified: '2024-02-12T09:52:29.947940-05:00'
digest:
dandi:dandi-etag: f0dfdf1a1cf98ab77f75dd378fcd6bd4-1
dandi:sha2-256: 6736b2d7364394dbd44709e3d9e55aba4ffbf74c0b4cb8796a9b619cbc641795
encodingFormat: application/x-nwb
id: dandiasset:3c78a946-347b-4f41-a47e-367762af94f5
identifier: 3c78a946-347b-4f41-a47e-367762af94f5
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-02-nac-het-#2023-8-14/sub-replay-la-plaid-02-nac-het-#2023-8-14_ses-20230814T133200_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT48720S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_02_nac het_#2023_8_14
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-14T13:32:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:29.947940-05:00'
id: urn:uuid:39cf94c8-8bf8-40de-8ee5-5cda65fd4f4f
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:29.826485-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:02:22.372174-05:00'
contentSize: 35853821
contentUrl:
- https://api.dandiarchive.org/api/assets/04c740a5-b3db-4d48-b781-36c8f71abf42/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/a37/7fd/a377fdf0-6de1-4795-aa16-99e01aa2685b
dateModified: '2024-02-12T09:52:31.085217-05:00'
digest:
dandi:dandi-etag: 16952c16221fc273b7a19e2fc972db42-1
dandi:sha2-256: 4d74df11c7cbd07cde77ac9de91911f1c921f35728e079e017b5d7a2ef5700a3
encodingFormat: application/x-nwb
id: dandiasset:04c740a5-b3db-4d48-b781-36c8f71abf42
identifier: 04c740a5-b3db-4d48-b781-36c8f71abf42
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-02-nac-het-#2023-8-16/sub-replay-la-plaid-02-nac-het-#2023-8-16_ses-20230816T170400_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT61440S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_02_nac het_#2023_8_16
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-16T17:04:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:31.085217-05:00'
id: urn:uuid:68bdc965-82f2-4d38-aadc-27a628b36c2c
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:31.082191-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T09:57:58.290247-05:00'
contentSize: 35883540
contentUrl:
- https://api.dandiarchive.org/api/assets/f2270851-d59c-40ea-acdb-0cc6a2c4c127/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/8c8/726/8c8726bc-0f75-4bed-9f03-f5a1f2755d74
dateModified: '2024-02-12T09:52:32.464887-05:00'
digest:
dandi:dandi-etag: bf6054a2be4b0d4abb5f0fd25c738367-1
dandi:sha2-256: f04e9ae7bb11be67746bcf00ea3ccce3f1fbad5364add3f5e7477419ed2d44b6
encodingFormat: application/x-nwb
id: dandiasset:f2270851-d59c-40ea-acdb-0cc6a2c4c127
identifier: f2270851-d59c-40ea-acdb-0cc6a2c4c127
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-02-nac-het-#2023-8-2/sub-replay-la-plaid-02-nac-het-#2023-8-2_ses-20230802T145900_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT53940S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_02_nac het_#2023_8_2
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-02T14:59:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:32.464887-05:00'
id: urn:uuid:f239953d-2786-44dc-9dcb-4375b49cd616
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:32.378378-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:04:36.705958-05:00'
contentSize: 35236969
contentUrl:
- https://api.dandiarchive.org/api/assets/b00e3020-3ba9-478a-8afc-75f3c01ee006/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/f7a/9ed/f7a9eda1-f8f2-4286-8137-4401b43ac001
dateModified: '2024-02-12T09:52:32.838860-05:00'
digest:
dandi:dandi-etag: 12e97d7261a875d000ca3769daba4670-1
dandi:sha2-256: 35707cdbd4ce2880323ba7f8d95f0c2ee99e5b38782a233fdd1f69a2a88bdf56
encodingFormat: application/x-nwb
id: dandiasset:b00e3020-3ba9-478a-8afc-75f3c01ee006
identifier: b00e3020-3ba9-478a-8afc-75f3c01ee006
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-02-nac-het-#2023-8-24/sub-replay-la-plaid-02-nac-het-#2023-8-24_ses-20230824T163200_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT59520S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_02_nac het_#2023_8_24
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-24T16:32:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:32.838860-05:00'
id: urn:uuid:c1fb7232-2cda-4188-b019-d05a8aa8f145
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:32.778151-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:00:47.421770-05:00'
contentSize: 35094272
contentUrl:
- https://api.dandiarchive.org/api/assets/2ecf2955-376a-49c0-b183-f599a0944349/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/7eb/dfc/7ebdfc1f-db7d-4fb8-be00-054b7bb34054
dateModified: '2024-02-12T09:52:33.736235-05:00'
digest:
dandi:dandi-etag: e28a452a753a709ea60ceb59d7a33a3a-1
dandi:sha2-256: e6d7f1625d018f85d9a6202d480b5c9b4f6d392da45ae72afd639d626083282c
encodingFormat: application/x-nwb
id: dandiasset:2ecf2955-376a-49c0-b183-f599a0944349
identifier: 2ecf2955-376a-49c0-b183-f599a0944349
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-02-nac-het-#2023-8-3/sub-replay-la-plaid-02-nac-het-#2023-8-3_ses-20230803T135500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT50100S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_02_nac het_#2023_8_3
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-03T13:55:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:33.736235-05:00'
id: urn:uuid:20fcae6f-28c1-4571-8d0e-70ac33a20002
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:33.683252-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:07:19.143325-05:00'
contentSize: 34873213
contentUrl:
- https://api.dandiarchive.org/api/assets/2e9b826c-c07e-4cbb-9349-c7e139b92772/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/fef/88d/fef88d92-3884-4817-9288-c08506d1776a
dateModified: '2024-02-12T09:52:35.723529-05:00'
digest:
dandi:dandi-etag: 21fff458b694024bc8076fe56d7a7d97-1
dandi:sha2-256: c4d1b8f9ab436795db582eb5922adb8b71231dc0aff7721963574dfa4d9c56ca
encodingFormat: application/x-nwb
id: dandiasset:2e9b826c-c07e-4cbb-9349-c7e139b92772
identifier: 2e9b826c-c07e-4cbb-9349-c7e139b92772
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-02-nac-het-#2023-8-31/sub-replay-la-plaid-02-nac-het-#2023-8-31_ses-20230831T132400_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT48240S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_02_nac het_#2023_8_31
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-31T13:24:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:35.723529-05:00'
id: urn:uuid:b3e6e88c-065e-41f4-9719-f2a6ecaffb83
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:35.642636-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:06:11.933834-05:00'
contentSize: 35297491
contentUrl:
- https://api.dandiarchive.org/api/assets/3a8e2519-9706-4c38-beb3-c36ce9e37167/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/9d4/161/9d416155-695a-42ba-801f-d6ae9729cd10
dateModified: '2024-02-12T09:52:35.068829-05:00'
digest:
dandi:dandi-etag: 6d6f240236da6949622685ff1516be72-1
dandi:sha2-256: 515ba58d90726b87f3d88d20f89b2efbfb90fa1fb1e85d0b02b333c0f9a04c0b
encodingFormat: application/x-nwb
id: dandiasset:3a8e2519-9706-4c38-beb3-c36ce9e37167
identifier: 3a8e2519-9706-4c38-beb3-c36ce9e37167
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-02-nac-het-#2023-8-30/sub-replay-la-plaid-02-nac-het-#2023-8-30_ses-20230830T143400_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT52440S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_02_nac het_#2023_8_30
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-30T14:34:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:35.068829-05:00'
id: urn:uuid:8741b695-a0f6-4655-97f4-f30f22411a20
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:35.000428-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:01:08.644405-05:00'
contentSize: 35124799
contentUrl:
- https://api.dandiarchive.org/api/assets/492659d6-181f-410a-8441-fa9c8cb1ea67/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/c5b/c8f/c5bc8f1e-058a-4504-8f16-2bde5c73639b
dateModified: '2024-02-12T09:52:37.128449-05:00'
digest:
dandi:dandi-etag: 5fb1821ee3e761c1cd3e41e6fb997184-1
dandi:sha2-256: 0497a01b8ee518fe48ce3a5b19508dcc6c4bec6a53aac7d40729db82e6bd5ea1
encodingFormat: application/x-nwb
id: dandiasset:492659d6-181f-410a-8441-fa9c8cb1ea67
identifier: 492659d6-181f-410a-8441-fa9c8cb1ea67
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-02-nac-het-#2023-8-9/sub-replay-la-plaid-02-nac-het-#2023-8-9_ses-20230809T150500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT54300S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_02_nac het_#2023_8_9
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-09T15:05:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:37.128449-05:00'
id: urn:uuid:041db6c7-0c23-45d3-9378-e20409179be8
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:37.123219-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:10:51.364801-05:00'
contentSize: 35028177
contentUrl:
- https://api.dandiarchive.org/api/assets/7aca761c-c125-4801-a4d9-cb694ed4f683/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/0ad/e3a/0ade3ab0-ff84-4c76-acae-618ce9ec279d
dateModified: '2024-02-12T09:52:37.580660-05:00'
digest:
dandi:dandi-etag: e4443cb3dc58f25b37bb7bf585c90684-1
dandi:sha2-256: 056af59f33813336fd0efa5f1e6ca4f8c8d5bd6854237f79b23cab0f8e081911
encodingFormat: application/x-nwb
id: dandiasset:7aca761c-c125-4801-a4d9-cb694ed4f683
identifier: 7aca761c-c125-4801-a4d9-cb694ed4f683
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-03-nac-het-#2023-10-26/sub-replay-la-plaid-03-nac-het-#2023-10-26_ses-20231026T185500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT68100S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_03_nac het_#2023_10_26
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-10-26T18:55:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:37.580660-05:00'
id: urn:uuid:b85e1f78-9cd6-4f8b-a4dd-b6bf9b86d23d
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:37.454819-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T09:56:11.658098-05:00'
contentSize: 34932176
contentUrl:
- https://api.dandiarchive.org/api/assets/4186a5d2-e729-4c52-a4a3-6a065f23ee61/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/164/af1/164af1ed-8bf4-4bce-9b35-6da38582b6a6
dateModified: '2024-02-12T09:52:38.423868-05:00'
digest:
dandi:dandi-etag: 7f7b005ab6d2474d401ed781d38b241a-1
dandi:sha2-256: 7a8ff0f744e4c0b77e2cb855df11d7be36670ad4cc7d164fb79b6c362f098c02
encodingFormat: application/x-nwb
id: dandiasset:4186a5d2-e729-4c52-a4a3-6a065f23ee61
identifier: 4186a5d2-e729-4c52-a4a3-6a065f23ee61
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-03-nac-het-#2023-7-13/sub-replay-la-plaid-03-nac-het-#2023-7-13_ses-20230713T164200_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT60120S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_03_nac het_#2023_7_13
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-07-13T16:42:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:38.423868-05:00'
id: urn:uuid:f49be4a7-dfca-4694-b762-c785c03d5a32
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:38.417725-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:04:57.280064-05:00'
contentSize: 34925079
contentUrl:
- https://api.dandiarchive.org/api/assets/2e4cad24-ce50-4775-8122-24d698adddc8/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/384/80e/38480e36-6303-4269-ab75-776af50d3541
dateModified: '2024-02-12T09:52:40.496786-05:00'
digest:
dandi:dandi-etag: b65fdab2f8daabb881745ba5360d0fbe-1
dandi:sha2-256: 708e8c6fe476208cf845b489da872f112379376859fe3907a1ded53b788ebd9b
encodingFormat: application/x-nwb
id: dandiasset:2e4cad24-ce50-4775-8122-24d698adddc8
identifier: 2e4cad24-ce50-4775-8122-24d698adddc8
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-03-nac-het-#2023-8-24/sub-replay-la-plaid-03-nac-het-#2023-8-24_ses-20230824T184600_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT67560S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_03_nac het_#2023_8_24
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-24T18:46:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:40.496786-05:00'
id: urn:uuid:fe1ad5d6-fd99-4bbf-9ced-e96e21efd031
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:40.410017-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:07:31.601521-05:00'
contentSize: 35342947
contentUrl:
- https://api.dandiarchive.org/api/assets/90cfd04f-5291-4cae-9f24-8f90ed89f710/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/fd5/c9b/fd5c9b6f-581e-44ef-b902-5a89c71ed670
dateModified: '2024-02-12T09:52:41.056295-05:00'
digest:
dandi:dandi-etag: 9889933fb797a0a26a0f056992d59275-1
dandi:sha2-256: 2b74c6f336491674de5b90b79cb1eb55df7cc6f811b1fddfb9aa067bd47f7142
encodingFormat: application/x-nwb
id: dandiasset:90cfd04f-5291-4cae-9f24-8f90ed89f710
identifier: 90cfd04f-5291-4cae-9f24-8f90ed89f710
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-03-nac-het-#2023-8-31/sub-replay-la-plaid-03-nac-het-#2023-8-31_ses-20230831T153300_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT55980S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_03_nac het_#2023_8_31
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-31T15:33:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:41.056295-05:00'
id: urn:uuid:ae72a2e9-8315-430d-9165-889d76ce5a3d
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:41.046321-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:02:04.125990-05:00'
contentSize: 34975335
contentUrl:
- https://api.dandiarchive.org/api/assets/1dcb0379-af5b-4223-b448-f1785eb56584/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/847/daf/847daff1-7603-4a8b-9011-3015a8fb822d
dateModified: '2024-02-12T09:52:40.783026-05:00'
digest:
dandi:dandi-etag: ab862b90ac23b08042e23b5c76317d80-1
dandi:sha2-256: 917860025c322aaab0d49cab7e7f3242d87736caae1ba1d3d7b0f67200683bf7
encodingFormat: application/x-nwb
id: dandiasset:1dcb0379-af5b-4223-b448-f1785eb56584
identifier: 1dcb0379-af5b-4223-b448-f1785eb56584
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-03-nac-het-#2023-8-14/sub-replay-la-plaid-03-nac-het-#2023-8-14_ses-20230814T163900_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT59940S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_03_nac het_#2023_8_14
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-14T16:39:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:40.783026-05:00'
id: urn:uuid:3b8ba82b-2136-421c-b0cf-ff11e8d5bff5
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:40.714206-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:02:59.024489-05:00'
contentSize: 34966209
contentUrl:
- https://api.dandiarchive.org/api/assets/b28202b8-54da-4e2a-85e8-3d09675ddb05/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/db8/f82/db8f8268-49b6-4c37-b782-03ce29fbe3ad
dateModified: '2024-02-12T09:52:42.073190-05:00'
digest:
dandi:dandi-etag: 8f5d6230c267ffeb62a92c729a0bb029-1
dandi:sha2-256: 1ecade99c603d57f71805db3ed857e573f27d5e074efe5e2e68887652eccfabf
encodingFormat: application/x-nwb
id: dandiasset:b28202b8-54da-4e2a-85e8-3d09675ddb05
identifier: b28202b8-54da-4e2a-85e8-3d09675ddb05
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-03-nac-het-#2023-8-9/sub-replay-la-plaid-03-nac-het-#2023-8-9_ses-20230809T162200_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT58920S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_03_nac het_#2023_8_9
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-08-09T16:22:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:42.073190-05:00'
id: urn:uuid:3fe08110-a4fd-4cc0-a95a-c1fad3654f26
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:42.070170-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T10:26:04.757794-05:00'
contentSize: 34927620
contentUrl:
- https://api.dandiarchive.org/api/assets/02d94e0b-96d5-4d8e-a960-2ccb8452b417/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/91a/a97/91aa97eb-fe60-4a28-8996-26f6ba01de17
dateModified: '2024-02-12T09:52:42.467951-05:00'
digest:
dandi:dandi-etag: af991cf8505d3d48f31a6df03daf2285-1
dandi:sha2-256: 4f17efacf5f1fe70cf7c1045fea8a7c732ad52c8e313b470751acd2057b1e79c
encodingFormat: application/x-nwb
id: dandiasset:02d94e0b-96d5-4d8e-a960-2ccb8452b417
identifier: 02d94e0b-96d5-4d8e-a960-2ccb8452b417
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-replay-la-plaid-04-nac-het-#2023-10-26/sub-replay-la-plaid-04-nac-het-#2023-10-26_ses-20231026T220500_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT79500S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: replay_la_plaid_04_nac het_#2023_10_26
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-10-26T22:05:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:42.467951-05:00'
id: urn:uuid:ea1b6f4c-1646-4541-810b-315dfc0446e3
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:42.374674-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: behavioral approach
schemaKey: ApproachType
blobDateModified: '2024-02-07T09:56:54.536628-05:00'
contentSize: 35496313
contentUrl:
- https://api.dandiarchive.org/api/assets/69db3d14-3f7e-4f6c-adf6-e65cca8bbd72/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/000/8b4/0008b484-d72c-494c-b6c3-ebeff4c5ace4
dateModified: '2024-02-12T09:52:44.306428-05:00'
digest:
dandi:dandi-etag: 5c774bda95c73015c32a5ac72fff1f6b-1
dandi:sha2-256: 079499c17000bb345d97140b90e7d6245c52259a8900d7ba65b2c89301b57adc
encodingFormat: application/x-nwb
id: dandiasset:69db3d14-3f7e-4f6c-adf6-e65cca8bbd72
identifier: 69db3d14-3f7e-4f6c-adf6-e65cca8bbd72
measurementTechnique:
- name: behavioral technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-reply-la-plaid-01-nac-het-#2023-7-26/sub-reply-la-plaid-01-nac-het-#2023-7-26_ses-20230726T123100_behavior.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: SpatialSeries
- schemaKey: PropertyValue
value: Position
- schemaKey: PropertyValue
value: CompassDirection
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6DT45060S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: reply_la_plaid_01_nac het_#2023_7_26
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: Thermal plaid replay experiment
name: Acquisition session
schemaKey: Session
startDate: '2023-07-26T12:31:00-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-02-12T09:52:44.306428-05:00'
id: urn:uuid:242e967e-5b72-4601-9fff-a15108c11835
name: Metadata generation
schemaKey: Activity
startDate: '2024-02-12T09:52:44.303366-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.1
Tip!
Press p or to see the previous file or,
n or to see the next file