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

assets.yaml 129 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: behavioral approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2024-02-07T10:11:53.491297-05:00'
  9. contentSize: 35229526
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/c2f52e8c-9a5c-43e6-bd55-f8dc0470f182/download/
  12. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/853/37f/85337fa0-55b0-4e70-834e-1423499eeee7
  13. dateModified: '2024-02-12T09:51:56.659391-05:00'
  14. digest:
  15. dandi:dandi-etag: 82ca0137e00e4aa646f55db15c2a79ec-1
  16. dandi:sha2-256: a1573ecfccd4bac7406839d9fc0cace9808d4803c7869418320c3455951492b3
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:c2f52e8c-9a5c-43e6-bd55-f8dc0470f182
  19. identifier: c2f52e8c-9a5c-43e6-bd55-f8dc0470f182
  20. measurementTechnique:
  21. - name: behavioral technique
  22. schemaKey: MeasurementTechniqueType
  23. - name: analytical technique
  24. schemaKey: MeasurementTechniqueType
  25. 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
  26. schemaKey: Asset
  27. schemaVersion: 0.6.4
  28. variableMeasured:
  29. - schemaKey: PropertyValue
  30. value: ProcessingModule
  31. - schemaKey: PropertyValue
  32. value: SpatialSeries
  33. - schemaKey: PropertyValue
  34. value: Position
  35. - schemaKey: PropertyValue
  36. value: CompassDirection
  37. wasAttributedTo:
  38. - age:
  39. schemaKey: PropertyValue
  40. unitText: ISO-8601 duration
  41. value: P6DT51420S
  42. valueReference:
  43. schemaKey: PropertyValue
  44. value: dandi:BirthReference
  45. identifier: la_replay_01_6dpf_1122_nac het_#2023_11_28
  46. schemaKey: Participant
  47. sex:
  48. name: Unknown
  49. schemaKey: SexType
  50. species:
  51. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  52. name: Danio rerio - Zebra fish
  53. schemaKey: SpeciesType
  54. wasGeneratedBy:
  55. - description: Thermal plaid replay experiment
  56. name: Acquisition session
  57. schemaKey: Session
  58. startDate: '2023-11-28T14:17:00-05:00'
  59. - description: Metadata generated by DANDI cli
  60. endDate: '2024-02-12T09:51:56.659391-05:00'
  61. id: urn:uuid:88f04cd9-a971-439f-9466-f2f7a8758fff
  62. name: Metadata generation
  63. schemaKey: Activity
  64. startDate: '2024-02-12T09:51:56.655296-05:00'
  65. wasAssociatedWith:
  66. - identifier: RRID:SCR_019009
  67. name: DANDI Command Line Interface
  68. schemaKey: Software
  69. url: https://github.com/dandi/dandi-cli
  70. version: 0.59.1
  71. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  72. access:
  73. - schemaKey: AccessRequirements
  74. status: dandi:OpenAccess
  75. approach:
  76. - name: behavioral approach
  77. schemaKey: ApproachType
  78. blobDateModified: '2024-02-07T10:15:14.037843-05:00'
  79. contentSize: 36131544
  80. contentUrl:
  81. - https://api.dandiarchive.org/api/assets/b1861929-07b9-4acb-87a4-dd912d91a6eb/download/
  82. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/0e1/3bb/0e13bb95-e700-4946-906d-0b9091a3125c
  83. dateModified: '2024-02-12T09:51:57.196130-05:00'
  84. digest:
  85. dandi:dandi-etag: 9646dbf0b4b86a2c6d716b633f858a30-1
  86. dandi:sha2-256: 5e212d1c7b406af98c6528e18795034d11cec85e8bf36846a46239df4495422b
  87. encodingFormat: application/x-nwb
  88. id: dandiasset:b1861929-07b9-4acb-87a4-dd912d91a6eb
  89. identifier: b1861929-07b9-4acb-87a4-dd912d91a6eb
  90. measurementTechnique:
  91. - name: behavioral technique
  92. schemaKey: MeasurementTechniqueType
  93. - name: analytical technique
  94. schemaKey: MeasurementTechniqueType
  95. 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
  96. schemaKey: Asset
  97. schemaVersion: 0.6.4
  98. variableMeasured:
  99. - schemaKey: PropertyValue
  100. value: ProcessingModule
  101. - schemaKey: PropertyValue
  102. value: SpatialSeries
  103. - schemaKey: PropertyValue
  104. value: Position
  105. - schemaKey: PropertyValue
  106. value: CompassDirection
  107. wasAttributedTo:
  108. - age:
  109. schemaKey: PropertyValue
  110. unitText: ISO-8601 duration
  111. value: P6DT37800S
  112. valueReference:
  113. schemaKey: PropertyValue
  114. value: dandi:BirthReference
  115. identifier: la_replay_01_0119_nac het_#2024_1_25
  116. schemaKey: Participant
  117. sex:
  118. name: Unknown
  119. schemaKey: SexType
  120. species:
  121. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  122. name: Danio rerio - Zebra fish
  123. schemaKey: SpeciesType
  124. wasGeneratedBy:
  125. - description: Thermal plaid replay experiment
  126. name: Acquisition session
  127. schemaKey: Session
  128. startDate: '2024-01-25T10:30:00-05:00'
  129. - description: Metadata generated by DANDI cli
  130. endDate: '2024-02-12T09:51:57.196130-05:00'
  131. id: urn:uuid:1e5e0a0c-7a14-4453-b12a-b6612375c25b
  132. name: Metadata generation
  133. schemaKey: Activity
  134. startDate: '2024-02-12T09:51:57.191965-05:00'
  135. wasAssociatedWith:
  136. - identifier: RRID:SCR_019009
  137. name: DANDI Command Line Interface
  138. schemaKey: Software
  139. url: https://github.com/dandi/dandi-cli
  140. version: 0.59.1
  141. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  142. access:
  143. - schemaKey: AccessRequirements
  144. status: dandi:OpenAccess
  145. approach:
  146. - name: behavioral approach
  147. schemaKey: ApproachType
  148. blobDateModified: '2024-02-07T10:16:52.268067-05:00'
  149. contentSize: 35395072
  150. contentUrl:
  151. - https://api.dandiarchive.org/api/assets/635be2f2-05ae-4397-af4f-00fa341248d9/download/
  152. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/aef/36e/aef36ef1-9a90-45da-8d2b-ffa3e66c8a85
  153. dateModified: '2024-02-12T09:51:56.905915-05:00'
  154. digest:
  155. dandi:dandi-etag: 653bbe96a55fa76e97461da1f8d072d0-1
  156. dandi:sha2-256: 24c2e2b9f88ece5f534b7b3156185fec9b3e5543210f799edca60671d3757f25
  157. encodingFormat: application/x-nwb
  158. id: dandiasset:635be2f2-05ae-4397-af4f-00fa341248d9
  159. identifier: 635be2f2-05ae-4397-af4f-00fa341248d9
  160. measurementTechnique:
  161. - name: behavioral technique
  162. schemaKey: MeasurementTechniqueType
  163. - name: analytical technique
  164. schemaKey: MeasurementTechniqueType
  165. 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
  166. schemaKey: Asset
  167. schemaVersion: 0.6.4
  168. variableMeasured:
  169. - schemaKey: PropertyValue
  170. value: ProcessingModule
  171. - schemaKey: PropertyValue
  172. value: SpatialSeries
  173. - schemaKey: PropertyValue
  174. value: Position
  175. - schemaKey: PropertyValue
  176. value: CompassDirection
  177. wasAttributedTo:
  178. - age:
  179. schemaKey: PropertyValue
  180. unitText: ISO-8601 duration
  181. value: P5DT45660S
  182. valueReference:
  183. schemaKey: PropertyValue
  184. value: dandi:BirthReference
  185. identifier: la_replay_01_0126_nac het_#2024_2_1
  186. schemaKey: Participant
  187. sex:
  188. name: Unknown
  189. schemaKey: SexType
  190. species:
  191. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  192. name: Danio rerio - Zebra fish
  193. schemaKey: SpeciesType
  194. wasGeneratedBy:
  195. - description: Thermal plaid replay experiment
  196. name: Acquisition session
  197. schemaKey: Session
  198. startDate: '2024-02-01T12:41:00-05:00'
  199. - description: Metadata generated by DANDI cli
  200. endDate: '2024-02-12T09:51:56.905915-05:00'
  201. id: urn:uuid:15f3056c-23dd-4a6a-976d-c9e75e344df9
  202. name: Metadata generation
  203. schemaKey: Activity
  204. startDate: '2024-02-12T09:51:56.902846-05:00'
  205. wasAssociatedWith:
  206. - identifier: RRID:SCR_019009
  207. name: DANDI Command Line Interface
  208. schemaKey: Software
  209. url: https://github.com/dandi/dandi-cli
  210. version: 0.59.1
  211. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  212. access:
  213. - schemaKey: AccessRequirements
  214. status: dandi:OpenAccess
  215. approach:
  216. - name: behavioral approach
  217. schemaKey: ApproachType
  218. blobDateModified: '2024-02-07T10:13:31.642634-05:00'
  219. contentSize: 35292207
  220. contentUrl:
  221. - https://api.dandiarchive.org/api/assets/11493ab9-1cfe-48fd-a3d5-4ba8ee0d4edd/download/
  222. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/ba4/275/ba4275d8-b571-4be0-a055-f495370a49af
  223. dateModified: '2024-02-12T09:51:56.801777-05:00'
  224. digest:
  225. dandi:dandi-etag: 22f835754e460146351b81bb001ea434-1
  226. dandi:sha2-256: 557f7b9115a99887a5a884918f188efb8a26a462eee16a8c1323052052c03138
  227. encodingFormat: application/x-nwb
  228. id: dandiasset:11493ab9-1cfe-48fd-a3d5-4ba8ee0d4edd
  229. identifier: 11493ab9-1cfe-48fd-a3d5-4ba8ee0d4edd
  230. measurementTechnique:
  231. - name: behavioral technique
  232. schemaKey: MeasurementTechniqueType
  233. - name: analytical technique
  234. schemaKey: MeasurementTechniqueType
  235. 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
  236. schemaKey: Asset
  237. schemaVersion: 0.6.4
  238. variableMeasured:
  239. - schemaKey: PropertyValue
  240. value: ProcessingModule
  241. - schemaKey: PropertyValue
  242. value: SpatialSeries
  243. - schemaKey: PropertyValue
  244. value: Position
  245. - schemaKey: PropertyValue
  246. value: CompassDirection
  247. wasAttributedTo:
  248. - age:
  249. schemaKey: PropertyValue
  250. unitText: ISO-8601 duration
  251. value: P6DT47580S
  252. valueReference:
  253. schemaKey: PropertyValue
  254. value: dandi:BirthReference
  255. identifier: la_replay_01_6dpf_0118_nac het_#2024_1_18
  256. schemaKey: Participant
  257. sex:
  258. name: Unknown
  259. schemaKey: SexType
  260. species:
  261. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  262. name: Danio rerio - Zebra fish
  263. schemaKey: SpeciesType
  264. wasGeneratedBy:
  265. - description: Thermal plaid replay experiment
  266. name: Acquisition session
  267. schemaKey: Session
  268. startDate: '2024-01-18T13:13:00-05:00'
  269. - description: Metadata generated by DANDI cli
  270. endDate: '2024-02-12T09:51:56.801777-05:00'
  271. id: urn:uuid:2cff8fa2-b8bb-4dc2-8a47-518fae2ed012
  272. name: Metadata generation
  273. schemaKey: Activity
  274. startDate: '2024-02-12T09:51:56.796790-05:00'
  275. wasAssociatedWith:
  276. - identifier: RRID:SCR_019009
  277. name: DANDI Command Line Interface
  278. schemaKey: Software
  279. url: https://github.com/dandi/dandi-cli
  280. version: 0.59.1
  281. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  282. access:
  283. - schemaKey: AccessRequirements
  284. status: dandi:OpenAccess
  285. approach:
  286. - name: behavioral approach
  287. schemaKey: ApproachType
  288. blobDateModified: '2024-02-07T10:16:15.317674-05:00'
  289. contentSize: 35309227
  290. contentUrl:
  291. - https://api.dandiarchive.org/api/assets/8415a22a-0dc3-4aea-b977-e616c5a9a0b6/download/
  292. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/3f0/0ab/3f00ab27-5f18-411c-81a0-631febda0588
  293. dateModified: '2024-02-12T09:51:57.082836-05:00'
  294. digest:
  295. dandi:dandi-etag: b7aeeb7c1a4a1f66d451ff0f699f7baf-1
  296. dandi:sha2-256: 5c95aafb306da1582532c9e449d94192a368b84df5a298a967878f3780d28f8f
  297. encodingFormat: application/x-nwb
  298. id: dandiasset:8415a22a-0dc3-4aea-b977-e616c5a9a0b6
  299. identifier: 8415a22a-0dc3-4aea-b977-e616c5a9a0b6
  300. measurementTechnique:
  301. - name: behavioral technique
  302. schemaKey: MeasurementTechniqueType
  303. - name: analytical technique
  304. schemaKey: MeasurementTechniqueType
  305. 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
  306. schemaKey: Asset
  307. schemaVersion: 0.6.4
  308. variableMeasured:
  309. - schemaKey: PropertyValue
  310. value: ProcessingModule
  311. - schemaKey: PropertyValue
  312. value: SpatialSeries
  313. - schemaKey: PropertyValue
  314. value: Position
  315. - schemaKey: PropertyValue
  316. value: CompassDirection
  317. wasAttributedTo:
  318. - age:
  319. schemaKey: PropertyValue
  320. unitText: ISO-8601 duration
  321. value: P6DT44880S
  322. valueReference:
  323. schemaKey: PropertyValue
  324. value: dandi:BirthReference
  325. identifier: la_replay_01_0124_nac het_#2024_1_30
  326. schemaKey: Participant
  327. sex:
  328. name: Unknown
  329. schemaKey: SexType
  330. species:
  331. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  332. name: Danio rerio - Zebra fish
  333. schemaKey: SpeciesType
  334. wasGeneratedBy:
  335. - description: Thermal plaid replay experiment
  336. name: Acquisition session
  337. schemaKey: Session
  338. startDate: '2024-01-30T12:28:00-05:00'
  339. - description: Metadata generated by DANDI cli
  340. endDate: '2024-02-12T09:51:57.082836-05:00'
  341. id: urn:uuid:3fea6bf0-8c61-43a2-a05a-a5d6273fcf31
  342. name: Metadata generation
  343. schemaKey: Activity
  344. startDate: '2024-02-12T09:51:57.079450-05:00'
  345. wasAssociatedWith:
  346. - identifier: RRID:SCR_019009
  347. name: DANDI Command Line Interface
  348. schemaKey: Software
  349. url: https://github.com/dandi/dandi-cli
  350. version: 0.59.1
  351. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  352. access:
  353. - schemaKey: AccessRequirements
  354. status: dandi:OpenAccess
  355. approach:
  356. - name: behavioral approach
  357. schemaKey: ApproachType
  358. blobDateModified: '2024-02-07T10:12:43.117706-05:00'
  359. contentSize: 35432417
  360. contentUrl:
  361. - https://api.dandiarchive.org/api/assets/d8493c30-8c85-4bc6-9f5a-02ff73a2e96e/download/
  362. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/553/2c0/5532c041-a1c3-4096-a459-148d8018368a
  363. dateModified: '2024-02-12T09:52:01.884388-05:00'
  364. digest:
  365. dandi:dandi-etag: 1db7e7729e570bf9f9c92b5b25e464f5-1
  366. dandi:sha2-256: 830b7dcda5f08756e6bcd4f4e5e73a1d11ac14d634094e4e25cc830d4ed5187d
  367. encodingFormat: application/x-nwb
  368. id: dandiasset:d8493c30-8c85-4bc6-9f5a-02ff73a2e96e
  369. identifier: d8493c30-8c85-4bc6-9f5a-02ff73a2e96e
  370. measurementTechnique:
  371. - name: behavioral technique
  372. schemaKey: MeasurementTechniqueType
  373. - name: analytical technique
  374. schemaKey: MeasurementTechniqueType
  375. 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
  376. schemaKey: Asset
  377. schemaVersion: 0.6.4
  378. variableMeasured:
  379. - schemaKey: PropertyValue
  380. value: ProcessingModule
  381. - schemaKey: PropertyValue
  382. value: SpatialSeries
  383. - schemaKey: PropertyValue
  384. value: Position
  385. - schemaKey: PropertyValue
  386. value: CompassDirection
  387. wasAttributedTo:
  388. - age:
  389. schemaKey: PropertyValue
  390. unitText: ISO-8601 duration
  391. value: P5DT50640S
  392. valueReference:
  393. schemaKey: PropertyValue
  394. value: dandi:BirthReference
  395. identifier: la_replay_01_6dpf_1124_nac het_#2023_11_30
  396. schemaKey: Participant
  397. sex:
  398. name: Unknown
  399. schemaKey: SexType
  400. species:
  401. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  402. name: Danio rerio - Zebra fish
  403. schemaKey: SpeciesType
  404. wasGeneratedBy:
  405. - description: Thermal plaid replay experiment
  406. name: Acquisition session
  407. schemaKey: Session
  408. startDate: '2023-11-30T14:04:00-05:00'
  409. - description: Metadata generated by DANDI cli
  410. endDate: '2024-02-12T09:52:01.884388-05:00'
  411. id: urn:uuid:4beda7bf-5c4d-47e3-8f48-09b4349a7e5d
  412. name: Metadata generation
  413. schemaKey: Activity
  414. startDate: '2024-02-12T09:52:01.877320-05:00'
  415. wasAssociatedWith:
  416. - identifier: RRID:SCR_019009
  417. name: DANDI Command Line Interface
  418. schemaKey: Software
  419. url: https://github.com/dandi/dandi-cli
  420. version: 0.59.1
  421. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  422. access:
  423. - schemaKey: AccessRequirements
  424. status: dandi:OpenAccess
  425. approach:
  426. - name: behavioral approach
  427. schemaKey: ApproachType
  428. blobDateModified: '2024-02-07T10:14:09.895015-05:00'
  429. contentSize: 35000535
  430. contentUrl:
  431. - https://api.dandiarchive.org/api/assets/8c42c21c-6c0b-436f-a890-292360e6c243/download/
  432. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/0f6/ee4/0f6ee431-a0d0-443a-b99b-e6f1584caa47
  433. dateModified: '2024-02-12T09:52:02.116410-05:00'
  434. digest:
  435. dandi:dandi-etag: 47e5b014fe854e8251458df6431687db-1
  436. dandi:sha2-256: c09c2643afcc44b3d66892563707d45e479387494e944638138fdcf5c701b2ec
  437. encodingFormat: application/x-nwb
  438. id: dandiasset:8c42c21c-6c0b-436f-a890-292360e6c243
  439. identifier: 8c42c21c-6c0b-436f-a890-292360e6c243
  440. measurementTechnique:
  441. - name: behavioral technique
  442. schemaKey: MeasurementTechniqueType
  443. - name: analytical technique
  444. schemaKey: MeasurementTechniqueType
  445. 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
  446. schemaKey: Asset
  447. schemaVersion: 0.6.4
  448. variableMeasured:
  449. - schemaKey: PropertyValue
  450. value: ProcessingModule
  451. - schemaKey: PropertyValue
  452. value: SpatialSeries
  453. - schemaKey: PropertyValue
  454. value: Position
  455. - schemaKey: PropertyValue
  456. value: CompassDirection
  457. wasAttributedTo:
  458. - age:
  459. schemaKey: PropertyValue
  460. unitText: ISO-8601 duration
  461. value: P6DT56700S
  462. valueReference:
  463. schemaKey: PropertyValue
  464. value: dandi:BirthReference
  465. identifier: la_replay_02_0117_nac het_#2024_1_23
  466. schemaKey: Participant
  467. sex:
  468. name: Unknown
  469. schemaKey: SexType
  470. species:
  471. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  472. name: Danio rerio - Zebra fish
  473. schemaKey: SpeciesType
  474. wasGeneratedBy:
  475. - description: Thermal plaid replay experiment
  476. name: Acquisition session
  477. schemaKey: Session
  478. startDate: '2024-01-23T15:45:00-05:00'
  479. - description: Metadata generated by DANDI cli
  480. endDate: '2024-02-12T09:52:02.116410-05:00'
  481. id: urn:uuid:dcef42f4-b1d8-4743-a438-51ea2cb421ee
  482. name: Metadata generation
  483. schemaKey: Activity
  484. startDate: '2024-02-12T09:52:02.098153-05:00'
  485. wasAssociatedWith:
  486. - identifier: RRID:SCR_019009
  487. name: DANDI Command Line Interface
  488. schemaKey: Software
  489. url: https://github.com/dandi/dandi-cli
  490. version: 0.59.1
  491. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  492. access:
  493. - schemaKey: AccessRequirements
  494. status: dandi:OpenAccess
  495. approach:
  496. - name: behavioral approach
  497. schemaKey: ApproachType
  498. blobDateModified: '2024-02-07T10:15:26.277973-05:00'
  499. contentSize: 36149957
  500. contentUrl:
  501. - https://api.dandiarchive.org/api/assets/590c59a1-a2c8-4a44-8561-6e1d0c204e27/download/
  502. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/d1f/800/d1f8008e-6d0a-4a48-a090-43f446cd65a9
  503. dateModified: '2024-02-12T09:52:03.468817-05:00'
  504. digest:
  505. dandi:dandi-etag: 03ff2a54a322d901a609272d14b3d7c3-1
  506. dandi:sha2-256: d380b8396441f92e29bf82090a5d6767a3832c12ff21d012d24e1db3d1b31549
  507. encodingFormat: application/x-nwb
  508. id: dandiasset:590c59a1-a2c8-4a44-8561-6e1d0c204e27
  509. identifier: 590c59a1-a2c8-4a44-8561-6e1d0c204e27
  510. measurementTechnique:
  511. - name: behavioral technique
  512. schemaKey: MeasurementTechniqueType
  513. - name: analytical technique
  514. schemaKey: MeasurementTechniqueType
  515. 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
  516. schemaKey: Asset
  517. schemaVersion: 0.6.4
  518. variableMeasured:
  519. - schemaKey: PropertyValue
  520. value: ProcessingModule
  521. - schemaKey: PropertyValue
  522. value: SpatialSeries
  523. - schemaKey: PropertyValue
  524. value: Position
  525. - schemaKey: PropertyValue
  526. value: CompassDirection
  527. wasAttributedTo:
  528. - age:
  529. schemaKey: PropertyValue
  530. unitText: ISO-8601 duration
  531. value: P6DT44460S
  532. valueReference:
  533. schemaKey: PropertyValue
  534. value: dandi:BirthReference
  535. identifier: la_replay_02_0119_nac het_#2024_1_25
  536. schemaKey: Participant
  537. sex:
  538. name: Unknown
  539. schemaKey: SexType
  540. species:
  541. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  542. name: Danio rerio - Zebra fish
  543. schemaKey: SpeciesType
  544. wasGeneratedBy:
  545. - description: Thermal plaid replay experiment
  546. name: Acquisition session
  547. schemaKey: Session
  548. startDate: '2024-01-25T12:21:00-05:00'
  549. - description: Metadata generated by DANDI cli
  550. endDate: '2024-02-12T09:52:03.468817-05:00'
  551. id: urn:uuid:373ad9f3-1fff-4cd7-9d32-68ac9da4fea7
  552. name: Metadata generation
  553. schemaKey: Activity
  554. startDate: '2024-02-12T09:52:03.407870-05:00'
  555. wasAssociatedWith:
  556. - identifier: RRID:SCR_019009
  557. name: DANDI Command Line Interface
  558. schemaKey: Software
  559. url: https://github.com/dandi/dandi-cli
  560. version: 0.59.1
  561. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  562. access:
  563. - schemaKey: AccessRequirements
  564. status: dandi:OpenAccess
  565. approach:
  566. - name: behavioral approach
  567. schemaKey: ApproachType
  568. blobDateModified: '2024-02-07T10:17:04.425394-05:00'
  569. contentSize: 35226683
  570. contentUrl:
  571. - https://api.dandiarchive.org/api/assets/3216f5de-f4ed-43cf-a432-c7b737552737/download/
  572. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/d6f/fb6/d6ffb685-34f1-4284-be39-ff1b07c93b35
  573. dateModified: '2024-02-12T09:52:03.980095-05:00'
  574. digest:
  575. dandi:dandi-etag: 01a65c63114cdc1277897a4ee2ba3de7-1
  576. dandi:sha2-256: 3899f66ef462dd3d7d99b13942cd6476a7fcad0b77d4937ae0fb9d09c864a344
  577. encodingFormat: application/x-nwb
  578. id: dandiasset:3216f5de-f4ed-43cf-a432-c7b737552737
  579. identifier: 3216f5de-f4ed-43cf-a432-c7b737552737
  580. measurementTechnique:
  581. - name: behavioral technique
  582. schemaKey: MeasurementTechniqueType
  583. - name: analytical technique
  584. schemaKey: MeasurementTechniqueType
  585. 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
  586. schemaKey: Asset
  587. schemaVersion: 0.6.4
  588. variableMeasured:
  589. - schemaKey: PropertyValue
  590. value: ProcessingModule
  591. - schemaKey: PropertyValue
  592. value: SpatialSeries
  593. - schemaKey: PropertyValue
  594. value: Position
  595. - schemaKey: PropertyValue
  596. value: CompassDirection
  597. wasAttributedTo:
  598. - age:
  599. schemaKey: PropertyValue
  600. unitText: ISO-8601 duration
  601. value: P5DT53280S
  602. valueReference:
  603. schemaKey: PropertyValue
  604. value: dandi:BirthReference
  605. identifier: la_replay_02_0126_nac het_#2024_2_1
  606. schemaKey: Participant
  607. sex:
  608. name: Unknown
  609. schemaKey: SexType
  610. species:
  611. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  612. name: Danio rerio - Zebra fish
  613. schemaKey: SpeciesType
  614. wasGeneratedBy:
  615. - description: Thermal plaid replay experiment
  616. name: Acquisition session
  617. schemaKey: Session
  618. startDate: '2024-02-01T14:48:00-05:00'
  619. - description: Metadata generated by DANDI cli
  620. endDate: '2024-02-12T09:52:03.980095-05:00'
  621. id: urn:uuid:866996b4-80a3-4812-b606-174ce6212080
  622. name: Metadata generation
  623. schemaKey: Activity
  624. startDate: '2024-02-12T09:52:03.916222-05:00'
  625. wasAssociatedWith:
  626. - identifier: RRID:SCR_019009
  627. name: DANDI Command Line Interface
  628. schemaKey: Software
  629. url: https://github.com/dandi/dandi-cli
  630. version: 0.59.1
  631. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  632. access:
  633. - schemaKey: AccessRequirements
  634. status: dandi:OpenAccess
  635. approach:
  636. - name: behavioral approach
  637. schemaKey: ApproachType
  638. blobDateModified: '2024-02-07T10:13:44.250453-05:00'
  639. contentSize: 34175446
  640. contentUrl:
  641. - https://api.dandiarchive.org/api/assets/c5408640-2f80-4d36-bcf5-1c76bedbb4a9/download/
  642. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/1e6/d0e/1e6d0e84-620f-43f9-b13a-9ba0ecf32a1e
  643. dateModified: '2024-02-12T09:52:04.324076-05:00'
  644. digest:
  645. dandi:dandi-etag: 5a38e8ce90e946b6a8dcbd606ab45710-1
  646. dandi:sha2-256: e1b04618a76cdd4fc63771a00ca8d7820ac8d6a0b70bff959aea90faabb913d8
  647. encodingFormat: application/x-nwb
  648. id: dandiasset:c5408640-2f80-4d36-bcf5-1c76bedbb4a9
  649. identifier: c5408640-2f80-4d36-bcf5-1c76bedbb4a9
  650. measurementTechnique:
  651. - name: behavioral technique
  652. schemaKey: MeasurementTechniqueType
  653. - name: analytical technique
  654. schemaKey: MeasurementTechniqueType
  655. 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
  656. schemaKey: Asset
  657. schemaVersion: 0.6.4
  658. variableMeasured:
  659. - schemaKey: PropertyValue
  660. value: ProcessingModule
  661. - schemaKey: PropertyValue
  662. value: SpatialSeries
  663. - schemaKey: PropertyValue
  664. value: Position
  665. - schemaKey: PropertyValue
  666. value: CompassDirection
  667. wasAttributedTo:
  668. - age:
  669. schemaKey: PropertyValue
  670. unitText: ISO-8601 duration
  671. value: P6DT62520S
  672. valueReference:
  673. schemaKey: PropertyValue
  674. value: dandi:BirthReference
  675. identifier: la_replay_02_6dpf_0118_nac het_#2024_1_18
  676. schemaKey: Participant
  677. sex:
  678. name: Unknown
  679. schemaKey: SexType
  680. species:
  681. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  682. name: Danio rerio - Zebra fish
  683. schemaKey: SpeciesType
  684. wasGeneratedBy:
  685. - description: Thermal plaid replay experiment
  686. name: Acquisition session
  687. schemaKey: Session
  688. startDate: '2024-01-18T17:22:00-05:00'
  689. - description: Metadata generated by DANDI cli
  690. endDate: '2024-02-12T09:52:04.324076-05:00'
  691. id: urn:uuid:f8f935c2-deaf-4728-89dd-1c090e48753d
  692. name: Metadata generation
  693. schemaKey: Activity
  694. startDate: '2024-02-12T09:52:04.246573-05:00'
  695. wasAssociatedWith:
  696. - identifier: RRID:SCR_019009
  697. name: DANDI Command Line Interface
  698. schemaKey: Software
  699. url: https://github.com/dandi/dandi-cli
  700. version: 0.59.1
  701. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  702. access:
  703. - schemaKey: AccessRequirements
  704. status: dandi:OpenAccess
  705. approach:
  706. - name: behavioral approach
  707. schemaKey: ApproachType
  708. blobDateModified: '2024-02-12T09:44:06.820571-05:00'
  709. contentSize: 34890153
  710. contentUrl:
  711. - https://api.dandiarchive.org/api/assets/2d713be8-7c01-4c8a-85f0-a4a66e6923d7/download/
  712. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/0c5/0e5/0c50e52b-c937-4220-9313-cb16b46813da
  713. dateModified: '2024-02-12T09:52:06.300657-05:00'
  714. digest:
  715. dandi:dandi-etag: 8cf81d4815ae45e92f73b9ccad0344df-1
  716. dandi:sha2-256: 5d762a60f12cc937cc73856c5badd3d79743593a4a8edcafd3e904a586605598
  717. encodingFormat: application/x-nwb
  718. id: dandiasset:2d713be8-7c01-4c8a-85f0-a4a66e6923d7
  719. identifier: 2d713be8-7c01-4c8a-85f0-a4a66e6923d7
  720. measurementTechnique:
  721. - name: behavioral technique
  722. schemaKey: MeasurementTechniqueType
  723. - name: analytical technique
  724. schemaKey: MeasurementTechniqueType
  725. 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
  726. schemaKey: Asset
  727. schemaVersion: 0.6.4
  728. variableMeasured:
  729. - schemaKey: PropertyValue
  730. value: ProcessingModule
  731. - schemaKey: PropertyValue
  732. value: SpatialSeries
  733. - schemaKey: PropertyValue
  734. value: Position
  735. - schemaKey: PropertyValue
  736. value: CompassDirection
  737. wasAttributedTo:
  738. - age:
  739. schemaKey: PropertyValue
  740. unitText: ISO-8601 duration
  741. value: P6DT45240S
  742. valueReference:
  743. schemaKey: PropertyValue
  744. value: dandi:BirthReference
  745. identifier: la_replay_02_6dpf_0201_nac het_#2024_2_9
  746. schemaKey: Participant
  747. sex:
  748. name: Unknown
  749. schemaKey: SexType
  750. species:
  751. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  752. name: Danio rerio - Zebra fish
  753. schemaKey: SpeciesType
  754. wasGeneratedBy:
  755. - description: Thermal plaid replay experiment
  756. name: Acquisition session
  757. schemaKey: Session
  758. startDate: '2024-02-09T12:34:00-05:00'
  759. - description: Metadata generated by DANDI cli
  760. endDate: '2024-02-12T09:52:06.300657-05:00'
  761. id: urn:uuid:f85c7f84-20c6-4f71-b4f5-82622215435a
  762. name: Metadata generation
  763. schemaKey: Activity
  764. startDate: '2024-02-12T09:52:06.198294-05:00'
  765. wasAssociatedWith:
  766. - identifier: RRID:SCR_019009
  767. name: DANDI Command Line Interface
  768. schemaKey: Software
  769. url: https://github.com/dandi/dandi-cli
  770. version: 0.59.1
  771. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  772. access:
  773. - schemaKey: AccessRequirements
  774. status: dandi:OpenAccess
  775. approach:
  776. - name: behavioral approach
  777. schemaKey: ApproachType
  778. blobDateModified: '2024-02-07T10:12:05.867063-05:00'
  779. contentSize: 34903164
  780. contentUrl:
  781. - https://api.dandiarchive.org/api/assets/ad66a917-bda7-4ee4-b853-cd1eaa9247a2/download/
  782. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/e8f/8cd/e8f8cdc9-77a5-44c7-bdf7-3f6ea66752f1
  783. dateModified: '2024-02-12T09:52:06.847193-05:00'
  784. digest:
  785. dandi:dandi-etag: fa4a0fee2b1f5292122e91689e347f8e-1
  786. dandi:sha2-256: 43c3ec346c7746f7121d27ee1930838adecd4e5214d68db0648d96883e2b27f1
  787. encodingFormat: application/x-nwb
  788. id: dandiasset:ad66a917-bda7-4ee4-b853-cd1eaa9247a2
  789. identifier: ad66a917-bda7-4ee4-b853-cd1eaa9247a2
  790. measurementTechnique:
  791. - name: behavioral technique
  792. schemaKey: MeasurementTechniqueType
  793. - name: analytical technique
  794. schemaKey: MeasurementTechniqueType
  795. 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
  796. schemaKey: Asset
  797. schemaVersion: 0.6.4
  798. variableMeasured:
  799. - schemaKey: PropertyValue
  800. value: ProcessingModule
  801. - schemaKey: PropertyValue
  802. value: SpatialSeries
  803. - schemaKey: PropertyValue
  804. value: Position
  805. - schemaKey: PropertyValue
  806. value: CompassDirection
  807. wasAttributedTo:
  808. - age:
  809. schemaKey: PropertyValue
  810. unitText: ISO-8601 duration
  811. value: P6DT59580S
  812. valueReference:
  813. schemaKey: PropertyValue
  814. value: dandi:BirthReference
  815. identifier: la_replay_02_6dpf_1122_nac het_#2023_11_28
  816. schemaKey: Participant
  817. sex:
  818. name: Unknown
  819. schemaKey: SexType
  820. species:
  821. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  822. name: Danio rerio - Zebra fish
  823. schemaKey: SpeciesType
  824. wasGeneratedBy:
  825. - description: Thermal plaid replay experiment
  826. name: Acquisition session
  827. schemaKey: Session
  828. startDate: '2023-11-28T16:33:00-05:00'
  829. - description: Metadata generated by DANDI cli
  830. endDate: '2024-02-12T09:52:06.847193-05:00'
  831. id: urn:uuid:bc0df769-c440-4ca8-a697-98cb776cbd15
  832. name: Metadata generation
  833. schemaKey: Activity
  834. startDate: '2024-02-12T09:52:06.742042-05:00'
  835. wasAssociatedWith:
  836. - identifier: RRID:SCR_019009
  837. name: DANDI Command Line Interface
  838. schemaKey: Software
  839. url: https://github.com/dandi/dandi-cli
  840. version: 0.59.1
  841. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  842. access:
  843. - schemaKey: AccessRequirements
  844. status: dandi:OpenAccess
  845. approach:
  846. - name: behavioral approach
  847. schemaKey: ApproachType
  848. blobDateModified: '2024-02-07T10:12:55.685261-05:00'
  849. contentSize: 35291567
  850. contentUrl:
  851. - https://api.dandiarchive.org/api/assets/a2b6461b-4c2d-4260-9b50-0fbb5ccd3ba6/download/
  852. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/58c/a56/58ca56dc-0ee8-4422-aa3d-294aebd44e44
  853. dateModified: '2024-02-12T09:52:07.770466-05:00'
  854. digest:
  855. dandi:dandi-etag: f0457bc7ea4b9cd0af411356a2d1d20a-1
  856. dandi:sha2-256: 88dbe82fd0207f39bd98288bd54ac2728ad4866356713b164f3dab172e8531e5
  857. encodingFormat: application/x-nwb
  858. id: dandiasset:a2b6461b-4c2d-4260-9b50-0fbb5ccd3ba6
  859. identifier: a2b6461b-4c2d-4260-9b50-0fbb5ccd3ba6
  860. measurementTechnique:
  861. - name: behavioral technique
  862. schemaKey: MeasurementTechniqueType
  863. - name: analytical technique
  864. schemaKey: MeasurementTechniqueType
  865. 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
  866. schemaKey: Asset
  867. schemaVersion: 0.6.4
  868. variableMeasured:
  869. - schemaKey: PropertyValue
  870. value: ProcessingModule
  871. - schemaKey: PropertyValue
  872. value: SpatialSeries
  873. - schemaKey: PropertyValue
  874. value: Position
  875. - schemaKey: PropertyValue
  876. value: CompassDirection
  877. wasAttributedTo:
  878. - age:
  879. schemaKey: PropertyValue
  880. unitText: ISO-8601 duration
  881. value: P5DT57540S
  882. valueReference:
  883. schemaKey: PropertyValue
  884. value: dandi:BirthReference
  885. identifier: la_replay_02_6dpf_1124_nac het_#2023_11_30
  886. schemaKey: Participant
  887. sex:
  888. name: Unknown
  889. schemaKey: SexType
  890. species:
  891. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  892. name: Danio rerio - Zebra fish
  893. schemaKey: SpeciesType
  894. wasGeneratedBy:
  895. - description: Thermal plaid replay experiment
  896. name: Acquisition session
  897. schemaKey: Session
  898. startDate: '2023-11-30T15:59:00-05:00'
  899. - description: Metadata generated by DANDI cli
  900. endDate: '2024-02-12T09:52:07.770466-05:00'
  901. id: urn:uuid:6da31c88-c3f8-4992-94a2-308530b5af4e
  902. name: Metadata generation
  903. schemaKey: Activity
  904. startDate: '2024-02-12T09:52:07.766418-05:00'
  905. wasAssociatedWith:
  906. - identifier: RRID:SCR_019009
  907. name: DANDI Command Line Interface
  908. schemaKey: Software
  909. url: https://github.com/dandi/dandi-cli
  910. version: 0.59.1
  911. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  912. access:
  913. - schemaKey: AccessRequirements
  914. status: dandi:OpenAccess
  915. approach:
  916. - name: behavioral approach
  917. schemaKey: ApproachType
  918. blobDateModified: '2024-02-07T10:15:38.301168-05:00'
  919. contentSize: 35575328
  920. contentUrl:
  921. - https://api.dandiarchive.org/api/assets/f41802d0-3057-4149-a865-88fc63262e0a/download/
  922. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/e96/b14/e96b144a-d472-4c0d-a68c-601a05991741
  923. dateModified: '2024-02-12T09:52:08.837568-05:00'
  924. digest:
  925. dandi:dandi-etag: b8b8aafaf2c38d4841a365c61485a68c-1
  926. dandi:sha2-256: 98f85ad4dcf3864a99af63308884ff586a7cbcfd45fd45c4e167d5389d3e0a39
  927. encodingFormat: application/x-nwb
  928. id: dandiasset:f41802d0-3057-4149-a865-88fc63262e0a
  929. identifier: f41802d0-3057-4149-a865-88fc63262e0a
  930. measurementTechnique:
  931. - name: behavioral technique
  932. schemaKey: MeasurementTechniqueType
  933. - name: analytical technique
  934. schemaKey: MeasurementTechniqueType
  935. 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
  936. schemaKey: Asset
  937. schemaVersion: 0.6.4
  938. variableMeasured:
  939. - schemaKey: PropertyValue
  940. value: ProcessingModule
  941. - schemaKey: PropertyValue
  942. value: SpatialSeries
  943. - schemaKey: PropertyValue
  944. value: Position
  945. - schemaKey: PropertyValue
  946. value: CompassDirection
  947. wasAttributedTo:
  948. - age:
  949. schemaKey: PropertyValue
  950. unitText: ISO-8601 duration
  951. value: P6DT52440S
  952. valueReference:
  953. schemaKey: PropertyValue
  954. value: dandi:BirthReference
  955. identifier: la_replay_03_0119_nac het_#2024_1_25
  956. schemaKey: Participant
  957. sex:
  958. name: Unknown
  959. schemaKey: SexType
  960. species:
  961. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  962. name: Danio rerio - Zebra fish
  963. schemaKey: SpeciesType
  964. wasGeneratedBy:
  965. - description: Thermal plaid replay experiment
  966. name: Acquisition session
  967. schemaKey: Session
  968. startDate: '2024-01-25T14:34:00-05:00'
  969. - description: Metadata generated by DANDI cli
  970. endDate: '2024-02-12T09:52:08.837568-05:00'
  971. id: urn:uuid:eb933fc1-6e11-42d8-88c1-db63fd4dea58
  972. name: Metadata generation
  973. schemaKey: Activity
  974. startDate: '2024-02-12T09:52:08.735643-05:00'
  975. wasAssociatedWith:
  976. - identifier: RRID:SCR_019009
  977. name: DANDI Command Line Interface
  978. schemaKey: Software
  979. url: https://github.com/dandi/dandi-cli
  980. version: 0.59.1
  981. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  982. access:
  983. - schemaKey: AccessRequirements
  984. status: dandi:OpenAccess
  985. approach:
  986. - name: behavioral approach
  987. schemaKey: ApproachType
  988. blobDateModified: '2024-02-12T09:44:24.806755-05:00'
  989. contentSize: 35120058
  990. contentUrl:
  991. - https://api.dandiarchive.org/api/assets/dbb49a1c-11a7-4858-ab16-a90dd797d761/download/
  992. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/90e/786/90e786e4-102d-4085-8a5f-ea1cebcbae74
  993. dateModified: '2024-02-12T09:52:08.880164-05:00'
  994. digest:
  995. dandi:dandi-etag: 969659376a60ff641d3e7cf6350dae9a-1
  996. dandi:sha2-256: 3971c8f1eea05f77ddc6891cd56d75e1d46ed86415e75c7a174661c3abcbb823
  997. encodingFormat: application/x-nwb
  998. id: dandiasset:dbb49a1c-11a7-4858-ab16-a90dd797d761
  999. identifier: dbb49a1c-11a7-4858-ab16-a90dd797d761
  1000. measurementTechnique:
  1001. - name: behavioral technique
  1002. schemaKey: MeasurementTechniqueType
  1003. - name: analytical technique
  1004. schemaKey: MeasurementTechniqueType
  1005. 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
  1006. schemaKey: Asset
  1007. schemaVersion: 0.6.4
  1008. variableMeasured:
  1009. - schemaKey: PropertyValue
  1010. value: ProcessingModule
  1011. - schemaKey: PropertyValue
  1012. value: SpatialSeries
  1013. - schemaKey: PropertyValue
  1014. value: Position
  1015. - schemaKey: PropertyValue
  1016. value: CompassDirection
  1017. wasAttributedTo:
  1018. - age:
  1019. schemaKey: PropertyValue
  1020. unitText: ISO-8601 duration
  1021. value: P6DT52680S
  1022. valueReference:
  1023. schemaKey: PropertyValue
  1024. value: dandi:BirthReference
  1025. identifier: la_replay_03_6dpf_0201_nac het_#2024_2_9
  1026. schemaKey: Participant
  1027. sex:
  1028. name: Unknown
  1029. schemaKey: SexType
  1030. species:
  1031. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1032. name: Danio rerio - Zebra fish
  1033. schemaKey: SpeciesType
  1034. wasGeneratedBy:
  1035. - description: Thermal plaid replay experiment
  1036. name: Acquisition session
  1037. schemaKey: Session
  1038. startDate: '2024-02-09T14:38:00-05:00'
  1039. - description: Metadata generated by DANDI cli
  1040. endDate: '2024-02-12T09:52:08.880164-05:00'
  1041. id: urn:uuid:cbe115ce-b42b-4aa8-8c02-a2af3ae4afe6
  1042. name: Metadata generation
  1043. schemaKey: Activity
  1044. startDate: '2024-02-12T09:52:08.790535-05:00'
  1045. wasAssociatedWith:
  1046. - identifier: RRID:SCR_019009
  1047. name: DANDI Command Line Interface
  1048. schemaKey: Software
  1049. url: https://github.com/dandi/dandi-cli
  1050. version: 0.59.1
  1051. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1052. access:
  1053. - schemaKey: AccessRequirements
  1054. status: dandi:OpenAccess
  1055. approach:
  1056. - name: behavioral approach
  1057. schemaKey: ApproachType
  1058. blobDateModified: '2024-02-07T10:15:50.910647-05:00'
  1059. contentSize: 35544554
  1060. contentUrl:
  1061. - https://api.dandiarchive.org/api/assets/c9fe928e-4456-40d1-b68e-d4140f351c45/download/
  1062. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/d1b/ae4/d1bae47b-92c6-4706-bb27-a741e86919c8
  1063. dateModified: '2024-02-12T09:52:11.243250-05:00'
  1064. digest:
  1065. dandi:dandi-etag: 7e7e55564e1ad4b22d2911b3ef0af94d-1
  1066. dandi:sha2-256: c99e8959f54856ca99c9eab6f5bc0a7e3f2c0dddb10550a9a05a76bf18d6a414
  1067. encodingFormat: application/x-nwb
  1068. id: dandiasset:c9fe928e-4456-40d1-b68e-d4140f351c45
  1069. identifier: c9fe928e-4456-40d1-b68e-d4140f351c45
  1070. measurementTechnique:
  1071. - name: behavioral technique
  1072. schemaKey: MeasurementTechniqueType
  1073. - name: analytical technique
  1074. schemaKey: MeasurementTechniqueType
  1075. 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
  1076. schemaKey: Asset
  1077. schemaVersion: 0.6.4
  1078. variableMeasured:
  1079. - schemaKey: PropertyValue
  1080. value: ProcessingModule
  1081. - schemaKey: PropertyValue
  1082. value: SpatialSeries
  1083. - schemaKey: PropertyValue
  1084. value: Position
  1085. - schemaKey: PropertyValue
  1086. value: CompassDirection
  1087. wasAttributedTo:
  1088. - age:
  1089. schemaKey: PropertyValue
  1090. unitText: ISO-8601 duration
  1091. value: P6DT58980S
  1092. valueReference:
  1093. schemaKey: PropertyValue
  1094. value: dandi:BirthReference
  1095. identifier: la_replay_04_0119_nac het_#2024_1_25
  1096. schemaKey: Participant
  1097. sex:
  1098. name: Unknown
  1099. schemaKey: SexType
  1100. species:
  1101. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1102. name: Danio rerio - Zebra fish
  1103. schemaKey: SpeciesType
  1104. wasGeneratedBy:
  1105. - description: Thermal plaid replay experiment
  1106. name: Acquisition session
  1107. schemaKey: Session
  1108. startDate: '2024-01-25T16:23:00-05:00'
  1109. - description: Metadata generated by DANDI cli
  1110. endDate: '2024-02-12T09:52:11.243250-05:00'
  1111. id: urn:uuid:8d4efbfc-4181-47f0-a2e2-7c66c8836b09
  1112. name: Metadata generation
  1113. schemaKey: Activity
  1114. startDate: '2024-02-12T09:52:11.162354-05:00'
  1115. wasAssociatedWith:
  1116. - identifier: RRID:SCR_019009
  1117. name: DANDI Command Line Interface
  1118. schemaKey: Software
  1119. url: https://github.com/dandi/dandi-cli
  1120. version: 0.59.1
  1121. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1122. access:
  1123. - schemaKey: AccessRequirements
  1124. status: dandi:OpenAccess
  1125. approach:
  1126. - name: behavioral approach
  1127. schemaKey: ApproachType
  1128. blobDateModified: '2024-02-12T09:43:49.996634-05:00'
  1129. contentSize: 35069595
  1130. contentUrl:
  1131. - https://api.dandiarchive.org/api/assets/7bcc7809-8754-4f7b-b3cf-5f8c7ef71491/download/
  1132. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/5e0/2fa/5e02fa14-5211-40d2-bfd3-2b3349824490
  1133. dateModified: '2024-02-12T09:52:12.063700-05:00'
  1134. digest:
  1135. dandi:dandi-etag: 2b3495b3456d44c5c3020c2eee00e592-1
  1136. dandi:sha2-256: 017b9cb37db79e9d61fcb3dc387690b4103ce24b171e0f68decf3dddb09dde7a
  1137. encodingFormat: application/x-nwb
  1138. id: dandiasset:7bcc7809-8754-4f7b-b3cf-5f8c7ef71491
  1139. identifier: 7bcc7809-8754-4f7b-b3cf-5f8c7ef71491
  1140. measurementTechnique:
  1141. - name: behavioral technique
  1142. schemaKey: MeasurementTechniqueType
  1143. - name: analytical technique
  1144. schemaKey: MeasurementTechniqueType
  1145. 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
  1146. schemaKey: Asset
  1147. schemaVersion: 0.6.4
  1148. variableMeasured:
  1149. - schemaKey: PropertyValue
  1150. value: ProcessingModule
  1151. - schemaKey: PropertyValue
  1152. value: SpatialSeries
  1153. - schemaKey: PropertyValue
  1154. value: Position
  1155. - schemaKey: PropertyValue
  1156. value: CompassDirection
  1157. wasAttributedTo:
  1158. - age:
  1159. schemaKey: PropertyValue
  1160. unitText: ISO-8601 duration
  1161. value: P6DT38100S
  1162. valueReference:
  1163. schemaKey: PropertyValue
  1164. value: dandi:BirthReference
  1165. identifier: la_replay01_6dpf_0201_nac het_#2024_2_9
  1166. schemaKey: Participant
  1167. sex:
  1168. name: Unknown
  1169. schemaKey: SexType
  1170. species:
  1171. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1172. name: Danio rerio - Zebra fish
  1173. schemaKey: SpeciesType
  1174. wasGeneratedBy:
  1175. - description: Thermal plaid replay experiment
  1176. name: Acquisition session
  1177. schemaKey: Session
  1178. startDate: '2024-02-09T10:35:00-05:00'
  1179. - description: Metadata generated by DANDI cli
  1180. endDate: '2024-02-12T09:52:12.063700-05:00'
  1181. id: urn:uuid:384dc261-8805-456e-beac-daf28d41eafe
  1182. name: Metadata generation
  1183. schemaKey: Activity
  1184. startDate: '2024-02-12T09:52:11.951779-05:00'
  1185. wasAssociatedWith:
  1186. - identifier: RRID:SCR_019009
  1187. name: DANDI Command Line Interface
  1188. schemaKey: Software
  1189. url: https://github.com/dandi/dandi-cli
  1190. version: 0.59.1
  1191. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1192. access:
  1193. - schemaKey: AccessRequirements
  1194. status: dandi:OpenAccess
  1195. approach:
  1196. - name: behavioral approach
  1197. schemaKey: ApproachType
  1198. blobDateModified: '2024-02-07T10:10:26.369404-05:00'
  1199. contentSize: 35148792
  1200. contentUrl:
  1201. - https://api.dandiarchive.org/api/assets/97733bd8-02d0-4eea-9b33-a3d7945ba2f3/download/
  1202. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/aee/74c/aee74c3a-83de-4d73-a6ca-1af15819f100
  1203. dateModified: '2024-02-12T09:52:11.856612-05:00'
  1204. digest:
  1205. dandi:dandi-etag: de827fe61cad50d746aad1310cedd569-1
  1206. dandi:sha2-256: 4b1c67f85afe5743689dcf0cf82300f59f3bb2f304e84e621ad6265f75f35d58
  1207. encodingFormat: application/x-nwb
  1208. id: dandiasset:97733bd8-02d0-4eea-9b33-a3d7945ba2f3
  1209. identifier: 97733bd8-02d0-4eea-9b33-a3d7945ba2f3
  1210. measurementTechnique:
  1211. - name: behavioral technique
  1212. schemaKey: MeasurementTechniqueType
  1213. - name: analytical technique
  1214. schemaKey: MeasurementTechniqueType
  1215. 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
  1216. schemaKey: Asset
  1217. schemaVersion: 0.6.4
  1218. variableMeasured:
  1219. - schemaKey: PropertyValue
  1220. value: ProcessingModule
  1221. - schemaKey: PropertyValue
  1222. value: SpatialSeries
  1223. - schemaKey: PropertyValue
  1224. value: Position
  1225. - schemaKey: PropertyValue
  1226. value: CompassDirection
  1227. wasAttributedTo:
  1228. - age:
  1229. schemaKey: PropertyValue
  1230. unitText: ISO-8601 duration
  1231. value: P6DT54180S
  1232. valueReference:
  1233. schemaKey: PropertyValue
  1234. value: dandi:BirthReference
  1235. identifier: replay_la_plaid_01_nac het_#2023_10_26
  1236. schemaKey: Participant
  1237. sex:
  1238. name: Unknown
  1239. schemaKey: SexType
  1240. species:
  1241. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1242. name: Danio rerio - Zebra fish
  1243. schemaKey: SpeciesType
  1244. wasGeneratedBy:
  1245. - description: Thermal plaid replay experiment
  1246. name: Acquisition session
  1247. schemaKey: Session
  1248. startDate: '2023-10-26T15:03:00-04:00'
  1249. - description: Metadata generated by DANDI cli
  1250. endDate: '2024-02-12T09:52:11.856612-05:00'
  1251. id: urn:uuid:1c00593f-8b01-47a9-91cb-d55606978dd3
  1252. name: Metadata generation
  1253. schemaKey: Activity
  1254. startDate: '2024-02-12T09:52:11.722758-05:00'
  1255. wasAssociatedWith:
  1256. - identifier: RRID:SCR_019009
  1257. name: DANDI Command Line Interface
  1258. schemaKey: Software
  1259. url: https://github.com/dandi/dandi-cli
  1260. version: 0.59.1
  1261. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1262. access:
  1263. - schemaKey: AccessRequirements
  1264. status: dandi:OpenAccess
  1265. approach:
  1266. - name: behavioral approach
  1267. schemaKey: ApproachType
  1268. blobDateModified: '2024-02-07T10:09:23.926324-05:00'
  1269. contentSize: 34835016
  1270. contentUrl:
  1271. - https://api.dandiarchive.org/api/assets/911b0d64-49e5-4197-be52-5514fa57c073/download/
  1272. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/772/059/772059d2-eeb1-4bc4-8d71-f48f87f772a9
  1273. dateModified: '2024-02-12T09:52:13.940381-05:00'
  1274. digest:
  1275. dandi:dandi-etag: e257850aef518b1065fb9335e0dff650-1
  1276. dandi:sha2-256: 53620f86909c4b1fea8fa944a51668f9731231daa7b04665797984ccfc71d2f5
  1277. encodingFormat: application/x-nwb
  1278. id: dandiasset:911b0d64-49e5-4197-be52-5514fa57c073
  1279. identifier: 911b0d64-49e5-4197-be52-5514fa57c073
  1280. measurementTechnique:
  1281. - name: behavioral technique
  1282. schemaKey: MeasurementTechniqueType
  1283. - name: analytical technique
  1284. schemaKey: MeasurementTechniqueType
  1285. 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
  1286. schemaKey: Asset
  1287. schemaVersion: 0.6.4
  1288. variableMeasured:
  1289. - schemaKey: PropertyValue
  1290. value: ProcessingModule
  1291. - schemaKey: PropertyValue
  1292. value: SpatialSeries
  1293. - schemaKey: PropertyValue
  1294. value: Position
  1295. - schemaKey: PropertyValue
  1296. value: CompassDirection
  1297. wasAttributedTo:
  1298. - age:
  1299. schemaKey: PropertyValue
  1300. unitText: ISO-8601 duration
  1301. value: P6DT53520S
  1302. valueReference:
  1303. schemaKey: PropertyValue
  1304. value: dandi:BirthReference
  1305. identifier: replay_la_plaid_01_nac het_#2023_11_9
  1306. schemaKey: Participant
  1307. sex:
  1308. name: Unknown
  1309. schemaKey: SexType
  1310. species:
  1311. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1312. name: Danio rerio - Zebra fish
  1313. schemaKey: SpeciesType
  1314. wasGeneratedBy:
  1315. - description: Thermal plaid replay experiment
  1316. name: Acquisition session
  1317. schemaKey: Session
  1318. startDate: '2023-11-09T13:52:00-05:00'
  1319. - description: Metadata generated by DANDI cli
  1320. endDate: '2024-02-12T09:52:13.940381-05:00'
  1321. id: urn:uuid:c21a693f-14c9-4f00-b696-cbafb5508134
  1322. name: Metadata generation
  1323. schemaKey: Activity
  1324. startDate: '2024-02-12T09:52:13.832312-05:00'
  1325. wasAssociatedWith:
  1326. - identifier: RRID:SCR_019009
  1327. name: DANDI Command Line Interface
  1328. schemaKey: Software
  1329. url: https://github.com/dandi/dandi-cli
  1330. version: 0.59.1
  1331. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1332. access:
  1333. - schemaKey: AccessRequirements
  1334. status: dandi:OpenAccess
  1335. approach:
  1336. - name: behavioral approach
  1337. schemaKey: ApproachType
  1338. blobDateModified: '2024-02-07T10:11:16.286983-05:00'
  1339. contentSize: 35239696
  1340. contentUrl:
  1341. - https://api.dandiarchive.org/api/assets/3bc6dc89-9373-49bc-a616-2edc4fdd35e5/download/
  1342. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/651/3e6/6513e6d6-1dd6-4846-96b4-35660e1beef1
  1343. dateModified: '2024-02-12T09:52:13.992081-05:00'
  1344. digest:
  1345. dandi:dandi-etag: b87233855e240ff9f5ff2661900b5c3b-1
  1346. dandi:sha2-256: 1e35b93f0d055f123b03d082be6e9e8542842134673f2b905e628be0935e269e
  1347. encodingFormat: application/x-nwb
  1348. id: dandiasset:3bc6dc89-9373-49bc-a616-2edc4fdd35e5
  1349. identifier: 3bc6dc89-9373-49bc-a616-2edc4fdd35e5
  1350. measurementTechnique:
  1351. - name: behavioral technique
  1352. schemaKey: MeasurementTechniqueType
  1353. - name: analytical technique
  1354. schemaKey: MeasurementTechniqueType
  1355. 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
  1356. schemaKey: Asset
  1357. schemaVersion: 0.6.4
  1358. variableMeasured:
  1359. - schemaKey: PropertyValue
  1360. value: ProcessingModule
  1361. - schemaKey: PropertyValue
  1362. value: SpatialSeries
  1363. - schemaKey: PropertyValue
  1364. value: Position
  1365. - schemaKey: PropertyValue
  1366. value: CompassDirection
  1367. wasAttributedTo:
  1368. - age:
  1369. schemaKey: PropertyValue
  1370. unitText: ISO-8601 duration
  1371. value: P6DT57900S
  1372. valueReference:
  1373. schemaKey: PropertyValue
  1374. value: dandi:BirthReference
  1375. identifier: replay_la_plaid_01_nac het_#2023_11_2
  1376. schemaKey: Participant
  1377. sex:
  1378. name: Unknown
  1379. schemaKey: SexType
  1380. species:
  1381. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1382. name: Danio rerio - Zebra fish
  1383. schemaKey: SpeciesType
  1384. wasGeneratedBy:
  1385. - description: Thermal plaid replay experiment
  1386. name: Acquisition session
  1387. schemaKey: Session
  1388. startDate: '2023-11-02T16:05:00-04:00'
  1389. - description: Metadata generated by DANDI cli
  1390. endDate: '2024-02-12T09:52:13.992081-05:00'
  1391. id: urn:uuid:442efe8a-5d2c-4e67-b71c-59ab3c0c4ebc
  1392. name: Metadata generation
  1393. schemaKey: Activity
  1394. startDate: '2024-02-12T09:52:13.882417-05:00'
  1395. wasAssociatedWith:
  1396. - identifier: RRID:SCR_019009
  1397. name: DANDI Command Line Interface
  1398. schemaKey: Software
  1399. url: https://github.com/dandi/dandi-cli
  1400. version: 0.59.1
  1401. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1402. access:
  1403. - schemaKey: AccessRequirements
  1404. status: dandi:OpenAccess
  1405. approach:
  1406. - name: behavioral approach
  1407. schemaKey: ApproachType
  1408. blobDateModified: '2024-02-07T09:55:01.737217-05:00'
  1409. contentSize: 35369520
  1410. contentUrl:
  1411. - https://api.dandiarchive.org/api/assets/088a2235-a592-45f0-bf47-104e56210505/download/
  1412. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/79f/54d/79f54dad-cd91-4a7b-a049-c590b265d7ac
  1413. dateModified: '2024-02-12T09:52:15.637070-05:00'
  1414. digest:
  1415. dandi:dandi-etag: 04451702f1f6f58022cf3115db165495-1
  1416. dandi:sha2-256: 3b512d7cd3a6f622bd6ab18b1f9dd27846beb7899f92bc04d9a42db1e8f6ef22
  1417. encodingFormat: application/x-nwb
  1418. id: dandiasset:088a2235-a592-45f0-bf47-104e56210505
  1419. identifier: 088a2235-a592-45f0-bf47-104e56210505
  1420. measurementTechnique:
  1421. - name: behavioral technique
  1422. schemaKey: MeasurementTechniqueType
  1423. - name: analytical technique
  1424. schemaKey: MeasurementTechniqueType
  1425. 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
  1426. schemaKey: Asset
  1427. schemaVersion: 0.6.4
  1428. variableMeasured:
  1429. - schemaKey: PropertyValue
  1430. value: ProcessingModule
  1431. - schemaKey: PropertyValue
  1432. value: SpatialSeries
  1433. - schemaKey: PropertyValue
  1434. value: Position
  1435. - schemaKey: PropertyValue
  1436. value: CompassDirection
  1437. wasAttributedTo:
  1438. - age:
  1439. schemaKey: PropertyValue
  1440. unitText: ISO-8601 duration
  1441. value: P6DT53160S
  1442. valueReference:
  1443. schemaKey: PropertyValue
  1444. value: dandi:BirthReference
  1445. identifier: replay_la_plaid_01_nac het_#2023_7_12
  1446. schemaKey: Participant
  1447. sex:
  1448. name: Unknown
  1449. schemaKey: SexType
  1450. species:
  1451. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1452. name: Danio rerio - Zebra fish
  1453. schemaKey: SpeciesType
  1454. wasGeneratedBy:
  1455. - description: Thermal plaid replay experiment
  1456. name: Acquisition session
  1457. schemaKey: Session
  1458. startDate: '2023-07-12T14:46:00-04:00'
  1459. - description: Metadata generated by DANDI cli
  1460. endDate: '2024-02-12T09:52:15.637070-05:00'
  1461. id: urn:uuid:c3e85298-0643-4e8a-bf38-4068c6ac04e2
  1462. name: Metadata generation
  1463. schemaKey: Activity
  1464. startDate: '2024-02-12T09:52:15.632030-05:00'
  1465. wasAssociatedWith:
  1466. - identifier: RRID:SCR_019009
  1467. name: DANDI Command Line Interface
  1468. schemaKey: Software
  1469. url: https://github.com/dandi/dandi-cli
  1470. version: 0.59.1
  1471. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1472. access:
  1473. - schemaKey: AccessRequirements
  1474. status: dandi:OpenAccess
  1475. approach:
  1476. - name: behavioral approach
  1477. schemaKey: ApproachType
  1478. blobDateModified: '2024-02-07T09:55:27.158376-05:00'
  1479. contentSize: 34241138
  1480. contentUrl:
  1481. - https://api.dandiarchive.org/api/assets/1d2f8d5f-56db-4f71-807a-1878d6aab8ce/download/
  1482. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/a2d/92a/a2d92a9b-e738-4eca-a483-a7d3c4d6f156
  1483. dateModified: '2024-02-12T09:52:16.234634-05:00'
  1484. digest:
  1485. dandi:dandi-etag: 3d721c76dcda63625d578ce70208fa70-1
  1486. dandi:sha2-256: 9485f87df2fdf6dbae7948ae5f1f7ae636e66558507608fdd3fffaa9770fe84f
  1487. encodingFormat: application/x-nwb
  1488. id: dandiasset:1d2f8d5f-56db-4f71-807a-1878d6aab8ce
  1489. identifier: 1d2f8d5f-56db-4f71-807a-1878d6aab8ce
  1490. measurementTechnique:
  1491. - name: behavioral technique
  1492. schemaKey: MeasurementTechniqueType
  1493. - name: analytical technique
  1494. schemaKey: MeasurementTechniqueType
  1495. 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
  1496. schemaKey: Asset
  1497. schemaVersion: 0.6.4
  1498. variableMeasured:
  1499. - schemaKey: PropertyValue
  1500. value: ProcessingModule
  1501. - schemaKey: PropertyValue
  1502. value: SpatialSeries
  1503. - schemaKey: PropertyValue
  1504. value: Position
  1505. - schemaKey: PropertyValue
  1506. value: CompassDirection
  1507. wasAttributedTo:
  1508. - age:
  1509. schemaKey: PropertyValue
  1510. unitText: ISO-8601 duration
  1511. value: P6DT45000S
  1512. valueReference:
  1513. schemaKey: PropertyValue
  1514. value: dandi:BirthReference
  1515. identifier: replay_la_plaid_01_nac het_#2023_7_13
  1516. schemaKey: Participant
  1517. sex:
  1518. name: Unknown
  1519. schemaKey: SexType
  1520. species:
  1521. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1522. name: Danio rerio - Zebra fish
  1523. schemaKey: SpeciesType
  1524. wasGeneratedBy:
  1525. - description: Thermal plaid replay experiment
  1526. name: Acquisition session
  1527. schemaKey: Session
  1528. startDate: '2023-07-13T12:30:00-04:00'
  1529. - description: Metadata generated by DANDI cli
  1530. endDate: '2024-02-12T09:52:16.234634-05:00'
  1531. id: urn:uuid:03938668-6791-40b9-8fe7-432a3f751ba8
  1532. name: Metadata generation
  1533. schemaKey: Activity
  1534. startDate: '2024-02-12T09:52:16.116299-05:00'
  1535. wasAssociatedWith:
  1536. - identifier: RRID:SCR_019009
  1537. name: DANDI Command Line Interface
  1538. schemaKey: Software
  1539. url: https://github.com/dandi/dandi-cli
  1540. version: 0.59.1
  1541. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1542. access:
  1543. - schemaKey: AccessRequirements
  1544. status: dandi:OpenAccess
  1545. approach:
  1546. - name: behavioral approach
  1547. schemaKey: ApproachType
  1548. blobDateModified: '2024-02-07T09:56:33.240053-05:00'
  1549. contentSize: 35482565
  1550. contentUrl:
  1551. - https://api.dandiarchive.org/api/assets/f7b70068-8eb0-4557-85d4-ada371835f8d/download/
  1552. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/b55/f8b/b55f8be6-1d3b-43cf-b015-c0d6ad392a01
  1553. dateModified: '2024-02-12T09:52:16.874264-05:00'
  1554. digest:
  1555. dandi:dandi-etag: 18a030cfed997a11fbb560a384ea012b-1
  1556. dandi:sha2-256: b37402ab8f50785d70f6f3cc94550699e9ef03c47754dcaef25430addbd5b9de
  1557. encodingFormat: application/x-nwb
  1558. id: dandiasset:f7b70068-8eb0-4557-85d4-ada371835f8d
  1559. identifier: f7b70068-8eb0-4557-85d4-ada371835f8d
  1560. measurementTechnique:
  1561. - name: behavioral technique
  1562. schemaKey: MeasurementTechniqueType
  1563. - name: analytical technique
  1564. schemaKey: MeasurementTechniqueType
  1565. 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
  1566. schemaKey: Asset
  1567. schemaVersion: 0.6.4
  1568. variableMeasured:
  1569. - schemaKey: PropertyValue
  1570. value: ProcessingModule
  1571. - schemaKey: PropertyValue
  1572. value: SpatialSeries
  1573. - schemaKey: PropertyValue
  1574. value: Position
  1575. - schemaKey: PropertyValue
  1576. value: CompassDirection
  1577. wasAttributedTo:
  1578. - age:
  1579. schemaKey: PropertyValue
  1580. unitText: ISO-8601 duration
  1581. value: P6DT45960S
  1582. valueReference:
  1583. schemaKey: PropertyValue
  1584. value: dandi:BirthReference
  1585. identifier: replay_la_plaid_01_nac het_#2023_7_19
  1586. schemaKey: Participant
  1587. sex:
  1588. name: Unknown
  1589. schemaKey: SexType
  1590. species:
  1591. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1592. name: Danio rerio - Zebra fish
  1593. schemaKey: SpeciesType
  1594. wasGeneratedBy:
  1595. - description: Thermal plaid replay experiment
  1596. name: Acquisition session
  1597. schemaKey: Session
  1598. startDate: '2023-07-19T12:46:00-04:00'
  1599. - description: Metadata generated by DANDI cli
  1600. endDate: '2024-02-12T09:52:16.873259-05:00'
  1601. id: urn:uuid:186f6b75-a76a-4493-919f-2ef8fcb95b3c
  1602. name: Metadata generation
  1603. schemaKey: Activity
  1604. startDate: '2024-02-12T09:52:16.818523-05:00'
  1605. wasAssociatedWith:
  1606. - identifier: RRID:SCR_019009
  1607. name: DANDI Command Line Interface
  1608. schemaKey: Software
  1609. url: https://github.com/dandi/dandi-cli
  1610. version: 0.59.1
  1611. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1612. access:
  1613. - schemaKey: AccessRequirements
  1614. status: dandi:OpenAccess
  1615. approach:
  1616. - name: behavioral approach
  1617. schemaKey: ApproachType
  1618. blobDateModified: '2024-02-07T10:01:27.235455-05:00'
  1619. contentSize: 35171509
  1620. contentUrl:
  1621. - https://api.dandiarchive.org/api/assets/3a3eb0d7-6447-4609-884e-367d1348ead6/download/
  1622. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/bac/042/bac042e0-d60b-4a46-9d31-1dbf21223d07
  1623. dateModified: '2024-02-12T09:52:18.073241-05:00'
  1624. digest:
  1625. dandi:dandi-etag: 27dc72750b70b59cde7fa6ce6e3f65e6-1
  1626. dandi:sha2-256: 0908cdca271f6a3ca333c6f177ae08bb3c1756f96ba28299cb7f79113126ea10
  1627. encodingFormat: application/x-nwb
  1628. id: dandiasset:3a3eb0d7-6447-4609-884e-367d1348ead6
  1629. identifier: 3a3eb0d7-6447-4609-884e-367d1348ead6
  1630. measurementTechnique:
  1631. - name: behavioral technique
  1632. schemaKey: MeasurementTechniqueType
  1633. - name: analytical technique
  1634. schemaKey: MeasurementTechniqueType
  1635. 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
  1636. schemaKey: Asset
  1637. schemaVersion: 0.6.4
  1638. variableMeasured:
  1639. - schemaKey: PropertyValue
  1640. value: ProcessingModule
  1641. - schemaKey: PropertyValue
  1642. value: SpatialSeries
  1643. - schemaKey: PropertyValue
  1644. value: Position
  1645. - schemaKey: PropertyValue
  1646. value: CompassDirection
  1647. wasAttributedTo:
  1648. - age:
  1649. schemaKey: PropertyValue
  1650. unitText: ISO-8601 duration
  1651. value: P6DT42300S
  1652. valueReference:
  1653. schemaKey: PropertyValue
  1654. value: dandi:BirthReference
  1655. identifier: replay_la_plaid_01_nac het_#2023_8_14
  1656. schemaKey: Participant
  1657. sex:
  1658. name: Unknown
  1659. schemaKey: SexType
  1660. species:
  1661. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1662. name: Danio rerio - Zebra fish
  1663. schemaKey: SpeciesType
  1664. wasGeneratedBy:
  1665. - description: Thermal plaid replay experiment
  1666. name: Acquisition session
  1667. schemaKey: Session
  1668. startDate: '2023-08-14T11:45:00-04:00'
  1669. - description: Metadata generated by DANDI cli
  1670. endDate: '2024-02-12T09:52:18.073241-05:00'
  1671. id: urn:uuid:69dcbbe5-3c5c-4496-bd42-b1125dad0632
  1672. name: Metadata generation
  1673. schemaKey: Activity
  1674. startDate: '2024-02-12T09:52:18.070183-05:00'
  1675. wasAssociatedWith:
  1676. - identifier: RRID:SCR_019009
  1677. name: DANDI Command Line Interface
  1678. schemaKey: Software
  1679. url: https://github.com/dandi/dandi-cli
  1680. version: 0.59.1
  1681. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1682. access:
  1683. - schemaKey: AccessRequirements
  1684. status: dandi:OpenAccess
  1685. approach:
  1686. - name: behavioral approach
  1687. schemaKey: ApproachType
  1688. blobDateModified: '2024-02-07T09:57:36.792119-05:00'
  1689. contentSize: 35304628
  1690. contentUrl:
  1691. - https://api.dandiarchive.org/api/assets/4de75a42-a39a-4f28-89fd-03670dbaea30/download/
  1692. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/fe4/a4d/fe4a4d43-339f-48fe-8545-2c0d3d7248a6
  1693. dateModified: '2024-02-12T09:52:18.428168-05:00'
  1694. digest:
  1695. dandi:dandi-etag: 7856470198941413cd53047db59a0d04-1
  1696. dandi:sha2-256: 2ba109c47b396ea3718798767a84b795dad78c0e936353c2bce979d191c6f91b
  1697. encodingFormat: application/x-nwb
  1698. id: dandiasset:4de75a42-a39a-4f28-89fd-03670dbaea30
  1699. identifier: 4de75a42-a39a-4f28-89fd-03670dbaea30
  1700. measurementTechnique:
  1701. - name: behavioral technique
  1702. schemaKey: MeasurementTechniqueType
  1703. - name: analytical technique
  1704. schemaKey: MeasurementTechniqueType
  1705. 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
  1706. schemaKey: Asset
  1707. schemaVersion: 0.6.4
  1708. variableMeasured:
  1709. - schemaKey: PropertyValue
  1710. value: ProcessingModule
  1711. - schemaKey: PropertyValue
  1712. value: SpatialSeries
  1713. - schemaKey: PropertyValue
  1714. value: Position
  1715. - schemaKey: PropertyValue
  1716. value: CompassDirection
  1717. wasAttributedTo:
  1718. - age:
  1719. schemaKey: PropertyValue
  1720. unitText: ISO-8601 duration
  1721. value: P6DT46500S
  1722. valueReference:
  1723. schemaKey: PropertyValue
  1724. value: dandi:BirthReference
  1725. identifier: replay_la_plaid_01_nac het_#2023_8_2
  1726. schemaKey: Participant
  1727. sex:
  1728. name: Unknown
  1729. schemaKey: SexType
  1730. species:
  1731. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1732. name: Danio rerio - Zebra fish
  1733. schemaKey: SpeciesType
  1734. wasGeneratedBy:
  1735. - description: Thermal plaid replay experiment
  1736. name: Acquisition session
  1737. schemaKey: Session
  1738. startDate: '2023-08-02T12:55:00-04:00'
  1739. - description: Metadata generated by DANDI cli
  1740. endDate: '2024-02-12T09:52:18.428168-05:00'
  1741. id: urn:uuid:c66f5e98-758d-4d75-855c-ca2631e23422
  1742. name: Metadata generation
  1743. schemaKey: Activity
  1744. startDate: '2024-02-12T09:52:18.425116-05:00'
  1745. wasAssociatedWith:
  1746. - identifier: RRID:SCR_019009
  1747. name: DANDI Command Line Interface
  1748. schemaKey: Software
  1749. url: https://github.com/dandi/dandi-cli
  1750. version: 0.59.1
  1751. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1752. access:
  1753. - schemaKey: AccessRequirements
  1754. status: dandi:OpenAccess
  1755. approach:
  1756. - name: behavioral approach
  1757. schemaKey: ApproachType
  1758. blobDateModified: '2024-02-07T10:04:17.706456-05:00'
  1759. contentSize: 35130855
  1760. contentUrl:
  1761. - https://api.dandiarchive.org/api/assets/e7f7b03a-b317-469e-a962-18de53a8d9c7/download/
  1762. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/614/978/614978ad-f907-460e-b982-60c57dc708cd
  1763. dateModified: '2024-02-12T09:52:19.594754-05:00'
  1764. digest:
  1765. dandi:dandi-etag: 3a2679ec7aa67f04abbe14a88ba3333b-1
  1766. dandi:sha2-256: 0909a67996bce2aabf6677ddf93a506608569bd20fe437164064084fcaba4ed6
  1767. encodingFormat: application/x-nwb
  1768. id: dandiasset:e7f7b03a-b317-469e-a962-18de53a8d9c7
  1769. identifier: e7f7b03a-b317-469e-a962-18de53a8d9c7
  1770. measurementTechnique:
  1771. - name: behavioral technique
  1772. schemaKey: MeasurementTechniqueType
  1773. - name: analytical technique
  1774. schemaKey: MeasurementTechniqueType
  1775. 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
  1776. schemaKey: Asset
  1777. schemaVersion: 0.6.4
  1778. variableMeasured:
  1779. - schemaKey: PropertyValue
  1780. value: ProcessingModule
  1781. - schemaKey: PropertyValue
  1782. value: SpatialSeries
  1783. - schemaKey: PropertyValue
  1784. value: Position
  1785. - schemaKey: PropertyValue
  1786. value: CompassDirection
  1787. wasAttributedTo:
  1788. - age:
  1789. schemaKey: PropertyValue
  1790. unitText: ISO-8601 duration
  1791. value: P6DT48780S
  1792. valueReference:
  1793. schemaKey: PropertyValue
  1794. value: dandi:BirthReference
  1795. identifier: replay_la_plaid_01_nac het_#2023_8_24
  1796. schemaKey: Participant
  1797. sex:
  1798. name: Unknown
  1799. schemaKey: SexType
  1800. species:
  1801. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1802. name: Danio rerio - Zebra fish
  1803. schemaKey: SpeciesType
  1804. wasGeneratedBy:
  1805. - description: Thermal plaid replay experiment
  1806. name: Acquisition session
  1807. schemaKey: Session
  1808. startDate: '2023-08-24T13:33:00-04:00'
  1809. - description: Metadata generated by DANDI cli
  1810. endDate: '2024-02-12T09:52:19.594754-05:00'
  1811. id: urn:uuid:90f60dd1-e4e4-43e6-9776-400419ac870e
  1812. name: Metadata generation
  1813. schemaKey: Activity
  1814. startDate: '2024-02-12T09:52:19.591195-05:00'
  1815. wasAssociatedWith:
  1816. - identifier: RRID:SCR_019009
  1817. name: DANDI Command Line Interface
  1818. schemaKey: Software
  1819. url: https://github.com/dandi/dandi-cli
  1820. version: 0.59.1
  1821. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1822. access:
  1823. - schemaKey: AccessRequirements
  1824. status: dandi:OpenAccess
  1825. approach:
  1826. - name: behavioral approach
  1827. schemaKey: ApproachType
  1828. blobDateModified: '2024-02-07T10:00:29.187003-05:00'
  1829. contentSize: 35804461
  1830. contentUrl:
  1831. - https://api.dandiarchive.org/api/assets/9b82eb87-329a-4ee4-8d2d-ca633808ab48/download/
  1832. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/2d2/e13/2d2e1324-205f-4cae-b2d9-f6c1e75c5eb8
  1833. dateModified: '2024-02-12T09:52:21.058040-05:00'
  1834. digest:
  1835. dandi:dandi-etag: b6afdd973e8654e82bc7fdee89d592a5-1
  1836. dandi:sha2-256: 625c67af6db849f64a526e51e28505dda2a52040d5e17d08bd3eb7452d7b48c4
  1837. encodingFormat: application/x-nwb
  1838. id: dandiasset:9b82eb87-329a-4ee4-8d2d-ca633808ab48
  1839. identifier: 9b82eb87-329a-4ee4-8d2d-ca633808ab48
  1840. measurementTechnique:
  1841. - name: behavioral technique
  1842. schemaKey: MeasurementTechniqueType
  1843. - name: analytical technique
  1844. schemaKey: MeasurementTechniqueType
  1845. 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
  1846. schemaKey: Asset
  1847. schemaVersion: 0.6.4
  1848. variableMeasured:
  1849. - schemaKey: PropertyValue
  1850. value: ProcessingModule
  1851. - schemaKey: PropertyValue
  1852. value: SpatialSeries
  1853. - schemaKey: PropertyValue
  1854. value: Position
  1855. - schemaKey: PropertyValue
  1856. value: CompassDirection
  1857. wasAttributedTo:
  1858. - age:
  1859. schemaKey: PropertyValue
  1860. unitText: ISO-8601 duration
  1861. value: P6DT39240S
  1862. valueReference:
  1863. schemaKey: PropertyValue
  1864. value: dandi:BirthReference
  1865. identifier: replay_la_plaid_01_nac het_#2023_8_3
  1866. schemaKey: Participant
  1867. sex:
  1868. name: Unknown
  1869. schemaKey: SexType
  1870. species:
  1871. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1872. name: Danio rerio - Zebra fish
  1873. schemaKey: SpeciesType
  1874. wasGeneratedBy:
  1875. - description: Thermal plaid replay experiment
  1876. name: Acquisition session
  1877. schemaKey: Session
  1878. startDate: '2023-08-03T10:54:00-04:00'
  1879. - description: Metadata generated by DANDI cli
  1880. endDate: '2024-02-12T09:52:21.058040-05:00'
  1881. id: urn:uuid:fce52100-438f-4038-9554-9781ca7ccc5b
  1882. name: Metadata generation
  1883. schemaKey: Activity
  1884. startDate: '2024-02-12T09:52:20.957670-05:00'
  1885. wasAssociatedWith:
  1886. - identifier: RRID:SCR_019009
  1887. name: DANDI Command Line Interface
  1888. schemaKey: Software
  1889. url: https://github.com/dandi/dandi-cli
  1890. version: 0.59.1
  1891. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1892. access:
  1893. - schemaKey: AccessRequirements
  1894. status: dandi:OpenAccess
  1895. approach:
  1896. - name: behavioral approach
  1897. schemaKey: ApproachType
  1898. blobDateModified: '2024-02-07T10:05:54.546181-05:00'
  1899. contentSize: 35564532
  1900. contentUrl:
  1901. - https://api.dandiarchive.org/api/assets/9c431821-a390-4d19-8c57-b483e2518fb3/download/
  1902. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/07e/29e/07e29ed5-ce53-449c-a44a-9d6df1255193
  1903. dateModified: '2024-02-12T09:52:21.477250-05:00'
  1904. digest:
  1905. dandi:dandi-etag: 41ab4d3d3173d682f7fb4640a075af88-1
  1906. dandi:sha2-256: 722d9b294724bbe9fd226082b36c56d70fd337987ef157baba1d90af7e2f1040
  1907. encodingFormat: application/x-nwb
  1908. id: dandiasset:9c431821-a390-4d19-8c57-b483e2518fb3
  1909. identifier: 9c431821-a390-4d19-8c57-b483e2518fb3
  1910. measurementTechnique:
  1911. - name: behavioral technique
  1912. schemaKey: MeasurementTechniqueType
  1913. - name: analytical technique
  1914. schemaKey: MeasurementTechniqueType
  1915. 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
  1916. schemaKey: Asset
  1917. schemaVersion: 0.6.4
  1918. variableMeasured:
  1919. - schemaKey: PropertyValue
  1920. value: ProcessingModule
  1921. - schemaKey: PropertyValue
  1922. value: SpatialSeries
  1923. - schemaKey: PropertyValue
  1924. value: Position
  1925. - schemaKey: PropertyValue
  1926. value: CompassDirection
  1927. wasAttributedTo:
  1928. - age:
  1929. schemaKey: PropertyValue
  1930. unitText: ISO-8601 duration
  1931. value: P6DT45960S
  1932. valueReference:
  1933. schemaKey: PropertyValue
  1934. value: dandi:BirthReference
  1935. identifier: replay_la_plaid_01_nac het_#2023_8_30
  1936. schemaKey: Participant
  1937. sex:
  1938. name: Unknown
  1939. schemaKey: SexType
  1940. species:
  1941. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  1942. name: Danio rerio - Zebra fish
  1943. schemaKey: SpeciesType
  1944. wasGeneratedBy:
  1945. - description: Thermal plaid replay experiment
  1946. name: Acquisition session
  1947. schemaKey: Session
  1948. startDate: '2023-08-30T12:46:00-04:00'
  1949. - description: Metadata generated by DANDI cli
  1950. endDate: '2024-02-12T09:52:21.477250-05:00'
  1951. id: urn:uuid:a17c8d67-9b66-45e1-860c-838db1ea14d3
  1952. name: Metadata generation
  1953. schemaKey: Activity
  1954. startDate: '2024-02-12T09:52:21.359366-05:00'
  1955. wasAssociatedWith:
  1956. - identifier: RRID:SCR_019009
  1957. name: DANDI Command Line Interface
  1958. schemaKey: Software
  1959. url: https://github.com/dandi/dandi-cli
  1960. version: 0.59.1
  1961. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1962. access:
  1963. - schemaKey: AccessRequirements
  1964. status: dandi:OpenAccess
  1965. approach:
  1966. - name: behavioral approach
  1967. schemaKey: ApproachType
  1968. blobDateModified: '2024-02-07T10:07:06.681046-05:00'
  1969. contentSize: 35079359
  1970. contentUrl:
  1971. - https://api.dandiarchive.org/api/assets/db7651b2-3c9b-4528-b62e-aa9c224305b7/download/
  1972. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/f76/93f/f7693fcc-068f-4343-9f5f-16fa3254e0aa
  1973. dateModified: '2024-02-12T09:52:22.417661-05:00'
  1974. digest:
  1975. dandi:dandi-etag: ef4efcaae85a8763969c4cd24dcd3050-1
  1976. dandi:sha2-256: 82fb5fe48ab17bcb6bd4e1efed96b2df8c93e2d7e87fb0858e6c47ea7b1caae7
  1977. encodingFormat: application/x-nwb
  1978. id: dandiasset:db7651b2-3c9b-4528-b62e-aa9c224305b7
  1979. identifier: db7651b2-3c9b-4528-b62e-aa9c224305b7
  1980. measurementTechnique:
  1981. - name: behavioral technique
  1982. schemaKey: MeasurementTechniqueType
  1983. - name: analytical technique
  1984. schemaKey: MeasurementTechniqueType
  1985. 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
  1986. schemaKey: Asset
  1987. schemaVersion: 0.6.4
  1988. variableMeasured:
  1989. - schemaKey: PropertyValue
  1990. value: ProcessingModule
  1991. - schemaKey: PropertyValue
  1992. value: SpatialSeries
  1993. - schemaKey: PropertyValue
  1994. value: Position
  1995. - schemaKey: PropertyValue
  1996. value: CompassDirection
  1997. wasAttributedTo:
  1998. - age:
  1999. schemaKey: PropertyValue
  2000. unitText: ISO-8601 duration
  2001. value: P6DT41160S
  2002. valueReference:
  2003. schemaKey: PropertyValue
  2004. value: dandi:BirthReference
  2005. identifier: replay_la_plaid_01_nac het_#2023_8_31
  2006. schemaKey: Participant
  2007. sex:
  2008. name: Unknown
  2009. schemaKey: SexType
  2010. species:
  2011. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2012. name: Danio rerio - Zebra fish
  2013. schemaKey: SpeciesType
  2014. wasGeneratedBy:
  2015. - description: Thermal plaid replay experiment
  2016. name: Acquisition session
  2017. schemaKey: Session
  2018. startDate: '2023-08-31T11:26:00-04:00'
  2019. - description: Metadata generated by DANDI cli
  2020. endDate: '2024-02-12T09:52:22.417661-05:00'
  2021. id: urn:uuid:657baa57-62f0-484c-ac0a-b1239a5ee0eb
  2022. name: Metadata generation
  2023. schemaKey: Activity
  2024. startDate: '2024-02-12T09:52:22.413618-05:00'
  2025. wasAssociatedWith:
  2026. - identifier: RRID:SCR_019009
  2027. name: DANDI Command Line Interface
  2028. schemaKey: Software
  2029. url: https://github.com/dandi/dandi-cli
  2030. version: 0.59.1
  2031. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2032. access:
  2033. - schemaKey: AccessRequirements
  2034. status: dandi:OpenAccess
  2035. approach:
  2036. - name: behavioral approach
  2037. schemaKey: ApproachType
  2038. blobDateModified: '2024-02-07T10:07:56.671799-05:00'
  2039. contentSize: 34967157
  2040. contentUrl:
  2041. - https://api.dandiarchive.org/api/assets/2f667dfa-3fd6-464c-a9b4-343b9beb41c6/download/
  2042. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/821/8a9/8218a940-016c-403f-a7ed-c9e8fb522c6b
  2043. dateModified: '2024-02-12T09:52:23.315291-05:00'
  2044. digest:
  2045. dandi:dandi-etag: fcd99467725eefbe50e3b607cf3771d3-1
  2046. dandi:sha2-256: b591d70c793935da57b0d6a66ede488ae30d971b950bf38087bedb9cd07da7fd
  2047. encodingFormat: application/x-nwb
  2048. id: dandiasset:2f667dfa-3fd6-464c-a9b4-343b9beb41c6
  2049. identifier: 2f667dfa-3fd6-464c-a9b4-343b9beb41c6
  2050. measurementTechnique:
  2051. - name: behavioral technique
  2052. schemaKey: MeasurementTechniqueType
  2053. - name: analytical technique
  2054. schemaKey: MeasurementTechniqueType
  2055. 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
  2056. schemaKey: Asset
  2057. schemaVersion: 0.6.4
  2058. variableMeasured:
  2059. - schemaKey: PropertyValue
  2060. value: ProcessingModule
  2061. - schemaKey: PropertyValue
  2062. value: SpatialSeries
  2063. - schemaKey: PropertyValue
  2064. value: Position
  2065. - schemaKey: PropertyValue
  2066. value: CompassDirection
  2067. wasAttributedTo:
  2068. - age:
  2069. schemaKey: PropertyValue
  2070. unitText: ISO-8601 duration
  2071. value: P6DT51840S
  2072. valueReference:
  2073. schemaKey: PropertyValue
  2074. value: dandi:BirthReference
  2075. identifier: replay_la_plaid_01_nac het_#2023_9_13
  2076. schemaKey: Participant
  2077. sex:
  2078. name: Unknown
  2079. schemaKey: SexType
  2080. species:
  2081. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2082. name: Danio rerio - Zebra fish
  2083. schemaKey: SpeciesType
  2084. wasGeneratedBy:
  2085. - description: Thermal plaid replay experiment
  2086. name: Acquisition session
  2087. schemaKey: Session
  2088. startDate: '2023-09-13T14:24:00-04:00'
  2089. - description: Metadata generated by DANDI cli
  2090. endDate: '2024-02-12T09:52:23.315291-05:00'
  2091. id: urn:uuid:c11a7f1d-99d4-40a2-9993-78e68d5c6adc
  2092. name: Metadata generation
  2093. schemaKey: Activity
  2094. startDate: '2024-02-12T09:52:23.312263-05:00'
  2095. wasAssociatedWith:
  2096. - identifier: RRID:SCR_019009
  2097. name: DANDI Command Line Interface
  2098. schemaKey: Software
  2099. url: https://github.com/dandi/dandi-cli
  2100. version: 0.59.1
  2101. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2102. access:
  2103. - schemaKey: AccessRequirements
  2104. status: dandi:OpenAccess
  2105. approach:
  2106. - name: behavioral approach
  2107. schemaKey: ApproachType
  2108. blobDateModified: '2024-02-07T10:08:21.581257-05:00'
  2109. contentSize: 35330577
  2110. contentUrl:
  2111. - https://api.dandiarchive.org/api/assets/178b9c4d-d3a4-4bd6-8cdf-c32d87c4a174/download/
  2112. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/ae3/457/ae345797-b0f5-4640-95fc-6573181afe8f
  2113. dateModified: '2024-02-12T09:52:23.959955-05:00'
  2114. digest:
  2115. dandi:dandi-etag: 23494e4069b389f1adbca074ae04985b-1
  2116. dandi:sha2-256: 217461bfc1ba508929fba5693c9f06211bfd7d9327c920c14b985f807189b5c3
  2117. encodingFormat: application/x-nwb
  2118. id: dandiasset:178b9c4d-d3a4-4bd6-8cdf-c32d87c4a174
  2119. identifier: 178b9c4d-d3a4-4bd6-8cdf-c32d87c4a174
  2120. measurementTechnique:
  2121. - name: behavioral technique
  2122. schemaKey: MeasurementTechniqueType
  2123. - name: analytical technique
  2124. schemaKey: MeasurementTechniqueType
  2125. 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
  2126. schemaKey: Asset
  2127. schemaVersion: 0.6.4
  2128. variableMeasured:
  2129. - schemaKey: PropertyValue
  2130. value: ProcessingModule
  2131. - schemaKey: PropertyValue
  2132. value: SpatialSeries
  2133. - schemaKey: PropertyValue
  2134. value: Position
  2135. - schemaKey: PropertyValue
  2136. value: CompassDirection
  2137. wasAttributedTo:
  2138. - age:
  2139. schemaKey: PropertyValue
  2140. unitText: ISO-8601 duration
  2141. value: P6DT49020S
  2142. valueReference:
  2143. schemaKey: PropertyValue
  2144. value: dandi:BirthReference
  2145. identifier: replay_la_plaid_01_nac het_#2023_9_14
  2146. schemaKey: Participant
  2147. sex:
  2148. name: Unknown
  2149. schemaKey: SexType
  2150. species:
  2151. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2152. name: Danio rerio - Zebra fish
  2153. schemaKey: SpeciesType
  2154. wasGeneratedBy:
  2155. - description: Thermal plaid replay experiment
  2156. name: Acquisition session
  2157. schemaKey: Session
  2158. startDate: '2023-09-14T13:37:00-04:00'
  2159. - description: Metadata generated by DANDI cli
  2160. endDate: '2024-02-12T09:52:23.959955-05:00'
  2161. id: urn:uuid:dd7f1742-e456-47e0-995b-62ab58c82415
  2162. name: Metadata generation
  2163. schemaKey: Activity
  2164. startDate: '2024-02-12T09:52:23.850282-05:00'
  2165. wasAssociatedWith:
  2166. - identifier: RRID:SCR_019009
  2167. name: DANDI Command Line Interface
  2168. schemaKey: Software
  2169. url: https://github.com/dandi/dandi-cli
  2170. version: 0.59.1
  2171. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2172. access:
  2173. - schemaKey: AccessRequirements
  2174. status: dandi:OpenAccess
  2175. approach:
  2176. - name: behavioral approach
  2177. schemaKey: ApproachType
  2178. blobDateModified: '2024-02-07T10:08:46.503110-05:00'
  2179. contentSize: 35106241
  2180. contentUrl:
  2181. - https://api.dandiarchive.org/api/assets/dc5eb6f2-84dc-43ed-a929-aed4ec948428/download/
  2182. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/ca6/4e8/ca64e8e2-e7f1-4ae5-b2dc-6f648adb3051
  2183. dateModified: '2024-02-12T09:52:26.083006-05:00'
  2184. digest:
  2185. dandi:dandi-etag: 30c2e1070ce2e7cf3f7dcc140d3e2dfc-1
  2186. dandi:sha2-256: bff83fbb09deddacc02c58a3674d273984b98a9f44da8cfa1e481175d93a683a
  2187. encodingFormat: application/x-nwb
  2188. id: dandiasset:dc5eb6f2-84dc-43ed-a929-aed4ec948428
  2189. identifier: dc5eb6f2-84dc-43ed-a929-aed4ec948428
  2190. measurementTechnique:
  2191. - name: behavioral technique
  2192. schemaKey: MeasurementTechniqueType
  2193. - name: analytical technique
  2194. schemaKey: MeasurementTechniqueType
  2195. 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
  2196. schemaKey: Asset
  2197. schemaVersion: 0.6.4
  2198. variableMeasured:
  2199. - schemaKey: PropertyValue
  2200. value: ProcessingModule
  2201. - schemaKey: PropertyValue
  2202. value: SpatialSeries
  2203. - schemaKey: PropertyValue
  2204. value: Position
  2205. - schemaKey: PropertyValue
  2206. value: CompassDirection
  2207. wasAttributedTo:
  2208. - age:
  2209. schemaKey: PropertyValue
  2210. unitText: ISO-8601 duration
  2211. value: P6DT49740S
  2212. valueReference:
  2213. schemaKey: PropertyValue
  2214. value: dandi:BirthReference
  2215. identifier: replay_la_plaid_01_nac het_#2023_9_20
  2216. schemaKey: Participant
  2217. sex:
  2218. name: Unknown
  2219. schemaKey: SexType
  2220. species:
  2221. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2222. name: Danio rerio - Zebra fish
  2223. schemaKey: SpeciesType
  2224. wasGeneratedBy:
  2225. - description: Thermal plaid replay experiment
  2226. name: Acquisition session
  2227. schemaKey: Session
  2228. startDate: '2023-09-20T13:49:00-04:00'
  2229. - description: Metadata generated by DANDI cli
  2230. endDate: '2024-02-12T09:52:26.083006-05:00'
  2231. id: urn:uuid:0c4c487a-86db-4651-a75b-a133e7fdd9a9
  2232. name: Metadata generation
  2233. schemaKey: Activity
  2234. startDate: '2024-02-12T09:52:25.972840-05:00'
  2235. wasAssociatedWith:
  2236. - identifier: RRID:SCR_019009
  2237. name: DANDI Command Line Interface
  2238. schemaKey: Software
  2239. url: https://github.com/dandi/dandi-cli
  2240. version: 0.59.1
  2241. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2242. access:
  2243. - schemaKey: AccessRequirements
  2244. status: dandi:OpenAccess
  2245. approach:
  2246. - name: behavioral approach
  2247. schemaKey: ApproachType
  2248. blobDateModified: '2024-02-07T10:09:36.431065-05:00'
  2249. contentSize: 35180503
  2250. contentUrl:
  2251. - https://api.dandiarchive.org/api/assets/d3adddd9-7aa8-4e33-b17f-3c34be453886/download/
  2252. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/6db/fdb/6dbfdbad-6113-4f50-82e4-e0559f277457
  2253. dateModified: '2024-02-12T09:52:27.373567-05:00'
  2254. digest:
  2255. dandi:dandi-etag: 1d125d7d7b234065fc1da75c4b2ec72b-1
  2256. dandi:sha2-256: c638df0f3b15adef413402e0b68fab80f0ca364c92183f9904bfcb318beef0af
  2257. encodingFormat: application/x-nwb
  2258. id: dandiasset:d3adddd9-7aa8-4e33-b17f-3c34be453886
  2259. identifier: d3adddd9-7aa8-4e33-b17f-3c34be453886
  2260. measurementTechnique:
  2261. - name: behavioral technique
  2262. schemaKey: MeasurementTechniqueType
  2263. - name: analytical technique
  2264. schemaKey: MeasurementTechniqueType
  2265. 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
  2266. schemaKey: Asset
  2267. schemaVersion: 0.6.4
  2268. variableMeasured:
  2269. - schemaKey: PropertyValue
  2270. value: ProcessingModule
  2271. - schemaKey: PropertyValue
  2272. value: SpatialSeries
  2273. - schemaKey: PropertyValue
  2274. value: Position
  2275. - schemaKey: PropertyValue
  2276. value: CompassDirection
  2277. wasAttributedTo:
  2278. - age:
  2279. schemaKey: PropertyValue
  2280. unitText: ISO-8601 duration
  2281. value: P6DT60900S
  2282. valueReference:
  2283. schemaKey: PropertyValue
  2284. value: dandi:BirthReference
  2285. identifier: replay_la_plaid_02_nac het_#2023_11_9
  2286. schemaKey: Participant
  2287. sex:
  2288. name: Unknown
  2289. schemaKey: SexType
  2290. species:
  2291. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2292. name: Danio rerio - Zebra fish
  2293. schemaKey: SpeciesType
  2294. wasGeneratedBy:
  2295. - description: Thermal plaid replay experiment
  2296. name: Acquisition session
  2297. schemaKey: Session
  2298. startDate: '2023-11-09T15:55:00-05:00'
  2299. - description: Metadata generated by DANDI cli
  2300. endDate: '2024-02-12T09:52:27.373567-05:00'
  2301. id: urn:uuid:f2826117-7f10-4b29-8e7f-59c28b3a6b30
  2302. name: Metadata generation
  2303. schemaKey: Activity
  2304. startDate: '2024-02-12T09:52:27.303949-05:00'
  2305. wasAssociatedWith:
  2306. - identifier: RRID:SCR_019009
  2307. name: DANDI Command Line Interface
  2308. schemaKey: Software
  2309. url: https://github.com/dandi/dandi-cli
  2310. version: 0.59.1
  2311. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2312. access:
  2313. - schemaKey: AccessRequirements
  2314. status: dandi:OpenAccess
  2315. approach:
  2316. - name: behavioral approach
  2317. schemaKey: ApproachType
  2318. blobDateModified: '2024-02-07T09:55:50.350724-05:00'
  2319. contentSize: 35325202
  2320. contentUrl:
  2321. - https://api.dandiarchive.org/api/assets/17be548d-6460-4b27-9073-e7a4b75b1a27/download/
  2322. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/5a9/7a5/5a97a5d4-7bb7-4beb-99ba-58b8f886e2e3
  2323. dateModified: '2024-02-12T09:52:27.921414-05:00'
  2324. digest:
  2325. dandi:dandi-etag: 878fb84d1cb93ade71ad65b43d9c9cfb-1
  2326. dandi:sha2-256: 5fc745f9f80a0df205197d9417d2730e046fd9cc46403d7ee3cb163387a16bd1
  2327. encodingFormat: application/x-nwb
  2328. id: dandiasset:17be548d-6460-4b27-9073-e7a4b75b1a27
  2329. identifier: 17be548d-6460-4b27-9073-e7a4b75b1a27
  2330. measurementTechnique:
  2331. - name: behavioral technique
  2332. schemaKey: MeasurementTechniqueType
  2333. - name: analytical technique
  2334. schemaKey: MeasurementTechniqueType
  2335. 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
  2336. schemaKey: Asset
  2337. schemaVersion: 0.6.4
  2338. variableMeasured:
  2339. - schemaKey: PropertyValue
  2340. value: ProcessingModule
  2341. - schemaKey: PropertyValue
  2342. value: SpatialSeries
  2343. - schemaKey: PropertyValue
  2344. value: Position
  2345. - schemaKey: PropertyValue
  2346. value: CompassDirection
  2347. wasAttributedTo:
  2348. - age:
  2349. schemaKey: PropertyValue
  2350. unitText: ISO-8601 duration
  2351. value: P6DT51780S
  2352. valueReference:
  2353. schemaKey: PropertyValue
  2354. value: dandi:BirthReference
  2355. identifier: replay_la_plaid_02_nac het_#2023_7_13
  2356. schemaKey: Participant
  2357. sex:
  2358. name: Unknown
  2359. schemaKey: SexType
  2360. species:
  2361. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2362. name: Danio rerio - Zebra fish
  2363. schemaKey: SpeciesType
  2364. wasGeneratedBy:
  2365. - description: Thermal plaid replay experiment
  2366. name: Acquisition session
  2367. schemaKey: Session
  2368. startDate: '2023-07-13T14:23:00-04:00'
  2369. - description: Metadata generated by DANDI cli
  2370. endDate: '2024-02-12T09:52:27.921414-05:00'
  2371. id: urn:uuid:4304c2c8-1e82-44b5-a602-4f486893dca2
  2372. name: Metadata generation
  2373. schemaKey: Activity
  2374. startDate: '2024-02-12T09:52:27.864335-05:00'
  2375. wasAssociatedWith:
  2376. - identifier: RRID:SCR_019009
  2377. name: DANDI Command Line Interface
  2378. schemaKey: Software
  2379. url: https://github.com/dandi/dandi-cli
  2380. version: 0.59.1
  2381. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2382. access:
  2383. - schemaKey: AccessRequirements
  2384. status: dandi:OpenAccess
  2385. approach:
  2386. - name: behavioral approach
  2387. schemaKey: ApproachType
  2388. blobDateModified: '2024-02-07T09:57:15.706468-05:00'
  2389. contentSize: 35428834
  2390. contentUrl:
  2391. - https://api.dandiarchive.org/api/assets/a3c23031-269f-47b2-987b-b2491799a27d/download/
  2392. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/48b/5fd/48b5fd66-0750-4f53-b870-78a657964494
  2393. dateModified: '2024-02-12T09:52:28.333620-05:00'
  2394. digest:
  2395. dandi:dandi-etag: eb0805214f97d2b13619f82972228e26-1
  2396. dandi:sha2-256: 123df9661f7d6396399058cd903ee49ae6da59db61849b4fd18e72c4b49a1dc5
  2397. encodingFormat: application/x-nwb
  2398. id: dandiasset:a3c23031-269f-47b2-987b-b2491799a27d
  2399. identifier: a3c23031-269f-47b2-987b-b2491799a27d
  2400. measurementTechnique:
  2401. - name: behavioral technique
  2402. schemaKey: MeasurementTechniqueType
  2403. - name: analytical technique
  2404. schemaKey: MeasurementTechniqueType
  2405. 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
  2406. schemaKey: Asset
  2407. schemaVersion: 0.6.4
  2408. variableMeasured:
  2409. - schemaKey: PropertyValue
  2410. value: ProcessingModule
  2411. - schemaKey: PropertyValue
  2412. value: SpatialSeries
  2413. - schemaKey: PropertyValue
  2414. value: Position
  2415. - schemaKey: PropertyValue
  2416. value: CompassDirection
  2417. wasAttributedTo:
  2418. - age:
  2419. schemaKey: PropertyValue
  2420. unitText: ISO-8601 duration
  2421. value: P6DT55500S
  2422. valueReference:
  2423. schemaKey: PropertyValue
  2424. value: dandi:BirthReference
  2425. identifier: replay_la_plaid_02_nac het_#2023_7_26
  2426. schemaKey: Participant
  2427. sex:
  2428. name: Unknown
  2429. schemaKey: SexType
  2430. species:
  2431. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2432. name: Danio rerio - Zebra fish
  2433. schemaKey: SpeciesType
  2434. wasGeneratedBy:
  2435. - description: Thermal plaid replay experiment
  2436. name: Acquisition session
  2437. schemaKey: Session
  2438. startDate: '2023-07-26T15:25:00-04:00'
  2439. - description: Metadata generated by DANDI cli
  2440. endDate: '2024-02-12T09:52:28.333620-05:00'
  2441. id: urn:uuid:6162f5e8-be13-483a-8cab-9e1fbab8b276
  2442. name: Metadata generation
  2443. schemaKey: Activity
  2444. startDate: '2024-02-12T09:52:28.200048-05:00'
  2445. wasAssociatedWith:
  2446. - identifier: RRID:SCR_019009
  2447. name: DANDI Command Line Interface
  2448. schemaKey: Software
  2449. url: https://github.com/dandi/dandi-cli
  2450. version: 0.59.1
  2451. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2452. access:
  2453. - schemaKey: AccessRequirements
  2454. status: dandi:OpenAccess
  2455. approach:
  2456. - name: behavioral approach
  2457. schemaKey: ApproachType
  2458. blobDateModified: '2024-02-07T10:10:38.771159-05:00'
  2459. contentSize: 35037840
  2460. contentUrl:
  2461. - https://api.dandiarchive.org/api/assets/bd743acc-3890-4ee7-b636-91d690169faf/download/
  2462. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/6ed/c0e/6edc0e0c-0c4d-4bd5-9eb9-682c69d238c3
  2463. dateModified: '2024-02-12T09:52:26.406641-05:00'
  2464. digest:
  2465. dandi:dandi-etag: 59c8de5a5076842b21ea4448fbf86bde-1
  2466. dandi:sha2-256: 695010058ae298017d9f1622eef59f99bcd2507c55bacdaee4fbafd7c9d874d4
  2467. encodingFormat: application/x-nwb
  2468. id: dandiasset:bd743acc-3890-4ee7-b636-91d690169faf
  2469. identifier: bd743acc-3890-4ee7-b636-91d690169faf
  2470. measurementTechnique:
  2471. - name: behavioral technique
  2472. schemaKey: MeasurementTechniqueType
  2473. - name: analytical technique
  2474. schemaKey: MeasurementTechniqueType
  2475. 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
  2476. schemaKey: Asset
  2477. schemaVersion: 0.6.4
  2478. variableMeasured:
  2479. - schemaKey: PropertyValue
  2480. value: ProcessingModule
  2481. - schemaKey: PropertyValue
  2482. value: SpatialSeries
  2483. - schemaKey: PropertyValue
  2484. value: Position
  2485. - schemaKey: PropertyValue
  2486. value: CompassDirection
  2487. wasAttributedTo:
  2488. - age:
  2489. schemaKey: PropertyValue
  2490. unitText: ISO-8601 duration
  2491. value: P6DT61740S
  2492. valueReference:
  2493. schemaKey: PropertyValue
  2494. value: dandi:BirthReference
  2495. identifier: replay_la_plaid_02_nac het_#2023_10_26
  2496. schemaKey: Participant
  2497. sex:
  2498. name: Unknown
  2499. schemaKey: SexType
  2500. species:
  2501. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2502. name: Danio rerio - Zebra fish
  2503. schemaKey: SpeciesType
  2504. wasGeneratedBy:
  2505. - description: Thermal plaid replay experiment
  2506. name: Acquisition session
  2507. schemaKey: Session
  2508. startDate: '2023-10-26T17:09:00-04:00'
  2509. - description: Metadata generated by DANDI cli
  2510. endDate: '2024-02-12T09:52:26.406641-05:00'
  2511. id: urn:uuid:ea1eecdf-e67a-4af3-9ebf-c5aaa46384ad
  2512. name: Metadata generation
  2513. schemaKey: Activity
  2514. startDate: '2024-02-12T09:52:26.404459-05:00'
  2515. wasAssociatedWith:
  2516. - identifier: RRID:SCR_019009
  2517. name: DANDI Command Line Interface
  2518. schemaKey: Software
  2519. url: https://github.com/dandi/dandi-cli
  2520. version: 0.59.1
  2521. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2522. access:
  2523. - schemaKey: AccessRequirements
  2524. status: dandi:OpenAccess
  2525. approach:
  2526. - name: behavioral approach
  2527. schemaKey: ApproachType
  2528. blobDateModified: '2024-02-07T10:01:45.536228-05:00'
  2529. contentSize: 35064129
  2530. contentUrl:
  2531. - https://api.dandiarchive.org/api/assets/3c78a946-347b-4f41-a47e-367762af94f5/download/
  2532. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/3d6/424/3d6424fa-c4e4-4efe-a8dc-98b1cd682187
  2533. dateModified: '2024-02-12T09:52:29.947940-05:00'
  2534. digest:
  2535. dandi:dandi-etag: f0dfdf1a1cf98ab77f75dd378fcd6bd4-1
  2536. dandi:sha2-256: 6736b2d7364394dbd44709e3d9e55aba4ffbf74c0b4cb8796a9b619cbc641795
  2537. encodingFormat: application/x-nwb
  2538. id: dandiasset:3c78a946-347b-4f41-a47e-367762af94f5
  2539. identifier: 3c78a946-347b-4f41-a47e-367762af94f5
  2540. measurementTechnique:
  2541. - name: behavioral technique
  2542. schemaKey: MeasurementTechniqueType
  2543. - name: analytical technique
  2544. schemaKey: MeasurementTechniqueType
  2545. 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
  2546. schemaKey: Asset
  2547. schemaVersion: 0.6.4
  2548. variableMeasured:
  2549. - schemaKey: PropertyValue
  2550. value: ProcessingModule
  2551. - schemaKey: PropertyValue
  2552. value: SpatialSeries
  2553. - schemaKey: PropertyValue
  2554. value: Position
  2555. - schemaKey: PropertyValue
  2556. value: CompassDirection
  2557. wasAttributedTo:
  2558. - age:
  2559. schemaKey: PropertyValue
  2560. unitText: ISO-8601 duration
  2561. value: P6DT48720S
  2562. valueReference:
  2563. schemaKey: PropertyValue
  2564. value: dandi:BirthReference
  2565. identifier: replay_la_plaid_02_nac het_#2023_8_14
  2566. schemaKey: Participant
  2567. sex:
  2568. name: Unknown
  2569. schemaKey: SexType
  2570. species:
  2571. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2572. name: Danio rerio - Zebra fish
  2573. schemaKey: SpeciesType
  2574. wasGeneratedBy:
  2575. - description: Thermal plaid replay experiment
  2576. name: Acquisition session
  2577. schemaKey: Session
  2578. startDate: '2023-08-14T13:32:00-04:00'
  2579. - description: Metadata generated by DANDI cli
  2580. endDate: '2024-02-12T09:52:29.947940-05:00'
  2581. id: urn:uuid:39cf94c8-8bf8-40de-8ee5-5cda65fd4f4f
  2582. name: Metadata generation
  2583. schemaKey: Activity
  2584. startDate: '2024-02-12T09:52:29.826485-05:00'
  2585. wasAssociatedWith:
  2586. - identifier: RRID:SCR_019009
  2587. name: DANDI Command Line Interface
  2588. schemaKey: Software
  2589. url: https://github.com/dandi/dandi-cli
  2590. version: 0.59.1
  2591. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2592. access:
  2593. - schemaKey: AccessRequirements
  2594. status: dandi:OpenAccess
  2595. approach:
  2596. - name: behavioral approach
  2597. schemaKey: ApproachType
  2598. blobDateModified: '2024-02-07T10:02:22.372174-05:00'
  2599. contentSize: 35853821
  2600. contentUrl:
  2601. - https://api.dandiarchive.org/api/assets/04c740a5-b3db-4d48-b781-36c8f71abf42/download/
  2602. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/a37/7fd/a377fdf0-6de1-4795-aa16-99e01aa2685b
  2603. dateModified: '2024-02-12T09:52:31.085217-05:00'
  2604. digest:
  2605. dandi:dandi-etag: 16952c16221fc273b7a19e2fc972db42-1
  2606. dandi:sha2-256: 4d74df11c7cbd07cde77ac9de91911f1c921f35728e079e017b5d7a2ef5700a3
  2607. encodingFormat: application/x-nwb
  2608. id: dandiasset:04c740a5-b3db-4d48-b781-36c8f71abf42
  2609. identifier: 04c740a5-b3db-4d48-b781-36c8f71abf42
  2610. measurementTechnique:
  2611. - name: behavioral technique
  2612. schemaKey: MeasurementTechniqueType
  2613. - name: analytical technique
  2614. schemaKey: MeasurementTechniqueType
  2615. 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
  2616. schemaKey: Asset
  2617. schemaVersion: 0.6.4
  2618. variableMeasured:
  2619. - schemaKey: PropertyValue
  2620. value: ProcessingModule
  2621. - schemaKey: PropertyValue
  2622. value: SpatialSeries
  2623. - schemaKey: PropertyValue
  2624. value: Position
  2625. - schemaKey: PropertyValue
  2626. value: CompassDirection
  2627. wasAttributedTo:
  2628. - age:
  2629. schemaKey: PropertyValue
  2630. unitText: ISO-8601 duration
  2631. value: P6DT61440S
  2632. valueReference:
  2633. schemaKey: PropertyValue
  2634. value: dandi:BirthReference
  2635. identifier: replay_la_plaid_02_nac het_#2023_8_16
  2636. schemaKey: Participant
  2637. sex:
  2638. name: Unknown
  2639. schemaKey: SexType
  2640. species:
  2641. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2642. name: Danio rerio - Zebra fish
  2643. schemaKey: SpeciesType
  2644. wasGeneratedBy:
  2645. - description: Thermal plaid replay experiment
  2646. name: Acquisition session
  2647. schemaKey: Session
  2648. startDate: '2023-08-16T17:04:00-04:00'
  2649. - description: Metadata generated by DANDI cli
  2650. endDate: '2024-02-12T09:52:31.085217-05:00'
  2651. id: urn:uuid:68bdc965-82f2-4d38-aadc-27a628b36c2c
  2652. name: Metadata generation
  2653. schemaKey: Activity
  2654. startDate: '2024-02-12T09:52:31.082191-05:00'
  2655. wasAssociatedWith:
  2656. - identifier: RRID:SCR_019009
  2657. name: DANDI Command Line Interface
  2658. schemaKey: Software
  2659. url: https://github.com/dandi/dandi-cli
  2660. version: 0.59.1
  2661. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2662. access:
  2663. - schemaKey: AccessRequirements
  2664. status: dandi:OpenAccess
  2665. approach:
  2666. - name: behavioral approach
  2667. schemaKey: ApproachType
  2668. blobDateModified: '2024-02-07T09:57:58.290247-05:00'
  2669. contentSize: 35883540
  2670. contentUrl:
  2671. - https://api.dandiarchive.org/api/assets/f2270851-d59c-40ea-acdb-0cc6a2c4c127/download/
  2672. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/8c8/726/8c8726bc-0f75-4bed-9f03-f5a1f2755d74
  2673. dateModified: '2024-02-12T09:52:32.464887-05:00'
  2674. digest:
  2675. dandi:dandi-etag: bf6054a2be4b0d4abb5f0fd25c738367-1
  2676. dandi:sha2-256: f04e9ae7bb11be67746bcf00ea3ccce3f1fbad5364add3f5e7477419ed2d44b6
  2677. encodingFormat: application/x-nwb
  2678. id: dandiasset:f2270851-d59c-40ea-acdb-0cc6a2c4c127
  2679. identifier: f2270851-d59c-40ea-acdb-0cc6a2c4c127
  2680. measurementTechnique:
  2681. - name: behavioral technique
  2682. schemaKey: MeasurementTechniqueType
  2683. - name: analytical technique
  2684. schemaKey: MeasurementTechniqueType
  2685. 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
  2686. schemaKey: Asset
  2687. schemaVersion: 0.6.4
  2688. variableMeasured:
  2689. - schemaKey: PropertyValue
  2690. value: ProcessingModule
  2691. - schemaKey: PropertyValue
  2692. value: SpatialSeries
  2693. - schemaKey: PropertyValue
  2694. value: Position
  2695. - schemaKey: PropertyValue
  2696. value: CompassDirection
  2697. wasAttributedTo:
  2698. - age:
  2699. schemaKey: PropertyValue
  2700. unitText: ISO-8601 duration
  2701. value: P6DT53940S
  2702. valueReference:
  2703. schemaKey: PropertyValue
  2704. value: dandi:BirthReference
  2705. identifier: replay_la_plaid_02_nac het_#2023_8_2
  2706. schemaKey: Participant
  2707. sex:
  2708. name: Unknown
  2709. schemaKey: SexType
  2710. species:
  2711. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2712. name: Danio rerio - Zebra fish
  2713. schemaKey: SpeciesType
  2714. wasGeneratedBy:
  2715. - description: Thermal plaid replay experiment
  2716. name: Acquisition session
  2717. schemaKey: Session
  2718. startDate: '2023-08-02T14:59:00-04:00'
  2719. - description: Metadata generated by DANDI cli
  2720. endDate: '2024-02-12T09:52:32.464887-05:00'
  2721. id: urn:uuid:f239953d-2786-44dc-9dcb-4375b49cd616
  2722. name: Metadata generation
  2723. schemaKey: Activity
  2724. startDate: '2024-02-12T09:52:32.378378-05:00'
  2725. wasAssociatedWith:
  2726. - identifier: RRID:SCR_019009
  2727. name: DANDI Command Line Interface
  2728. schemaKey: Software
  2729. url: https://github.com/dandi/dandi-cli
  2730. version: 0.59.1
  2731. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2732. access:
  2733. - schemaKey: AccessRequirements
  2734. status: dandi:OpenAccess
  2735. approach:
  2736. - name: behavioral approach
  2737. schemaKey: ApproachType
  2738. blobDateModified: '2024-02-07T10:04:36.705958-05:00'
  2739. contentSize: 35236969
  2740. contentUrl:
  2741. - https://api.dandiarchive.org/api/assets/b00e3020-3ba9-478a-8afc-75f3c01ee006/download/
  2742. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/f7a/9ed/f7a9eda1-f8f2-4286-8137-4401b43ac001
  2743. dateModified: '2024-02-12T09:52:32.838860-05:00'
  2744. digest:
  2745. dandi:dandi-etag: 12e97d7261a875d000ca3769daba4670-1
  2746. dandi:sha2-256: 35707cdbd4ce2880323ba7f8d95f0c2ee99e5b38782a233fdd1f69a2a88bdf56
  2747. encodingFormat: application/x-nwb
  2748. id: dandiasset:b00e3020-3ba9-478a-8afc-75f3c01ee006
  2749. identifier: b00e3020-3ba9-478a-8afc-75f3c01ee006
  2750. measurementTechnique:
  2751. - name: behavioral technique
  2752. schemaKey: MeasurementTechniqueType
  2753. - name: analytical technique
  2754. schemaKey: MeasurementTechniqueType
  2755. 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
  2756. schemaKey: Asset
  2757. schemaVersion: 0.6.4
  2758. variableMeasured:
  2759. - schemaKey: PropertyValue
  2760. value: ProcessingModule
  2761. - schemaKey: PropertyValue
  2762. value: SpatialSeries
  2763. - schemaKey: PropertyValue
  2764. value: Position
  2765. - schemaKey: PropertyValue
  2766. value: CompassDirection
  2767. wasAttributedTo:
  2768. - age:
  2769. schemaKey: PropertyValue
  2770. unitText: ISO-8601 duration
  2771. value: P6DT59520S
  2772. valueReference:
  2773. schemaKey: PropertyValue
  2774. value: dandi:BirthReference
  2775. identifier: replay_la_plaid_02_nac het_#2023_8_24
  2776. schemaKey: Participant
  2777. sex:
  2778. name: Unknown
  2779. schemaKey: SexType
  2780. species:
  2781. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2782. name: Danio rerio - Zebra fish
  2783. schemaKey: SpeciesType
  2784. wasGeneratedBy:
  2785. - description: Thermal plaid replay experiment
  2786. name: Acquisition session
  2787. schemaKey: Session
  2788. startDate: '2023-08-24T16:32:00-04:00'
  2789. - description: Metadata generated by DANDI cli
  2790. endDate: '2024-02-12T09:52:32.838860-05:00'
  2791. id: urn:uuid:c1fb7232-2cda-4188-b019-d05a8aa8f145
  2792. name: Metadata generation
  2793. schemaKey: Activity
  2794. startDate: '2024-02-12T09:52:32.778151-05:00'
  2795. wasAssociatedWith:
  2796. - identifier: RRID:SCR_019009
  2797. name: DANDI Command Line Interface
  2798. schemaKey: Software
  2799. url: https://github.com/dandi/dandi-cli
  2800. version: 0.59.1
  2801. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2802. access:
  2803. - schemaKey: AccessRequirements
  2804. status: dandi:OpenAccess
  2805. approach:
  2806. - name: behavioral approach
  2807. schemaKey: ApproachType
  2808. blobDateModified: '2024-02-07T10:00:47.421770-05:00'
  2809. contentSize: 35094272
  2810. contentUrl:
  2811. - https://api.dandiarchive.org/api/assets/2ecf2955-376a-49c0-b183-f599a0944349/download/
  2812. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/7eb/dfc/7ebdfc1f-db7d-4fb8-be00-054b7bb34054
  2813. dateModified: '2024-02-12T09:52:33.736235-05:00'
  2814. digest:
  2815. dandi:dandi-etag: e28a452a753a709ea60ceb59d7a33a3a-1
  2816. dandi:sha2-256: e6d7f1625d018f85d9a6202d480b5c9b4f6d392da45ae72afd639d626083282c
  2817. encodingFormat: application/x-nwb
  2818. id: dandiasset:2ecf2955-376a-49c0-b183-f599a0944349
  2819. identifier: 2ecf2955-376a-49c0-b183-f599a0944349
  2820. measurementTechnique:
  2821. - name: behavioral technique
  2822. schemaKey: MeasurementTechniqueType
  2823. - name: analytical technique
  2824. schemaKey: MeasurementTechniqueType
  2825. 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
  2826. schemaKey: Asset
  2827. schemaVersion: 0.6.4
  2828. variableMeasured:
  2829. - schemaKey: PropertyValue
  2830. value: ProcessingModule
  2831. - schemaKey: PropertyValue
  2832. value: SpatialSeries
  2833. - schemaKey: PropertyValue
  2834. value: Position
  2835. - schemaKey: PropertyValue
  2836. value: CompassDirection
  2837. wasAttributedTo:
  2838. - age:
  2839. schemaKey: PropertyValue
  2840. unitText: ISO-8601 duration
  2841. value: P6DT50100S
  2842. valueReference:
  2843. schemaKey: PropertyValue
  2844. value: dandi:BirthReference
  2845. identifier: replay_la_plaid_02_nac het_#2023_8_3
  2846. schemaKey: Participant
  2847. sex:
  2848. name: Unknown
  2849. schemaKey: SexType
  2850. species:
  2851. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2852. name: Danio rerio - Zebra fish
  2853. schemaKey: SpeciesType
  2854. wasGeneratedBy:
  2855. - description: Thermal plaid replay experiment
  2856. name: Acquisition session
  2857. schemaKey: Session
  2858. startDate: '2023-08-03T13:55:00-04:00'
  2859. - description: Metadata generated by DANDI cli
  2860. endDate: '2024-02-12T09:52:33.736235-05:00'
  2861. id: urn:uuid:20fcae6f-28c1-4571-8d0e-70ac33a20002
  2862. name: Metadata generation
  2863. schemaKey: Activity
  2864. startDate: '2024-02-12T09:52:33.683252-05:00'
  2865. wasAssociatedWith:
  2866. - identifier: RRID:SCR_019009
  2867. name: DANDI Command Line Interface
  2868. schemaKey: Software
  2869. url: https://github.com/dandi/dandi-cli
  2870. version: 0.59.1
  2871. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2872. access:
  2873. - schemaKey: AccessRequirements
  2874. status: dandi:OpenAccess
  2875. approach:
  2876. - name: behavioral approach
  2877. schemaKey: ApproachType
  2878. blobDateModified: '2024-02-07T10:07:19.143325-05:00'
  2879. contentSize: 34873213
  2880. contentUrl:
  2881. - https://api.dandiarchive.org/api/assets/2e9b826c-c07e-4cbb-9349-c7e139b92772/download/
  2882. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/fef/88d/fef88d92-3884-4817-9288-c08506d1776a
  2883. dateModified: '2024-02-12T09:52:35.723529-05:00'
  2884. digest:
  2885. dandi:dandi-etag: 21fff458b694024bc8076fe56d7a7d97-1
  2886. dandi:sha2-256: c4d1b8f9ab436795db582eb5922adb8b71231dc0aff7721963574dfa4d9c56ca
  2887. encodingFormat: application/x-nwb
  2888. id: dandiasset:2e9b826c-c07e-4cbb-9349-c7e139b92772
  2889. identifier: 2e9b826c-c07e-4cbb-9349-c7e139b92772
  2890. measurementTechnique:
  2891. - name: behavioral technique
  2892. schemaKey: MeasurementTechniqueType
  2893. - name: analytical technique
  2894. schemaKey: MeasurementTechniqueType
  2895. 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
  2896. schemaKey: Asset
  2897. schemaVersion: 0.6.4
  2898. variableMeasured:
  2899. - schemaKey: PropertyValue
  2900. value: ProcessingModule
  2901. - schemaKey: PropertyValue
  2902. value: SpatialSeries
  2903. - schemaKey: PropertyValue
  2904. value: Position
  2905. - schemaKey: PropertyValue
  2906. value: CompassDirection
  2907. wasAttributedTo:
  2908. - age:
  2909. schemaKey: PropertyValue
  2910. unitText: ISO-8601 duration
  2911. value: P6DT48240S
  2912. valueReference:
  2913. schemaKey: PropertyValue
  2914. value: dandi:BirthReference
  2915. identifier: replay_la_plaid_02_nac het_#2023_8_31
  2916. schemaKey: Participant
  2917. sex:
  2918. name: Unknown
  2919. schemaKey: SexType
  2920. species:
  2921. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2922. name: Danio rerio - Zebra fish
  2923. schemaKey: SpeciesType
  2924. wasGeneratedBy:
  2925. - description: Thermal plaid replay experiment
  2926. name: Acquisition session
  2927. schemaKey: Session
  2928. startDate: '2023-08-31T13:24:00-04:00'
  2929. - description: Metadata generated by DANDI cli
  2930. endDate: '2024-02-12T09:52:35.723529-05:00'
  2931. id: urn:uuid:b3e6e88c-065e-41f4-9719-f2a6ecaffb83
  2932. name: Metadata generation
  2933. schemaKey: Activity
  2934. startDate: '2024-02-12T09:52:35.642636-05:00'
  2935. wasAssociatedWith:
  2936. - identifier: RRID:SCR_019009
  2937. name: DANDI Command Line Interface
  2938. schemaKey: Software
  2939. url: https://github.com/dandi/dandi-cli
  2940. version: 0.59.1
  2941. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2942. access:
  2943. - schemaKey: AccessRequirements
  2944. status: dandi:OpenAccess
  2945. approach:
  2946. - name: behavioral approach
  2947. schemaKey: ApproachType
  2948. blobDateModified: '2024-02-07T10:06:11.933834-05:00'
  2949. contentSize: 35297491
  2950. contentUrl:
  2951. - https://api.dandiarchive.org/api/assets/3a8e2519-9706-4c38-beb3-c36ce9e37167/download/
  2952. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/9d4/161/9d416155-695a-42ba-801f-d6ae9729cd10
  2953. dateModified: '2024-02-12T09:52:35.068829-05:00'
  2954. digest:
  2955. dandi:dandi-etag: 6d6f240236da6949622685ff1516be72-1
  2956. dandi:sha2-256: 515ba58d90726b87f3d88d20f89b2efbfb90fa1fb1e85d0b02b333c0f9a04c0b
  2957. encodingFormat: application/x-nwb
  2958. id: dandiasset:3a8e2519-9706-4c38-beb3-c36ce9e37167
  2959. identifier: 3a8e2519-9706-4c38-beb3-c36ce9e37167
  2960. measurementTechnique:
  2961. - name: behavioral technique
  2962. schemaKey: MeasurementTechniqueType
  2963. - name: analytical technique
  2964. schemaKey: MeasurementTechniqueType
  2965. 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
  2966. schemaKey: Asset
  2967. schemaVersion: 0.6.4
  2968. variableMeasured:
  2969. - schemaKey: PropertyValue
  2970. value: ProcessingModule
  2971. - schemaKey: PropertyValue
  2972. value: SpatialSeries
  2973. - schemaKey: PropertyValue
  2974. value: Position
  2975. - schemaKey: PropertyValue
  2976. value: CompassDirection
  2977. wasAttributedTo:
  2978. - age:
  2979. schemaKey: PropertyValue
  2980. unitText: ISO-8601 duration
  2981. value: P6DT52440S
  2982. valueReference:
  2983. schemaKey: PropertyValue
  2984. value: dandi:BirthReference
  2985. identifier: replay_la_plaid_02_nac het_#2023_8_30
  2986. schemaKey: Participant
  2987. sex:
  2988. name: Unknown
  2989. schemaKey: SexType
  2990. species:
  2991. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  2992. name: Danio rerio - Zebra fish
  2993. schemaKey: SpeciesType
  2994. wasGeneratedBy:
  2995. - description: Thermal plaid replay experiment
  2996. name: Acquisition session
  2997. schemaKey: Session
  2998. startDate: '2023-08-30T14:34:00-04:00'
  2999. - description: Metadata generated by DANDI cli
  3000. endDate: '2024-02-12T09:52:35.068829-05:00'
  3001. id: urn:uuid:8741b695-a0f6-4655-97f4-f30f22411a20
  3002. name: Metadata generation
  3003. schemaKey: Activity
  3004. startDate: '2024-02-12T09:52:35.000428-05:00'
  3005. wasAssociatedWith:
  3006. - identifier: RRID:SCR_019009
  3007. name: DANDI Command Line Interface
  3008. schemaKey: Software
  3009. url: https://github.com/dandi/dandi-cli
  3010. version: 0.59.1
  3011. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3012. access:
  3013. - schemaKey: AccessRequirements
  3014. status: dandi:OpenAccess
  3015. approach:
  3016. - name: behavioral approach
  3017. schemaKey: ApproachType
  3018. blobDateModified: '2024-02-07T10:01:08.644405-05:00'
  3019. contentSize: 35124799
  3020. contentUrl:
  3021. - https://api.dandiarchive.org/api/assets/492659d6-181f-410a-8441-fa9c8cb1ea67/download/
  3022. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/c5b/c8f/c5bc8f1e-058a-4504-8f16-2bde5c73639b
  3023. dateModified: '2024-02-12T09:52:37.128449-05:00'
  3024. digest:
  3025. dandi:dandi-etag: 5fb1821ee3e761c1cd3e41e6fb997184-1
  3026. dandi:sha2-256: 0497a01b8ee518fe48ce3a5b19508dcc6c4bec6a53aac7d40729db82e6bd5ea1
  3027. encodingFormat: application/x-nwb
  3028. id: dandiasset:492659d6-181f-410a-8441-fa9c8cb1ea67
  3029. identifier: 492659d6-181f-410a-8441-fa9c8cb1ea67
  3030. measurementTechnique:
  3031. - name: behavioral technique
  3032. schemaKey: MeasurementTechniqueType
  3033. - name: analytical technique
  3034. schemaKey: MeasurementTechniqueType
  3035. 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
  3036. schemaKey: Asset
  3037. schemaVersion: 0.6.4
  3038. variableMeasured:
  3039. - schemaKey: PropertyValue
  3040. value: ProcessingModule
  3041. - schemaKey: PropertyValue
  3042. value: SpatialSeries
  3043. - schemaKey: PropertyValue
  3044. value: Position
  3045. - schemaKey: PropertyValue
  3046. value: CompassDirection
  3047. wasAttributedTo:
  3048. - age:
  3049. schemaKey: PropertyValue
  3050. unitText: ISO-8601 duration
  3051. value: P6DT54300S
  3052. valueReference:
  3053. schemaKey: PropertyValue
  3054. value: dandi:BirthReference
  3055. identifier: replay_la_plaid_02_nac het_#2023_8_9
  3056. schemaKey: Participant
  3057. sex:
  3058. name: Unknown
  3059. schemaKey: SexType
  3060. species:
  3061. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  3062. name: Danio rerio - Zebra fish
  3063. schemaKey: SpeciesType
  3064. wasGeneratedBy:
  3065. - description: Thermal plaid replay experiment
  3066. name: Acquisition session
  3067. schemaKey: Session
  3068. startDate: '2023-08-09T15:05:00-04:00'
  3069. - description: Metadata generated by DANDI cli
  3070. endDate: '2024-02-12T09:52:37.128449-05:00'
  3071. id: urn:uuid:041db6c7-0c23-45d3-9378-e20409179be8
  3072. name: Metadata generation
  3073. schemaKey: Activity
  3074. startDate: '2024-02-12T09:52:37.123219-05:00'
  3075. wasAssociatedWith:
  3076. - identifier: RRID:SCR_019009
  3077. name: DANDI Command Line Interface
  3078. schemaKey: Software
  3079. url: https://github.com/dandi/dandi-cli
  3080. version: 0.59.1
  3081. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3082. access:
  3083. - schemaKey: AccessRequirements
  3084. status: dandi:OpenAccess
  3085. approach:
  3086. - name: behavioral approach
  3087. schemaKey: ApproachType
  3088. blobDateModified: '2024-02-07T10:10:51.364801-05:00'
  3089. contentSize: 35028177
  3090. contentUrl:
  3091. - https://api.dandiarchive.org/api/assets/7aca761c-c125-4801-a4d9-cb694ed4f683/download/
  3092. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/0ad/e3a/0ade3ab0-ff84-4c76-acae-618ce9ec279d
  3093. dateModified: '2024-02-12T09:52:37.580660-05:00'
  3094. digest:
  3095. dandi:dandi-etag: e4443cb3dc58f25b37bb7bf585c90684-1
  3096. dandi:sha2-256: 056af59f33813336fd0efa5f1e6ca4f8c8d5bd6854237f79b23cab0f8e081911
  3097. encodingFormat: application/x-nwb
  3098. id: dandiasset:7aca761c-c125-4801-a4d9-cb694ed4f683
  3099. identifier: 7aca761c-c125-4801-a4d9-cb694ed4f683
  3100. measurementTechnique:
  3101. - name: behavioral technique
  3102. schemaKey: MeasurementTechniqueType
  3103. - name: analytical technique
  3104. schemaKey: MeasurementTechniqueType
  3105. 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
  3106. schemaKey: Asset
  3107. schemaVersion: 0.6.4
  3108. variableMeasured:
  3109. - schemaKey: PropertyValue
  3110. value: ProcessingModule
  3111. - schemaKey: PropertyValue
  3112. value: SpatialSeries
  3113. - schemaKey: PropertyValue
  3114. value: Position
  3115. - schemaKey: PropertyValue
  3116. value: CompassDirection
  3117. wasAttributedTo:
  3118. - age:
  3119. schemaKey: PropertyValue
  3120. unitText: ISO-8601 duration
  3121. value: P6DT68100S
  3122. valueReference:
  3123. schemaKey: PropertyValue
  3124. value: dandi:BirthReference
  3125. identifier: replay_la_plaid_03_nac het_#2023_10_26
  3126. schemaKey: Participant
  3127. sex:
  3128. name: Unknown
  3129. schemaKey: SexType
  3130. species:
  3131. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  3132. name: Danio rerio - Zebra fish
  3133. schemaKey: SpeciesType
  3134. wasGeneratedBy:
  3135. - description: Thermal plaid replay experiment
  3136. name: Acquisition session
  3137. schemaKey: Session
  3138. startDate: '2023-10-26T18:55:00-04:00'
  3139. - description: Metadata generated by DANDI cli
  3140. endDate: '2024-02-12T09:52:37.580660-05:00'
  3141. id: urn:uuid:b85e1f78-9cd6-4f8b-a4dd-b6bf9b86d23d
  3142. name: Metadata generation
  3143. schemaKey: Activity
  3144. startDate: '2024-02-12T09:52:37.454819-05:00'
  3145. wasAssociatedWith:
  3146. - identifier: RRID:SCR_019009
  3147. name: DANDI Command Line Interface
  3148. schemaKey: Software
  3149. url: https://github.com/dandi/dandi-cli
  3150. version: 0.59.1
  3151. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3152. access:
  3153. - schemaKey: AccessRequirements
  3154. status: dandi:OpenAccess
  3155. approach:
  3156. - name: behavioral approach
  3157. schemaKey: ApproachType
  3158. blobDateModified: '2024-02-07T09:56:11.658098-05:00'
  3159. contentSize: 34932176
  3160. contentUrl:
  3161. - https://api.dandiarchive.org/api/assets/4186a5d2-e729-4c52-a4a3-6a065f23ee61/download/
  3162. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/164/af1/164af1ed-8bf4-4bce-9b35-6da38582b6a6
  3163. dateModified: '2024-02-12T09:52:38.423868-05:00'
  3164. digest:
  3165. dandi:dandi-etag: 7f7b005ab6d2474d401ed781d38b241a-1
  3166. dandi:sha2-256: 7a8ff0f744e4c0b77e2cb855df11d7be36670ad4cc7d164fb79b6c362f098c02
  3167. encodingFormat: application/x-nwb
  3168. id: dandiasset:4186a5d2-e729-4c52-a4a3-6a065f23ee61
  3169. identifier: 4186a5d2-e729-4c52-a4a3-6a065f23ee61
  3170. measurementTechnique:
  3171. - name: behavioral technique
  3172. schemaKey: MeasurementTechniqueType
  3173. - name: analytical technique
  3174. schemaKey: MeasurementTechniqueType
  3175. 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
  3176. schemaKey: Asset
  3177. schemaVersion: 0.6.4
  3178. variableMeasured:
  3179. - schemaKey: PropertyValue
  3180. value: ProcessingModule
  3181. - schemaKey: PropertyValue
  3182. value: SpatialSeries
  3183. - schemaKey: PropertyValue
  3184. value: Position
  3185. - schemaKey: PropertyValue
  3186. value: CompassDirection
  3187. wasAttributedTo:
  3188. - age:
  3189. schemaKey: PropertyValue
  3190. unitText: ISO-8601 duration
  3191. value: P6DT60120S
  3192. valueReference:
  3193. schemaKey: PropertyValue
  3194. value: dandi:BirthReference
  3195. identifier: replay_la_plaid_03_nac het_#2023_7_13
  3196. schemaKey: Participant
  3197. sex:
  3198. name: Unknown
  3199. schemaKey: SexType
  3200. species:
  3201. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  3202. name: Danio rerio - Zebra fish
  3203. schemaKey: SpeciesType
  3204. wasGeneratedBy:
  3205. - description: Thermal plaid replay experiment
  3206. name: Acquisition session
  3207. schemaKey: Session
  3208. startDate: '2023-07-13T16:42:00-04:00'
  3209. - description: Metadata generated by DANDI cli
  3210. endDate: '2024-02-12T09:52:38.423868-05:00'
  3211. id: urn:uuid:f49be4a7-dfca-4694-b762-c785c03d5a32
  3212. name: Metadata generation
  3213. schemaKey: Activity
  3214. startDate: '2024-02-12T09:52:38.417725-05:00'
  3215. wasAssociatedWith:
  3216. - identifier: RRID:SCR_019009
  3217. name: DANDI Command Line Interface
  3218. schemaKey: Software
  3219. url: https://github.com/dandi/dandi-cli
  3220. version: 0.59.1
  3221. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3222. access:
  3223. - schemaKey: AccessRequirements
  3224. status: dandi:OpenAccess
  3225. approach:
  3226. - name: behavioral approach
  3227. schemaKey: ApproachType
  3228. blobDateModified: '2024-02-07T10:04:57.280064-05:00'
  3229. contentSize: 34925079
  3230. contentUrl:
  3231. - https://api.dandiarchive.org/api/assets/2e4cad24-ce50-4775-8122-24d698adddc8/download/
  3232. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/384/80e/38480e36-6303-4269-ab75-776af50d3541
  3233. dateModified: '2024-02-12T09:52:40.496786-05:00'
  3234. digest:
  3235. dandi:dandi-etag: b65fdab2f8daabb881745ba5360d0fbe-1
  3236. dandi:sha2-256: 708e8c6fe476208cf845b489da872f112379376859fe3907a1ded53b788ebd9b
  3237. encodingFormat: application/x-nwb
  3238. id: dandiasset:2e4cad24-ce50-4775-8122-24d698adddc8
  3239. identifier: 2e4cad24-ce50-4775-8122-24d698adddc8
  3240. measurementTechnique:
  3241. - name: behavioral technique
  3242. schemaKey: MeasurementTechniqueType
  3243. - name: analytical technique
  3244. schemaKey: MeasurementTechniqueType
  3245. 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
  3246. schemaKey: Asset
  3247. schemaVersion: 0.6.4
  3248. variableMeasured:
  3249. - schemaKey: PropertyValue
  3250. value: ProcessingModule
  3251. - schemaKey: PropertyValue
  3252. value: SpatialSeries
  3253. - schemaKey: PropertyValue
  3254. value: Position
  3255. - schemaKey: PropertyValue
  3256. value: CompassDirection
  3257. wasAttributedTo:
  3258. - age:
  3259. schemaKey: PropertyValue
  3260. unitText: ISO-8601 duration
  3261. value: P6DT67560S
  3262. valueReference:
  3263. schemaKey: PropertyValue
  3264. value: dandi:BirthReference
  3265. identifier: replay_la_plaid_03_nac het_#2023_8_24
  3266. schemaKey: Participant
  3267. sex:
  3268. name: Unknown
  3269. schemaKey: SexType
  3270. species:
  3271. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  3272. name: Danio rerio - Zebra fish
  3273. schemaKey: SpeciesType
  3274. wasGeneratedBy:
  3275. - description: Thermal plaid replay experiment
  3276. name: Acquisition session
  3277. schemaKey: Session
  3278. startDate: '2023-08-24T18:46:00-04:00'
  3279. - description: Metadata generated by DANDI cli
  3280. endDate: '2024-02-12T09:52:40.496786-05:00'
  3281. id: urn:uuid:fe1ad5d6-fd99-4bbf-9ced-e96e21efd031
  3282. name: Metadata generation
  3283. schemaKey: Activity
  3284. startDate: '2024-02-12T09:52:40.410017-05:00'
  3285. wasAssociatedWith:
  3286. - identifier: RRID:SCR_019009
  3287. name: DANDI Command Line Interface
  3288. schemaKey: Software
  3289. url: https://github.com/dandi/dandi-cli
  3290. version: 0.59.1
  3291. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3292. access:
  3293. - schemaKey: AccessRequirements
  3294. status: dandi:OpenAccess
  3295. approach:
  3296. - name: behavioral approach
  3297. schemaKey: ApproachType
  3298. blobDateModified: '2024-02-07T10:07:31.601521-05:00'
  3299. contentSize: 35342947
  3300. contentUrl:
  3301. - https://api.dandiarchive.org/api/assets/90cfd04f-5291-4cae-9f24-8f90ed89f710/download/
  3302. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/fd5/c9b/fd5c9b6f-581e-44ef-b902-5a89c71ed670
  3303. dateModified: '2024-02-12T09:52:41.056295-05:00'
  3304. digest:
  3305. dandi:dandi-etag: 9889933fb797a0a26a0f056992d59275-1
  3306. dandi:sha2-256: 2b74c6f336491674de5b90b79cb1eb55df7cc6f811b1fddfb9aa067bd47f7142
  3307. encodingFormat: application/x-nwb
  3308. id: dandiasset:90cfd04f-5291-4cae-9f24-8f90ed89f710
  3309. identifier: 90cfd04f-5291-4cae-9f24-8f90ed89f710
  3310. measurementTechnique:
  3311. - name: behavioral technique
  3312. schemaKey: MeasurementTechniqueType
  3313. - name: analytical technique
  3314. schemaKey: MeasurementTechniqueType
  3315. 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
  3316. schemaKey: Asset
  3317. schemaVersion: 0.6.4
  3318. variableMeasured:
  3319. - schemaKey: PropertyValue
  3320. value: ProcessingModule
  3321. - schemaKey: PropertyValue
  3322. value: SpatialSeries
  3323. - schemaKey: PropertyValue
  3324. value: Position
  3325. - schemaKey: PropertyValue
  3326. value: CompassDirection
  3327. wasAttributedTo:
  3328. - age:
  3329. schemaKey: PropertyValue
  3330. unitText: ISO-8601 duration
  3331. value: P6DT55980S
  3332. valueReference:
  3333. schemaKey: PropertyValue
  3334. value: dandi:BirthReference
  3335. identifier: replay_la_plaid_03_nac het_#2023_8_31
  3336. schemaKey: Participant
  3337. sex:
  3338. name: Unknown
  3339. schemaKey: SexType
  3340. species:
  3341. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  3342. name: Danio rerio - Zebra fish
  3343. schemaKey: SpeciesType
  3344. wasGeneratedBy:
  3345. - description: Thermal plaid replay experiment
  3346. name: Acquisition session
  3347. schemaKey: Session
  3348. startDate: '2023-08-31T15:33:00-04:00'
  3349. - description: Metadata generated by DANDI cli
  3350. endDate: '2024-02-12T09:52:41.056295-05:00'
  3351. id: urn:uuid:ae72a2e9-8315-430d-9165-889d76ce5a3d
  3352. name: Metadata generation
  3353. schemaKey: Activity
  3354. startDate: '2024-02-12T09:52:41.046321-05:00'
  3355. wasAssociatedWith:
  3356. - identifier: RRID:SCR_019009
  3357. name: DANDI Command Line Interface
  3358. schemaKey: Software
  3359. url: https://github.com/dandi/dandi-cli
  3360. version: 0.59.1
  3361. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3362. access:
  3363. - schemaKey: AccessRequirements
  3364. status: dandi:OpenAccess
  3365. approach:
  3366. - name: behavioral approach
  3367. schemaKey: ApproachType
  3368. blobDateModified: '2024-02-07T10:02:04.125990-05:00'
  3369. contentSize: 34975335
  3370. contentUrl:
  3371. - https://api.dandiarchive.org/api/assets/1dcb0379-af5b-4223-b448-f1785eb56584/download/
  3372. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/847/daf/847daff1-7603-4a8b-9011-3015a8fb822d
  3373. dateModified: '2024-02-12T09:52:40.783026-05:00'
  3374. digest:
  3375. dandi:dandi-etag: ab862b90ac23b08042e23b5c76317d80-1
  3376. dandi:sha2-256: 917860025c322aaab0d49cab7e7f3242d87736caae1ba1d3d7b0f67200683bf7
  3377. encodingFormat: application/x-nwb
  3378. id: dandiasset:1dcb0379-af5b-4223-b448-f1785eb56584
  3379. identifier: 1dcb0379-af5b-4223-b448-f1785eb56584
  3380. measurementTechnique:
  3381. - name: behavioral technique
  3382. schemaKey: MeasurementTechniqueType
  3383. - name: analytical technique
  3384. schemaKey: MeasurementTechniqueType
  3385. 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
  3386. schemaKey: Asset
  3387. schemaVersion: 0.6.4
  3388. variableMeasured:
  3389. - schemaKey: PropertyValue
  3390. value: ProcessingModule
  3391. - schemaKey: PropertyValue
  3392. value: SpatialSeries
  3393. - schemaKey: PropertyValue
  3394. value: Position
  3395. - schemaKey: PropertyValue
  3396. value: CompassDirection
  3397. wasAttributedTo:
  3398. - age:
  3399. schemaKey: PropertyValue
  3400. unitText: ISO-8601 duration
  3401. value: P6DT59940S
  3402. valueReference:
  3403. schemaKey: PropertyValue
  3404. value: dandi:BirthReference
  3405. identifier: replay_la_plaid_03_nac het_#2023_8_14
  3406. schemaKey: Participant
  3407. sex:
  3408. name: Unknown
  3409. schemaKey: SexType
  3410. species:
  3411. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  3412. name: Danio rerio - Zebra fish
  3413. schemaKey: SpeciesType
  3414. wasGeneratedBy:
  3415. - description: Thermal plaid replay experiment
  3416. name: Acquisition session
  3417. schemaKey: Session
  3418. startDate: '2023-08-14T16:39:00-04:00'
  3419. - description: Metadata generated by DANDI cli
  3420. endDate: '2024-02-12T09:52:40.783026-05:00'
  3421. id: urn:uuid:3b8ba82b-2136-421c-b0cf-ff11e8d5bff5
  3422. name: Metadata generation
  3423. schemaKey: Activity
  3424. startDate: '2024-02-12T09:52:40.714206-05:00'
  3425. wasAssociatedWith:
  3426. - identifier: RRID:SCR_019009
  3427. name: DANDI Command Line Interface
  3428. schemaKey: Software
  3429. url: https://github.com/dandi/dandi-cli
  3430. version: 0.59.1
  3431. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3432. access:
  3433. - schemaKey: AccessRequirements
  3434. status: dandi:OpenAccess
  3435. approach:
  3436. - name: behavioral approach
  3437. schemaKey: ApproachType
  3438. blobDateModified: '2024-02-07T10:02:59.024489-05:00'
  3439. contentSize: 34966209
  3440. contentUrl:
  3441. - https://api.dandiarchive.org/api/assets/b28202b8-54da-4e2a-85e8-3d09675ddb05/download/
  3442. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/db8/f82/db8f8268-49b6-4c37-b782-03ce29fbe3ad
  3443. dateModified: '2024-02-12T09:52:42.073190-05:00'
  3444. digest:
  3445. dandi:dandi-etag: 8f5d6230c267ffeb62a92c729a0bb029-1
  3446. dandi:sha2-256: 1ecade99c603d57f71805db3ed857e573f27d5e074efe5e2e68887652eccfabf
  3447. encodingFormat: application/x-nwb
  3448. id: dandiasset:b28202b8-54da-4e2a-85e8-3d09675ddb05
  3449. identifier: b28202b8-54da-4e2a-85e8-3d09675ddb05
  3450. measurementTechnique:
  3451. - name: behavioral technique
  3452. schemaKey: MeasurementTechniqueType
  3453. - name: analytical technique
  3454. schemaKey: MeasurementTechniqueType
  3455. 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
  3456. schemaKey: Asset
  3457. schemaVersion: 0.6.4
  3458. variableMeasured:
  3459. - schemaKey: PropertyValue
  3460. value: ProcessingModule
  3461. - schemaKey: PropertyValue
  3462. value: SpatialSeries
  3463. - schemaKey: PropertyValue
  3464. value: Position
  3465. - schemaKey: PropertyValue
  3466. value: CompassDirection
  3467. wasAttributedTo:
  3468. - age:
  3469. schemaKey: PropertyValue
  3470. unitText: ISO-8601 duration
  3471. value: P6DT58920S
  3472. valueReference:
  3473. schemaKey: PropertyValue
  3474. value: dandi:BirthReference
  3475. identifier: replay_la_plaid_03_nac het_#2023_8_9
  3476. schemaKey: Participant
  3477. sex:
  3478. name: Unknown
  3479. schemaKey: SexType
  3480. species:
  3481. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  3482. name: Danio rerio - Zebra fish
  3483. schemaKey: SpeciesType
  3484. wasGeneratedBy:
  3485. - description: Thermal plaid replay experiment
  3486. name: Acquisition session
  3487. schemaKey: Session
  3488. startDate: '2023-08-09T16:22:00-04:00'
  3489. - description: Metadata generated by DANDI cli
  3490. endDate: '2024-02-12T09:52:42.073190-05:00'
  3491. id: urn:uuid:3fe08110-a4fd-4cc0-a95a-c1fad3654f26
  3492. name: Metadata generation
  3493. schemaKey: Activity
  3494. startDate: '2024-02-12T09:52:42.070170-05:00'
  3495. wasAssociatedWith:
  3496. - identifier: RRID:SCR_019009
  3497. name: DANDI Command Line Interface
  3498. schemaKey: Software
  3499. url: https://github.com/dandi/dandi-cli
  3500. version: 0.59.1
  3501. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3502. access:
  3503. - schemaKey: AccessRequirements
  3504. status: dandi:OpenAccess
  3505. approach:
  3506. - name: behavioral approach
  3507. schemaKey: ApproachType
  3508. blobDateModified: '2024-02-07T10:26:04.757794-05:00'
  3509. contentSize: 34927620
  3510. contentUrl:
  3511. - https://api.dandiarchive.org/api/assets/02d94e0b-96d5-4d8e-a960-2ccb8452b417/download/
  3512. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/91a/a97/91aa97eb-fe60-4a28-8996-26f6ba01de17
  3513. dateModified: '2024-02-12T09:52:42.467951-05:00'
  3514. digest:
  3515. dandi:dandi-etag: af991cf8505d3d48f31a6df03daf2285-1
  3516. dandi:sha2-256: 4f17efacf5f1fe70cf7c1045fea8a7c732ad52c8e313b470751acd2057b1e79c
  3517. encodingFormat: application/x-nwb
  3518. id: dandiasset:02d94e0b-96d5-4d8e-a960-2ccb8452b417
  3519. identifier: 02d94e0b-96d5-4d8e-a960-2ccb8452b417
  3520. measurementTechnique:
  3521. - name: behavioral technique
  3522. schemaKey: MeasurementTechniqueType
  3523. - name: analytical technique
  3524. schemaKey: MeasurementTechniqueType
  3525. 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
  3526. schemaKey: Asset
  3527. schemaVersion: 0.6.4
  3528. variableMeasured:
  3529. - schemaKey: PropertyValue
  3530. value: ProcessingModule
  3531. - schemaKey: PropertyValue
  3532. value: SpatialSeries
  3533. - schemaKey: PropertyValue
  3534. value: Position
  3535. - schemaKey: PropertyValue
  3536. value: CompassDirection
  3537. wasAttributedTo:
  3538. - age:
  3539. schemaKey: PropertyValue
  3540. unitText: ISO-8601 duration
  3541. value: P6DT79500S
  3542. valueReference:
  3543. schemaKey: PropertyValue
  3544. value: dandi:BirthReference
  3545. identifier: replay_la_plaid_04_nac het_#2023_10_26
  3546. schemaKey: Participant
  3547. sex:
  3548. name: Unknown
  3549. schemaKey: SexType
  3550. species:
  3551. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  3552. name: Danio rerio - Zebra fish
  3553. schemaKey: SpeciesType
  3554. wasGeneratedBy:
  3555. - description: Thermal plaid replay experiment
  3556. name: Acquisition session
  3557. schemaKey: Session
  3558. startDate: '2023-10-26T22:05:00-04:00'
  3559. - description: Metadata generated by DANDI cli
  3560. endDate: '2024-02-12T09:52:42.467951-05:00'
  3561. id: urn:uuid:ea1b6f4c-1646-4541-810b-315dfc0446e3
  3562. name: Metadata generation
  3563. schemaKey: Activity
  3564. startDate: '2024-02-12T09:52:42.374674-05:00'
  3565. wasAssociatedWith:
  3566. - identifier: RRID:SCR_019009
  3567. name: DANDI Command Line Interface
  3568. schemaKey: Software
  3569. url: https://github.com/dandi/dandi-cli
  3570. version: 0.59.1
  3571. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3572. access:
  3573. - schemaKey: AccessRequirements
  3574. status: dandi:OpenAccess
  3575. approach:
  3576. - name: behavioral approach
  3577. schemaKey: ApproachType
  3578. blobDateModified: '2024-02-07T09:56:54.536628-05:00'
  3579. contentSize: 35496313
  3580. contentUrl:
  3581. - https://api.dandiarchive.org/api/assets/69db3d14-3f7e-4f6c-adf6-e65cca8bbd72/download/
  3582. - https://dandiarchive-embargo.s3.amazonaws.com/000889/blobs/000/8b4/0008b484-d72c-494c-b6c3-ebeff4c5ace4
  3583. dateModified: '2024-02-12T09:52:44.306428-05:00'
  3584. digest:
  3585. dandi:dandi-etag: 5c774bda95c73015c32a5ac72fff1f6b-1
  3586. dandi:sha2-256: 079499c17000bb345d97140b90e7d6245c52259a8900d7ba65b2c89301b57adc
  3587. encodingFormat: application/x-nwb
  3588. id: dandiasset:69db3d14-3f7e-4f6c-adf6-e65cca8bbd72
  3589. identifier: 69db3d14-3f7e-4f6c-adf6-e65cca8bbd72
  3590. measurementTechnique:
  3591. - name: behavioral technique
  3592. schemaKey: MeasurementTechniqueType
  3593. - name: analytical technique
  3594. schemaKey: MeasurementTechniqueType
  3595. 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
  3596. schemaKey: Asset
  3597. schemaVersion: 0.6.4
  3598. variableMeasured:
  3599. - schemaKey: PropertyValue
  3600. value: ProcessingModule
  3601. - schemaKey: PropertyValue
  3602. value: SpatialSeries
  3603. - schemaKey: PropertyValue
  3604. value: Position
  3605. - schemaKey: PropertyValue
  3606. value: CompassDirection
  3607. wasAttributedTo:
  3608. - age:
  3609. schemaKey: PropertyValue
  3610. unitText: ISO-8601 duration
  3611. value: P6DT45060S
  3612. valueReference:
  3613. schemaKey: PropertyValue
  3614. value: dandi:BirthReference
  3615. identifier: reply_la_plaid_01_nac het_#2023_7_26
  3616. schemaKey: Participant
  3617. sex:
  3618. name: Unknown
  3619. schemaKey: SexType
  3620. species:
  3621. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  3622. name: Danio rerio - Zebra fish
  3623. schemaKey: SpeciesType
  3624. wasGeneratedBy:
  3625. - description: Thermal plaid replay experiment
  3626. name: Acquisition session
  3627. schemaKey: Session
  3628. startDate: '2023-07-26T12:31:00-04:00'
  3629. - description: Metadata generated by DANDI cli
  3630. endDate: '2024-02-12T09:52:44.306428-05:00'
  3631. id: urn:uuid:242e967e-5b72-4601-9fff-a15108c11835
  3632. name: Metadata generation
  3633. schemaKey: Activity
  3634. startDate: '2024-02-12T09:52:44.303366-05:00'
  3635. wasAssociatedWith:
  3636. - identifier: RRID:SCR_019009
  3637. name: DANDI Command Line Interface
  3638. schemaKey: Software
  3639. url: https://github.com/dandi/dandi-cli
  3640. version: 0.59.1
Tip!

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

Comments

Loading...