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 142 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
  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. blobDateModified: '2024-01-15T11:07:10.706605-05:00'
  6. contentSize: 372980
  7. contentUrl:
  8. - https://api.dandiarchive.org/api/assets/fd2cc6fa-f41e-471e-8b56-cb5f88a6ecaf/download/
  9. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/ef5/880/ef5880c2-6143-442f-bcf0-574ccfa458d2
  10. dateModified: '2024-01-15T11:07:45.862237-05:00'
  11. digest:
  12. dandi:dandi-etag: 5334df58e0890f66455aded7411a1fef-1
  13. dandi:sha2-256: d73b35f790cb04039a9fde606f0bcbd448eaa244fe5db4ab1a691b47dd53db45
  14. encodingFormat: video/mp4
  15. id: dandiasset:fd2cc6fa-f41e-471e-8b56-cb5f88a6ecaf
  16. identifier: fd2cc6fa-f41e-471e-8b56-cb5f88a6ecaf
  17. path: VideoStimulusSet/exp_motionset1_1.mp4
  18. schemaKey: Asset
  19. schemaVersion: 0.6.4
  20. wasGeneratedBy:
  21. - description: Metadata generated by DANDI cli
  22. endDate: '2024-01-15T11:07:45.862198-05:00'
  23. id: urn:uuid:21df4274-5865-4672-bb2c-04e62c791d06
  24. name: Metadata generation
  25. schemaKey: Activity
  26. startDate: '2024-01-15T11:07:45.862198-05:00'
  27. wasAssociatedWith:
  28. - identifier: RRID:SCR_019009
  29. name: DANDI Command Line Interface
  30. schemaKey: Software
  31. url: https://github.com/dandi/dandi-cli
  32. version: 0.59.0
  33. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  34. access:
  35. - schemaKey: AccessRequirements
  36. status: dandi:OpenAccess
  37. blobDateModified: '2024-01-15T11:07:10.670623-05:00'
  38. contentSize: 369985
  39. contentUrl:
  40. - https://api.dandiarchive.org/api/assets/64767a64-32f1-4d98-b833-d0d4ea31205a/download/
  41. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/7ad/65e/7ad65e26-c785-495f-99f8-7045d4de6820
  42. dateModified: '2024-01-15T11:07:45.581197-05:00'
  43. digest:
  44. dandi:dandi-etag: 8553f3962382979d38182133ca13fd88-1
  45. dandi:sha2-256: bbecdf084595ad0a4ee442c8427b97ebb62375728e2e9547e5cdbe13d34142e4
  46. encodingFormat: video/mp4
  47. id: dandiasset:64767a64-32f1-4d98-b833-d0d4ea31205a
  48. identifier: 64767a64-32f1-4d98-b833-d0d4ea31205a
  49. path: VideoStimulusSet/exp_motionset1_0.mp4
  50. schemaKey: Asset
  51. schemaVersion: 0.6.4
  52. wasGeneratedBy:
  53. - description: Metadata generated by DANDI cli
  54. endDate: '2024-01-15T11:07:45.581156-05:00'
  55. id: urn:uuid:db02c36b-f968-4aaf-9820-88f20d3a335f
  56. name: Metadata generation
  57. schemaKey: Activity
  58. startDate: '2024-01-15T11:07:45.581156-05:00'
  59. wasAssociatedWith:
  60. - identifier: RRID:SCR_019009
  61. name: DANDI Command Line Interface
  62. schemaKey: Software
  63. url: https://github.com/dandi/dandi-cli
  64. version: 0.59.0
  65. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  66. access:
  67. - schemaKey: AccessRequirements
  68. status: dandi:OpenAccess
  69. blobDateModified: '2024-01-15T11:07:10.730593-05:00'
  70. contentSize: 382964
  71. contentUrl:
  72. - https://api.dandiarchive.org/api/assets/58db068c-fffa-4e90-abcf-55eabc53c948/download/
  73. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/cd2/46f/cd246f8b-3fbc-4bc1-b26a-93fd959b8fee
  74. dateModified: '2024-01-15T11:07:45.908874-05:00'
  75. digest:
  76. dandi:dandi-etag: b449b6bf8a21bfec32861977c4e8b458-1
  77. dandi:sha2-256: 9fada3c942b390d9f4514db46f1bb1db1b6dde575b1a6def4d875c6923e882fd
  78. encodingFormat: video/mp4
  79. id: dandiasset:58db068c-fffa-4e90-abcf-55eabc53c948
  80. identifier: 58db068c-fffa-4e90-abcf-55eabc53c948
  81. path: VideoStimulusSet/exp_motionset1_10.mp4
  82. schemaKey: Asset
  83. schemaVersion: 0.6.4
  84. wasGeneratedBy:
  85. - description: Metadata generated by DANDI cli
  86. endDate: '2024-01-15T11:07:45.908838-05:00'
  87. id: urn:uuid:232ffb37-9220-4884-8844-254352d6891c
  88. name: Metadata generation
  89. schemaKey: Activity
  90. startDate: '2024-01-15T11:07:45.908838-05:00'
  91. wasAssociatedWith:
  92. - identifier: RRID:SCR_019009
  93. name: DANDI Command Line Interface
  94. schemaKey: Software
  95. url: https://github.com/dandi/dandi-cli
  96. version: 0.59.0
  97. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  98. access:
  99. - schemaKey: AccessRequirements
  100. status: dandi:OpenAccess
  101. blobDateModified: '2024-01-15T11:07:10.801558-05:00'
  102. contentSize: 401408
  103. contentUrl:
  104. - https://api.dandiarchive.org/api/assets/16f41fd6-b863-4fc3-8fd5-463abdbc2264/download/
  105. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/973/948/97394821-36c4-4cdd-abc6-d7650723d191
  106. dateModified: '2024-01-15T11:07:46.306322-05:00'
  107. digest:
  108. dandi:dandi-etag: d48bc6fbbeca83d0f1f393fc8f9ed3bf-1
  109. dandi:sha2-256: cda0e67fd89a2aa1b2cdc2cff8cb5be3305f1e9f6772ceab313e1f0511de2588
  110. encodingFormat: video/mp4
  111. id: dandiasset:16f41fd6-b863-4fc3-8fd5-463abdbc2264
  112. identifier: 16f41fd6-b863-4fc3-8fd5-463abdbc2264
  113. path: VideoStimulusSet/exp_motionset1_101.mp4
  114. schemaKey: Asset
  115. schemaVersion: 0.6.4
  116. wasGeneratedBy:
  117. - description: Metadata generated by DANDI cli
  118. endDate: '2024-01-15T11:07:46.306288-05:00'
  119. id: urn:uuid:b797bdbd-5b98-447b-a37d-c97f9cb148b1
  120. name: Metadata generation
  121. schemaKey: Activity
  122. startDate: '2024-01-15T11:07:46.306288-05:00'
  123. wasAssociatedWith:
  124. - identifier: RRID:SCR_019009
  125. name: DANDI Command Line Interface
  126. schemaKey: Software
  127. url: https://github.com/dandi/dandi-cli
  128. version: 0.59.0
  129. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  130. access:
  131. - schemaKey: AccessRequirements
  132. status: dandi:OpenAccess
  133. blobDateModified: '2024-01-15T11:07:10.781568-05:00'
  134. contentSize: 402188
  135. contentUrl:
  136. - https://api.dandiarchive.org/api/assets/bfdb5de3-0e2b-42ec-a212-6b673c506b09/download/
  137. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/3b4/d5c/3b4d5c86-b72b-43b9-acb0-1067a43aed53
  138. dateModified: '2024-01-15T11:07:46.257365-05:00'
  139. digest:
  140. dandi:dandi-etag: d22893ea16dcb1d4278c5fde5e1fcb91-1
  141. dandi:sha2-256: c9d89e738620c11f7533f66a6fa0273b076fa754a5e9adbbd9c15e0c1d0648c7
  142. encodingFormat: video/mp4
  143. id: dandiasset:bfdb5de3-0e2b-42ec-a212-6b673c506b09
  144. identifier: bfdb5de3-0e2b-42ec-a212-6b673c506b09
  145. path: VideoStimulusSet/exp_motionset1_100.mp4
  146. schemaKey: Asset
  147. schemaVersion: 0.6.4
  148. wasGeneratedBy:
  149. - description: Metadata generated by DANDI cli
  150. endDate: '2024-01-15T11:07:46.257322-05:00'
  151. id: urn:uuid:4872e669-ebe5-4457-b148-9c49fac7961a
  152. name: Metadata generation
  153. schemaKey: Activity
  154. startDate: '2024-01-15T11:07:46.257322-05:00'
  155. wasAssociatedWith:
  156. - identifier: RRID:SCR_019009
  157. name: DANDI Command Line Interface
  158. schemaKey: Software
  159. url: https://github.com/dandi/dandi-cli
  160. version: 0.59.0
  161. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  162. access:
  163. - schemaKey: AccessRequirements
  164. status: dandi:OpenAccess
  165. blobDateModified: '2024-01-15T11:07:10.822547-05:00'
  166. contentSize: 394419
  167. contentUrl:
  168. - https://api.dandiarchive.org/api/assets/ae0e218b-23e1-44f9-a635-4bd4a99f5937/download/
  169. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/b92/bd1/b92bd1f3-bb91-44cc-9a29-4ef9e4680366
  170. dateModified: '2024-01-15T11:07:49.406435-05:00'
  171. digest:
  172. dandi:dandi-etag: b8e3c92f3b6e9b5a1956576e7e09a336-1
  173. dandi:sha2-256: 840a1c547d45c2710d0b11062b77ffc3257953224f3b4fc09bf8b9f00d1cb9bd
  174. encodingFormat: video/mp4
  175. id: dandiasset:ae0e218b-23e1-44f9-a635-4bd4a99f5937
  176. identifier: ae0e218b-23e1-44f9-a635-4bd4a99f5937
  177. path: VideoStimulusSet/exp_motionset1_102.mp4
  178. schemaKey: Asset
  179. schemaVersion: 0.6.4
  180. wasGeneratedBy:
  181. - description: Metadata generated by DANDI cli
  182. endDate: '2024-01-15T11:07:49.406403-05:00'
  183. id: urn:uuid:d4c3ad07-35e2-4b9a-9ab7-6ce06b0cc495
  184. name: Metadata generation
  185. schemaKey: Activity
  186. startDate: '2024-01-15T11:07:49.406403-05:00'
  187. wasAssociatedWith:
  188. - identifier: RRID:SCR_019009
  189. name: DANDI Command Line Interface
  190. schemaKey: Software
  191. url: https://github.com/dandi/dandi-cli
  192. version: 0.59.0
  193. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  194. access:
  195. - schemaKey: AccessRequirements
  196. status: dandi:OpenAccess
  197. blobDateModified: '2024-01-15T11:07:10.850533-05:00'
  198. contentSize: 398084
  199. contentUrl:
  200. - https://api.dandiarchive.org/api/assets/05e8290c-9b69-483b-944c-8d273aca8600/download/
  201. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/18d/27e/18d27e90-58ac-4b12-9a1d-a25d4686ce62
  202. dateModified: '2024-01-15T11:07:49.585637-05:00'
  203. digest:
  204. dandi:dandi-etag: ffa60b8a9c7aaa884d1178c4714f99d9-1
  205. dandi:sha2-256: d986aa97b44673c133feef063794233ab0d73bfd77d4b7333ecaed7d0303ad30
  206. encodingFormat: video/mp4
  207. id: dandiasset:05e8290c-9b69-483b-944c-8d273aca8600
  208. identifier: 05e8290c-9b69-483b-944c-8d273aca8600
  209. path: VideoStimulusSet/exp_motionset1_103.mp4
  210. schemaKey: Asset
  211. schemaVersion: 0.6.4
  212. wasGeneratedBy:
  213. - description: Metadata generated by DANDI cli
  214. endDate: '2024-01-15T11:07:49.585607-05:00'
  215. id: urn:uuid:6a3a71f9-928b-4739-aa05-635a55d48dc6
  216. name: Metadata generation
  217. schemaKey: Activity
  218. startDate: '2024-01-15T11:07:49.585607-05:00'
  219. wasAssociatedWith:
  220. - identifier: RRID:SCR_019009
  221. name: DANDI Command Line Interface
  222. schemaKey: Software
  223. url: https://github.com/dandi/dandi-cli
  224. version: 0.59.0
  225. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  226. access:
  227. - schemaKey: AccessRequirements
  228. status: dandi:OpenAccess
  229. blobDateModified: '2024-01-15T11:07:10.887515-05:00'
  230. contentSize: 401061
  231. contentUrl:
  232. - https://api.dandiarchive.org/api/assets/b10186af-7816-45d9-a376-b09325c49387/download/
  233. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/593/543/59354373-7282-4c04-adb1-96b53e54101d
  234. dateModified: '2024-01-15T11:07:50.220396-05:00'
  235. digest:
  236. dandi:dandi-etag: 91ba636b00568b6a8709093a84e0957d-1
  237. dandi:sha2-256: 6d4a21404a45b7c5f95f7f2df6005b289b3d688c8dec9ca28fcda95c6a483233
  238. encodingFormat: video/mp4
  239. id: dandiasset:b10186af-7816-45d9-a376-b09325c49387
  240. identifier: b10186af-7816-45d9-a376-b09325c49387
  241. path: VideoStimulusSet/exp_motionset1_104.mp4
  242. schemaKey: Asset
  243. schemaVersion: 0.6.4
  244. wasGeneratedBy:
  245. - description: Metadata generated by DANDI cli
  246. endDate: '2024-01-15T11:07:50.220354-05:00'
  247. id: urn:uuid:44d42076-6c59-450f-a03f-597f1f4a7095
  248. name: Metadata generation
  249. schemaKey: Activity
  250. startDate: '2024-01-15T11:07:50.220354-05:00'
  251. wasAssociatedWith:
  252. - identifier: RRID:SCR_019009
  253. name: DANDI Command Line Interface
  254. schemaKey: Software
  255. url: https://github.com/dandi/dandi-cli
  256. version: 0.59.0
  257. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  258. access:
  259. - schemaKey: AccessRequirements
  260. status: dandi:OpenAccess
  261. blobDateModified: '2024-01-15T11:07:10.933492-05:00'
  262. contentSize: 382407
  263. contentUrl:
  264. - https://api.dandiarchive.org/api/assets/8ddac414-c228-489b-811b-bb7a73a90aed/download/
  265. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/1df/795/1df79583-01e8-40f2-9e33-c3bfb3ececc4
  266. dateModified: '2024-01-15T11:07:50.633866-05:00'
  267. digest:
  268. dandi:dandi-etag: 9155bfcce93c6a16c54341d04c3c89a3-1
  269. dandi:sha2-256: 6b291a885ed5394953405997276a88b9923df0a55178d4c1a52778ad684ead8d
  270. encodingFormat: video/mp4
  271. id: dandiasset:8ddac414-c228-489b-811b-bb7a73a90aed
  272. identifier: 8ddac414-c228-489b-811b-bb7a73a90aed
  273. path: VideoStimulusSet/exp_motionset1_12.mp4
  274. schemaKey: Asset
  275. schemaVersion: 0.6.4
  276. wasGeneratedBy:
  277. - description: Metadata generated by DANDI cli
  278. endDate: '2024-01-15T11:07:50.633825-05:00'
  279. id: urn:uuid:5ad1e148-7572-4a9c-8fa9-55d2797be2fc
  280. name: Metadata generation
  281. schemaKey: Activity
  282. startDate: '2024-01-15T11:07:50.633825-05:00'
  283. wasAssociatedWith:
  284. - identifier: RRID:SCR_019009
  285. name: DANDI Command Line Interface
  286. schemaKey: Software
  287. url: https://github.com/dandi/dandi-cli
  288. version: 0.59.0
  289. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  290. access:
  291. - schemaKey: AccessRequirements
  292. status: dandi:OpenAccess
  293. blobDateModified: '2024-01-15T11:07:10.909504-05:00'
  294. contentSize: 380925
  295. contentUrl:
  296. - https://api.dandiarchive.org/api/assets/0391fa41-8ef0-42cd-a98f-4d0dd5cce28e/download/
  297. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/ab9/c8f/ab9c8f95-651e-42f2-87dd-c452ab5adf2d
  298. dateModified: '2024-01-15T11:07:50.566343-05:00'
  299. digest:
  300. dandi:dandi-etag: 09103fab6e1e2842df67aaedf057ac80-1
  301. dandi:sha2-256: 7c30a7b995ede3d306c2969bdb324124e2f62726ff3a2073e4d6175986fa7583
  302. encodingFormat: video/mp4
  303. id: dandiasset:0391fa41-8ef0-42cd-a98f-4d0dd5cce28e
  304. identifier: 0391fa41-8ef0-42cd-a98f-4d0dd5cce28e
  305. path: VideoStimulusSet/exp_motionset1_11.mp4
  306. schemaKey: Asset
  307. schemaVersion: 0.6.4
  308. wasGeneratedBy:
  309. - description: Metadata generated by DANDI cli
  310. endDate: '2024-01-15T11:07:50.566300-05:00'
  311. id: urn:uuid:203a613b-6b86-45df-9c10-ced10e98bae3
  312. name: Metadata generation
  313. schemaKey: Activity
  314. startDate: '2024-01-15T11:07:50.566300-05:00'
  315. wasAssociatedWith:
  316. - identifier: RRID:SCR_019009
  317. name: DANDI Command Line Interface
  318. schemaKey: Software
  319. url: https://github.com/dandi/dandi-cli
  320. version: 0.59.0
  321. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  322. access:
  323. - schemaKey: AccessRequirements
  324. status: dandi:OpenAccess
  325. blobDateModified: '2024-01-15T11:07:10.988464-05:00'
  326. contentSize: 387452
  327. contentUrl:
  328. - https://api.dandiarchive.org/api/assets/1e54cc6e-761b-41a5-8c86-ee320260bb7c/download/
  329. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/fbc/8e6/fbc8e674-9686-4a43-8e29-27980f8eac31
  330. dateModified: '2024-01-15T11:07:52.699976-05:00'
  331. digest:
  332. dandi:dandi-etag: 8a7e98b03e36c1eb6db70327d124c5d3-1
  333. dandi:sha2-256: ddf36c8c4b7b0e0d82984dbae5f77d6722217e527906a34e13708663eb259144
  334. encodingFormat: video/mp4
  335. id: dandiasset:1e54cc6e-761b-41a5-8c86-ee320260bb7c
  336. identifier: 1e54cc6e-761b-41a5-8c86-ee320260bb7c
  337. path: VideoStimulusSet/exp_motionset1_13.mp4
  338. schemaKey: Asset
  339. schemaVersion: 0.6.4
  340. wasGeneratedBy:
  341. - description: Metadata generated by DANDI cli
  342. endDate: '2024-01-15T11:07:52.699930-05:00'
  343. id: urn:uuid:94248f54-f093-48c1-8a6f-689709b99561
  344. name: Metadata generation
  345. schemaKey: Activity
  346. startDate: '2024-01-15T11:07:52.699930-05:00'
  347. wasAssociatedWith:
  348. - identifier: RRID:SCR_019009
  349. name: DANDI Command Line Interface
  350. schemaKey: Software
  351. url: https://github.com/dandi/dandi-cli
  352. version: 0.59.0
  353. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  354. access:
  355. - schemaKey: AccessRequirements
  356. status: dandi:OpenAccess
  357. blobDateModified: '2024-01-15T11:07:11.009454-05:00'
  358. contentSize: 371505
  359. contentUrl:
  360. - https://api.dandiarchive.org/api/assets/7d725021-cd2b-4944-8485-4beaa13e4de4/download/
  361. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/f09/61c/f0961cb9-d1a5-4fe4-9aca-91802098c4a7
  362. dateModified: '2024-01-15T11:07:53.912042-05:00'
  363. digest:
  364. dandi:dandi-etag: af99a34c2b854eafa1f27892b6e1bf2e-1
  365. dandi:sha2-256: 9876d8dfd5bec958bcee870e906f0f2545721cd1d57bf610c4f06fb07421a677
  366. encodingFormat: video/mp4
  367. id: dandiasset:7d725021-cd2b-4944-8485-4beaa13e4de4
  368. identifier: 7d725021-cd2b-4944-8485-4beaa13e4de4
  369. path: VideoStimulusSet/exp_motionset1_14.mp4
  370. schemaKey: Asset
  371. schemaVersion: 0.6.4
  372. wasGeneratedBy:
  373. - description: Metadata generated by DANDI cli
  374. endDate: '2024-01-15T11:07:53.911995-05:00'
  375. id: urn:uuid:6713fb91-67cb-416f-9eff-1c26889c5fed
  376. name: Metadata generation
  377. schemaKey: Activity
  378. startDate: '2024-01-15T11:07:53.911995-05:00'
  379. wasAssociatedWith:
  380. - identifier: RRID:SCR_019009
  381. name: DANDI Command Line Interface
  382. schemaKey: Software
  383. url: https://github.com/dandi/dandi-cli
  384. version: 0.59.0
  385. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  386. access:
  387. - schemaKey: AccessRequirements
  388. status: dandi:OpenAccess
  389. blobDateModified: '2024-01-15T11:07:11.026445-05:00'
  390. contentSize: 372982
  391. contentUrl:
  392. - https://api.dandiarchive.org/api/assets/daf0f032-2a1c-48ac-8526-c414ab3495b3/download/
  393. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/03e/23c/03e23c39-4b5e-4846-aa10-afe78420561b
  394. dateModified: '2024-01-15T11:07:54.174176-05:00'
  395. digest:
  396. dandi:dandi-etag: 9e79556459f68696bb813f9cb05c6ea9-1
  397. dandi:sha2-256: b89ed575e0f7851b810b7debea2c5b69ca3f59f87aef4f75b9f249918a3918fa
  398. encodingFormat: video/mp4
  399. id: dandiasset:daf0f032-2a1c-48ac-8526-c414ab3495b3
  400. identifier: daf0f032-2a1c-48ac-8526-c414ab3495b3
  401. path: VideoStimulusSet/exp_motionset1_15.mp4
  402. schemaKey: Asset
  403. schemaVersion: 0.6.4
  404. wasGeneratedBy:
  405. - description: Metadata generated by DANDI cli
  406. endDate: '2024-01-15T11:07:54.174130-05:00'
  407. id: urn:uuid:0cc18723-145f-4eb9-99ea-35e7fc23c1bf
  408. name: Metadata generation
  409. schemaKey: Activity
  410. startDate: '2024-01-15T11:07:54.174130-05:00'
  411. wasAssociatedWith:
  412. - identifier: RRID:SCR_019009
  413. name: DANDI Command Line Interface
  414. schemaKey: Software
  415. url: https://github.com/dandi/dandi-cli
  416. version: 0.59.0
  417. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  418. access:
  419. - schemaKey: AccessRequirements
  420. status: dandi:OpenAccess
  421. blobDateModified: '2024-01-15T11:07:11.037440-05:00'
  422. contentSize: 377683
  423. contentUrl:
  424. - https://api.dandiarchive.org/api/assets/aeb94cb9-cd3a-4e81-aa95-589a528e6b2c/download/
  425. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/4cb/e92/4cbe9248-6d7e-48c2-9e4e-7caedf7a81a6
  426. dateModified: '2024-01-15T11:07:54.931437-05:00'
  427. digest:
  428. dandi:dandi-etag: 07dffe39576ee4e875fedbf84ba3b60f-1
  429. dandi:sha2-256: 71c28b8c40267503476aeed76ed926bb33358393d146e47d38cb4bdd1af25bd4
  430. encodingFormat: video/mp4
  431. id: dandiasset:aeb94cb9-cd3a-4e81-aa95-589a528e6b2c
  432. identifier: aeb94cb9-cd3a-4e81-aa95-589a528e6b2c
  433. path: VideoStimulusSet/exp_motionset1_16.mp4
  434. schemaKey: Asset
  435. schemaVersion: 0.6.4
  436. wasGeneratedBy:
  437. - description: Metadata generated by DANDI cli
  438. endDate: '2024-01-15T11:07:54.931399-05:00'
  439. id: urn:uuid:41c5c324-109f-4725-8ebd-e75f7481ca6a
  440. name: Metadata generation
  441. schemaKey: Activity
  442. startDate: '2024-01-15T11:07:54.931399-05:00'
  443. wasAssociatedWith:
  444. - identifier: RRID:SCR_019009
  445. name: DANDI Command Line Interface
  446. schemaKey: Software
  447. url: https://github.com/dandi/dandi-cli
  448. version: 0.59.0
  449. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  450. access:
  451. - schemaKey: AccessRequirements
  452. status: dandi:OpenAccess
  453. blobDateModified: '2024-01-15T11:07:11.068424-05:00'
  454. contentSize: 378470
  455. contentUrl:
  456. - https://api.dandiarchive.org/api/assets/00ae6884-2b04-4c01-b5ea-5c09c4b30719/download/
  457. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/49f/b32/49fb327b-fb4d-495e-93a1-88d2c7eb3574
  458. dateModified: '2024-01-15T11:07:55.060390-05:00'
  459. digest:
  460. dandi:dandi-etag: a0ab2be75efc8a64bab67e4cfe66c24f-1
  461. dandi:sha2-256: 854478d5aa8bc04e3f7327fab4304b2a6434dea80e65faefa0e0275b961b03d9
  462. encodingFormat: video/mp4
  463. id: dandiasset:00ae6884-2b04-4c01-b5ea-5c09c4b30719
  464. identifier: 00ae6884-2b04-4c01-b5ea-5c09c4b30719
  465. path: VideoStimulusSet/exp_motionset1_17.mp4
  466. schemaKey: Asset
  467. schemaVersion: 0.6.4
  468. wasGeneratedBy:
  469. - description: Metadata generated by DANDI cli
  470. endDate: '2024-01-15T11:07:55.060356-05:00'
  471. id: urn:uuid:d24e5073-35bf-42b9-a825-00e79d5dc11a
  472. name: Metadata generation
  473. schemaKey: Activity
  474. startDate: '2024-01-15T11:07:55.060356-05:00'
  475. wasAssociatedWith:
  476. - identifier: RRID:SCR_019009
  477. name: DANDI Command Line Interface
  478. schemaKey: Software
  479. url: https://github.com/dandi/dandi-cli
  480. version: 0.59.0
  481. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  482. access:
  483. - schemaKey: AccessRequirements
  484. status: dandi:OpenAccess
  485. blobDateModified: '2024-01-15T11:07:11.092412-05:00'
  486. contentSize: 381625
  487. contentUrl:
  488. - https://api.dandiarchive.org/api/assets/0b05915e-6c52-453a-80f1-1e4c775c57d5/download/
  489. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/99f/233/99f2333b-daa6-47ec-aaa8-bc530ea17720
  490. dateModified: '2024-01-15T11:07:57.082615-05:00'
  491. digest:
  492. dandi:dandi-etag: 685483488a26aa201cd0310e4c075f79-1
  493. dandi:sha2-256: 0635f4c020ef0e4836e4e6c7c8616cc121b23c8ccf5d18d348717497a9bc9e5a
  494. encodingFormat: video/mp4
  495. id: dandiasset:0b05915e-6c52-453a-80f1-1e4c775c57d5
  496. identifier: 0b05915e-6c52-453a-80f1-1e4c775c57d5
  497. path: VideoStimulusSet/exp_motionset1_18.mp4
  498. schemaKey: Asset
  499. schemaVersion: 0.6.4
  500. wasGeneratedBy:
  501. - description: Metadata generated by DANDI cli
  502. endDate: '2024-01-15T11:07:57.082585-05:00'
  503. id: urn:uuid:563b3da6-4e07-4bb9-8117-3e71bbc1eb49
  504. name: Metadata generation
  505. schemaKey: Activity
  506. startDate: '2024-01-15T11:07:57.082585-05:00'
  507. wasAssociatedWith:
  508. - identifier: RRID:SCR_019009
  509. name: DANDI Command Line Interface
  510. schemaKey: Software
  511. url: https://github.com/dandi/dandi-cli
  512. version: 0.59.0
  513. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  514. access:
  515. - schemaKey: AccessRequirements
  516. status: dandi:OpenAccess
  517. blobDateModified: '2024-01-15T11:07:11.139389-05:00'
  518. contentSize: 379981
  519. contentUrl:
  520. - https://api.dandiarchive.org/api/assets/11cc2ee9-fd0a-4bd1-8056-8637d3694fef/download/
  521. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/21c/9e7/21c9e76c-6ecd-4e28-821c-0a8dd0755626
  522. dateModified: '2024-01-15T11:07:58.141135-05:00'
  523. digest:
  524. dandi:dandi-etag: 475bcb380d8602755cb870908e8fd117-1
  525. dandi:sha2-256: 0bb37ebaaf18f63f52ceeb8a0bbd3f3f880e87c51e471fba4d7625e36d3884bb
  526. encodingFormat: video/mp4
  527. id: dandiasset:11cc2ee9-fd0a-4bd1-8056-8637d3694fef
  528. identifier: 11cc2ee9-fd0a-4bd1-8056-8637d3694fef
  529. path: VideoStimulusSet/exp_motionset1_19.mp4
  530. schemaKey: Asset
  531. schemaVersion: 0.6.4
  532. wasGeneratedBy:
  533. - description: Metadata generated by DANDI cli
  534. endDate: '2024-01-15T11:07:58.141101-05:00'
  535. id: urn:uuid:56440752-b570-43e4-b21a-7dde5107f940
  536. name: Metadata generation
  537. schemaKey: Activity
  538. startDate: '2024-01-15T11:07:58.141101-05:00'
  539. wasAssociatedWith:
  540. - identifier: RRID:SCR_019009
  541. name: DANDI Command Line Interface
  542. schemaKey: Software
  543. url: https://github.com/dandi/dandi-cli
  544. version: 0.59.0
  545. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  546. access:
  547. - schemaKey: AccessRequirements
  548. status: dandi:OpenAccess
  549. blobDateModified: '2024-01-15T11:07:11.158379-05:00'
  550. contentSize: 372100
  551. contentUrl:
  552. - https://api.dandiarchive.org/api/assets/9a12810a-145b-4b54-b82f-f8ed87f5575a/download/
  553. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/ed2/c8f/ed2c8fe5-1a97-4fbf-be01-a76973106529
  554. dateModified: '2024-01-15T11:07:58.582724-05:00'
  555. digest:
  556. dandi:dandi-etag: 74ecedd85070f5d5ed6efc8ab8bdf129-1
  557. dandi:sha2-256: 89d5e83771759f1c3537224278d44f02ec76bf73fea3b7a8db8f8216fa796d26
  558. encodingFormat: video/mp4
  559. id: dandiasset:9a12810a-145b-4b54-b82f-f8ed87f5575a
  560. identifier: 9a12810a-145b-4b54-b82f-f8ed87f5575a
  561. path: VideoStimulusSet/exp_motionset1_2.mp4
  562. schemaKey: Asset
  563. schemaVersion: 0.6.4
  564. wasGeneratedBy:
  565. - description: Metadata generated by DANDI cli
  566. endDate: '2024-01-15T11:07:58.582681-05:00'
  567. id: urn:uuid:9220f4a8-dbc9-4b4a-8283-a83a12aa6129
  568. name: Metadata generation
  569. schemaKey: Activity
  570. startDate: '2024-01-15T11:07:58.582681-05:00'
  571. wasAssociatedWith:
  572. - identifier: RRID:SCR_019009
  573. name: DANDI Command Line Interface
  574. schemaKey: Software
  575. url: https://github.com/dandi/dandi-cli
  576. version: 0.59.0
  577. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  578. access:
  579. - schemaKey: AccessRequirements
  580. status: dandi:OpenAccess
  581. blobDateModified: '2024-01-15T11:07:11.182367-05:00'
  582. contentSize: 381318
  583. contentUrl:
  584. - https://api.dandiarchive.org/api/assets/f31fa0e5-5b2c-4572-9fd9-e38db4f98fc0/download/
  585. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/cd9/8c0/cd98c029-48b7-4a2d-9829-2525f8da947a
  586. dateModified: '2024-01-15T11:07:59.217965-05:00'
  587. digest:
  588. dandi:dandi-etag: 6f3e172e624f8bf78a25b00efe22e4ff-1
  589. dandi:sha2-256: e3fe167c3d2a5ef20bcda511c866cc107d0b974bde57479b4ae67cd820a473ae
  590. encodingFormat: video/mp4
  591. id: dandiasset:f31fa0e5-5b2c-4572-9fd9-e38db4f98fc0
  592. identifier: f31fa0e5-5b2c-4572-9fd9-e38db4f98fc0
  593. path: VideoStimulusSet/exp_motionset1_20.mp4
  594. schemaKey: Asset
  595. schemaVersion: 0.6.4
  596. wasGeneratedBy:
  597. - description: Metadata generated by DANDI cli
  598. endDate: '2024-01-15T11:07:59.217934-05:00'
  599. id: urn:uuid:cc5d4b1b-964b-44e4-841d-3379bfc7efa9
  600. name: Metadata generation
  601. schemaKey: Activity
  602. startDate: '2024-01-15T11:07:59.217934-05:00'
  603. wasAssociatedWith:
  604. - identifier: RRID:SCR_019009
  605. name: DANDI Command Line Interface
  606. schemaKey: Software
  607. url: https://github.com/dandi/dandi-cli
  608. version: 0.59.0
  609. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  610. access:
  611. - schemaKey: AccessRequirements
  612. status: dandi:OpenAccess
  613. blobDateModified: '2024-01-15T11:07:11.200358-05:00'
  614. contentSize: 382402
  615. contentUrl:
  616. - https://api.dandiarchive.org/api/assets/6bf16ab5-eea6-4f8a-9b7e-f908e4123159/download/
  617. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/336/d71/336d71da-2871-41d1-a8e1-8caf1dbc28d1
  618. dateModified: '2024-01-15T11:07:59.384964-05:00'
  619. digest:
  620. dandi:dandi-etag: 55d9cdddf823e4cc472f38bebd90f65d-1
  621. dandi:sha2-256: 098ad68fe764a9d18ae16f77e0baef548d0735834a46d94bf9fefbb151a23830
  622. encodingFormat: video/mp4
  623. id: dandiasset:6bf16ab5-eea6-4f8a-9b7e-f908e4123159
  624. identifier: 6bf16ab5-eea6-4f8a-9b7e-f908e4123159
  625. path: VideoStimulusSet/exp_motionset1_21.mp4
  626. schemaKey: Asset
  627. schemaVersion: 0.6.4
  628. wasGeneratedBy:
  629. - description: Metadata generated by DANDI cli
  630. endDate: '2024-01-15T11:07:59.384924-05:00'
  631. id: urn:uuid:4787672e-f7dc-47d1-bde2-520fac32561e
  632. name: Metadata generation
  633. schemaKey: Activity
  634. startDate: '2024-01-15T11:07:59.384924-05:00'
  635. wasAssociatedWith:
  636. - identifier: RRID:SCR_019009
  637. name: DANDI Command Line Interface
  638. schemaKey: Software
  639. url: https://github.com/dandi/dandi-cli
  640. version: 0.59.0
  641. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  642. access:
  643. - schemaKey: AccessRequirements
  644. status: dandi:OpenAccess
  645. blobDateModified: '2024-01-15T11:07:11.212352-05:00'
  646. contentSize: 384848
  647. contentUrl:
  648. - https://api.dandiarchive.org/api/assets/e08744cd-36f8-42cf-ad85-8bd78dd7b2a5/download/
  649. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/5c1/805/5c180595-7fff-421a-9fcd-0150f019080d
  650. dateModified: '2024-01-15T11:08:01.184968-05:00'
  651. digest:
  652. dandi:dandi-etag: e571dbb4c94d717796ce197f19339248-1
  653. dandi:sha2-256: 6ec2b6ce9c7e1a77ad0d3c9ff0390c2c5898fb91054b4bc7430d75a5791ad97a
  654. encodingFormat: video/mp4
  655. id: dandiasset:e08744cd-36f8-42cf-ad85-8bd78dd7b2a5
  656. identifier: e08744cd-36f8-42cf-ad85-8bd78dd7b2a5
  657. path: VideoStimulusSet/exp_motionset1_22.mp4
  658. schemaKey: Asset
  659. schemaVersion: 0.6.4
  660. wasGeneratedBy:
  661. - description: Metadata generated by DANDI cli
  662. endDate: '2024-01-15T11:08:01.184929-05:00'
  663. id: urn:uuid:3f25a6b5-d8f0-4595-8781-5b1237ff36d1
  664. name: Metadata generation
  665. schemaKey: Activity
  666. startDate: '2024-01-15T11:08:01.184929-05:00'
  667. wasAssociatedWith:
  668. - identifier: RRID:SCR_019009
  669. name: DANDI Command Line Interface
  670. schemaKey: Software
  671. url: https://github.com/dandi/dandi-cli
  672. version: 0.59.0
  673. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  674. access:
  675. - schemaKey: AccessRequirements
  676. status: dandi:OpenAccess
  677. blobDateModified: '2024-01-15T11:07:11.232342-05:00'
  678. contentSize: 384550
  679. contentUrl:
  680. - https://api.dandiarchive.org/api/assets/334a8542-b1cc-453a-a238-f71eed8b9389/download/
  681. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/50b/cd9/50bcd9e1-9305-4931-8d08-83a3534a3cec
  682. dateModified: '2024-01-15T11:08:02.576391-05:00'
  683. digest:
  684. dandi:dandi-etag: 9bd5b149ef24b7675773037b392689de-1
  685. dandi:sha2-256: 81d0d3e75a4d415e83f91596bb11bc315aeca7015dc7e10905667e6d326721ed
  686. encodingFormat: video/mp4
  687. id: dandiasset:334a8542-b1cc-453a-a238-f71eed8b9389
  688. identifier: 334a8542-b1cc-453a-a238-f71eed8b9389
  689. path: VideoStimulusSet/exp_motionset1_23.mp4
  690. schemaKey: Asset
  691. schemaVersion: 0.6.4
  692. wasGeneratedBy:
  693. - description: Metadata generated by DANDI cli
  694. endDate: '2024-01-15T11:08:02.576347-05:00'
  695. id: urn:uuid:c35ae738-d934-4a4a-a9d8-182843e4c7d5
  696. name: Metadata generation
  697. schemaKey: Activity
  698. startDate: '2024-01-15T11:08:02.576347-05:00'
  699. wasAssociatedWith:
  700. - identifier: RRID:SCR_019009
  701. name: DANDI Command Line Interface
  702. schemaKey: Software
  703. url: https://github.com/dandi/dandi-cli
  704. version: 0.59.0
  705. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  706. access:
  707. - schemaKey: AccessRequirements
  708. status: dandi:OpenAccess
  709. blobDateModified: '2024-01-15T11:07:11.276320-05:00'
  710. contentSize: 384978
  711. contentUrl:
  712. - https://api.dandiarchive.org/api/assets/92dbff24-a175-4661-9f24-d3f46d5754b2/download/
  713. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/f86/603/f86603ef-c725-413e-84f2-87bea8f9dd43
  714. dateModified: '2024-01-15T11:08:02.633488-05:00'
  715. digest:
  716. dandi:dandi-etag: a797164bdfede0fb483d5a33c4ada086-1
  717. dandi:sha2-256: 59904268752c7ea92c35fb2966a0790783ffd0dbca7fb51a7b90e5ea46602c49
  718. encodingFormat: video/mp4
  719. id: dandiasset:92dbff24-a175-4661-9f24-d3f46d5754b2
  720. identifier: 92dbff24-a175-4661-9f24-d3f46d5754b2
  721. path: VideoStimulusSet/exp_motionset1_24.mp4
  722. schemaKey: Asset
  723. schemaVersion: 0.6.4
  724. wasGeneratedBy:
  725. - description: Metadata generated by DANDI cli
  726. endDate: '2024-01-15T11:08:02.633457-05:00'
  727. id: urn:uuid:6be5a294-ce26-4611-8965-5c718054e1af
  728. name: Metadata generation
  729. schemaKey: Activity
  730. startDate: '2024-01-15T11:08:02.633457-05:00'
  731. wasAssociatedWith:
  732. - identifier: RRID:SCR_019009
  733. name: DANDI Command Line Interface
  734. schemaKey: Software
  735. url: https://github.com/dandi/dandi-cli
  736. version: 0.59.0
  737. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  738. access:
  739. - schemaKey: AccessRequirements
  740. status: dandi:OpenAccess
  741. blobDateModified: '2024-01-15T11:07:11.319299-05:00'
  742. contentSize: 384017
  743. contentUrl:
  744. - https://api.dandiarchive.org/api/assets/d53a5dbe-4bef-4f33-b31f-fff909e3e946/download/
  745. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/4b0/bf0/4b0bf0da-4a0f-4480-9f0f-cca3f680bdc1
  746. dateModified: '2024-01-15T11:08:03.574452-05:00'
  747. digest:
  748. dandi:dandi-etag: 887cb7a410d4ba8153b0c0905353b989-1
  749. dandi:sha2-256: a0de043e964c24d94250705c44ffac943e75c3e22d76ee96ca9a1b1ee33a906c
  750. encodingFormat: video/mp4
  751. id: dandiasset:d53a5dbe-4bef-4f33-b31f-fff909e3e946
  752. identifier: d53a5dbe-4bef-4f33-b31f-fff909e3e946
  753. path: VideoStimulusSet/exp_motionset1_25.mp4
  754. schemaKey: Asset
  755. schemaVersion: 0.6.4
  756. wasGeneratedBy:
  757. - description: Metadata generated by DANDI cli
  758. endDate: '2024-01-15T11:08:03.574408-05:00'
  759. id: urn:uuid:a76962f6-5121-47b0-97c3-5bb85e1fb5fc
  760. name: Metadata generation
  761. schemaKey: Activity
  762. startDate: '2024-01-15T11:08:03.574408-05:00'
  763. wasAssociatedWith:
  764. - identifier: RRID:SCR_019009
  765. name: DANDI Command Line Interface
  766. schemaKey: Software
  767. url: https://github.com/dandi/dandi-cli
  768. version: 0.59.0
  769. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  770. access:
  771. - schemaKey: AccessRequirements
  772. status: dandi:OpenAccess
  773. blobDateModified: '2024-01-15T11:07:11.369274-05:00'
  774. contentSize: 388465
  775. contentUrl:
  776. - https://api.dandiarchive.org/api/assets/67b8b715-7a99-4e82-a926-c96e90472ad3/download/
  777. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/3a8/e97/3a8e97ba-d7e4-4fe6-bee3-1a14f0c9fc05
  778. dateModified: '2024-01-15T11:08:03.813937-05:00'
  779. digest:
  780. dandi:dandi-etag: f16253ca2b7d23c11f8945dc033bc686-1
  781. dandi:sha2-256: 40c0d87e2ed74ff64cd777ece45fa22130f2e01d3191ca40e0c742d5ce84435e
  782. encodingFormat: video/mp4
  783. id: dandiasset:67b8b715-7a99-4e82-a926-c96e90472ad3
  784. identifier: 67b8b715-7a99-4e82-a926-c96e90472ad3
  785. path: VideoStimulusSet/exp_motionset1_26.mp4
  786. schemaKey: Asset
  787. schemaVersion: 0.6.4
  788. wasGeneratedBy:
  789. - description: Metadata generated by DANDI cli
  790. endDate: '2024-01-15T11:08:03.813897-05:00'
  791. id: urn:uuid:8238359d-f928-45f8-bcd9-5c5ccbb49edd
  792. name: Metadata generation
  793. schemaKey: Activity
  794. startDate: '2024-01-15T11:08:03.813897-05:00'
  795. wasAssociatedWith:
  796. - identifier: RRID:SCR_019009
  797. name: DANDI Command Line Interface
  798. schemaKey: Software
  799. url: https://github.com/dandi/dandi-cli
  800. version: 0.59.0
  801. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  802. access:
  803. - schemaKey: AccessRequirements
  804. status: dandi:OpenAccess
  805. blobDateModified: '2024-01-15T11:07:11.392262-05:00'
  806. contentSize: 378884
  807. contentUrl:
  808. - https://api.dandiarchive.org/api/assets/e2c0ecdb-cbef-44cc-84da-f4d950a9a885/download/
  809. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/f8d/797/f8d79705-5307-42f4-a997-aea4b70e83d0
  810. dateModified: '2024-01-15T11:08:04.724418-05:00'
  811. digest:
  812. dandi:dandi-etag: e0fb968c1c426ab2bdc6ba6c0ea551f3-1
  813. dandi:sha2-256: 9e4cf5edd043482c1d468c3e7faedf6d76b71ac3f020ad2d2cc5fda8a5fb3f6d
  814. encodingFormat: video/mp4
  815. id: dandiasset:e2c0ecdb-cbef-44cc-84da-f4d950a9a885
  816. identifier: e2c0ecdb-cbef-44cc-84da-f4d950a9a885
  817. path: VideoStimulusSet/exp_motionset1_27.mp4
  818. schemaKey: Asset
  819. schemaVersion: 0.6.4
  820. wasGeneratedBy:
  821. - description: Metadata generated by DANDI cli
  822. endDate: '2024-01-15T11:08:04.724278-05:00'
  823. id: urn:uuid:745457aa-0f44-4e1f-9a98-5ad3a7b1c466
  824. name: Metadata generation
  825. schemaKey: Activity
  826. startDate: '2024-01-15T11:08:04.724278-05:00'
  827. wasAssociatedWith:
  828. - identifier: RRID:SCR_019009
  829. name: DANDI Command Line Interface
  830. schemaKey: Software
  831. url: https://github.com/dandi/dandi-cli
  832. version: 0.59.0
  833. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  834. access:
  835. - schemaKey: AccessRequirements
  836. status: dandi:OpenAccess
  837. blobDateModified: '2024-01-15T11:07:11.451233-05:00'
  838. contentSize: 382671
  839. contentUrl:
  840. - https://api.dandiarchive.org/api/assets/a3c63e9d-fe12-4a88-9c46-ed7513bb2819/download/
  841. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/fbe/1f4/fbe1f483-ceba-4f24-bddf-b03ec2591627
  842. dateModified: '2024-01-15T11:08:07.124863-05:00'
  843. digest:
  844. dandi:dandi-etag: 67c1db3912b30a401cd97c5a4d1d5654-1
  845. dandi:sha2-256: 2dd945dc0f264a93ea592a8a3b18beb4f7a74a7dcbd36fe0ba04b58641721ac1
  846. encodingFormat: video/mp4
  847. id: dandiasset:a3c63e9d-fe12-4a88-9c46-ed7513bb2819
  848. identifier: a3c63e9d-fe12-4a88-9c46-ed7513bb2819
  849. path: VideoStimulusSet/exp_motionset1_29.mp4
  850. schemaKey: Asset
  851. schemaVersion: 0.6.4
  852. wasGeneratedBy:
  853. - description: Metadata generated by DANDI cli
  854. endDate: '2024-01-15T11:08:07.124819-05:00'
  855. id: urn:uuid:6adf80d9-719b-4525-afe6-f0c469620a39
  856. name: Metadata generation
  857. schemaKey: Activity
  858. startDate: '2024-01-15T11:08:07.124819-05:00'
  859. wasAssociatedWith:
  860. - identifier: RRID:SCR_019009
  861. name: DANDI Command Line Interface
  862. schemaKey: Software
  863. url: https://github.com/dandi/dandi-cli
  864. version: 0.59.0
  865. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  866. access:
  867. - schemaKey: AccessRequirements
  868. status: dandi:OpenAccess
  869. blobDateModified: '2024-01-15T11:07:11.471223-05:00'
  870. contentSize: 376163
  871. contentUrl:
  872. - https://api.dandiarchive.org/api/assets/88897094-f44c-40d5-a319-7de607bb5042/download/
  873. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/032/56f/03256f6b-3936-40d5-89d9-b703fa6f90e3
  874. dateModified: '2024-01-15T11:08:07.859114-05:00'
  875. digest:
  876. dandi:dandi-etag: b341ed89989989af50ab7131cdf9079f-1
  877. dandi:sha2-256: edf124758785464e24dc859e25110878eb0e03208ecf319bb0278a8795728d0a
  878. encodingFormat: video/mp4
  879. id: dandiasset:88897094-f44c-40d5-a319-7de607bb5042
  880. identifier: 88897094-f44c-40d5-a319-7de607bb5042
  881. path: VideoStimulusSet/exp_motionset1_3.mp4
  882. schemaKey: Asset
  883. schemaVersion: 0.6.4
  884. wasGeneratedBy:
  885. - description: Metadata generated by DANDI cli
  886. endDate: '2024-01-15T11:08:07.859067-05:00'
  887. id: urn:uuid:ed14656a-a81b-4149-b465-ec4d638bda1b
  888. name: Metadata generation
  889. schemaKey: Activity
  890. startDate: '2024-01-15T11:08:07.859067-05:00'
  891. wasAssociatedWith:
  892. - identifier: RRID:SCR_019009
  893. name: DANDI Command Line Interface
  894. schemaKey: Software
  895. url: https://github.com/dandi/dandi-cli
  896. version: 0.59.0
  897. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  898. access:
  899. - schemaKey: AccessRequirements
  900. status: dandi:OpenAccess
  901. blobDateModified: '2024-01-15T11:07:11.515201-05:00'
  902. contentSize: 384723
  903. contentUrl:
  904. - https://api.dandiarchive.org/api/assets/2a3bb17b-9d9d-414c-92bb-f9a26a15d540/download/
  905. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/271/01b/27101b6f-6b40-4e51-b41d-d2299e9eb5c1
  906. dateModified: '2024-01-15T11:08:08.075509-05:00'
  907. digest:
  908. dandi:dandi-etag: b0b029b54693db07b0d0473edf4556ae-1
  909. dandi:sha2-256: 93e3e1a70e55576d1d1365e8ebae4fe2eb981772edc30a6d302e609373876e27
  910. encodingFormat: video/mp4
  911. id: dandiasset:2a3bb17b-9d9d-414c-92bb-f9a26a15d540
  912. identifier: 2a3bb17b-9d9d-414c-92bb-f9a26a15d540
  913. path: VideoStimulusSet/exp_motionset1_30.mp4
  914. schemaKey: Asset
  915. schemaVersion: 0.6.4
  916. wasGeneratedBy:
  917. - description: Metadata generated by DANDI cli
  918. endDate: '2024-01-15T11:08:08.075476-05:00'
  919. id: urn:uuid:f09df1e3-e0ac-4861-9c2a-d00d12aee402
  920. name: Metadata generation
  921. schemaKey: Activity
  922. startDate: '2024-01-15T11:08:08.075476-05:00'
  923. wasAssociatedWith:
  924. - identifier: RRID:SCR_019009
  925. name: DANDI Command Line Interface
  926. schemaKey: Software
  927. url: https://github.com/dandi/dandi-cli
  928. version: 0.59.0
  929. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  930. access:
  931. - schemaKey: AccessRequirements
  932. status: dandi:OpenAccess
  933. blobDateModified: '2024-01-15T11:07:11.540188-05:00'
  934. contentSize: 380062
  935. contentUrl:
  936. - https://api.dandiarchive.org/api/assets/b1704aba-f6ff-44a2-ac0d-ff6ec4cc97e4/download/
  937. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/3ef/1f9/3ef1f9bf-926a-482e-a746-43013446dd93
  938. dateModified: '2024-01-15T11:08:08.744737-05:00'
  939. digest:
  940. dandi:dandi-etag: 595babd766583b2daff09b800932b9bf-1
  941. dandi:sha2-256: 42426bfa4268c22395d9a00e3369dd6df1f1a816d659f45389179576e1920441
  942. encodingFormat: video/mp4
  943. id: dandiasset:b1704aba-f6ff-44a2-ac0d-ff6ec4cc97e4
  944. identifier: b1704aba-f6ff-44a2-ac0d-ff6ec4cc97e4
  945. path: VideoStimulusSet/exp_motionset1_31.mp4
  946. schemaKey: Asset
  947. schemaVersion: 0.6.4
  948. wasGeneratedBy:
  949. - description: Metadata generated by DANDI cli
  950. endDate: '2024-01-15T11:08:08.744699-05:00'
  951. id: urn:uuid:c454f937-136a-4751-9f89-12ebe9bd54c2
  952. name: Metadata generation
  953. schemaKey: Activity
  954. startDate: '2024-01-15T11:08:08.744699-05:00'
  955. wasAssociatedWith:
  956. - identifier: RRID:SCR_019009
  957. name: DANDI Command Line Interface
  958. schemaKey: Software
  959. url: https://github.com/dandi/dandi-cli
  960. version: 0.59.0
  961. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  962. access:
  963. - schemaKey: AccessRequirements
  964. status: dandi:OpenAccess
  965. blobDateModified: '2024-01-15T11:07:11.423247-05:00'
  966. contentSize: 374828
  967. contentUrl:
  968. - https://api.dandiarchive.org/api/assets/8120fa1e-fa27-447f-82b0-283a1c6a0bd3/download/
  969. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/a98/8a8/a988a8b1-9417-4bed-94a5-2c578841751f
  970. dateModified: '2024-01-15T11:08:06.848618-05:00'
  971. digest:
  972. dandi:dandi-etag: 5a12deec48b791cda57eab10915bd4dc-1
  973. dandi:sha2-256: ab7d799cfada6ded0a170e2caf781e1836d07542228552bcfc705ac498c46788
  974. encodingFormat: video/mp4
  975. id: dandiasset:8120fa1e-fa27-447f-82b0-283a1c6a0bd3
  976. identifier: 8120fa1e-fa27-447f-82b0-283a1c6a0bd3
  977. path: VideoStimulusSet/exp_motionset1_28.mp4
  978. schemaKey: Asset
  979. schemaVersion: 0.6.4
  980. wasGeneratedBy:
  981. - description: Metadata generated by DANDI cli
  982. endDate: '2024-01-15T11:08:06.848585-05:00'
  983. id: urn:uuid:09d3e702-1f24-4de1-a4e0-9fe2b3ed9bf6
  984. name: Metadata generation
  985. schemaKey: Activity
  986. startDate: '2024-01-15T11:08:06.848585-05:00'
  987. wasAssociatedWith:
  988. - identifier: RRID:SCR_019009
  989. name: DANDI Command Line Interface
  990. schemaKey: Software
  991. url: https://github.com/dandi/dandi-cli
  992. version: 0.59.0
  993. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  994. access:
  995. - schemaKey: AccessRequirements
  996. status: dandi:OpenAccess
  997. blobDateModified: '2024-01-15T11:07:11.557180-05:00'
  998. contentSize: 384481
  999. contentUrl:
  1000. - https://api.dandiarchive.org/api/assets/62e0a1ed-cc2a-48b0-84d7-b568db38278a/download/
  1001. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/36d/28c/36d28c69-8374-4c81-b9c9-10d5f0fb4784
  1002. dateModified: '2024-01-15T11:08:11.078225-05:00'
  1003. digest:
  1004. dandi:dandi-etag: 2009a699750faed364b1410ca55d479a-1
  1005. dandi:sha2-256: c7af6fad4776a719b5ff0f644ba00727fac1c65ef972e4ed7c90e176975ac571
  1006. encodingFormat: video/mp4
  1007. id: dandiasset:62e0a1ed-cc2a-48b0-84d7-b568db38278a
  1008. identifier: 62e0a1ed-cc2a-48b0-84d7-b568db38278a
  1009. path: VideoStimulusSet/exp_motionset1_32.mp4
  1010. schemaKey: Asset
  1011. schemaVersion: 0.6.4
  1012. wasGeneratedBy:
  1013. - description: Metadata generated by DANDI cli
  1014. endDate: '2024-01-15T11:08:11.078182-05:00'
  1015. id: urn:uuid:cbe78e94-05fc-4ae2-940b-9e82ec3c0d3f
  1016. name: Metadata generation
  1017. schemaKey: Activity
  1018. startDate: '2024-01-15T11:08:11.078182-05:00'
  1019. wasAssociatedWith:
  1020. - identifier: RRID:SCR_019009
  1021. name: DANDI Command Line Interface
  1022. schemaKey: Software
  1023. url: https://github.com/dandi/dandi-cli
  1024. version: 0.59.0
  1025. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1026. access:
  1027. - schemaKey: AccessRequirements
  1028. status: dandi:OpenAccess
  1029. blobDateModified: '2024-01-15T11:07:11.596160-05:00'
  1030. contentSize: 384857
  1031. contentUrl:
  1032. - https://api.dandiarchive.org/api/assets/f10f763a-f88e-455a-b662-ca738b792077/download/
  1033. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/a3e/621/a3e62110-52bb-47ff-b06d-fda0027e2bde
  1034. dateModified: '2024-01-15T11:08:11.637119-05:00'
  1035. digest:
  1036. dandi:dandi-etag: 2bc0ab14dfd04ed65069fcf85efcc5c7-1
  1037. dandi:sha2-256: f031e39a390b661f3228dca23b36565bdffaab8c1f14d23256b1308287a0ea56
  1038. encodingFormat: video/mp4
  1039. id: dandiasset:f10f763a-f88e-455a-b662-ca738b792077
  1040. identifier: f10f763a-f88e-455a-b662-ca738b792077
  1041. path: VideoStimulusSet/exp_motionset1_34.mp4
  1042. schemaKey: Asset
  1043. schemaVersion: 0.6.4
  1044. wasGeneratedBy:
  1045. - description: Metadata generated by DANDI cli
  1046. endDate: '2024-01-15T11:08:11.637015-05:00'
  1047. id: urn:uuid:c4ef4f3d-99e3-429f-a13f-346f898e9899
  1048. name: Metadata generation
  1049. schemaKey: Activity
  1050. startDate: '2024-01-15T11:08:11.637015-05:00'
  1051. wasAssociatedWith:
  1052. - identifier: RRID:SCR_019009
  1053. name: DANDI Command Line Interface
  1054. schemaKey: Software
  1055. url: https://github.com/dandi/dandi-cli
  1056. version: 0.59.0
  1057. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1058. access:
  1059. - schemaKey: AccessRequirements
  1060. status: dandi:OpenAccess
  1061. blobDateModified: '2024-01-15T11:07:11.585166-05:00'
  1062. contentSize: 382688
  1063. contentUrl:
  1064. - https://api.dandiarchive.org/api/assets/4765d2bb-2dc1-4882-b336-72c7e8590237/download/
  1065. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/64a/ea1/64aea1b3-3e8b-4781-83d6-ddad0051e349
  1066. dateModified: '2024-01-15T11:08:11.708700-05:00'
  1067. digest:
  1068. dandi:dandi-etag: e79779fbbdd724ce7e3ef6a1e308a7d0-1
  1069. dandi:sha2-256: eae46cdf8a200bbdf475e6b4574fbe6ccdaba190649beb57c5ad46f2af875d39
  1070. encodingFormat: video/mp4
  1071. id: dandiasset:4765d2bb-2dc1-4882-b336-72c7e8590237
  1072. identifier: 4765d2bb-2dc1-4882-b336-72c7e8590237
  1073. path: VideoStimulusSet/exp_motionset1_33.mp4
  1074. schemaKey: Asset
  1075. schemaVersion: 0.6.4
  1076. wasGeneratedBy:
  1077. - description: Metadata generated by DANDI cli
  1078. endDate: '2024-01-15T11:08:11.708654-05:00'
  1079. id: urn:uuid:b2581be6-eb66-4320-b6ba-6c3b83ba7061
  1080. name: Metadata generation
  1081. schemaKey: Activity
  1082. startDate: '2024-01-15T11:08:11.708654-05:00'
  1083. wasAssociatedWith:
  1084. - identifier: RRID:SCR_019009
  1085. name: DANDI Command Line Interface
  1086. schemaKey: Software
  1087. url: https://github.com/dandi/dandi-cli
  1088. version: 0.59.0
  1089. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1090. access:
  1091. - schemaKey: AccessRequirements
  1092. status: dandi:OpenAccess
  1093. blobDateModified: '2024-01-15T11:07:11.631143-05:00'
  1094. contentSize: 384875
  1095. contentUrl:
  1096. - https://api.dandiarchive.org/api/assets/dc7f272e-a93c-4230-b7f6-e5562fc23fb0/download/
  1097. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/aad/576/aad5761b-4829-400e-8eb9-a9a9cb66dbfb
  1098. dateModified: '2024-01-15T11:08:12.189924-05:00'
  1099. digest:
  1100. dandi:dandi-etag: e9bee63e8f4e75d419d1ccf5e6bbc241-1
  1101. dandi:sha2-256: 851de5c38fc4cb497580f730790ff85e94de299672601655307bef28ae801d56
  1102. encodingFormat: video/mp4
  1103. id: dandiasset:dc7f272e-a93c-4230-b7f6-e5562fc23fb0
  1104. identifier: dc7f272e-a93c-4230-b7f6-e5562fc23fb0
  1105. path: VideoStimulusSet/exp_motionset1_35.mp4
  1106. schemaKey: Asset
  1107. schemaVersion: 0.6.4
  1108. wasGeneratedBy:
  1109. - description: Metadata generated by DANDI cli
  1110. endDate: '2024-01-15T11:08:12.189876-05:00'
  1111. id: urn:uuid:74a836af-b131-45ab-9be9-20218aaed5fc
  1112. name: Metadata generation
  1113. schemaKey: Activity
  1114. startDate: '2024-01-15T11:08:12.189876-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.0
  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. blobDateModified: '2024-01-15T11:07:11.655131-05:00'
  1126. contentSize: 385060
  1127. contentUrl:
  1128. - https://api.dandiarchive.org/api/assets/8009a8a6-b668-4ae4-ac6f-e76c1e036ed0/download/
  1129. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/f60/8ef/f608ef8c-28de-4cd5-8129-f8b94302fdf6
  1130. dateModified: '2024-01-15T11:08:13.374309-05:00'
  1131. digest:
  1132. dandi:dandi-etag: 588857b41283ee9f8b7af6c0c9888d01-1
  1133. dandi:sha2-256: 143a021e56ee50cdefcf7c770165d8f39a3aeced97463261c4ee4d50f1d68696
  1134. encodingFormat: video/mp4
  1135. id: dandiasset:8009a8a6-b668-4ae4-ac6f-e76c1e036ed0
  1136. identifier: 8009a8a6-b668-4ae4-ac6f-e76c1e036ed0
  1137. path: VideoStimulusSet/exp_motionset1_36.mp4
  1138. schemaKey: Asset
  1139. schemaVersion: 0.6.4
  1140. wasGeneratedBy:
  1141. - description: Metadata generated by DANDI cli
  1142. endDate: '2024-01-15T11:08:13.374268-05:00'
  1143. id: urn:uuid:ff418b94-2982-4cf6-a547-3b1ac600c252
  1144. name: Metadata generation
  1145. schemaKey: Activity
  1146. startDate: '2024-01-15T11:08:13.374268-05:00'
  1147. wasAssociatedWith:
  1148. - identifier: RRID:SCR_019009
  1149. name: DANDI Command Line Interface
  1150. schemaKey: Software
  1151. url: https://github.com/dandi/dandi-cli
  1152. version: 0.59.0
  1153. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1154. access:
  1155. - schemaKey: AccessRequirements
  1156. status: dandi:OpenAccess
  1157. blobDateModified: '2024-01-15T11:07:11.672122-05:00'
  1158. contentSize: 384281
  1159. contentUrl:
  1160. - https://api.dandiarchive.org/api/assets/81a59392-6ec3-4f1e-a951-8fa067bbde2b/download/
  1161. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/414/523/41452334-2c75-4d32-a1e7-50f265786e13
  1162. dateModified: '2024-01-15T11:08:15.131507-05:00'
  1163. digest:
  1164. dandi:dandi-etag: 4e9e03e02ee3e53c15c7ee4e4253a902-1
  1165. dandi:sha2-256: 8d0f75023c8cbccb10ceac380584c772011ae3edf94b082fafe2839cfa984591
  1166. encodingFormat: video/mp4
  1167. id: dandiasset:81a59392-6ec3-4f1e-a951-8fa067bbde2b
  1168. identifier: 81a59392-6ec3-4f1e-a951-8fa067bbde2b
  1169. path: VideoStimulusSet/exp_motionset1_37.mp4
  1170. schemaKey: Asset
  1171. schemaVersion: 0.6.4
  1172. wasGeneratedBy:
  1173. - description: Metadata generated by DANDI cli
  1174. endDate: '2024-01-15T11:08:15.131457-05:00'
  1175. id: urn:uuid:1facaa33-83a9-4cf6-ae4e-a02fed5dc544
  1176. name: Metadata generation
  1177. schemaKey: Activity
  1178. startDate: '2024-01-15T11:08:15.131457-05:00'
  1179. wasAssociatedWith:
  1180. - identifier: RRID:SCR_019009
  1181. name: DANDI Command Line Interface
  1182. schemaKey: Software
  1183. url: https://github.com/dandi/dandi-cli
  1184. version: 0.59.0
  1185. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1186. access:
  1187. - schemaKey: AccessRequirements
  1188. status: dandi:OpenAccess
  1189. blobDateModified: '2024-01-15T11:07:11.698109-05:00'
  1190. contentSize: 391524
  1191. contentUrl:
  1192. - https://api.dandiarchive.org/api/assets/2137f875-fefe-43c8-83fb-53228f20aa3f/download/
  1193. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/fdc/fef/fdcfefc6-2c8b-45f0-95d2-f548a8446b2a
  1194. dateModified: '2024-01-15T11:08:16.173534-05:00'
  1195. digest:
  1196. dandi:dandi-etag: 3e761a4cff02d81cbf30edd90699a7f5-1
  1197. dandi:sha2-256: 16eb9ebc45f3d3601e19d54a7d01444947a71d08650a577c7195bcd441bb39b4
  1198. encodingFormat: video/mp4
  1199. id: dandiasset:2137f875-fefe-43c8-83fb-53228f20aa3f
  1200. identifier: 2137f875-fefe-43c8-83fb-53228f20aa3f
  1201. path: VideoStimulusSet/exp_motionset1_38.mp4
  1202. schemaKey: Asset
  1203. schemaVersion: 0.6.4
  1204. wasGeneratedBy:
  1205. - description: Metadata generated by DANDI cli
  1206. endDate: '2024-01-15T11:08:16.173495-05:00'
  1207. id: urn:uuid:646f132f-9fb6-4234-81c1-4f8b2afe1611
  1208. name: Metadata generation
  1209. schemaKey: Activity
  1210. startDate: '2024-01-15T11:08:16.173495-05:00'
  1211. wasAssociatedWith:
  1212. - identifier: RRID:SCR_019009
  1213. name: DANDI Command Line Interface
  1214. schemaKey: Software
  1215. url: https://github.com/dandi/dandi-cli
  1216. version: 0.59.0
  1217. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1218. access:
  1219. - schemaKey: AccessRequirements
  1220. status: dandi:OpenAccess
  1221. blobDateModified: '2024-01-15T11:07:11.738089-05:00'
  1222. contentSize: 378817
  1223. contentUrl:
  1224. - https://api.dandiarchive.org/api/assets/0653a9b4-6fcc-4bbd-805b-057154fdbe8e/download/
  1225. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/dd4/464/dd446489-ef39-4c91-8d3f-8bbf1d1ef328
  1226. dateModified: '2024-01-15T11:08:16.376851-05:00'
  1227. digest:
  1228. dandi:dandi-etag: 1e137b0fb6a857aff07d01c68612c12a-1
  1229. dandi:sha2-256: 12edc63df6d295e73b842fd92a158baf7fda91583b5cfa68259f4b392b7395a8
  1230. encodingFormat: video/mp4
  1231. id: dandiasset:0653a9b4-6fcc-4bbd-805b-057154fdbe8e
  1232. identifier: 0653a9b4-6fcc-4bbd-805b-057154fdbe8e
  1233. path: VideoStimulusSet/exp_motionset1_39.mp4
  1234. schemaKey: Asset
  1235. schemaVersion: 0.6.4
  1236. wasGeneratedBy:
  1237. - description: Metadata generated by DANDI cli
  1238. endDate: '2024-01-15T11:08:16.376812-05:00'
  1239. id: urn:uuid:5aa7f3f8-59d9-4809-8658-c3886a6e9552
  1240. name: Metadata generation
  1241. schemaKey: Activity
  1242. startDate: '2024-01-15T11:08:16.376812-05:00'
  1243. wasAssociatedWith:
  1244. - identifier: RRID:SCR_019009
  1245. name: DANDI Command Line Interface
  1246. schemaKey: Software
  1247. url: https://github.com/dandi/dandi-cli
  1248. version: 0.59.0
  1249. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1250. access:
  1251. - schemaKey: AccessRequirements
  1252. status: dandi:OpenAccess
  1253. blobDateModified: '2024-01-15T11:07:11.756080-05:00'
  1254. contentSize: 378471
  1255. contentUrl:
  1256. - https://api.dandiarchive.org/api/assets/4674164f-1562-4def-8334-8658c1266b0d/download/
  1257. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/82b/942/82b94201-6b6d-46d2-9c2f-cb4520c38a34
  1258. dateModified: '2024-01-15T11:08:16.801166-05:00'
  1259. digest:
  1260. dandi:dandi-etag: 5c43be5e4902b889693dd7a8d9583595-1
  1261. dandi:sha2-256: 09c8b4ddf9edd52a29124dc1b29b9b39f26fda32653f8a79e5c37fa825b67c49
  1262. encodingFormat: video/mp4
  1263. id: dandiasset:4674164f-1562-4def-8334-8658c1266b0d
  1264. identifier: 4674164f-1562-4def-8334-8658c1266b0d
  1265. path: VideoStimulusSet/exp_motionset1_4.mp4
  1266. schemaKey: Asset
  1267. schemaVersion: 0.6.4
  1268. wasGeneratedBy:
  1269. - description: Metadata generated by DANDI cli
  1270. endDate: '2024-01-15T11:08:16.801123-05:00'
  1271. id: urn:uuid:936502fa-7dff-4437-b784-65bb05c33600
  1272. name: Metadata generation
  1273. schemaKey: Activity
  1274. startDate: '2024-01-15T11:08:16.801123-05:00'
  1275. wasAssociatedWith:
  1276. - identifier: RRID:SCR_019009
  1277. name: DANDI Command Line Interface
  1278. schemaKey: Software
  1279. url: https://github.com/dandi/dandi-cli
  1280. version: 0.59.0
  1281. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1282. access:
  1283. - schemaKey: AccessRequirements
  1284. status: dandi:OpenAccess
  1285. blobDateModified: '2024-01-15T11:07:11.787065-05:00'
  1286. contentSize: 379927
  1287. contentUrl:
  1288. - https://api.dandiarchive.org/api/assets/6b08653b-e285-4626-8cae-9a2629eb84bc/download/
  1289. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/374/7db/3747dbfa-dbce-4cbb-96f6-509f994509f7
  1290. dateModified: '2024-01-15T11:08:17.600192-05:00'
  1291. digest:
  1292. dandi:dandi-etag: 632f9d64f79448635f33f642ed935ac2-1
  1293. dandi:sha2-256: 44d6f1522316e5da0b15341855a5cd5028f2f1009fc9b4b5f5a9775243cd4fff
  1294. encodingFormat: video/mp4
  1295. id: dandiasset:6b08653b-e285-4626-8cae-9a2629eb84bc
  1296. identifier: 6b08653b-e285-4626-8cae-9a2629eb84bc
  1297. path: VideoStimulusSet/exp_motionset1_40.mp4
  1298. schemaKey: Asset
  1299. schemaVersion: 0.6.4
  1300. wasGeneratedBy:
  1301. - description: Metadata generated by DANDI cli
  1302. endDate: '2024-01-15T11:08:17.600146-05:00'
  1303. id: urn:uuid:8c517f08-96a1-4985-b25c-1c7d9a9b45e7
  1304. name: Metadata generation
  1305. schemaKey: Activity
  1306. startDate: '2024-01-15T11:08:17.600146-05:00'
  1307. wasAssociatedWith:
  1308. - identifier: RRID:SCR_019009
  1309. name: DANDI Command Line Interface
  1310. schemaKey: Software
  1311. url: https://github.com/dandi/dandi-cli
  1312. version: 0.59.0
  1313. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1314. access:
  1315. - schemaKey: AccessRequirements
  1316. status: dandi:OpenAccess
  1317. blobDateModified: '2024-01-15T11:07:11.805056-05:00'
  1318. contentSize: 382114
  1319. contentUrl:
  1320. - https://api.dandiarchive.org/api/assets/d2a5b9a0-fc2b-4735-afff-5ee3edb71860/download/
  1321. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/4b2/26a/4b226ab0-73d9-44b8-8474-e16933a68d4a
  1322. dateModified: '2024-01-15T11:08:19.354999-05:00'
  1323. digest:
  1324. dandi:dandi-etag: 4ba3fc3fee6dc136559962ce971cb3db-1
  1325. dandi:sha2-256: 5dda872f67bd5be1aa077ac7e0b09a0ba9b93d588080a66852569ce67e06172e
  1326. encodingFormat: video/mp4
  1327. id: dandiasset:d2a5b9a0-fc2b-4735-afff-5ee3edb71860
  1328. identifier: d2a5b9a0-fc2b-4735-afff-5ee3edb71860
  1329. path: VideoStimulusSet/exp_motionset1_41.mp4
  1330. schemaKey: Asset
  1331. schemaVersion: 0.6.4
  1332. wasGeneratedBy:
  1333. - description: Metadata generated by DANDI cli
  1334. endDate: '2024-01-15T11:08:19.354958-05:00'
  1335. id: urn:uuid:788405fd-3754-47e3-b7ee-bd092e16c642
  1336. name: Metadata generation
  1337. schemaKey: Activity
  1338. startDate: '2024-01-15T11:08:19.354958-05:00'
  1339. wasAssociatedWith:
  1340. - identifier: RRID:SCR_019009
  1341. name: DANDI Command Line Interface
  1342. schemaKey: Software
  1343. url: https://github.com/dandi/dandi-cli
  1344. version: 0.59.0
  1345. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1346. access:
  1347. - schemaKey: AccessRequirements
  1348. status: dandi:OpenAccess
  1349. blobDateModified: '2024-01-15T11:07:11.822047-05:00'
  1350. contentSize: 389612
  1351. contentUrl:
  1352. - https://api.dandiarchive.org/api/assets/cc12db78-adf2-4938-9d47-34c08cde4a63/download/
  1353. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/aa9/9e0/aa99e04c-47bb-4713-8bab-03ebf6d034f3
  1354. dateModified: '2024-01-15T11:08:20.708421-05:00'
  1355. digest:
  1356. dandi:dandi-etag: 728fbb9b42daa40b66ce3a42108d62c5-1
  1357. dandi:sha2-256: 968ff4f2f0489d4f265d735b586929fa878d4649438a7bdc8bf30fce0b371ccf
  1358. encodingFormat: video/mp4
  1359. id: dandiasset:cc12db78-adf2-4938-9d47-34c08cde4a63
  1360. identifier: cc12db78-adf2-4938-9d47-34c08cde4a63
  1361. path: VideoStimulusSet/exp_motionset1_42.mp4
  1362. schemaKey: Asset
  1363. schemaVersion: 0.6.4
  1364. wasGeneratedBy:
  1365. - description: Metadata generated by DANDI cli
  1366. endDate: '2024-01-15T11:08:20.708387-05:00'
  1367. id: urn:uuid:d63895be-6524-4d8c-8b87-7dccf4922bcf
  1368. name: Metadata generation
  1369. schemaKey: Activity
  1370. startDate: '2024-01-15T11:08:20.708387-05:00'
  1371. wasAssociatedWith:
  1372. - identifier: RRID:SCR_019009
  1373. name: DANDI Command Line Interface
  1374. schemaKey: Software
  1375. url: https://github.com/dandi/dandi-cli
  1376. version: 0.59.0
  1377. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1378. access:
  1379. - schemaKey: AccessRequirements
  1380. status: dandi:OpenAccess
  1381. blobDateModified: '2024-01-15T11:07:11.843037-05:00'
  1382. contentSize: 388484
  1383. contentUrl:
  1384. - https://api.dandiarchive.org/api/assets/daf1d2d0-be25-4273-8491-8fe06fee5388/download/
  1385. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/0c0/c53/0c0c53e1-5571-4e91-9569-c2d2c16e2636
  1386. dateModified: '2024-01-15T11:08:20.945495-05:00'
  1387. digest:
  1388. dandi:dandi-etag: 0a0de708cae7ed19cce701ac3c586d6a-1
  1389. dandi:sha2-256: 70b4dc90ecf911c9ade8f805ff6e0b03f3485810a4e73b36b813b13edc33d0ee
  1390. encodingFormat: video/mp4
  1391. id: dandiasset:daf1d2d0-be25-4273-8491-8fe06fee5388
  1392. identifier: daf1d2d0-be25-4273-8491-8fe06fee5388
  1393. path: VideoStimulusSet/exp_motionset1_43.mp4
  1394. schemaKey: Asset
  1395. schemaVersion: 0.6.4
  1396. wasGeneratedBy:
  1397. - description: Metadata generated by DANDI cli
  1398. endDate: '2024-01-15T11:08:20.945453-05:00'
  1399. id: urn:uuid:96a29467-e04c-4ea1-b17e-6f89786c165a
  1400. name: Metadata generation
  1401. schemaKey: Activity
  1402. startDate: '2024-01-15T11:08:20.945453-05:00'
  1403. wasAssociatedWith:
  1404. - identifier: RRID:SCR_019009
  1405. name: DANDI Command Line Interface
  1406. schemaKey: Software
  1407. url: https://github.com/dandi/dandi-cli
  1408. version: 0.59.0
  1409. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1410. access:
  1411. - schemaKey: AccessRequirements
  1412. status: dandi:OpenAccess
  1413. blobDateModified: '2024-01-15T11:07:11.863027-05:00'
  1414. contentSize: 391280
  1415. contentUrl:
  1416. - https://api.dandiarchive.org/api/assets/feb21c14-b119-4552-a2c9-6b375e398f47/download/
  1417. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/38b/142/38b14233-c795-4b15-88c3-afd9f9ab906f
  1418. dateModified: '2024-01-15T11:08:21.235483-05:00'
  1419. digest:
  1420. dandi:dandi-etag: fba19eda4240153c96744a3cd1ed7358-1
  1421. dandi:sha2-256: af9e61494a27ed0a054f3a1fc68335fe7e391e4e17ecfb2faa4a65c22cd02345
  1422. encodingFormat: video/mp4
  1423. id: dandiasset:feb21c14-b119-4552-a2c9-6b375e398f47
  1424. identifier: feb21c14-b119-4552-a2c9-6b375e398f47
  1425. path: VideoStimulusSet/exp_motionset1_44.mp4
  1426. schemaKey: Asset
  1427. schemaVersion: 0.6.4
  1428. wasGeneratedBy:
  1429. - description: Metadata generated by DANDI cli
  1430. endDate: '2024-01-15T11:08:21.235435-05:00'
  1431. id: urn:uuid:3f47dc60-64f6-4c85-b87a-a6a2e635feb6
  1432. name: Metadata generation
  1433. schemaKey: Activity
  1434. startDate: '2024-01-15T11:08:21.235435-05:00'
  1435. wasAssociatedWith:
  1436. - identifier: RRID:SCR_019009
  1437. name: DANDI Command Line Interface
  1438. schemaKey: Software
  1439. url: https://github.com/dandi/dandi-cli
  1440. version: 0.59.0
  1441. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1442. access:
  1443. - schemaKey: AccessRequirements
  1444. status: dandi:OpenAccess
  1445. blobDateModified: '2024-01-15T11:07:11.884016-05:00'
  1446. contentSize: 386275
  1447. contentUrl:
  1448. - https://api.dandiarchive.org/api/assets/44a9a667-348b-4497-a969-f9b8f5e8554b/download/
  1449. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/309/f63/309f6388-83d9-4d49-8334-311ab3ab9595
  1450. dateModified: '2024-01-15T11:08:21.581084-05:00'
  1451. digest:
  1452. dandi:dandi-etag: b8e324bc36506145b37954a2b8043e3a-1
  1453. dandi:sha2-256: 3caa4652dc050d725a89487d7b7781052b18f277148e96d0aa495aa81e7da439
  1454. encodingFormat: video/mp4
  1455. id: dandiasset:44a9a667-348b-4497-a969-f9b8f5e8554b
  1456. identifier: 44a9a667-348b-4497-a969-f9b8f5e8554b
  1457. path: VideoStimulusSet/exp_motionset1_45.mp4
  1458. schemaKey: Asset
  1459. schemaVersion: 0.6.4
  1460. wasGeneratedBy:
  1461. - description: Metadata generated by DANDI cli
  1462. endDate: '2024-01-15T11:08:21.581040-05:00'
  1463. id: urn:uuid:d63f90dc-eaed-4ed6-a25e-357035e4c338
  1464. name: Metadata generation
  1465. schemaKey: Activity
  1466. startDate: '2024-01-15T11:08:21.581040-05:00'
  1467. wasAssociatedWith:
  1468. - identifier: RRID:SCR_019009
  1469. name: DANDI Command Line Interface
  1470. schemaKey: Software
  1471. url: https://github.com/dandi/dandi-cli
  1472. version: 0.59.0
  1473. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1474. access:
  1475. - schemaKey: AccessRequirements
  1476. status: dandi:OpenAccess
  1477. blobDateModified: '2024-01-15T11:07:11.899009-05:00'
  1478. contentSize: 392310
  1479. contentUrl:
  1480. - https://api.dandiarchive.org/api/assets/9952db9a-1801-4b45-9348-4e38c8deb7c1/download/
  1481. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/dd5/8b9/dd58b9a9-2306-45e2-a0d1-e5fbca4dcaf3
  1482. dateModified: '2024-01-15T11:08:23.208898-05:00'
  1483. digest:
  1484. dandi:dandi-etag: f2c866692edf80dd4c7ab16622b37e09-1
  1485. dandi:sha2-256: 3401c5bcc4e618c158ac34827fa93721d368691c7b30752ba2cdbcec05287e1a
  1486. encodingFormat: video/mp4
  1487. id: dandiasset:9952db9a-1801-4b45-9348-4e38c8deb7c1
  1488. identifier: 9952db9a-1801-4b45-9348-4e38c8deb7c1
  1489. path: VideoStimulusSet/exp_motionset1_46.mp4
  1490. schemaKey: Asset
  1491. schemaVersion: 0.6.4
  1492. wasGeneratedBy:
  1493. - description: Metadata generated by DANDI cli
  1494. endDate: '2024-01-15T11:08:23.208865-05:00'
  1495. id: urn:uuid:7f19e5ed-c140-459a-9eff-0f42c5a9de0e
  1496. name: Metadata generation
  1497. schemaKey: Activity
  1498. startDate: '2024-01-15T11:08:23.208865-05:00'
  1499. wasAssociatedWith:
  1500. - identifier: RRID:SCR_019009
  1501. name: DANDI Command Line Interface
  1502. schemaKey: Software
  1503. url: https://github.com/dandi/dandi-cli
  1504. version: 0.59.0
  1505. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1506. access:
  1507. - schemaKey: AccessRequirements
  1508. status: dandi:OpenAccess
  1509. blobDateModified: '2024-01-15T11:07:11.920998-05:00'
  1510. contentSize: 386663
  1511. contentUrl:
  1512. - https://api.dandiarchive.org/api/assets/d9fdf050-cd08-428c-896d-80d2616e2003/download/
  1513. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/6d4/1fb/6d41fb6f-4ed6-4f1f-8ae6-5dba57bb70ae
  1514. dateModified: '2024-01-15T11:08:24.773832-05:00'
  1515. digest:
  1516. dandi:dandi-etag: 7ad0373ff265ea32cce67b4d1589f9a3-1
  1517. dandi:sha2-256: ce4f8d2567cdb977da6905a4370d16661f779c2fc4caeab12488afadbd4625ca
  1518. encodingFormat: video/mp4
  1519. id: dandiasset:d9fdf050-cd08-428c-896d-80d2616e2003
  1520. identifier: d9fdf050-cd08-428c-896d-80d2616e2003
  1521. path: VideoStimulusSet/exp_motionset1_47.mp4
  1522. schemaKey: Asset
  1523. schemaVersion: 0.6.4
  1524. wasGeneratedBy:
  1525. - description: Metadata generated by DANDI cli
  1526. endDate: '2024-01-15T11:08:24.773792-05:00'
  1527. id: urn:uuid:0e245f42-9a28-403e-adc5-50712fcb0734
  1528. name: Metadata generation
  1529. schemaKey: Activity
  1530. startDate: '2024-01-15T11:08:24.773792-05:00'
  1531. wasAssociatedWith:
  1532. - identifier: RRID:SCR_019009
  1533. name: DANDI Command Line Interface
  1534. schemaKey: Software
  1535. url: https://github.com/dandi/dandi-cli
  1536. version: 0.59.0
  1537. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1538. access:
  1539. - schemaKey: AccessRequirements
  1540. status: dandi:OpenAccess
  1541. blobDateModified: '2024-01-15T11:07:11.955980-05:00'
  1542. contentSize: 385782
  1543. contentUrl:
  1544. - https://api.dandiarchive.org/api/assets/835f0bf7-5df5-48cf-900c-fd4d310b7a4e/download/
  1545. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/c36/3a0/c363a04a-a09d-4046-b5a6-abd53cb3e376
  1546. dateModified: '2024-01-15T11:08:25.196007-05:00'
  1547. digest:
  1548. dandi:dandi-etag: 8523b8e412b55a6d6506eb4a7b94fc82-1
  1549. dandi:sha2-256: 7407a638d8157091ca2813ecc38ec6e45be88f2a6f1de2fefcdc8d1c13d75fc7
  1550. encodingFormat: video/mp4
  1551. id: dandiasset:835f0bf7-5df5-48cf-900c-fd4d310b7a4e
  1552. identifier: 835f0bf7-5df5-48cf-900c-fd4d310b7a4e
  1553. path: VideoStimulusSet/exp_motionset1_48.mp4
  1554. schemaKey: Asset
  1555. schemaVersion: 0.6.4
  1556. wasGeneratedBy:
  1557. - description: Metadata generated by DANDI cli
  1558. endDate: '2024-01-15T11:08:25.195972-05:00'
  1559. id: urn:uuid:624e9609-64d2-4c90-bb90-f88726607819
  1560. name: Metadata generation
  1561. schemaKey: Activity
  1562. startDate: '2024-01-15T11:08:25.195972-05:00'
  1563. wasAssociatedWith:
  1564. - identifier: RRID:SCR_019009
  1565. name: DANDI Command Line Interface
  1566. schemaKey: Software
  1567. url: https://github.com/dandi/dandi-cli
  1568. version: 0.59.0
  1569. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1570. access:
  1571. - schemaKey: AccessRequirements
  1572. status: dandi:OpenAccess
  1573. blobDateModified: '2024-01-15T11:07:11.982967-05:00'
  1574. contentSize: 389510
  1575. contentUrl:
  1576. - https://api.dandiarchive.org/api/assets/14af52c7-84d3-4fa0-8fcc-a582f6669613/download/
  1577. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/0c1/417/0c1417ba-a591-410e-bd90-6d04f6765acc
  1578. dateModified: '2024-01-15T11:08:25.889792-05:00'
  1579. digest:
  1580. dandi:dandi-etag: ee5b242ca90236997af37e9913d59cca-1
  1581. dandi:sha2-256: ee1e495a88d7437be9e3a685dd35ba12c47cbe7d81e610dc3151e0d737567704
  1582. encodingFormat: video/mp4
  1583. id: dandiasset:14af52c7-84d3-4fa0-8fcc-a582f6669613
  1584. identifier: 14af52c7-84d3-4fa0-8fcc-a582f6669613
  1585. path: VideoStimulusSet/exp_motionset1_49.mp4
  1586. schemaKey: Asset
  1587. schemaVersion: 0.6.4
  1588. wasGeneratedBy:
  1589. - description: Metadata generated by DANDI cli
  1590. endDate: '2024-01-15T11:08:25.889739-05:00'
  1591. id: urn:uuid:706b4a7e-52a1-43f3-8a4e-71e81e0c82e8
  1592. name: Metadata generation
  1593. schemaKey: Activity
  1594. startDate: '2024-01-15T11:08:25.889739-05:00'
  1595. wasAssociatedWith:
  1596. - identifier: RRID:SCR_019009
  1597. name: DANDI Command Line Interface
  1598. schemaKey: Software
  1599. url: https://github.com/dandi/dandi-cli
  1600. version: 0.59.0
  1601. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1602. access:
  1603. - schemaKey: AccessRequirements
  1604. status: dandi:OpenAccess
  1605. blobDateModified: '2024-01-15T11:07:12.001957-05:00'
  1606. contentSize: 380708
  1607. contentUrl:
  1608. - https://api.dandiarchive.org/api/assets/eab19f71-0c93-4340-92ee-b5f819213e8f/download/
  1609. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/6bf/9e8/6bf9e8ad-2210-4375-8903-47c2987168a9
  1610. dateModified: '2024-01-15T11:08:26.187244-05:00'
  1611. digest:
  1612. dandi:dandi-etag: a9bb5280941480f7258f2da8ecd08fa5-1
  1613. dandi:sha2-256: 7f02c0cf6e837b47a6cb8d51874cfaeb029027048fe112d2fe8b50234fb22937
  1614. encodingFormat: video/mp4
  1615. id: dandiasset:eab19f71-0c93-4340-92ee-b5f819213e8f
  1616. identifier: eab19f71-0c93-4340-92ee-b5f819213e8f
  1617. path: VideoStimulusSet/exp_motionset1_5.mp4
  1618. schemaKey: Asset
  1619. schemaVersion: 0.6.4
  1620. wasGeneratedBy:
  1621. - description: Metadata generated by DANDI cli
  1622. endDate: '2024-01-15T11:08:26.187205-05:00'
  1623. id: urn:uuid:de1c0ef0-8f8e-4737-b657-4a6bbe39f975
  1624. name: Metadata generation
  1625. schemaKey: Activity
  1626. startDate: '2024-01-15T11:08:26.187205-05:00'
  1627. wasAssociatedWith:
  1628. - identifier: RRID:SCR_019009
  1629. name: DANDI Command Line Interface
  1630. schemaKey: Software
  1631. url: https://github.com/dandi/dandi-cli
  1632. version: 0.59.0
  1633. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1634. access:
  1635. - schemaKey: AccessRequirements
  1636. status: dandi:OpenAccess
  1637. blobDateModified: '2024-01-15T11:07:12.031942-05:00'
  1638. contentSize: 378561
  1639. contentUrl:
  1640. - https://api.dandiarchive.org/api/assets/119690ad-10ef-45ac-aa08-5b2263cc7768/download/
  1641. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/f60/cdd/f60cdd0d-a688-49ec-a5de-5155e70ac12f
  1642. dateModified: '2024-01-15T11:08:27.221720-05:00'
  1643. digest:
  1644. dandi:dandi-etag: 692c49178d7bb3fad0678ee0ccb871c5-1
  1645. dandi:sha2-256: 2e9f8cb03662ca74c1f26fbab42c1b1ee963850dbe8ddc9994b583334733f602
  1646. encodingFormat: video/mp4
  1647. id: dandiasset:119690ad-10ef-45ac-aa08-5b2263cc7768
  1648. identifier: 119690ad-10ef-45ac-aa08-5b2263cc7768
  1649. path: VideoStimulusSet/exp_motionset1_50.mp4
  1650. schemaKey: Asset
  1651. schemaVersion: 0.6.4
  1652. wasGeneratedBy:
  1653. - description: Metadata generated by DANDI cli
  1654. endDate: '2024-01-15T11:08:27.221682-05:00'
  1655. id: urn:uuid:e29549a2-be30-4471-8028-ceab596770d5
  1656. name: Metadata generation
  1657. schemaKey: Activity
  1658. startDate: '2024-01-15T11:08:27.221682-05:00'
  1659. wasAssociatedWith:
  1660. - identifier: RRID:SCR_019009
  1661. name: DANDI Command Line Interface
  1662. schemaKey: Software
  1663. url: https://github.com/dandi/dandi-cli
  1664. version: 0.59.0
  1665. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1666. access:
  1667. - schemaKey: AccessRequirements
  1668. status: dandi:OpenAccess
  1669. blobDateModified: '2024-01-15T11:07:12.058929-05:00'
  1670. contentSize: 387881
  1671. contentUrl:
  1672. - https://api.dandiarchive.org/api/assets/02f6a116-c35b-4359-a16f-d96f46a7e4d2/download/
  1673. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/1c6/ea2/1c6ea2d9-ad37-4341-9d7c-e03a12c4e130
  1674. dateModified: '2024-01-15T11:08:29.009392-05:00'
  1675. digest:
  1676. dandi:dandi-etag: 2e0bcea4b0c1459a7ad7995b007fac99-1
  1677. dandi:sha2-256: 539b2f0149193ca498eb1c058878cd9877aa5af0056506bcf6bfe5501e0ad868
  1678. encodingFormat: video/mp4
  1679. id: dandiasset:02f6a116-c35b-4359-a16f-d96f46a7e4d2
  1680. identifier: 02f6a116-c35b-4359-a16f-d96f46a7e4d2
  1681. path: VideoStimulusSet/exp_motionset1_51.mp4
  1682. schemaKey: Asset
  1683. schemaVersion: 0.6.4
  1684. wasGeneratedBy:
  1685. - description: Metadata generated by DANDI cli
  1686. endDate: '2024-01-15T11:08:29.009299-05:00'
  1687. id: urn:uuid:8b2ac5fd-ed80-4b85-b144-4e93c53e1e7f
  1688. name: Metadata generation
  1689. schemaKey: Activity
  1690. startDate: '2024-01-15T11:08:29.009299-05:00'
  1691. wasAssociatedWith:
  1692. - identifier: RRID:SCR_019009
  1693. name: DANDI Command Line Interface
  1694. schemaKey: Software
  1695. url: https://github.com/dandi/dandi-cli
  1696. version: 0.59.0
  1697. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1698. access:
  1699. - schemaKey: AccessRequirements
  1700. status: dandi:OpenAccess
  1701. blobDateModified: '2024-01-15T11:07:12.069923-05:00'
  1702. contentSize: 388597
  1703. contentUrl:
  1704. - https://api.dandiarchive.org/api/assets/1cb326ac-d53b-4f47-9b39-b6741519487a/download/
  1705. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/d10/8b5/d108b555-ae87-434e-b61d-7039991a2fea
  1706. dateModified: '2024-01-15T11:08:29.656074-05:00'
  1707. digest:
  1708. dandi:dandi-etag: 26a16eef53fc2ff39253c7422c1ec25e-1
  1709. dandi:sha2-256: 21a45dcc137ad9b963b41a1f335422783bd90f5c3504fb78f95745d8bcd462c9
  1710. encodingFormat: video/mp4
  1711. id: dandiasset:1cb326ac-d53b-4f47-9b39-b6741519487a
  1712. identifier: 1cb326ac-d53b-4f47-9b39-b6741519487a
  1713. path: VideoStimulusSet/exp_motionset1_52.mp4
  1714. schemaKey: Asset
  1715. schemaVersion: 0.6.4
  1716. wasGeneratedBy:
  1717. - description: Metadata generated by DANDI cli
  1718. endDate: '2024-01-15T11:08:29.656048-05:00'
  1719. id: urn:uuid:cf9cd026-0ed6-46fc-87db-2fda1da5c570
  1720. name: Metadata generation
  1721. schemaKey: Activity
  1722. startDate: '2024-01-15T11:08:29.656048-05:00'
  1723. wasAssociatedWith:
  1724. - identifier: RRID:SCR_019009
  1725. name: DANDI Command Line Interface
  1726. schemaKey: Software
  1727. url: https://github.com/dandi/dandi-cli
  1728. version: 0.59.0
  1729. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1730. access:
  1731. - schemaKey: AccessRequirements
  1732. status: dandi:OpenAccess
  1733. blobDateModified: '2024-01-15T11:07:12.102907-05:00'
  1734. contentSize: 387520
  1735. contentUrl:
  1736. - https://api.dandiarchive.org/api/assets/18e4a865-95ca-4e64-b84f-f91f7acbd6a4/download/
  1737. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/8ec/ace/8ecace7b-2c6a-425b-a2b5-e6362f4eba4a
  1738. dateModified: '2024-01-15T11:08:30.757541-05:00'
  1739. digest:
  1740. dandi:dandi-etag: 62049130714e01e283c8b2999fe47d86-1
  1741. dandi:sha2-256: a856f16616f4b10d318fe8fdd453904a0fd4bf62d49a3600600f052861ac8b88
  1742. encodingFormat: video/mp4
  1743. id: dandiasset:18e4a865-95ca-4e64-b84f-f91f7acbd6a4
  1744. identifier: 18e4a865-95ca-4e64-b84f-f91f7acbd6a4
  1745. path: VideoStimulusSet/exp_motionset1_53.mp4
  1746. schemaKey: Asset
  1747. schemaVersion: 0.6.4
  1748. wasGeneratedBy:
  1749. - description: Metadata generated by DANDI cli
  1750. endDate: '2024-01-15T11:08:30.757506-05:00'
  1751. id: urn:uuid:1f33d51b-adf0-40d8-9273-b21e90018586
  1752. name: Metadata generation
  1753. schemaKey: Activity
  1754. startDate: '2024-01-15T11:08:30.757506-05:00'
  1755. wasAssociatedWith:
  1756. - identifier: RRID:SCR_019009
  1757. name: DANDI Command Line Interface
  1758. schemaKey: Software
  1759. url: https://github.com/dandi/dandi-cli
  1760. version: 0.59.0
  1761. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1762. access:
  1763. - schemaKey: AccessRequirements
  1764. status: dandi:OpenAccess
  1765. blobDateModified: '2024-01-15T11:07:12.113901-05:00'
  1766. contentSize: 390291
  1767. contentUrl:
  1768. - https://api.dandiarchive.org/api/assets/c4b3d96b-16bb-4e80-bd24-d79456d24a53/download/
  1769. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/bef/b94/befb946f-c82d-41b2-9c52-d7d4c884e67d
  1770. dateModified: '2024-01-15T11:08:30.903329-05:00'
  1771. digest:
  1772. dandi:dandi-etag: dc95818a617fe42dfe96bde730fd333f-1
  1773. dandi:sha2-256: 664d4171ce8497f870ad3cccace85b9bc2a894f68a5faf6d5c07eeb96d0b3f54
  1774. encodingFormat: video/mp4
  1775. id: dandiasset:c4b3d96b-16bb-4e80-bd24-d79456d24a53
  1776. identifier: c4b3d96b-16bb-4e80-bd24-d79456d24a53
  1777. path: VideoStimulusSet/exp_motionset1_54.mp4
  1778. schemaKey: Asset
  1779. schemaVersion: 0.6.4
  1780. wasGeneratedBy:
  1781. - description: Metadata generated by DANDI cli
  1782. endDate: '2024-01-15T11:08:30.903296-05:00'
  1783. id: urn:uuid:fa00e2cb-bf34-43fb-8c19-c51eef2c28c6
  1784. name: Metadata generation
  1785. schemaKey: Activity
  1786. startDate: '2024-01-15T11:08:30.903296-05:00'
  1787. wasAssociatedWith:
  1788. - identifier: RRID:SCR_019009
  1789. name: DANDI Command Line Interface
  1790. schemaKey: Software
  1791. url: https://github.com/dandi/dandi-cli
  1792. version: 0.59.0
  1793. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1794. access:
  1795. - schemaKey: AccessRequirements
  1796. status: dandi:OpenAccess
  1797. blobDateModified: '2024-01-15T11:07:12.125895-05:00'
  1798. contentSize: 390676
  1799. contentUrl:
  1800. - https://api.dandiarchive.org/api/assets/1eaafdd7-d20d-40cb-8063-60547da44998/download/
  1801. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/32c/a52/32ca5258-824d-4a7d-97df-bf496ec1d346
  1802. dateModified: '2024-01-15T11:08:31.662195-05:00'
  1803. digest:
  1804. dandi:dandi-etag: cf550d61db6d7a944a8583a434b5eef8-1
  1805. dandi:sha2-256: 9340186eb31a34fc92025b8663acab9337caec9e2300c896b25c9d806affd2d9
  1806. encodingFormat: video/mp4
  1807. id: dandiasset:1eaafdd7-d20d-40cb-8063-60547da44998
  1808. identifier: 1eaafdd7-d20d-40cb-8063-60547da44998
  1809. path: VideoStimulusSet/exp_motionset1_55.mp4
  1810. schemaKey: Asset
  1811. schemaVersion: 0.6.4
  1812. wasGeneratedBy:
  1813. - description: Metadata generated by DANDI cli
  1814. endDate: '2024-01-15T11:08:31.662153-05:00'
  1815. id: urn:uuid:655a8fc1-1f6c-4cbc-8278-bae23e7009f7
  1816. name: Metadata generation
  1817. schemaKey: Activity
  1818. startDate: '2024-01-15T11:08:31.662153-05:00'
  1819. wasAssociatedWith:
  1820. - identifier: RRID:SCR_019009
  1821. name: DANDI Command Line Interface
  1822. schemaKey: Software
  1823. url: https://github.com/dandi/dandi-cli
  1824. version: 0.59.0
  1825. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1826. access:
  1827. - schemaKey: AccessRequirements
  1828. status: dandi:OpenAccess
  1829. blobDateModified: '2024-01-15T11:07:12.153881-05:00'
  1830. contentSize: 384725
  1831. contentUrl:
  1832. - https://api.dandiarchive.org/api/assets/22544830-2c78-4c05-be5e-5ba142fdb768/download/
  1833. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/c34/a4d/c34a4d50-fce2-446c-b944-fc72a5415f50
  1834. dateModified: '2024-01-15T11:08:32.998224-05:00'
  1835. digest:
  1836. dandi:dandi-etag: 12977013bcc58babdad655e7a768c47c-1
  1837. dandi:sha2-256: 105c370707290d71422510b3ad88cddf5e4c22b4ee3ff19ffb41d461457e4420
  1838. encodingFormat: video/mp4
  1839. id: dandiasset:22544830-2c78-4c05-be5e-5ba142fdb768
  1840. identifier: 22544830-2c78-4c05-be5e-5ba142fdb768
  1841. path: VideoStimulusSet/exp_motionset1_56.mp4
  1842. schemaKey: Asset
  1843. schemaVersion: 0.6.4
  1844. wasGeneratedBy:
  1845. - description: Metadata generated by DANDI cli
  1846. endDate: '2024-01-15T11:08:32.998184-05:00'
  1847. id: urn:uuid:48c231a3-f4e5-4269-9b7c-de376ae07e72
  1848. name: Metadata generation
  1849. schemaKey: Activity
  1850. startDate: '2024-01-15T11:08:32.998184-05:00'
  1851. wasAssociatedWith:
  1852. - identifier: RRID:SCR_019009
  1853. name: DANDI Command Line Interface
  1854. schemaKey: Software
  1855. url: https://github.com/dandi/dandi-cli
  1856. version: 0.59.0
  1857. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1858. access:
  1859. - schemaKey: AccessRequirements
  1860. status: dandi:OpenAccess
  1861. blobDateModified: '2024-01-15T11:07:12.179868-05:00'
  1862. contentSize: 387984
  1863. contentUrl:
  1864. - https://api.dandiarchive.org/api/assets/77d2babd-a056-4500-943a-f072f330b448/download/
  1865. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/a5b/243/a5b243f8-ae1f-42d7-a8ee-301b69b170ed
  1866. dateModified: '2024-01-15T11:08:34.012738-05:00'
  1867. digest:
  1868. dandi:dandi-etag: d5c7d15221d533a9f42cb9a1598c0c81-1
  1869. dandi:sha2-256: 8f2aebbc9f0a59b321dc26cc017952842f938c2075490e803e3e34496224bbd8
  1870. encodingFormat: video/mp4
  1871. id: dandiasset:77d2babd-a056-4500-943a-f072f330b448
  1872. identifier: 77d2babd-a056-4500-943a-f072f330b448
  1873. path: VideoStimulusSet/exp_motionset1_57.mp4
  1874. schemaKey: Asset
  1875. schemaVersion: 0.6.4
  1876. wasGeneratedBy:
  1877. - description: Metadata generated by DANDI cli
  1878. endDate: '2024-01-15T11:08:34.012712-05:00'
  1879. id: urn:uuid:ecc4b87b-e946-4e66-9ad1-0a383f6d50d0
  1880. name: Metadata generation
  1881. schemaKey: Activity
  1882. startDate: '2024-01-15T11:08:34.012712-05:00'
  1883. wasAssociatedWith:
  1884. - identifier: RRID:SCR_019009
  1885. name: DANDI Command Line Interface
  1886. schemaKey: Software
  1887. url: https://github.com/dandi/dandi-cli
  1888. version: 0.59.0
  1889. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1890. access:
  1891. - schemaKey: AccessRequirements
  1892. status: dandi:OpenAccess
  1893. blobDateModified: '2024-01-15T11:07:12.208854-05:00'
  1894. contentSize: 395360
  1895. contentUrl:
  1896. - https://api.dandiarchive.org/api/assets/d68d0cc6-7dd3-4665-a6bc-a43600a2708c/download/
  1897. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/93c/35f/93c35fe3-6493-4567-b9aa-831bb418adee
  1898. dateModified: '2024-01-15T11:08:35.356507-05:00'
  1899. digest:
  1900. dandi:dandi-etag: 89fcb0d4c27abaaed61f1cb6d5af5e8f-1
  1901. dandi:sha2-256: e61cd28ce8e2df3e4122ff3404f7d68d711e86a41a6c7bcdbf96896b75de31cd
  1902. encodingFormat: video/mp4
  1903. id: dandiasset:d68d0cc6-7dd3-4665-a6bc-a43600a2708c
  1904. identifier: d68d0cc6-7dd3-4665-a6bc-a43600a2708c
  1905. path: VideoStimulusSet/exp_motionset1_58.mp4
  1906. schemaKey: Asset
  1907. schemaVersion: 0.6.4
  1908. wasGeneratedBy:
  1909. - description: Metadata generated by DANDI cli
  1910. endDate: '2024-01-15T11:08:35.356476-05:00'
  1911. id: urn:uuid:389993be-a3e7-417d-a1b2-74bb5192d6cb
  1912. name: Metadata generation
  1913. schemaKey: Activity
  1914. startDate: '2024-01-15T11:08:35.356476-05:00'
  1915. wasAssociatedWith:
  1916. - identifier: RRID:SCR_019009
  1917. name: DANDI Command Line Interface
  1918. schemaKey: Software
  1919. url: https://github.com/dandi/dandi-cli
  1920. version: 0.59.0
  1921. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1922. access:
  1923. - schemaKey: AccessRequirements
  1924. status: dandi:OpenAccess
  1925. blobDateModified: '2024-01-15T11:07:12.227844-05:00'
  1926. contentSize: 388056
  1927. contentUrl:
  1928. - https://api.dandiarchive.org/api/assets/dd3156b6-f26f-4330-8abf-d43bc5d1bd5c/download/
  1929. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/ecc/c69/eccc69ee-9206-4eee-a366-81feb26a05b3
  1930. dateModified: '2024-01-15T11:08:35.735057-05:00'
  1931. digest:
  1932. dandi:dandi-etag: c6fb9a0712b9aef98514ccf8374ab3f1-1
  1933. dandi:sha2-256: b0b8ae5cb8bda70b6afea37a7a44721974583665aad68152ca6ee9e9203a6303
  1934. encodingFormat: video/mp4
  1935. id: dandiasset:dd3156b6-f26f-4330-8abf-d43bc5d1bd5c
  1936. identifier: dd3156b6-f26f-4330-8abf-d43bc5d1bd5c
  1937. path: VideoStimulusSet/exp_motionset1_59.mp4
  1938. schemaKey: Asset
  1939. schemaVersion: 0.6.4
  1940. wasGeneratedBy:
  1941. - description: Metadata generated by DANDI cli
  1942. endDate: '2024-01-15T11:08:35.735019-05:00'
  1943. id: urn:uuid:8b14bba3-0dec-437e-9248-9015cb905eb7
  1944. name: Metadata generation
  1945. schemaKey: Activity
  1946. startDate: '2024-01-15T11:08:35.735019-05:00'
  1947. wasAssociatedWith:
  1948. - identifier: RRID:SCR_019009
  1949. name: DANDI Command Line Interface
  1950. schemaKey: Software
  1951. url: https://github.com/dandi/dandi-cli
  1952. version: 0.59.0
  1953. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1954. access:
  1955. - schemaKey: AccessRequirements
  1956. status: dandi:OpenAccess
  1957. blobDateModified: '2024-01-15T11:07:12.248834-05:00'
  1958. contentSize: 378014
  1959. contentUrl:
  1960. - https://api.dandiarchive.org/api/assets/2c416d46-5a1e-46b6-a8bc-22f7d2c1872d/download/
  1961. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/649/9d7/6499d706-8dae-49e3-b0cf-5585fed41fd2
  1962. dateModified: '2024-01-15T11:08:36.194971-05:00'
  1963. digest:
  1964. dandi:dandi-etag: 9920a39a0a7586e15ca25929c116e5d1-1
  1965. dandi:sha2-256: 81689b9f76987c8baaefd8188d86d1fcaf426c6c388671632403a89d6e886c88
  1966. encodingFormat: video/mp4
  1967. id: dandiasset:2c416d46-5a1e-46b6-a8bc-22f7d2c1872d
  1968. identifier: 2c416d46-5a1e-46b6-a8bc-22f7d2c1872d
  1969. path: VideoStimulusSet/exp_motionset1_6.mp4
  1970. schemaKey: Asset
  1971. schemaVersion: 0.6.4
  1972. wasGeneratedBy:
  1973. - description: Metadata generated by DANDI cli
  1974. endDate: '2024-01-15T11:08:36.194938-05:00'
  1975. id: urn:uuid:0632cdd2-494b-4d46-8f6b-20df874c2bb3
  1976. name: Metadata generation
  1977. schemaKey: Activity
  1978. startDate: '2024-01-15T11:08:36.194938-05:00'
  1979. wasAssociatedWith:
  1980. - identifier: RRID:SCR_019009
  1981. name: DANDI Command Line Interface
  1982. schemaKey: Software
  1983. url: https://github.com/dandi/dandi-cli
  1984. version: 0.59.0
  1985. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1986. access:
  1987. - schemaKey: AccessRequirements
  1988. status: dandi:OpenAccess
  1989. blobDateModified: '2024-01-15T11:07:12.260828-05:00'
  1990. contentSize: 388557
  1991. contentUrl:
  1992. - https://api.dandiarchive.org/api/assets/cacb13cc-92b8-4e82-971f-ed90667c75a4/download/
  1993. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/679/19e/67919e95-ddd6-4d41-9f9c-5fdf12e5235e
  1994. dateModified: '2024-01-15T11:08:37.501474-05:00'
  1995. digest:
  1996. dandi:dandi-etag: b43d2c8268338f726a98282c77b1b163-1
  1997. dandi:sha2-256: c4c6fa09be69bc716026e973268e84ec7f50b4f1974477f4d1d3af2505a8c55b
  1998. encodingFormat: video/mp4
  1999. id: dandiasset:cacb13cc-92b8-4e82-971f-ed90667c75a4
  2000. identifier: cacb13cc-92b8-4e82-971f-ed90667c75a4
  2001. path: VideoStimulusSet/exp_motionset1_60.mp4
  2002. schemaKey: Asset
  2003. schemaVersion: 0.6.4
  2004. wasGeneratedBy:
  2005. - description: Metadata generated by DANDI cli
  2006. endDate: '2024-01-15T11:08:37.501435-05:00'
  2007. id: urn:uuid:e5f6abc5-5371-4dc7-976d-3a1b5ef80074
  2008. name: Metadata generation
  2009. schemaKey: Activity
  2010. startDate: '2024-01-15T11:08:37.501435-05:00'
  2011. wasAssociatedWith:
  2012. - identifier: RRID:SCR_019009
  2013. name: DANDI Command Line Interface
  2014. schemaKey: Software
  2015. url: https://github.com/dandi/dandi-cli
  2016. version: 0.59.0
  2017. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2018. access:
  2019. - schemaKey: AccessRequirements
  2020. status: dandi:OpenAccess
  2021. blobDateModified: '2024-01-15T11:07:12.287814-05:00'
  2022. contentSize: 389145
  2023. contentUrl:
  2024. - https://api.dandiarchive.org/api/assets/2c8f2c6d-963d-4986-9bec-1170e33d30ae/download/
  2025. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/692/c29/692c295d-8162-4a44-bc8f-e474c36ea10f
  2026. dateModified: '2024-01-15T11:08:37.699014-05:00'
  2027. digest:
  2028. dandi:dandi-etag: 970478c10702c7a10e95dd96dbd9fe7c-1
  2029. dandi:sha2-256: 450f01fed81ed98fa6590673f9d9d8e27f6ce29f223f846ff340455f514df41f
  2030. encodingFormat: video/mp4
  2031. id: dandiasset:2c8f2c6d-963d-4986-9bec-1170e33d30ae
  2032. identifier: 2c8f2c6d-963d-4986-9bec-1170e33d30ae
  2033. path: VideoStimulusSet/exp_motionset1_61.mp4
  2034. schemaKey: Asset
  2035. schemaVersion: 0.6.4
  2036. wasGeneratedBy:
  2037. - description: Metadata generated by DANDI cli
  2038. endDate: '2024-01-15T11:08:37.698980-05:00'
  2039. id: urn:uuid:d64cda39-5e78-46d5-ab9d-20848f6be24e
  2040. name: Metadata generation
  2041. schemaKey: Activity
  2042. startDate: '2024-01-15T11:08:37.698980-05:00'
  2043. wasAssociatedWith:
  2044. - identifier: RRID:SCR_019009
  2045. name: DANDI Command Line Interface
  2046. schemaKey: Software
  2047. url: https://github.com/dandi/dandi-cli
  2048. version: 0.59.0
  2049. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2050. access:
  2051. - schemaKey: AccessRequirements
  2052. status: dandi:OpenAccess
  2053. blobDateModified: '2024-01-15T11:07:12.308804-05:00'
  2054. contentSize: 390242
  2055. contentUrl:
  2056. - https://api.dandiarchive.org/api/assets/de21eb66-b674-41e2-8802-ce2daa0d7bf2/download/
  2057. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/e37/dbf/e37dbf42-80e4-452c-b743-9545d760188f
  2058. dateModified: '2024-01-15T11:08:39.581999-05:00'
  2059. digest:
  2060. dandi:dandi-etag: 7f1c087a8b1406caaf58d3f82bcb198b-1
  2061. dandi:sha2-256: 334f233569f49300d420e8441279a911688f8f9cf4bb3d28308561a50dbb41fb
  2062. encodingFormat: video/mp4
  2063. id: dandiasset:de21eb66-b674-41e2-8802-ce2daa0d7bf2
  2064. identifier: de21eb66-b674-41e2-8802-ce2daa0d7bf2
  2065. path: VideoStimulusSet/exp_motionset1_62.mp4
  2066. schemaKey: Asset
  2067. schemaVersion: 0.6.4
  2068. wasGeneratedBy:
  2069. - description: Metadata generated by DANDI cli
  2070. endDate: '2024-01-15T11:08:39.581967-05:00'
  2071. id: urn:uuid:116c66d0-c439-451a-9469-07b18942e4fc
  2072. name: Metadata generation
  2073. schemaKey: Activity
  2074. startDate: '2024-01-15T11:08:39.581967-05:00'
  2075. wasAssociatedWith:
  2076. - identifier: RRID:SCR_019009
  2077. name: DANDI Command Line Interface
  2078. schemaKey: Software
  2079. url: https://github.com/dandi/dandi-cli
  2080. version: 0.59.0
  2081. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2082. access:
  2083. - schemaKey: AccessRequirements
  2084. status: dandi:OpenAccess
  2085. blobDateModified: '2024-01-15T11:07:12.325795-05:00'
  2086. contentSize: 390886
  2087. contentUrl:
  2088. - https://api.dandiarchive.org/api/assets/054110d4-b5aa-4fa0-8970-334c67ee455c/download/
  2089. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/2c7/f4c/2c7f4c41-4016-412f-96c0-53a31120771f
  2090. dateModified: '2024-01-15T11:08:40.499684-05:00'
  2091. digest:
  2092. dandi:dandi-etag: 8dde4517e11efd9d0320d87369cb9e1c-1
  2093. dandi:sha2-256: d21fd41b1736221bf4591d3f3aa558efe4ccd401004bf2ceb7b6ab3b3cf04e2c
  2094. encodingFormat: video/mp4
  2095. id: dandiasset:054110d4-b5aa-4fa0-8970-334c67ee455c
  2096. identifier: 054110d4-b5aa-4fa0-8970-334c67ee455c
  2097. path: VideoStimulusSet/exp_motionset1_63.mp4
  2098. schemaKey: Asset
  2099. schemaVersion: 0.6.4
  2100. wasGeneratedBy:
  2101. - description: Metadata generated by DANDI cli
  2102. endDate: '2024-01-15T11:08:40.499636-05:00'
  2103. id: urn:uuid:ad39d112-31ed-4880-a90a-a8a2753a0a4c
  2104. name: Metadata generation
  2105. schemaKey: Activity
  2106. startDate: '2024-01-15T11:08:40.499636-05:00'
  2107. wasAssociatedWith:
  2108. - identifier: RRID:SCR_019009
  2109. name: DANDI Command Line Interface
  2110. schemaKey: Software
  2111. url: https://github.com/dandi/dandi-cli
  2112. version: 0.59.0
  2113. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2114. access:
  2115. - schemaKey: AccessRequirements
  2116. status: dandi:OpenAccess
  2117. blobDateModified: '2024-01-15T11:07:12.356780-05:00'
  2118. contentSize: 391254
  2119. contentUrl:
  2120. - https://api.dandiarchive.org/api/assets/804513f4-3ab7-4610-9a0d-f12071ea45a3/download/
  2121. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/6c4/68b/6c468b28-6f91-4562-84d0-24fb8c19914b
  2122. dateModified: '2024-01-15T11:08:40.808315-05:00'
  2123. digest:
  2124. dandi:dandi-etag: 3aa1916af5d6d31c6634036507887594-1
  2125. dandi:sha2-256: b10d337f23fd84e1225660ead54514bf8d5290eada25822461fde4631a6d3d72
  2126. encodingFormat: video/mp4
  2127. id: dandiasset:804513f4-3ab7-4610-9a0d-f12071ea45a3
  2128. identifier: 804513f4-3ab7-4610-9a0d-f12071ea45a3
  2129. path: VideoStimulusSet/exp_motionset1_64.mp4
  2130. schemaKey: Asset
  2131. schemaVersion: 0.6.4
  2132. wasGeneratedBy:
  2133. - description: Metadata generated by DANDI cli
  2134. endDate: '2024-01-15T11:08:40.808278-05:00'
  2135. id: urn:uuid:efa162de-6194-41db-8702-994f1782de2b
  2136. name: Metadata generation
  2137. schemaKey: Activity
  2138. startDate: '2024-01-15T11:08:40.808278-05:00'
  2139. wasAssociatedWith:
  2140. - identifier: RRID:SCR_019009
  2141. name: DANDI Command Line Interface
  2142. schemaKey: Software
  2143. url: https://github.com/dandi/dandi-cli
  2144. version: 0.59.0
  2145. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2146. access:
  2147. - schemaKey: AccessRequirements
  2148. status: dandi:OpenAccess
  2149. blobDateModified: '2024-01-15T11:07:12.377769-05:00'
  2150. contentSize: 391764
  2151. contentUrl:
  2152. - https://api.dandiarchive.org/api/assets/44304988-9778-482e-9c3a-91f5774ffb8d/download/
  2153. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/9b4/3e0/9b43e0d7-f7b3-47f8-a010-88b08e78c791
  2154. dateModified: '2024-01-15T11:08:42.147526-05:00'
  2155. digest:
  2156. dandi:dandi-etag: a1bdc9ff7fc1edb96a63c7a8d9303f49-1
  2157. dandi:sha2-256: 3fb94b3a19bf8c8464a30eb29393b2c395d01a547b149099175ed538e79ea601
  2158. encodingFormat: video/mp4
  2159. id: dandiasset:44304988-9778-482e-9c3a-91f5774ffb8d
  2160. identifier: 44304988-9778-482e-9c3a-91f5774ffb8d
  2161. path: VideoStimulusSet/exp_motionset1_65.mp4
  2162. schemaKey: Asset
  2163. schemaVersion: 0.6.4
  2164. wasGeneratedBy:
  2165. - description: Metadata generated by DANDI cli
  2166. endDate: '2024-01-15T11:08:42.147482-05:00'
  2167. id: urn:uuid:ea7a8a5a-d782-4729-bedf-af895caddf13
  2168. name: Metadata generation
  2169. schemaKey: Activity
  2170. startDate: '2024-01-15T11:08:42.147482-05:00'
  2171. wasAssociatedWith:
  2172. - identifier: RRID:SCR_019009
  2173. name: DANDI Command Line Interface
  2174. schemaKey: Software
  2175. url: https://github.com/dandi/dandi-cli
  2176. version: 0.59.0
  2177. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2178. access:
  2179. - schemaKey: AccessRequirements
  2180. status: dandi:OpenAccess
  2181. blobDateModified: '2024-01-15T11:07:12.398759-05:00'
  2182. contentSize: 388494
  2183. contentUrl:
  2184. - https://api.dandiarchive.org/api/assets/7742e1a1-059d-4add-9b02-c83dfeb41734/download/
  2185. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/c25/61f/c2561fb0-9fbd-4c88-b78d-9934d3a508d4
  2186. dateModified: '2024-01-15T11:08:42.494833-05:00'
  2187. digest:
  2188. dandi:dandi-etag: 0cca3acab9e964af3cabbe3b2b661883-1
  2189. dandi:sha2-256: 257dc367c2f38444688e8c931a88eb2df4eb001b1204a2c82eded7533d081488
  2190. encodingFormat: video/mp4
  2191. id: dandiasset:7742e1a1-059d-4add-9b02-c83dfeb41734
  2192. identifier: 7742e1a1-059d-4add-9b02-c83dfeb41734
  2193. path: VideoStimulusSet/exp_motionset1_66.mp4
  2194. schemaKey: Asset
  2195. schemaVersion: 0.6.4
  2196. wasGeneratedBy:
  2197. - description: Metadata generated by DANDI cli
  2198. endDate: '2024-01-15T11:08:42.494788-05:00'
  2199. id: urn:uuid:19145c3c-c2ab-4d45-8d76-9eefb653e401
  2200. name: Metadata generation
  2201. schemaKey: Activity
  2202. startDate: '2024-01-15T11:08:42.494788-05:00'
  2203. wasAssociatedWith:
  2204. - identifier: RRID:SCR_019009
  2205. name: DANDI Command Line Interface
  2206. schemaKey: Software
  2207. url: https://github.com/dandi/dandi-cli
  2208. version: 0.59.0
  2209. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2210. access:
  2211. - schemaKey: AccessRequirements
  2212. status: dandi:OpenAccess
  2213. blobDateModified: '2024-01-15T11:07:12.409753-05:00'
  2214. contentSize: 395956
  2215. contentUrl:
  2216. - https://api.dandiarchive.org/api/assets/85f83ab2-f448-4f0e-8dc9-c16fa86848ac/download/
  2217. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/85d/200/85d20086-f49a-4d49-9655-139f9c8ae054
  2218. dateModified: '2024-01-15T11:08:43.861502-05:00'
  2219. digest:
  2220. dandi:dandi-etag: 37ea5e7547604cb22331752eb10472dd-1
  2221. dandi:sha2-256: 9c224a70625253cdc821223e5fe4f6bb8f50f1a565e1dd5b5e22f874117b7c86
  2222. encodingFormat: video/mp4
  2223. id: dandiasset:85f83ab2-f448-4f0e-8dc9-c16fa86848ac
  2224. identifier: 85f83ab2-f448-4f0e-8dc9-c16fa86848ac
  2225. path: VideoStimulusSet/exp_motionset1_67.mp4
  2226. schemaKey: Asset
  2227. schemaVersion: 0.6.4
  2228. wasGeneratedBy:
  2229. - description: Metadata generated by DANDI cli
  2230. endDate: '2024-01-15T11:08:43.861460-05:00'
  2231. id: urn:uuid:75098205-fb0d-4abd-8570-911d8570bfb9
  2232. name: Metadata generation
  2233. schemaKey: Activity
  2234. startDate: '2024-01-15T11:08:43.861460-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.0
  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. blobDateModified: '2024-01-15T11:07:12.432742-05:00'
  2246. contentSize: 395860
  2247. contentUrl:
  2248. - https://api.dandiarchive.org/api/assets/aec18702-a21c-44d6-9216-3184e379ea6c/download/
  2249. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/746/643/746643a9-a37d-4ef2-b0da-c1a40958de77
  2250. dateModified: '2024-01-15T11:08:44.932999-05:00'
  2251. digest:
  2252. dandi:dandi-etag: 29bf242e9ec7883bb1852596876735f2-1
  2253. dandi:sha2-256: 3232e201c356df19b48c3d3b515bf4af044cd447d4490d71577ee6226a4ac770
  2254. encodingFormat: video/mp4
  2255. id: dandiasset:aec18702-a21c-44d6-9216-3184e379ea6c
  2256. identifier: aec18702-a21c-44d6-9216-3184e379ea6c
  2257. path: VideoStimulusSet/exp_motionset1_68.mp4
  2258. schemaKey: Asset
  2259. schemaVersion: 0.6.4
  2260. wasGeneratedBy:
  2261. - description: Metadata generated by DANDI cli
  2262. endDate: '2024-01-15T11:08:44.932949-05:00'
  2263. id: urn:uuid:7f00001a-76df-4eef-9a87-56d6c135ea79
  2264. name: Metadata generation
  2265. schemaKey: Activity
  2266. startDate: '2024-01-15T11:08:44.932949-05:00'
  2267. wasAssociatedWith:
  2268. - identifier: RRID:SCR_019009
  2269. name: DANDI Command Line Interface
  2270. schemaKey: Software
  2271. url: https://github.com/dandi/dandi-cli
  2272. version: 0.59.0
  2273. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2274. access:
  2275. - schemaKey: AccessRequirements
  2276. status: dandi:OpenAccess
  2277. blobDateModified: '2024-01-15T11:07:12.451732-05:00'
  2278. contentSize: 389926
  2279. contentUrl:
  2280. - https://api.dandiarchive.org/api/assets/80317b63-3fe8-4684-b4ad-514e678e7d6c/download/
  2281. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/a22/62f/a2262f3b-d2c9-4adb-bef0-3a19217e2f11
  2282. dateModified: '2024-01-15T11:08:45.436589-05:00'
  2283. digest:
  2284. dandi:dandi-etag: 44fe27ad79588dcf9d2dd661f910b028-1
  2285. dandi:sha2-256: d3a8e245d7b8003f62bdf5cb05677f7c4fe21b2d70e78a474f47f7ee256568fb
  2286. encodingFormat: video/mp4
  2287. id: dandiasset:80317b63-3fe8-4684-b4ad-514e678e7d6c
  2288. identifier: 80317b63-3fe8-4684-b4ad-514e678e7d6c
  2289. path: VideoStimulusSet/exp_motionset1_69.mp4
  2290. schemaKey: Asset
  2291. schemaVersion: 0.6.4
  2292. wasGeneratedBy:
  2293. - description: Metadata generated by DANDI cli
  2294. endDate: '2024-01-15T11:08:45.436547-05:00'
  2295. id: urn:uuid:97364ed1-5f1a-48ab-9c4b-21c8c940c249
  2296. name: Metadata generation
  2297. schemaKey: Activity
  2298. startDate: '2024-01-15T11:08:45.436547-05:00'
  2299. wasAssociatedWith:
  2300. - identifier: RRID:SCR_019009
  2301. name: DANDI Command Line Interface
  2302. schemaKey: Software
  2303. url: https://github.com/dandi/dandi-cli
  2304. version: 0.59.0
  2305. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2306. access:
  2307. - schemaKey: AccessRequirements
  2308. status: dandi:OpenAccess
  2309. blobDateModified: '2024-01-15T11:07:12.476720-05:00'
  2310. contentSize: 380490
  2311. contentUrl:
  2312. - https://api.dandiarchive.org/api/assets/240d0a29-2d50-4b3d-ba1b-d7b68ad3777c/download/
  2313. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/3ad/b15/3adb15f6-cd72-4b74-bdb0-066ca3538e37
  2314. dateModified: '2024-01-15T11:08:46.727508-05:00'
  2315. digest:
  2316. dandi:dandi-etag: b28bbf96bc487378e95c47d091049043-1
  2317. dandi:sha2-256: 32a8fdfebd47ee180163969adcbf36c0f59afb36f229deb1acbfd783544d4d61
  2318. encodingFormat: video/mp4
  2319. id: dandiasset:240d0a29-2d50-4b3d-ba1b-d7b68ad3777c
  2320. identifier: 240d0a29-2d50-4b3d-ba1b-d7b68ad3777c
  2321. path: VideoStimulusSet/exp_motionset1_7.mp4
  2322. schemaKey: Asset
  2323. schemaVersion: 0.6.4
  2324. wasGeneratedBy:
  2325. - description: Metadata generated by DANDI cli
  2326. endDate: '2024-01-15T11:08:46.727474-05:00'
  2327. id: urn:uuid:316c7884-cc28-42dd-859f-22691b14d260
  2328. name: Metadata generation
  2329. schemaKey: Activity
  2330. startDate: '2024-01-15T11:08:46.727474-05:00'
  2331. wasAssociatedWith:
  2332. - identifier: RRID:SCR_019009
  2333. name: DANDI Command Line Interface
  2334. schemaKey: Software
  2335. url: https://github.com/dandi/dandi-cli
  2336. version: 0.59.0
  2337. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2338. access:
  2339. - schemaKey: AccessRequirements
  2340. status: dandi:OpenAccess
  2341. blobDateModified: '2024-01-15T11:07:12.495710-05:00'
  2342. contentSize: 390387
  2343. contentUrl:
  2344. - https://api.dandiarchive.org/api/assets/05208539-ec7e-4d2e-8c55-95aae7d20bfa/download/
  2345. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/5c9/d4f/5c9d4f5b-b074-46f9-8ce0-077dd6d83916
  2346. dateModified: '2024-01-15T11:08:47.001044-05:00'
  2347. digest:
  2348. dandi:dandi-etag: d3e7ebf4840a371f32a4b1c820d2cbdb-1
  2349. dandi:sha2-256: c4a7f6bbed96d5336f3abe79d64dcb166f9b43af61d69a66ea67fba25114ac0f
  2350. encodingFormat: video/mp4
  2351. id: dandiasset:05208539-ec7e-4d2e-8c55-95aae7d20bfa
  2352. identifier: 05208539-ec7e-4d2e-8c55-95aae7d20bfa
  2353. path: VideoStimulusSet/exp_motionset1_70.mp4
  2354. schemaKey: Asset
  2355. schemaVersion: 0.6.4
  2356. wasGeneratedBy:
  2357. - description: Metadata generated by DANDI cli
  2358. endDate: '2024-01-15T11:08:47.001016-05:00'
  2359. id: urn:uuid:bc011394-fea3-4fd1-a9cf-2f119236dae3
  2360. name: Metadata generation
  2361. schemaKey: Activity
  2362. startDate: '2024-01-15T11:08:47.001016-05:00'
  2363. wasAssociatedWith:
  2364. - identifier: RRID:SCR_019009
  2365. name: DANDI Command Line Interface
  2366. schemaKey: Software
  2367. url: https://github.com/dandi/dandi-cli
  2368. version: 0.59.0
  2369. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2370. access:
  2371. - schemaKey: AccessRequirements
  2372. status: dandi:OpenAccess
  2373. blobDateModified: '2024-01-15T11:07:12.515700-05:00'
  2374. contentSize: 392834
  2375. contentUrl:
  2376. - https://api.dandiarchive.org/api/assets/38a6ac7f-9ae6-429a-9da2-9c8a32513d79/download/
  2377. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/348/e3e/348e3e54-5d97-41fd-b502-00ba0b45b218
  2378. dateModified: '2024-01-15T11:08:48.431247-05:00'
  2379. digest:
  2380. dandi:dandi-etag: ddd7ccc0f2f5d184f620a46c9e8b6bc0-1
  2381. dandi:sha2-256: 7fafebb8f2853c62dd33637b62b29f14b12c5652f0e954ba7a4d728e29368e5e
  2382. encodingFormat: video/mp4
  2383. id: dandiasset:38a6ac7f-9ae6-429a-9da2-9c8a32513d79
  2384. identifier: 38a6ac7f-9ae6-429a-9da2-9c8a32513d79
  2385. path: VideoStimulusSet/exp_motionset1_71.mp4
  2386. schemaKey: Asset
  2387. schemaVersion: 0.6.4
  2388. wasGeneratedBy:
  2389. - description: Metadata generated by DANDI cli
  2390. endDate: '2024-01-15T11:08:48.431195-05:00'
  2391. id: urn:uuid:489594e0-4dbd-4506-bcfc-e68ef353abd2
  2392. name: Metadata generation
  2393. schemaKey: Activity
  2394. startDate: '2024-01-15T11:08:48.431195-05:00'
  2395. wasAssociatedWith:
  2396. - identifier: RRID:SCR_019009
  2397. name: DANDI Command Line Interface
  2398. schemaKey: Software
  2399. url: https://github.com/dandi/dandi-cli
  2400. version: 0.59.0
  2401. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2402. access:
  2403. - schemaKey: AccessRequirements
  2404. status: dandi:OpenAccess
  2405. blobDateModified: '2024-01-15T11:07:12.533691-05:00'
  2406. contentSize: 394872
  2407. contentUrl:
  2408. - https://api.dandiarchive.org/api/assets/1bdcc97a-c821-4c8c-b33f-18a7ad12c6be/download/
  2409. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/b69/d07/b69d074e-66c9-47ed-b83e-4102ef50ab78
  2410. dateModified: '2024-01-15T11:08:48.745617-05:00'
  2411. digest:
  2412. dandi:dandi-etag: 6fd6ccb2d8b555545066efdd05ffa3ee-1
  2413. dandi:sha2-256: 8042fc8710129dde729aa5cf32f651b0d0c0fdd7d91665bc57fee96c6b51d3a9
  2414. encodingFormat: video/mp4
  2415. id: dandiasset:1bdcc97a-c821-4c8c-b33f-18a7ad12c6be
  2416. identifier: 1bdcc97a-c821-4c8c-b33f-18a7ad12c6be
  2417. path: VideoStimulusSet/exp_motionset1_72.mp4
  2418. schemaKey: Asset
  2419. schemaVersion: 0.6.4
  2420. wasGeneratedBy:
  2421. - description: Metadata generated by DANDI cli
  2422. endDate: '2024-01-15T11:08:48.745566-05:00'
  2423. id: urn:uuid:a6670603-5b9e-4cd3-bdfc-3d47eabeab2b
  2424. name: Metadata generation
  2425. schemaKey: Activity
  2426. startDate: '2024-01-15T11:08:48.745566-05:00'
  2427. wasAssociatedWith:
  2428. - identifier: RRID:SCR_019009
  2429. name: DANDI Command Line Interface
  2430. schemaKey: Software
  2431. url: https://github.com/dandi/dandi-cli
  2432. version: 0.59.0
  2433. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2434. access:
  2435. - schemaKey: AccessRequirements
  2436. status: dandi:OpenAccess
  2437. blobDateModified: '2024-01-15T11:07:12.553681-05:00'
  2438. contentSize: 394128
  2439. contentUrl:
  2440. - https://api.dandiarchive.org/api/assets/a80ab0f5-5bd9-4303-895f-dedac9f3731d/download/
  2441. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/53d/667/53d66768-7dd4-4b95-a9bd-01583b2bbd3d
  2442. dateModified: '2024-01-15T11:08:50.229426-05:00'
  2443. digest:
  2444. dandi:dandi-etag: 1f027d909925cd7ba056acf80b5c4414-1
  2445. dandi:sha2-256: 2d9452e4b4ecf9b95e7cdf4ac61c9144afc9c8b1fc59a0ebe1c2ce7c31b34cd0
  2446. encodingFormat: video/mp4
  2447. id: dandiasset:a80ab0f5-5bd9-4303-895f-dedac9f3731d
  2448. identifier: a80ab0f5-5bd9-4303-895f-dedac9f3731d
  2449. path: VideoStimulusSet/exp_motionset1_73.mp4
  2450. schemaKey: Asset
  2451. schemaVersion: 0.6.4
  2452. wasGeneratedBy:
  2453. - description: Metadata generated by DANDI cli
  2454. endDate: '2024-01-15T11:08:50.229398-05:00'
  2455. id: urn:uuid:4a0dc91a-cbae-4814-b6d2-7ffb96dc36ad
  2456. name: Metadata generation
  2457. schemaKey: Activity
  2458. startDate: '2024-01-15T11:08:50.229398-05:00'
  2459. wasAssociatedWith:
  2460. - identifier: RRID:SCR_019009
  2461. name: DANDI Command Line Interface
  2462. schemaKey: Software
  2463. url: https://github.com/dandi/dandi-cli
  2464. version: 0.59.0
  2465. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2466. access:
  2467. - schemaKey: AccessRequirements
  2468. status: dandi:OpenAccess
  2469. blobDateModified: '2024-01-15T11:07:12.576670-05:00'
  2470. contentSize: 390843
  2471. contentUrl:
  2472. - https://api.dandiarchive.org/api/assets/2e34fffa-4909-4fac-9328-2b26febbef8c/download/
  2473. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/e40/0c6/e400c6fe-d484-4b08-b104-6981a415cd02
  2474. dateModified: '2024-01-15T11:08:51.001807-05:00'
  2475. digest:
  2476. dandi:dandi-etag: eaf8633df45594ff52c2e646aa00b054-1
  2477. dandi:sha2-256: c525e9e73198f8c08381b6ba86bc278c82301c5fc8da96bde579356f57853de0
  2478. encodingFormat: video/mp4
  2479. id: dandiasset:2e34fffa-4909-4fac-9328-2b26febbef8c
  2480. identifier: 2e34fffa-4909-4fac-9328-2b26febbef8c
  2481. path: VideoStimulusSet/exp_motionset1_74.mp4
  2482. schemaKey: Asset
  2483. schemaVersion: 0.6.4
  2484. wasGeneratedBy:
  2485. - description: Metadata generated by DANDI cli
  2486. endDate: '2024-01-15T11:08:51.001775-05:00'
  2487. id: urn:uuid:dafad46a-b6bd-4e66-bc35-92e5be4b532d
  2488. name: Metadata generation
  2489. schemaKey: Activity
  2490. startDate: '2024-01-15T11:08:51.001775-05:00'
  2491. wasAssociatedWith:
  2492. - identifier: RRID:SCR_019009
  2493. name: DANDI Command Line Interface
  2494. schemaKey: Software
  2495. url: https://github.com/dandi/dandi-cli
  2496. version: 0.59.0
  2497. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2498. access:
  2499. - schemaKey: AccessRequirements
  2500. status: dandi:OpenAccess
  2501. blobDateModified: '2024-01-15T11:07:12.596660-05:00'
  2502. contentSize: 394365
  2503. contentUrl:
  2504. - https://api.dandiarchive.org/api/assets/d7bcaee9-f169-429e-b593-c30692a0f187/download/
  2505. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/2f0/ed6/2f0ed620-58db-4b72-8388-26646ba08029
  2506. dateModified: '2024-01-15T11:08:51.457920-05:00'
  2507. digest:
  2508. dandi:dandi-etag: 02f5fc11a679dc00faa8dfd4966b8c3a-1
  2509. dandi:sha2-256: b3439e85baffb1c6117b8aca9ed11238e0cd6da039c91602afd127abfb68868d
  2510. encodingFormat: video/mp4
  2511. id: dandiasset:d7bcaee9-f169-429e-b593-c30692a0f187
  2512. identifier: d7bcaee9-f169-429e-b593-c30692a0f187
  2513. path: VideoStimulusSet/exp_motionset1_75.mp4
  2514. schemaKey: Asset
  2515. schemaVersion: 0.6.4
  2516. wasGeneratedBy:
  2517. - description: Metadata generated by DANDI cli
  2518. endDate: '2024-01-15T11:08:51.457878-05:00'
  2519. id: urn:uuid:39924616-3930-416a-bebe-3fd3fe068151
  2520. name: Metadata generation
  2521. schemaKey: Activity
  2522. startDate: '2024-01-15T11:08:51.457878-05:00'
  2523. wasAssociatedWith:
  2524. - identifier: RRID:SCR_019009
  2525. name: DANDI Command Line Interface
  2526. schemaKey: Software
  2527. url: https://github.com/dandi/dandi-cli
  2528. version: 0.59.0
  2529. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2530. access:
  2531. - schemaKey: AccessRequirements
  2532. status: dandi:OpenAccess
  2533. blobDateModified: '2024-01-15T11:07:12.619648-05:00'
  2534. contentSize: 397987
  2535. contentUrl:
  2536. - https://api.dandiarchive.org/api/assets/029ca0db-ce0d-4fc3-bbfc-50b5678c9879/download/
  2537. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/169/c60/169c601a-6681-42eb-9415-c27d4e3a90f3
  2538. dateModified: '2024-01-15T11:08:52.809581-05:00'
  2539. digest:
  2540. dandi:dandi-etag: 069541f3bbe2e850e79bc488027e6aac-1
  2541. dandi:sha2-256: 6676ef1eeea9679ce677b5668115ebe622ddb73d17f6658f427c038be51044f3
  2542. encodingFormat: video/mp4
  2543. id: dandiasset:029ca0db-ce0d-4fc3-bbfc-50b5678c9879
  2544. identifier: 029ca0db-ce0d-4fc3-bbfc-50b5678c9879
  2545. path: VideoStimulusSet/exp_motionset1_76.mp4
  2546. schemaKey: Asset
  2547. schemaVersion: 0.6.4
  2548. wasGeneratedBy:
  2549. - description: Metadata generated by DANDI cli
  2550. endDate: '2024-01-15T11:08:52.809531-05:00'
  2551. id: urn:uuid:3589202e-433e-41ae-b01e-80adc7bb9136
  2552. name: Metadata generation
  2553. schemaKey: Activity
  2554. startDate: '2024-01-15T11:08:52.809531-05:00'
  2555. wasAssociatedWith:
  2556. - identifier: RRID:SCR_019009
  2557. name: DANDI Command Line Interface
  2558. schemaKey: Software
  2559. url: https://github.com/dandi/dandi-cli
  2560. version: 0.59.0
  2561. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2562. access:
  2563. - schemaKey: AccessRequirements
  2564. status: dandi:OpenAccess
  2565. blobDateModified: '2024-01-15T11:07:12.636640-05:00'
  2566. contentSize: 389449
  2567. contentUrl:
  2568. - https://api.dandiarchive.org/api/assets/2d06491e-8b0c-4a81-9992-785218b5db5f/download/
  2569. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/35a/5f7/35a5f733-f6e9-4b07-aa11-590ecf32e94b
  2570. dateModified: '2024-01-15T11:08:53.476923-05:00'
  2571. digest:
  2572. dandi:dandi-etag: e330661bdef77677f1d1f04ed9a63066-1
  2573. dandi:sha2-256: 8f6b4c9c3fa3183945aa83aaa9245d19485eb98cc61affb23d5e51e17203a038
  2574. encodingFormat: video/mp4
  2575. id: dandiasset:2d06491e-8b0c-4a81-9992-785218b5db5f
  2576. identifier: 2d06491e-8b0c-4a81-9992-785218b5db5f
  2577. path: VideoStimulusSet/exp_motionset1_77.mp4
  2578. schemaKey: Asset
  2579. schemaVersion: 0.6.4
  2580. wasGeneratedBy:
  2581. - description: Metadata generated by DANDI cli
  2582. endDate: '2024-01-15T11:08:53.476892-05:00'
  2583. id: urn:uuid:38fb1b54-c18c-4cc5-a317-3d1c4bed8460
  2584. name: Metadata generation
  2585. schemaKey: Activity
  2586. startDate: '2024-01-15T11:08:53.476892-05:00'
  2587. wasAssociatedWith:
  2588. - identifier: RRID:SCR_019009
  2589. name: DANDI Command Line Interface
  2590. schemaKey: Software
  2591. url: https://github.com/dandi/dandi-cli
  2592. version: 0.59.0
  2593. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2594. access:
  2595. - schemaKey: AccessRequirements
  2596. status: dandi:OpenAccess
  2597. blobDateModified: '2024-01-15T11:07:12.663626-05:00'
  2598. contentSize: 392257
  2599. contentUrl:
  2600. - https://api.dandiarchive.org/api/assets/9d0e549f-f9d7-4d63-b3d6-06aafa47b258/download/
  2601. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/e6d/770/e6d770bf-f6fa-455b-bd63-9cccbfe11865
  2602. dateModified: '2024-01-15T11:08:54.324319-05:00'
  2603. digest:
  2604. dandi:dandi-etag: 902c7629e9d6ca51b2aab9771142cb1a-1
  2605. dandi:sha2-256: a6791cde41b4cfbc146a79049acfe5a36dfc206deca4fe16d4c8749decc52a35
  2606. encodingFormat: video/mp4
  2607. id: dandiasset:9d0e549f-f9d7-4d63-b3d6-06aafa47b258
  2608. identifier: 9d0e549f-f9d7-4d63-b3d6-06aafa47b258
  2609. path: VideoStimulusSet/exp_motionset1_78.mp4
  2610. schemaKey: Asset
  2611. schemaVersion: 0.6.4
  2612. wasGeneratedBy:
  2613. - description: Metadata generated by DANDI cli
  2614. endDate: '2024-01-15T11:08:54.324289-05:00'
  2615. id: urn:uuid:010b935d-7133-46c1-80ea-1d0d6069d9a1
  2616. name: Metadata generation
  2617. schemaKey: Activity
  2618. startDate: '2024-01-15T11:08:54.324289-05:00'
  2619. wasAssociatedWith:
  2620. - identifier: RRID:SCR_019009
  2621. name: DANDI Command Line Interface
  2622. schemaKey: Software
  2623. url: https://github.com/dandi/dandi-cli
  2624. version: 0.59.0
  2625. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2626. access:
  2627. - schemaKey: AccessRequirements
  2628. status: dandi:OpenAccess
  2629. blobDateModified: '2024-01-15T11:07:12.690613-05:00'
  2630. contentSize: 392665
  2631. contentUrl:
  2632. - https://api.dandiarchive.org/api/assets/6b984ae9-30f5-43fc-b0da-3c95966ebe61/download/
  2633. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/da2/fed/da2fed80-34cd-41f4-833c-052ad0488a8e
  2634. dateModified: '2024-01-15T11:08:55.283666-05:00'
  2635. digest:
  2636. dandi:dandi-etag: 10c056c92985c2b0263016c955169b97-1
  2637. dandi:sha2-256: 9741c8a4c3c381b953be350ae9ce2da883ab53417017967fd59307ef4a8112be
  2638. encodingFormat: video/mp4
  2639. id: dandiasset:6b984ae9-30f5-43fc-b0da-3c95966ebe61
  2640. identifier: 6b984ae9-30f5-43fc-b0da-3c95966ebe61
  2641. path: VideoStimulusSet/exp_motionset1_79.mp4
  2642. schemaKey: Asset
  2643. schemaVersion: 0.6.4
  2644. wasGeneratedBy:
  2645. - description: Metadata generated by DANDI cli
  2646. endDate: '2024-01-15T11:08:55.283635-05:00'
  2647. id: urn:uuid:20b74779-07d3-4ccf-ad29-78f7fc186906
  2648. name: Metadata generation
  2649. schemaKey: Activity
  2650. startDate: '2024-01-15T11:08:55.283635-05:00'
  2651. wasAssociatedWith:
  2652. - identifier: RRID:SCR_019009
  2653. name: DANDI Command Line Interface
  2654. schemaKey: Software
  2655. url: https://github.com/dandi/dandi-cli
  2656. version: 0.59.0
  2657. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2658. access:
  2659. - schemaKey: AccessRequirements
  2660. status: dandi:OpenAccess
  2661. blobDateModified: '2024-01-15T11:07:12.712602-05:00'
  2662. contentSize: 383421
  2663. contentUrl:
  2664. - https://api.dandiarchive.org/api/assets/2144a2eb-c767-4392-a554-81785517be7e/download/
  2665. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/d89/487/d89487d3-cc6d-4f6a-b29c-c2ce642f491e
  2666. dateModified: '2024-01-15T11:08:55.767431-05:00'
  2667. digest:
  2668. dandi:dandi-etag: 08c40d98deb1dcf43c10ce4774a86a47-1
  2669. dandi:sha2-256: ab8594dff585beda999d1689a125160e26e02b65b3f9e85a986d08ff00734bb1
  2670. encodingFormat: video/mp4
  2671. id: dandiasset:2144a2eb-c767-4392-a554-81785517be7e
  2672. identifier: 2144a2eb-c767-4392-a554-81785517be7e
  2673. path: VideoStimulusSet/exp_motionset1_8.mp4
  2674. schemaKey: Asset
  2675. schemaVersion: 0.6.4
  2676. wasGeneratedBy:
  2677. - description: Metadata generated by DANDI cli
  2678. endDate: '2024-01-15T11:08:55.767403-05:00'
  2679. id: urn:uuid:43510f90-ca62-434e-923a-99c2c5c88809
  2680. name: Metadata generation
  2681. schemaKey: Activity
  2682. startDate: '2024-01-15T11:08:55.767403-05:00'
  2683. wasAssociatedWith:
  2684. - identifier: RRID:SCR_019009
  2685. name: DANDI Command Line Interface
  2686. schemaKey: Software
  2687. url: https://github.com/dandi/dandi-cli
  2688. version: 0.59.0
  2689. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2690. access:
  2691. - schemaKey: AccessRequirements
  2692. status: dandi:OpenAccess
  2693. blobDateModified: '2024-01-15T11:07:12.754581-05:00'
  2694. contentSize: 393376
  2695. contentUrl:
  2696. - https://api.dandiarchive.org/api/assets/e552a105-ff0b-4c5a-82ad-c5ffed56e4b7/download/
  2697. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/993/a88/993a887a-5adb-4e01-a516-e2d264af6ecf
  2698. dateModified: '2024-01-15T11:08:56.822922-05:00'
  2699. digest:
  2700. dandi:dandi-etag: 9cb9f3fcbec47c3dd0e39886c770b78a-1
  2701. dandi:sha2-256: 076a3cacc385d452de60a3d8e76de97ff950a169deef2fe701d04ad433237f2f
  2702. encodingFormat: video/mp4
  2703. id: dandiasset:e552a105-ff0b-4c5a-82ad-c5ffed56e4b7
  2704. identifier: e552a105-ff0b-4c5a-82ad-c5ffed56e4b7
  2705. path: VideoStimulusSet/exp_motionset1_80.mp4
  2706. schemaKey: Asset
  2707. schemaVersion: 0.6.4
  2708. wasGeneratedBy:
  2709. - description: Metadata generated by DANDI cli
  2710. endDate: '2024-01-15T11:08:56.822878-05:00'
  2711. id: urn:uuid:cfb55551-39de-4ddd-bd92-3b11c0215ef7
  2712. name: Metadata generation
  2713. schemaKey: Activity
  2714. startDate: '2024-01-15T11:08:56.822878-05:00'
  2715. wasAssociatedWith:
  2716. - identifier: RRID:SCR_019009
  2717. name: DANDI Command Line Interface
  2718. schemaKey: Software
  2719. url: https://github.com/dandi/dandi-cli
  2720. version: 0.59.0
  2721. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2722. access:
  2723. - schemaKey: AccessRequirements
  2724. status: dandi:OpenAccess
  2725. blobDateModified: '2024-01-15T11:07:12.773571-05:00'
  2726. contentSize: 389948
  2727. contentUrl:
  2728. - https://api.dandiarchive.org/api/assets/29c62740-ee8f-40e3-b7a8-957187f27f52/download/
  2729. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/251/99c/25199cbc-59eb-4058-bea9-886523938bb9
  2730. dateModified: '2024-01-15T11:08:57.684603-05:00'
  2731. digest:
  2732. dandi:dandi-etag: c016134cda42b40fe4fd14912f78b65f-1
  2733. dandi:sha2-256: ef6ec66fc1c2ea198cc7203c9b4dfa335a5d5a0a522b1c32b56686a1810b1e45
  2734. encodingFormat: video/mp4
  2735. id: dandiasset:29c62740-ee8f-40e3-b7a8-957187f27f52
  2736. identifier: 29c62740-ee8f-40e3-b7a8-957187f27f52
  2737. path: VideoStimulusSet/exp_motionset1_81.mp4
  2738. schemaKey: Asset
  2739. schemaVersion: 0.6.4
  2740. wasGeneratedBy:
  2741. - description: Metadata generated by DANDI cli
  2742. endDate: '2024-01-15T11:08:57.684567-05:00'
  2743. id: urn:uuid:1e00a4c5-e5cb-44d7-9e43-0c98fc47ffa2
  2744. name: Metadata generation
  2745. schemaKey: Activity
  2746. startDate: '2024-01-15T11:08:57.684567-05:00'
  2747. wasAssociatedWith:
  2748. - identifier: RRID:SCR_019009
  2749. name: DANDI Command Line Interface
  2750. schemaKey: Software
  2751. url: https://github.com/dandi/dandi-cli
  2752. version: 0.59.0
  2753. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2754. access:
  2755. - schemaKey: AccessRequirements
  2756. status: dandi:OpenAccess
  2757. blobDateModified: '2024-01-15T11:07:12.797559-05:00'
  2758. contentSize: 395021
  2759. contentUrl:
  2760. - https://api.dandiarchive.org/api/assets/472f5340-e0b3-4d52-94d6-79d2e67ac1c1/download/
  2761. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/1f6/d20/1f6d2056-8d75-4029-830f-60ac653aa214
  2762. dateModified: '2024-01-15T11:08:59.054630-05:00'
  2763. digest:
  2764. dandi:dandi-etag: 694e31e51d55339de139973202019299-1
  2765. dandi:sha2-256: 1c868a559cb4c6911c217b72e7d81ce4769a6a94c2424dd6da9a317edfc80c37
  2766. encodingFormat: video/mp4
  2767. id: dandiasset:472f5340-e0b3-4d52-94d6-79d2e67ac1c1
  2768. identifier: 472f5340-e0b3-4d52-94d6-79d2e67ac1c1
  2769. path: VideoStimulusSet/exp_motionset1_82.mp4
  2770. schemaKey: Asset
  2771. schemaVersion: 0.6.4
  2772. wasGeneratedBy:
  2773. - description: Metadata generated by DANDI cli
  2774. endDate: '2024-01-15T11:08:59.054589-05:00'
  2775. id: urn:uuid:d5b33ae6-d879-4601-ac6f-1f2394dde541
  2776. name: Metadata generation
  2777. schemaKey: Activity
  2778. startDate: '2024-01-15T11:08:59.054589-05:00'
  2779. wasAssociatedWith:
  2780. - identifier: RRID:SCR_019009
  2781. name: DANDI Command Line Interface
  2782. schemaKey: Software
  2783. url: https://github.com/dandi/dandi-cli
  2784. version: 0.59.0
  2785. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2786. access:
  2787. - schemaKey: AccessRequirements
  2788. status: dandi:OpenAccess
  2789. blobDateModified: '2024-01-15T11:07:12.819548-05:00'
  2790. contentSize: 398756
  2791. contentUrl:
  2792. - https://api.dandiarchive.org/api/assets/fafc29b7-ab87-4596-8c32-6c0f8d3c754b/download/
  2793. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/f27/a12/f27a126e-f877-4f09-a5fc-4b9a3599e211
  2794. dateModified: '2024-01-15T11:08:59.819376-05:00'
  2795. digest:
  2796. dandi:dandi-etag: 58b03ba9936a16bf02e9e279245041d0-1
  2797. dandi:sha2-256: 7e2fdfd8bdad83ed03d06f7fcc7787b53effb477f596e97d933959c6547d919b
  2798. encodingFormat: video/mp4
  2799. id: dandiasset:fafc29b7-ab87-4596-8c32-6c0f8d3c754b
  2800. identifier: fafc29b7-ab87-4596-8c32-6c0f8d3c754b
  2801. path: VideoStimulusSet/exp_motionset1_83.mp4
  2802. schemaKey: Asset
  2803. schemaVersion: 0.6.4
  2804. wasGeneratedBy:
  2805. - description: Metadata generated by DANDI cli
  2806. endDate: '2024-01-15T11:08:59.819330-05:00'
  2807. id: urn:uuid:065d06a5-ef75-4d71-82e1-277439d91987
  2808. name: Metadata generation
  2809. schemaKey: Activity
  2810. startDate: '2024-01-15T11:08:59.819330-05:00'
  2811. wasAssociatedWith:
  2812. - identifier: RRID:SCR_019009
  2813. name: DANDI Command Line Interface
  2814. schemaKey: Software
  2815. url: https://github.com/dandi/dandi-cli
  2816. version: 0.59.0
  2817. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2818. access:
  2819. - schemaKey: AccessRequirements
  2820. status: dandi:OpenAccess
  2821. blobDateModified: '2024-01-15T11:07:12.839538-05:00'
  2822. contentSize: 392459
  2823. contentUrl:
  2824. - https://api.dandiarchive.org/api/assets/48feea99-30df-4b21-ba9d-e23aa7a3e740/download/
  2825. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/15b/26d/15b26d2c-34e4-4342-849a-21c8e39df88d
  2826. dateModified: '2024-01-15T11:09:00.684466-05:00'
  2827. digest:
  2828. dandi:dandi-etag: c70f5881a3bb3eac2d7846a84f6e7765-1
  2829. dandi:sha2-256: 3c9812ce0b7bbbc4699246423c85c58a478ebc8e762a0e755c860eae07ae86fc
  2830. encodingFormat: video/mp4
  2831. id: dandiasset:48feea99-30df-4b21-ba9d-e23aa7a3e740
  2832. identifier: 48feea99-30df-4b21-ba9d-e23aa7a3e740
  2833. path: VideoStimulusSet/exp_motionset1_84.mp4
  2834. schemaKey: Asset
  2835. schemaVersion: 0.6.4
  2836. wasGeneratedBy:
  2837. - description: Metadata generated by DANDI cli
  2838. endDate: '2024-01-15T11:09:00.684425-05:00'
  2839. id: urn:uuid:752c0963-7cbb-46d6-93a0-96eaf94cd6a9
  2840. name: Metadata generation
  2841. schemaKey: Activity
  2842. startDate: '2024-01-15T11:09:00.684425-05:00'
  2843. wasAssociatedWith:
  2844. - identifier: RRID:SCR_019009
  2845. name: DANDI Command Line Interface
  2846. schemaKey: Software
  2847. url: https://github.com/dandi/dandi-cli
  2848. version: 0.59.0
  2849. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2850. access:
  2851. - schemaKey: AccessRequirements
  2852. status: dandi:OpenAccess
  2853. blobDateModified: '2024-01-15T11:07:12.870523-05:00'
  2854. contentSize: 394485
  2855. contentUrl:
  2856. - https://api.dandiarchive.org/api/assets/1edd7e85-9be4-4d63-ad7b-b4ba2bc0cb1f/download/
  2857. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/5b0/fa8/5b0fa814-de3b-40f2-a13b-29f176c9cbf6
  2858. dateModified: '2024-01-15T11:09:01.051784-05:00'
  2859. digest:
  2860. dandi:dandi-etag: 83c4fbc1ceacc0013327a5d7f62b23e8-1
  2861. dandi:sha2-256: 2baa95bca02aeb3b739470eff5a26bcaafc160c4b918a5f55bd97649e58b0f25
  2862. encodingFormat: video/mp4
  2863. id: dandiasset:1edd7e85-9be4-4d63-ad7b-b4ba2bc0cb1f
  2864. identifier: 1edd7e85-9be4-4d63-ad7b-b4ba2bc0cb1f
  2865. path: VideoStimulusSet/exp_motionset1_85.mp4
  2866. schemaKey: Asset
  2867. schemaVersion: 0.6.4
  2868. wasGeneratedBy:
  2869. - description: Metadata generated by DANDI cli
  2870. endDate: '2024-01-15T11:09:01.051738-05:00'
  2871. id: urn:uuid:de39a33a-ecd2-4a19-9824-486cf3c4c994
  2872. name: Metadata generation
  2873. schemaKey: Activity
  2874. startDate: '2024-01-15T11:09:01.051738-05:00'
  2875. wasAssociatedWith:
  2876. - identifier: RRID:SCR_019009
  2877. name: DANDI Command Line Interface
  2878. schemaKey: Software
  2879. url: https://github.com/dandi/dandi-cli
  2880. version: 0.59.0
  2881. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2882. access:
  2883. - schemaKey: AccessRequirements
  2884. status: dandi:OpenAccess
  2885. blobDateModified: '2024-01-15T11:07:12.892512-05:00'
  2886. contentSize: 395813
  2887. contentUrl:
  2888. - https://api.dandiarchive.org/api/assets/839fc982-1709-4ad1-b231-853724d65e84/download/
  2889. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/3b3/94f/3b394fd3-ade2-415e-84a8-8060372ee78b
  2890. dateModified: '2024-01-15T11:09:02.323702-05:00'
  2891. digest:
  2892. dandi:dandi-etag: 28df606b23b8db27841302592ccc21d4-1
  2893. dandi:sha2-256: 12fde32f33f7126ddd5a9043012e711ce924815c5a68e2c65c7f9b2fbe820380
  2894. encodingFormat: video/mp4
  2895. id: dandiasset:839fc982-1709-4ad1-b231-853724d65e84
  2896. identifier: 839fc982-1709-4ad1-b231-853724d65e84
  2897. path: VideoStimulusSet/exp_motionset1_86.mp4
  2898. schemaKey: Asset
  2899. schemaVersion: 0.6.4
  2900. wasGeneratedBy:
  2901. - description: Metadata generated by DANDI cli
  2902. endDate: '2024-01-15T11:09:02.323646-05:00'
  2903. id: urn:uuid:78d9de5d-74c9-4664-8c5e-89d9c56dd096
  2904. name: Metadata generation
  2905. schemaKey: Activity
  2906. startDate: '2024-01-15T11:09:02.323646-05:00'
  2907. wasAssociatedWith:
  2908. - identifier: RRID:SCR_019009
  2909. name: DANDI Command Line Interface
  2910. schemaKey: Software
  2911. url: https://github.com/dandi/dandi-cli
  2912. version: 0.59.0
  2913. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2914. access:
  2915. - schemaKey: AccessRequirements
  2916. status: dandi:OpenAccess
  2917. blobDateModified: '2024-01-15T11:07:12.917499-05:00'
  2918. contentSize: 394763
  2919. contentUrl:
  2920. - https://api.dandiarchive.org/api/assets/1b50c5b1-7e59-4b5e-8fd1-c7d4904e926e/download/
  2921. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/e6d/21c/e6d21c6e-3937-413b-b81d-f0b2794c239b
  2922. dateModified: '2024-01-15T11:09:04.021640-05:00'
  2923. digest:
  2924. dandi:dandi-etag: 145f3ba02ffe03b6692db39bbf2dd391-1
  2925. dandi:sha2-256: fa3bc5e166b6f7faa21757b2e01dd084c1db4af37bc83dc27ba39e7916933ded
  2926. encodingFormat: video/mp4
  2927. id: dandiasset:1b50c5b1-7e59-4b5e-8fd1-c7d4904e926e
  2928. identifier: 1b50c5b1-7e59-4b5e-8fd1-c7d4904e926e
  2929. path: VideoStimulusSet/exp_motionset1_87.mp4
  2930. schemaKey: Asset
  2931. schemaVersion: 0.6.4
  2932. wasGeneratedBy:
  2933. - description: Metadata generated by DANDI cli
  2934. endDate: '2024-01-15T11:09:04.021610-05:00'
  2935. id: urn:uuid:c2d57ac6-b975-4e9d-8f87-31cb540aadfe
  2936. name: Metadata generation
  2937. schemaKey: Activity
  2938. startDate: '2024-01-15T11:09:04.021610-05:00'
  2939. wasAssociatedWith:
  2940. - identifier: RRID:SCR_019009
  2941. name: DANDI Command Line Interface
  2942. schemaKey: Software
  2943. url: https://github.com/dandi/dandi-cli
  2944. version: 0.59.0
  2945. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2946. access:
  2947. - schemaKey: AccessRequirements
  2948. status: dandi:OpenAccess
  2949. blobDateModified: '2024-01-15T11:07:12.934491-05:00'
  2950. contentSize: 393928
  2951. contentUrl:
  2952. - https://api.dandiarchive.org/api/assets/a6570754-57c6-45ad-a2d4-95b6456cb506/download/
  2953. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/5f8/718/5f87184d-4b5d-4084-92a5-acdf4bdd4e57
  2954. dateModified: '2024-01-15T11:09:04.161726-05:00'
  2955. digest:
  2956. dandi:dandi-etag: f1124a8b9330f2504c7aab20e203b06c-1
  2957. dandi:sha2-256: d074db0f61848fe2f8ce134af16230e0db3c49b234b51e6653e88f2a70c97d39
  2958. encodingFormat: video/mp4
  2959. id: dandiasset:a6570754-57c6-45ad-a2d4-95b6456cb506
  2960. identifier: a6570754-57c6-45ad-a2d4-95b6456cb506
  2961. path: VideoStimulusSet/exp_motionset1_88.mp4
  2962. schemaKey: Asset
  2963. schemaVersion: 0.6.4
  2964. wasGeneratedBy:
  2965. - description: Metadata generated by DANDI cli
  2966. endDate: '2024-01-15T11:09:04.161697-05:00'
  2967. id: urn:uuid:4c6361d8-6ca1-4cea-968c-3d443ea92702
  2968. name: Metadata generation
  2969. schemaKey: Activity
  2970. startDate: '2024-01-15T11:09:04.161697-05:00'
  2971. wasAssociatedWith:
  2972. - identifier: RRID:SCR_019009
  2973. name: DANDI Command Line Interface
  2974. schemaKey: Software
  2975. url: https://github.com/dandi/dandi-cli
  2976. version: 0.59.0
  2977. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2978. access:
  2979. - schemaKey: AccessRequirements
  2980. status: dandi:OpenAccess
  2981. blobDateModified: '2024-01-15T11:07:12.957479-05:00'
  2982. contentSize: 399152
  2983. contentUrl:
  2984. - https://api.dandiarchive.org/api/assets/dc7665b7-58d4-4806-a038-d13ea33e6cd2/download/
  2985. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/6b3/5b4/6b35b4fd-35be-45c6-8a50-66aa2235e635
  2986. dateModified: '2024-01-15T11:09:04.961224-05:00'
  2987. digest:
  2988. dandi:dandi-etag: aca51053ac239587e0c1f446b61c357d-1
  2989. dandi:sha2-256: 1290de7f458cf7dcebdef211999fc75b607d6c72f0a6bb671af1a9cb054daa80
  2990. encodingFormat: video/mp4
  2991. id: dandiasset:dc7665b7-58d4-4806-a038-d13ea33e6cd2
  2992. identifier: dc7665b7-58d4-4806-a038-d13ea33e6cd2
  2993. path: VideoStimulusSet/exp_motionset1_89.mp4
  2994. schemaKey: Asset
  2995. schemaVersion: 0.6.4
  2996. wasGeneratedBy:
  2997. - description: Metadata generated by DANDI cli
  2998. endDate: '2024-01-15T11:09:04.961182-05:00'
  2999. id: urn:uuid:3bddc8b5-aab4-4994-a5de-c2e7906348ce
  3000. name: Metadata generation
  3001. schemaKey: Activity
  3002. startDate: '2024-01-15T11:09:04.961182-05:00'
  3003. wasAssociatedWith:
  3004. - identifier: RRID:SCR_019009
  3005. name: DANDI Command Line Interface
  3006. schemaKey: Software
  3007. url: https://github.com/dandi/dandi-cli
  3008. version: 0.59.0
  3009. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3010. access:
  3011. - schemaKey: AccessRequirements
  3012. status: dandi:OpenAccess
  3013. blobDateModified: '2024-01-15T11:07:12.978469-05:00'
  3014. contentSize: 383652
  3015. contentUrl:
  3016. - https://api.dandiarchive.org/api/assets/28663e61-f8d1-4c04-8c72-a4ffec130a17/download/
  3017. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/4e5/f18/4e5f1845-eafc-4c9b-8029-957ddbb2872d
  3018. dateModified: '2024-01-15T11:09:05.340622-05:00'
  3019. digest:
  3020. dandi:dandi-etag: 887024d1effb28fb14644fd141afa1c8-1
  3021. dandi:sha2-256: 330d3a631a3be2ab010c0bc4564773ad452e24f3bbc8e6329588972d0e83ce6f
  3022. encodingFormat: video/mp4
  3023. id: dandiasset:28663e61-f8d1-4c04-8c72-a4ffec130a17
  3024. identifier: 28663e61-f8d1-4c04-8c72-a4ffec130a17
  3025. path: VideoStimulusSet/exp_motionset1_9.mp4
  3026. schemaKey: Asset
  3027. schemaVersion: 0.6.4
  3028. wasGeneratedBy:
  3029. - description: Metadata generated by DANDI cli
  3030. endDate: '2024-01-15T11:09:05.340579-05:00'
  3031. id: urn:uuid:2c6b535c-b42f-4bea-b59a-c1fd9a019a1c
  3032. name: Metadata generation
  3033. schemaKey: Activity
  3034. startDate: '2024-01-15T11:09:05.340579-05:00'
  3035. wasAssociatedWith:
  3036. - identifier: RRID:SCR_019009
  3037. name: DANDI Command Line Interface
  3038. schemaKey: Software
  3039. url: https://github.com/dandi/dandi-cli
  3040. version: 0.59.0
  3041. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3042. access:
  3043. - schemaKey: AccessRequirements
  3044. status: dandi:OpenAccess
  3045. blobDateModified: '2024-01-15T11:07:12.996460-05:00'
  3046. contentSize: 397519
  3047. contentUrl:
  3048. - https://api.dandiarchive.org/api/assets/40f4c2d8-756b-4726-b434-9c4ae0aafbb7/download/
  3049. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/502/46a/50246a8f-cc71-4aab-b171-35dd0463e834
  3050. dateModified: '2024-01-15T11:09:06.956542-05:00'
  3051. digest:
  3052. dandi:dandi-etag: b3e63c53cabc656964f4ed59b2e14b2f-1
  3053. dandi:sha2-256: ef8131aea35e978411b59fc4d30ec622d7689538bd6e0f3de384be449acab904
  3054. encodingFormat: video/mp4
  3055. id: dandiasset:40f4c2d8-756b-4726-b434-9c4ae0aafbb7
  3056. identifier: 40f4c2d8-756b-4726-b434-9c4ae0aafbb7
  3057. path: VideoStimulusSet/exp_motionset1_90.mp4
  3058. schemaKey: Asset
  3059. schemaVersion: 0.6.4
  3060. wasGeneratedBy:
  3061. - description: Metadata generated by DANDI cli
  3062. endDate: '2024-01-15T11:09:06.956495-05:00'
  3063. id: urn:uuid:a4cca075-f65b-4046-8caf-f3b79cd6a313
  3064. name: Metadata generation
  3065. schemaKey: Activity
  3066. startDate: '2024-01-15T11:09:06.956495-05:00'
  3067. wasAssociatedWith:
  3068. - identifier: RRID:SCR_019009
  3069. name: DANDI Command Line Interface
  3070. schemaKey: Software
  3071. url: https://github.com/dandi/dandi-cli
  3072. version: 0.59.0
  3073. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3074. access:
  3075. - schemaKey: AccessRequirements
  3076. status: dandi:OpenAccess
  3077. blobDateModified: '2024-01-15T11:07:13.046435-05:00'
  3078. contentSize: 397472
  3079. contentUrl:
  3080. - https://api.dandiarchive.org/api/assets/6d8b8ff2-0712-40eb-8087-c27a8ddac474/download/
  3081. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/b90/aa3/b90aa37a-e920-4467-85e6-50bf4279eb4e
  3082. dateModified: '2024-01-15T11:09:09.001816-05:00'
  3083. digest:
  3084. dandi:dandi-etag: 3a570571a480e5eefa1d86792ea984c9-1
  3085. dandi:sha2-256: 0c4c29ef5312da45f3187dd7467ea77e56965f7ebb449ce0e8a6ad88399d1de8
  3086. encodingFormat: video/mp4
  3087. id: dandiasset:6d8b8ff2-0712-40eb-8087-c27a8ddac474
  3088. identifier: 6d8b8ff2-0712-40eb-8087-c27a8ddac474
  3089. path: VideoStimulusSet/exp_motionset1_92.mp4
  3090. schemaKey: Asset
  3091. schemaVersion: 0.6.4
  3092. wasGeneratedBy:
  3093. - description: Metadata generated by DANDI cli
  3094. endDate: '2024-01-15T11:09:09.001772-05:00'
  3095. id: urn:uuid:860edb71-ae38-4e29-87d8-d89392e965b3
  3096. name: Metadata generation
  3097. schemaKey: Activity
  3098. startDate: '2024-01-15T11:09:09.001772-05:00'
  3099. wasAssociatedWith:
  3100. - identifier: RRID:SCR_019009
  3101. name: DANDI Command Line Interface
  3102. schemaKey: Software
  3103. url: https://github.com/dandi/dandi-cli
  3104. version: 0.59.0
  3105. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3106. access:
  3107. - schemaKey: AccessRequirements
  3108. status: dandi:OpenAccess
  3109. blobDateModified: '2024-01-15T11:07:13.022447-05:00'
  3110. contentSize: 397224
  3111. contentUrl:
  3112. - https://api.dandiarchive.org/api/assets/8fad14c7-fd2c-4199-afb8-2b53f5ac120e/download/
  3113. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/9fe/236/9fe23695-5574-4058-9399-38bd085ade49
  3114. dateModified: '2024-01-15T11:09:08.349758-05:00'
  3115. digest:
  3116. dandi:dandi-etag: 37d1b90793f0abbadb449f914f663c4c-1
  3117. dandi:sha2-256: bd057b7f89db557904cae2eca99adb65c7472b0e66adcde2467e142d728d51be
  3118. encodingFormat: video/mp4
  3119. id: dandiasset:8fad14c7-fd2c-4199-afb8-2b53f5ac120e
  3120. identifier: 8fad14c7-fd2c-4199-afb8-2b53f5ac120e
  3121. path: VideoStimulusSet/exp_motionset1_91.mp4
  3122. schemaKey: Asset
  3123. schemaVersion: 0.6.4
  3124. wasGeneratedBy:
  3125. - description: Metadata generated by DANDI cli
  3126. endDate: '2024-01-15T11:09:08.349714-05:00'
  3127. id: urn:uuid:463eaa5b-3c4c-4618-b224-99a0846c3e5b
  3128. name: Metadata generation
  3129. schemaKey: Activity
  3130. startDate: '2024-01-15T11:09:08.349714-05:00'
  3131. wasAssociatedWith:
  3132. - identifier: RRID:SCR_019009
  3133. name: DANDI Command Line Interface
  3134. schemaKey: Software
  3135. url: https://github.com/dandi/dandi-cli
  3136. version: 0.59.0
  3137. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3138. access:
  3139. - schemaKey: AccessRequirements
  3140. status: dandi:OpenAccess
  3141. blobDateModified: '2024-01-15T11:07:13.059428-05:00'
  3142. contentSize: 400129
  3143. contentUrl:
  3144. - https://api.dandiarchive.org/api/assets/5f327435-2785-4bab-aa18-877969c5c1cb/download/
  3145. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/98b/585/98b58582-41c4-4d4f-9d52-0f4fbb74b302
  3146. dateModified: '2024-01-15T11:09:09.639881-05:00'
  3147. digest:
  3148. dandi:dandi-etag: 925bd2344e02aca002a4f09ae35e3707-1
  3149. dandi:sha2-256: a926285433c3b85497484a036205ed24ad0aa983994d746572b8ee7a1c2f0486
  3150. encodingFormat: video/mp4
  3151. id: dandiasset:5f327435-2785-4bab-aa18-877969c5c1cb
  3152. identifier: 5f327435-2785-4bab-aa18-877969c5c1cb
  3153. path: VideoStimulusSet/exp_motionset1_93.mp4
  3154. schemaKey: Asset
  3155. schemaVersion: 0.6.4
  3156. wasGeneratedBy:
  3157. - description: Metadata generated by DANDI cli
  3158. endDate: '2024-01-15T11:09:09.639849-05:00'
  3159. id: urn:uuid:374a4be0-5c32-4433-a8da-bea3959e0a5c
  3160. name: Metadata generation
  3161. schemaKey: Activity
  3162. startDate: '2024-01-15T11:09:09.639849-05:00'
  3163. wasAssociatedWith:
  3164. - identifier: RRID:SCR_019009
  3165. name: DANDI Command Line Interface
  3166. schemaKey: Software
  3167. url: https://github.com/dandi/dandi-cli
  3168. version: 0.59.0
  3169. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3170. access:
  3171. - schemaKey: AccessRequirements
  3172. status: dandi:OpenAccess
  3173. blobDateModified: '2024-01-15T11:07:13.078419-05:00'
  3174. contentSize: 399532
  3175. contentUrl:
  3176. - https://api.dandiarchive.org/api/assets/bb3f5b2c-8c2c-43c8-bd5e-72347a87c444/download/
  3177. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/6a3/d4d/6a3d4dd9-629c-40b7-850e-956ea43e11d7
  3178. dateModified: '2024-01-15T11:09:10.356851-05:00'
  3179. digest:
  3180. dandi:dandi-etag: 5b7ee6864546dd63f6b03780e78e948f-1
  3181. dandi:sha2-256: 4244336ccb27a385fa7a478173d32cfe61232618ea9be7bb3156d3e202b924a9
  3182. encodingFormat: video/mp4
  3183. id: dandiasset:bb3f5b2c-8c2c-43c8-bd5e-72347a87c444
  3184. identifier: bb3f5b2c-8c2c-43c8-bd5e-72347a87c444
  3185. path: VideoStimulusSet/exp_motionset1_94.mp4
  3186. schemaKey: Asset
  3187. schemaVersion: 0.6.4
  3188. wasGeneratedBy:
  3189. - description: Metadata generated by DANDI cli
  3190. endDate: '2024-01-15T11:09:10.356814-05:00'
  3191. id: urn:uuid:731de206-abba-4b55-971a-1eee61b31fd2
  3192. name: Metadata generation
  3193. schemaKey: Activity
  3194. startDate: '2024-01-15T11:09:10.356814-05:00'
  3195. wasAssociatedWith:
  3196. - identifier: RRID:SCR_019009
  3197. name: DANDI Command Line Interface
  3198. schemaKey: Software
  3199. url: https://github.com/dandi/dandi-cli
  3200. version: 0.59.0
  3201. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3202. access:
  3203. - schemaKey: AccessRequirements
  3204. status: dandi:OpenAccess
  3205. blobDateModified: '2024-01-15T11:07:13.117399-05:00'
  3206. contentSize: 398235
  3207. contentUrl:
  3208. - https://api.dandiarchive.org/api/assets/9898585c-f469-4492-9e0e-b92cf3df59e8/download/
  3209. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/4e5/f05/4e5f0551-5784-40fc-9e19-652debc46495
  3210. dateModified: '2024-01-15T11:09:10.932876-05:00'
  3211. digest:
  3212. dandi:dandi-etag: ef45ee421e562f9c561653c9ce9ddfa7-1
  3213. dandi:sha2-256: f50bc72205ddce05c60c819e002b61b338ac01222054d55a9d5108450654648a
  3214. encodingFormat: video/mp4
  3215. id: dandiasset:9898585c-f469-4492-9e0e-b92cf3df59e8
  3216. identifier: 9898585c-f469-4492-9e0e-b92cf3df59e8
  3217. path: VideoStimulusSet/exp_motionset1_95.mp4
  3218. schemaKey: Asset
  3219. schemaVersion: 0.6.4
  3220. wasGeneratedBy:
  3221. - description: Metadata generated by DANDI cli
  3222. endDate: '2024-01-15T11:09:10.932847-05:00'
  3223. id: urn:uuid:939f5fb6-2e70-4f85-a98a-ba350b7b1a11
  3224. name: Metadata generation
  3225. schemaKey: Activity
  3226. startDate: '2024-01-15T11:09:10.932847-05:00'
  3227. wasAssociatedWith:
  3228. - identifier: RRID:SCR_019009
  3229. name: DANDI Command Line Interface
  3230. schemaKey: Software
  3231. url: https://github.com/dandi/dandi-cli
  3232. version: 0.59.0
  3233. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3234. access:
  3235. - schemaKey: AccessRequirements
  3236. status: dandi:OpenAccess
  3237. blobDateModified: '2024-01-15T11:07:13.148384-05:00'
  3238. contentSize: 397831
  3239. contentUrl:
  3240. - https://api.dandiarchive.org/api/assets/abe732d2-4a6b-4b13-a67c-406e60a8e22a/download/
  3241. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/049/9d8/0499d8a8-83c5-4f18-948c-f4767f98ecfa
  3242. dateModified: '2024-01-15T11:09:12.717003-05:00'
  3243. digest:
  3244. dandi:dandi-etag: b50b7cb42516b0ec01f8adc634e22bcf-1
  3245. dandi:sha2-256: be08edd3e9549a5fd1476dc0dbb68184ca53487172a40f6df66749909ea34fd8
  3246. encodingFormat: video/mp4
  3247. id: dandiasset:abe732d2-4a6b-4b13-a67c-406e60a8e22a
  3248. identifier: abe732d2-4a6b-4b13-a67c-406e60a8e22a
  3249. path: VideoStimulusSet/exp_motionset1_96.mp4
  3250. schemaKey: Asset
  3251. schemaVersion: 0.6.4
  3252. wasGeneratedBy:
  3253. - description: Metadata generated by DANDI cli
  3254. endDate: '2024-01-15T11:09:12.716959-05:00'
  3255. id: urn:uuid:32c15174-6d13-47f5-9009-23b21fbf0321
  3256. name: Metadata generation
  3257. schemaKey: Activity
  3258. startDate: '2024-01-15T11:09:12.716959-05:00'
  3259. wasAssociatedWith:
  3260. - identifier: RRID:SCR_019009
  3261. name: DANDI Command Line Interface
  3262. schemaKey: Software
  3263. url: https://github.com/dandi/dandi-cli
  3264. version: 0.59.0
  3265. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3266. access:
  3267. - schemaKey: AccessRequirements
  3268. status: dandi:OpenAccess
  3269. blobDateModified: '2024-01-15T11:07:13.188364-05:00'
  3270. contentSize: 400684
  3271. contentUrl:
  3272. - https://api.dandiarchive.org/api/assets/0aa8c487-f964-4166-bdc1-04d04c4612c6/download/
  3273. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/c63/78c/c6378cc5-7e06-414c-9179-21f8891ee87e
  3274. dateModified: '2024-01-15T11:09:13.892014-05:00'
  3275. digest:
  3276. dandi:dandi-etag: 7c56af5b4f24244792fa9704c8b5474b-1
  3277. dandi:sha2-256: 2b5f19e101c25ffbb9f73531b4f5801dc13b0a0150595f2b68e9b373a1b73fee
  3278. encodingFormat: video/mp4
  3279. id: dandiasset:0aa8c487-f964-4166-bdc1-04d04c4612c6
  3280. identifier: 0aa8c487-f964-4166-bdc1-04d04c4612c6
  3281. path: VideoStimulusSet/exp_motionset1_98.mp4
  3282. schemaKey: Asset
  3283. schemaVersion: 0.6.4
  3284. wasGeneratedBy:
  3285. - description: Metadata generated by DANDI cli
  3286. endDate: '2024-01-15T11:09:13.891979-05:00'
  3287. id: urn:uuid:920618c7-5477-48a4-8048-cd9b7fe08d1e
  3288. name: Metadata generation
  3289. schemaKey: Activity
  3290. startDate: '2024-01-15T11:09:13.891979-05:00'
  3291. wasAssociatedWith:
  3292. - identifier: RRID:SCR_019009
  3293. name: DANDI Command Line Interface
  3294. schemaKey: Software
  3295. url: https://github.com/dandi/dandi-cli
  3296. version: 0.59.0
  3297. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3298. access:
  3299. - schemaKey: AccessRequirements
  3300. status: dandi:OpenAccess
  3301. blobDateModified: '2024-01-15T11:07:13.171372-05:00'
  3302. contentSize: 402440
  3303. contentUrl:
  3304. - https://api.dandiarchive.org/api/assets/0ab2f274-eaf2-4637-bbc0-63aacc61db22/download/
  3305. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/7b6/d10/7b6d10bd-33ae-4e1e-b99a-f8c1a281f6b8
  3306. dateModified: '2024-01-15T11:09:13.213054-05:00'
  3307. digest:
  3308. dandi:dandi-etag: 7c418ac9159d4c5b3f9886004ac54fbc-1
  3309. dandi:sha2-256: d6a1180b36e03c377dd5e1f246dac9abcdaebde1e7101caca134e6f71b3d84b2
  3310. encodingFormat: video/mp4
  3311. id: dandiasset:0ab2f274-eaf2-4637-bbc0-63aacc61db22
  3312. identifier: 0ab2f274-eaf2-4637-bbc0-63aacc61db22
  3313. path: VideoStimulusSet/exp_motionset1_97.mp4
  3314. schemaKey: Asset
  3315. schemaVersion: 0.6.4
  3316. wasGeneratedBy:
  3317. - description: Metadata generated by DANDI cli
  3318. endDate: '2024-01-15T11:09:13.213022-05:00'
  3319. id: urn:uuid:12e96ef7-cf0d-480b-914f-801ba5ae9592
  3320. name: Metadata generation
  3321. schemaKey: Activity
  3322. startDate: '2024-01-15T11:09:13.213022-05:00'
  3323. wasAssociatedWith:
  3324. - identifier: RRID:SCR_019009
  3325. name: DANDI Command Line Interface
  3326. schemaKey: Software
  3327. url: https://github.com/dandi/dandi-cli
  3328. version: 0.59.0
  3329. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3330. access:
  3331. - schemaKey: AccessRequirements
  3332. status: dandi:OpenAccess
  3333. blobDateModified: '2024-01-15T11:07:13.211352-05:00'
  3334. contentSize: 398482
  3335. contentUrl:
  3336. - https://api.dandiarchive.org/api/assets/d4a5c890-c257-46f4-8b18-8ea7c9111880/download/
  3337. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/5cd/46f/5cd46f6d-5cd0-48d3-ac1e-267922d9a13d
  3338. dateModified: '2024-01-15T11:09:14.303548-05:00'
  3339. digest:
  3340. dandi:dandi-etag: 24c700bf0079009ad817b892dfe56ab6-1
  3341. dandi:sha2-256: c2bef63ee106615e9613433d84f648d263fef6d94a985e69f1c1370111ab895c
  3342. encodingFormat: video/mp4
  3343. id: dandiasset:d4a5c890-c257-46f4-8b18-8ea7c9111880
  3344. identifier: d4a5c890-c257-46f4-8b18-8ea7c9111880
  3345. path: VideoStimulusSet/exp_motionset1_99.mp4
  3346. schemaKey: Asset
  3347. schemaVersion: 0.6.4
  3348. wasGeneratedBy:
  3349. - description: Metadata generated by DANDI cli
  3350. endDate: '2024-01-15T11:09:14.303515-05:00'
  3351. id: urn:uuid:d5e40d76-4d01-4742-a4bb-eaf40f1d6d91
  3352. name: Metadata generation
  3353. schemaKey: Activity
  3354. startDate: '2024-01-15T11:09:14.303515-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.0
  3361. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3362. access:
  3363. - schemaKey: AccessRequirements
  3364. status: dandi:OpenAccess
  3365. approach:
  3366. - name: electrophysiological approach
  3367. schemaKey: ApproachType
  3368. blobDateModified: '2024-04-21T10:19:19.034151-04:00'
  3369. contentSize: 933931000
  3370. contentUrl:
  3371. - https://api.dandiarchive.org/api/assets/df952281-db79-43dd-9f6f-1abaf4d38972/download/
  3372. - https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/b43/edc/b43edc98-c9e5-487f-a4f0-e1148080365a
  3373. dateModified: '2024-04-21T17:19:01.627419-04:00'
  3374. digest:
  3375. dandi:dandi-etag: cb4c285cfc71a7c6ef6fd76e805606e6-14
  3376. encodingFormat: application/x-nwb
  3377. id: dandiasset:df952281-db79-43dd-9f6f-1abaf4d38972
  3378. identifier: df952281-db79-43dd-9f6f-1abaf4d38972
  3379. keywords:
  3380. - Vistual Stimuli
  3381. - Object Recognition
  3382. - Inferior temporal cortex (IT)
  3383. - Ventral visual pathway
  3384. measurementTechnique:
  3385. - name: surgical technique
  3386. schemaKey: MeasurementTechniqueType
  3387. path: sub-pico/sub-pico_ecephys+image.nwb
  3388. schemaKey: Asset
  3389. schemaVersion: 0.6.7
  3390. variableMeasured:
  3391. - schemaKey: PropertyValue
  3392. value: ElectrodeGroup
  3393. wasAttributedTo:
  3394. - age:
  3395. schemaKey: PropertyValue
  3396. unitText: ISO-8601 duration
  3397. value: P3266DT46943S
  3398. valueReference:
  3399. schemaKey: PropertyValue
  3400. value: dandi:BirthReference
  3401. identifier: pico
  3402. schemaKey: Participant
  3403. sex:
  3404. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3405. name: Male
  3406. schemaKey: SexType
  3407. species:
  3408. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3409. name: Macaca mulatta - Rhesus monkey
  3410. schemaKey: SpeciesType
  3411. wasGeneratedBy:
  3412. - description: This NWB is derived from the processing of neurophysiological recordings
  3413. in the inferior temporal (IT) cortex of one macaque monkey (indicated in
  3414. the file). These recordings were conducted during Rapid Serial Visual Presentation
  3415. (RSVP) of randomized images, each presented at the center of gaze during
  3416. fixation. The dataset in this file includes a responses from a number of individual
  3417. neural recording sites collected via chronically implanted Utah arrays. For each
  3418. recording site, the multiunit or single unit response of that site is
  3419. summarized as a set of peristimulus time histograms (PSTH). Each PSTH is derived
  3420. from the site’s response to repeated, emporally randomized, presentations
  3421. of the same image. Thus, the number of PSTHs is identical to the number of images
  3422. in the stimulus set (typically 100-2000 images). The number of repetitions
  3423. of each image is indicated in the file and the data from individual repetitions
  3424. are available in the file. For larger image sets these recordings were
  3425. made over a series of consecutive days (usually <5 days). Quality control measures
  3426. (e.g. consistency of response pattern over images) collected on each day are used
  3427. to check for site stability across those days before producing the final
  3428. PSTH estimates for each site. The corresponding visual images used in these recordings
  3429. are linked or stored in the "Stimulus_Template" section of each NWB file.
  3430. identifier: exp_motionset1
  3431. name: exp_motionset1
  3432. schemaKey: Session
  3433. startDate: '2023-06-01T13:02:23-04:00'
  3434. - description: Metadata generated by DANDI cli
  3435. endDate: '2024-04-21T17:19:01.627346-04:00'
  3436. id: urn:uuid:712d6b78-fcb8-46e5-bce6-6de63a55b69a
  3437. name: Metadata generation
  3438. schemaKey: Activity
  3439. startDate: '2024-04-21T17:19:01.618538-04:00'
  3440. wasAssociatedWith:
  3441. - identifier: RRID:SCR_019009
  3442. name: DANDI Command Line Interface
  3443. schemaKey: Software
  3444. url: https://github.com/dandi/dandi-cli
  3445. version: 0.61.2
Tip!

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

Comments

Loading...