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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:10.706605-05:00'
contentSize: 372980
contentUrl:
- https://api.dandiarchive.org/api/assets/fd2cc6fa-f41e-471e-8b56-cb5f88a6ecaf/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/ef5/880/ef5880c2-6143-442f-bcf0-574ccfa458d2
dateModified: '2024-01-15T11:07:45.862237-05:00'
digest:
dandi:dandi-etag: 5334df58e0890f66455aded7411a1fef-1
dandi:sha2-256: d73b35f790cb04039a9fde606f0bcbd448eaa244fe5db4ab1a691b47dd53db45
encodingFormat: video/mp4
id: dandiasset:fd2cc6fa-f41e-471e-8b56-cb5f88a6ecaf
identifier: fd2cc6fa-f41e-471e-8b56-cb5f88a6ecaf
path: VideoStimulusSet/exp_motionset1_1.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:45.862198-05:00'
id: urn:uuid:21df4274-5865-4672-bb2c-04e62c791d06
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:45.862198-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:10.670623-05:00'
contentSize: 369985
contentUrl:
- https://api.dandiarchive.org/api/assets/64767a64-32f1-4d98-b833-d0d4ea31205a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/7ad/65e/7ad65e26-c785-495f-99f8-7045d4de6820
dateModified: '2024-01-15T11:07:45.581197-05:00'
digest:
dandi:dandi-etag: 8553f3962382979d38182133ca13fd88-1
dandi:sha2-256: bbecdf084595ad0a4ee442c8427b97ebb62375728e2e9547e5cdbe13d34142e4
encodingFormat: video/mp4
id: dandiasset:64767a64-32f1-4d98-b833-d0d4ea31205a
identifier: 64767a64-32f1-4d98-b833-d0d4ea31205a
path: VideoStimulusSet/exp_motionset1_0.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:45.581156-05:00'
id: urn:uuid:db02c36b-f968-4aaf-9820-88f20d3a335f
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:45.581156-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:10.730593-05:00'
contentSize: 382964
contentUrl:
- https://api.dandiarchive.org/api/assets/58db068c-fffa-4e90-abcf-55eabc53c948/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/cd2/46f/cd246f8b-3fbc-4bc1-b26a-93fd959b8fee
dateModified: '2024-01-15T11:07:45.908874-05:00'
digest:
dandi:dandi-etag: b449b6bf8a21bfec32861977c4e8b458-1
dandi:sha2-256: 9fada3c942b390d9f4514db46f1bb1db1b6dde575b1a6def4d875c6923e882fd
encodingFormat: video/mp4
id: dandiasset:58db068c-fffa-4e90-abcf-55eabc53c948
identifier: 58db068c-fffa-4e90-abcf-55eabc53c948
path: VideoStimulusSet/exp_motionset1_10.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:45.908838-05:00'
id: urn:uuid:232ffb37-9220-4884-8844-254352d6891c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:45.908838-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:10.801558-05:00'
contentSize: 401408
contentUrl:
- https://api.dandiarchive.org/api/assets/16f41fd6-b863-4fc3-8fd5-463abdbc2264/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/973/948/97394821-36c4-4cdd-abc6-d7650723d191
dateModified: '2024-01-15T11:07:46.306322-05:00'
digest:
dandi:dandi-etag: d48bc6fbbeca83d0f1f393fc8f9ed3bf-1
dandi:sha2-256: cda0e67fd89a2aa1b2cdc2cff8cb5be3305f1e9f6772ceab313e1f0511de2588
encodingFormat: video/mp4
id: dandiasset:16f41fd6-b863-4fc3-8fd5-463abdbc2264
identifier: 16f41fd6-b863-4fc3-8fd5-463abdbc2264
path: VideoStimulusSet/exp_motionset1_101.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:46.306288-05:00'
id: urn:uuid:b797bdbd-5b98-447b-a37d-c97f9cb148b1
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:46.306288-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:10.781568-05:00'
contentSize: 402188
contentUrl:
- https://api.dandiarchive.org/api/assets/bfdb5de3-0e2b-42ec-a212-6b673c506b09/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/3b4/d5c/3b4d5c86-b72b-43b9-acb0-1067a43aed53
dateModified: '2024-01-15T11:07:46.257365-05:00'
digest:
dandi:dandi-etag: d22893ea16dcb1d4278c5fde5e1fcb91-1
dandi:sha2-256: c9d89e738620c11f7533f66a6fa0273b076fa754a5e9adbbd9c15e0c1d0648c7
encodingFormat: video/mp4
id: dandiasset:bfdb5de3-0e2b-42ec-a212-6b673c506b09
identifier: bfdb5de3-0e2b-42ec-a212-6b673c506b09
path: VideoStimulusSet/exp_motionset1_100.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:46.257322-05:00'
id: urn:uuid:4872e669-ebe5-4457-b148-9c49fac7961a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:46.257322-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:10.822547-05:00'
contentSize: 394419
contentUrl:
- https://api.dandiarchive.org/api/assets/ae0e218b-23e1-44f9-a635-4bd4a99f5937/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/b92/bd1/b92bd1f3-bb91-44cc-9a29-4ef9e4680366
dateModified: '2024-01-15T11:07:49.406435-05:00'
digest:
dandi:dandi-etag: b8e3c92f3b6e9b5a1956576e7e09a336-1
dandi:sha2-256: 840a1c547d45c2710d0b11062b77ffc3257953224f3b4fc09bf8b9f00d1cb9bd
encodingFormat: video/mp4
id: dandiasset:ae0e218b-23e1-44f9-a635-4bd4a99f5937
identifier: ae0e218b-23e1-44f9-a635-4bd4a99f5937
path: VideoStimulusSet/exp_motionset1_102.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:49.406403-05:00'
id: urn:uuid:d4c3ad07-35e2-4b9a-9ab7-6ce06b0cc495
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:49.406403-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:10.850533-05:00'
contentSize: 398084
contentUrl:
- https://api.dandiarchive.org/api/assets/05e8290c-9b69-483b-944c-8d273aca8600/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/18d/27e/18d27e90-58ac-4b12-9a1d-a25d4686ce62
dateModified: '2024-01-15T11:07:49.585637-05:00'
digest:
dandi:dandi-etag: ffa60b8a9c7aaa884d1178c4714f99d9-1
dandi:sha2-256: d986aa97b44673c133feef063794233ab0d73bfd77d4b7333ecaed7d0303ad30
encodingFormat: video/mp4
id: dandiasset:05e8290c-9b69-483b-944c-8d273aca8600
identifier: 05e8290c-9b69-483b-944c-8d273aca8600
path: VideoStimulusSet/exp_motionset1_103.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:49.585607-05:00'
id: urn:uuid:6a3a71f9-928b-4739-aa05-635a55d48dc6
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:49.585607-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:10.887515-05:00'
contentSize: 401061
contentUrl:
- https://api.dandiarchive.org/api/assets/b10186af-7816-45d9-a376-b09325c49387/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/593/543/59354373-7282-4c04-adb1-96b53e54101d
dateModified: '2024-01-15T11:07:50.220396-05:00'
digest:
dandi:dandi-etag: 91ba636b00568b6a8709093a84e0957d-1
dandi:sha2-256: 6d4a21404a45b7c5f95f7f2df6005b289b3d688c8dec9ca28fcda95c6a483233
encodingFormat: video/mp4
id: dandiasset:b10186af-7816-45d9-a376-b09325c49387
identifier: b10186af-7816-45d9-a376-b09325c49387
path: VideoStimulusSet/exp_motionset1_104.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:50.220354-05:00'
id: urn:uuid:44d42076-6c59-450f-a03f-597f1f4a7095
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:50.220354-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:10.933492-05:00'
contentSize: 382407
contentUrl:
- https://api.dandiarchive.org/api/assets/8ddac414-c228-489b-811b-bb7a73a90aed/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/1df/795/1df79583-01e8-40f2-9e33-c3bfb3ececc4
dateModified: '2024-01-15T11:07:50.633866-05:00'
digest:
dandi:dandi-etag: 9155bfcce93c6a16c54341d04c3c89a3-1
dandi:sha2-256: 6b291a885ed5394953405997276a88b9923df0a55178d4c1a52778ad684ead8d
encodingFormat: video/mp4
id: dandiasset:8ddac414-c228-489b-811b-bb7a73a90aed
identifier: 8ddac414-c228-489b-811b-bb7a73a90aed
path: VideoStimulusSet/exp_motionset1_12.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:50.633825-05:00'
id: urn:uuid:5ad1e148-7572-4a9c-8fa9-55d2797be2fc
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:50.633825-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:10.909504-05:00'
contentSize: 380925
contentUrl:
- https://api.dandiarchive.org/api/assets/0391fa41-8ef0-42cd-a98f-4d0dd5cce28e/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/ab9/c8f/ab9c8f95-651e-42f2-87dd-c452ab5adf2d
dateModified: '2024-01-15T11:07:50.566343-05:00'
digest:
dandi:dandi-etag: 09103fab6e1e2842df67aaedf057ac80-1
dandi:sha2-256: 7c30a7b995ede3d306c2969bdb324124e2f62726ff3a2073e4d6175986fa7583
encodingFormat: video/mp4
id: dandiasset:0391fa41-8ef0-42cd-a98f-4d0dd5cce28e
identifier: 0391fa41-8ef0-42cd-a98f-4d0dd5cce28e
path: VideoStimulusSet/exp_motionset1_11.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:50.566300-05:00'
id: urn:uuid:203a613b-6b86-45df-9c10-ced10e98bae3
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:50.566300-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:10.988464-05:00'
contentSize: 387452
contentUrl:
- https://api.dandiarchive.org/api/assets/1e54cc6e-761b-41a5-8c86-ee320260bb7c/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/fbc/8e6/fbc8e674-9686-4a43-8e29-27980f8eac31
dateModified: '2024-01-15T11:07:52.699976-05:00'
digest:
dandi:dandi-etag: 8a7e98b03e36c1eb6db70327d124c5d3-1
dandi:sha2-256: ddf36c8c4b7b0e0d82984dbae5f77d6722217e527906a34e13708663eb259144
encodingFormat: video/mp4
id: dandiasset:1e54cc6e-761b-41a5-8c86-ee320260bb7c
identifier: 1e54cc6e-761b-41a5-8c86-ee320260bb7c
path: VideoStimulusSet/exp_motionset1_13.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:52.699930-05:00'
id: urn:uuid:94248f54-f093-48c1-8a6f-689709b99561
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:52.699930-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.009454-05:00'
contentSize: 371505
contentUrl:
- https://api.dandiarchive.org/api/assets/7d725021-cd2b-4944-8485-4beaa13e4de4/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/f09/61c/f0961cb9-d1a5-4fe4-9aca-91802098c4a7
dateModified: '2024-01-15T11:07:53.912042-05:00'
digest:
dandi:dandi-etag: af99a34c2b854eafa1f27892b6e1bf2e-1
dandi:sha2-256: 9876d8dfd5bec958bcee870e906f0f2545721cd1d57bf610c4f06fb07421a677
encodingFormat: video/mp4
id: dandiasset:7d725021-cd2b-4944-8485-4beaa13e4de4
identifier: 7d725021-cd2b-4944-8485-4beaa13e4de4
path: VideoStimulusSet/exp_motionset1_14.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:53.911995-05:00'
id: urn:uuid:6713fb91-67cb-416f-9eff-1c26889c5fed
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:53.911995-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.026445-05:00'
contentSize: 372982
contentUrl:
- https://api.dandiarchive.org/api/assets/daf0f032-2a1c-48ac-8526-c414ab3495b3/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/03e/23c/03e23c39-4b5e-4846-aa10-afe78420561b
dateModified: '2024-01-15T11:07:54.174176-05:00'
digest:
dandi:dandi-etag: 9e79556459f68696bb813f9cb05c6ea9-1
dandi:sha2-256: b89ed575e0f7851b810b7debea2c5b69ca3f59f87aef4f75b9f249918a3918fa
encodingFormat: video/mp4
id: dandiasset:daf0f032-2a1c-48ac-8526-c414ab3495b3
identifier: daf0f032-2a1c-48ac-8526-c414ab3495b3
path: VideoStimulusSet/exp_motionset1_15.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:54.174130-05:00'
id: urn:uuid:0cc18723-145f-4eb9-99ea-35e7fc23c1bf
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:54.174130-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.037440-05:00'
contentSize: 377683
contentUrl:
- https://api.dandiarchive.org/api/assets/aeb94cb9-cd3a-4e81-aa95-589a528e6b2c/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/4cb/e92/4cbe9248-6d7e-48c2-9e4e-7caedf7a81a6
dateModified: '2024-01-15T11:07:54.931437-05:00'
digest:
dandi:dandi-etag: 07dffe39576ee4e875fedbf84ba3b60f-1
dandi:sha2-256: 71c28b8c40267503476aeed76ed926bb33358393d146e47d38cb4bdd1af25bd4
encodingFormat: video/mp4
id: dandiasset:aeb94cb9-cd3a-4e81-aa95-589a528e6b2c
identifier: aeb94cb9-cd3a-4e81-aa95-589a528e6b2c
path: VideoStimulusSet/exp_motionset1_16.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:54.931399-05:00'
id: urn:uuid:41c5c324-109f-4725-8ebd-e75f7481ca6a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:54.931399-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.068424-05:00'
contentSize: 378470
contentUrl:
- https://api.dandiarchive.org/api/assets/00ae6884-2b04-4c01-b5ea-5c09c4b30719/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/49f/b32/49fb327b-fb4d-495e-93a1-88d2c7eb3574
dateModified: '2024-01-15T11:07:55.060390-05:00'
digest:
dandi:dandi-etag: a0ab2be75efc8a64bab67e4cfe66c24f-1
dandi:sha2-256: 854478d5aa8bc04e3f7327fab4304b2a6434dea80e65faefa0e0275b961b03d9
encodingFormat: video/mp4
id: dandiasset:00ae6884-2b04-4c01-b5ea-5c09c4b30719
identifier: 00ae6884-2b04-4c01-b5ea-5c09c4b30719
path: VideoStimulusSet/exp_motionset1_17.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:55.060356-05:00'
id: urn:uuid:d24e5073-35bf-42b9-a825-00e79d5dc11a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:55.060356-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.092412-05:00'
contentSize: 381625
contentUrl:
- https://api.dandiarchive.org/api/assets/0b05915e-6c52-453a-80f1-1e4c775c57d5/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/99f/233/99f2333b-daa6-47ec-aaa8-bc530ea17720
dateModified: '2024-01-15T11:07:57.082615-05:00'
digest:
dandi:dandi-etag: 685483488a26aa201cd0310e4c075f79-1
dandi:sha2-256: 0635f4c020ef0e4836e4e6c7c8616cc121b23c8ccf5d18d348717497a9bc9e5a
encodingFormat: video/mp4
id: dandiasset:0b05915e-6c52-453a-80f1-1e4c775c57d5
identifier: 0b05915e-6c52-453a-80f1-1e4c775c57d5
path: VideoStimulusSet/exp_motionset1_18.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:57.082585-05:00'
id: urn:uuid:563b3da6-4e07-4bb9-8117-3e71bbc1eb49
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:57.082585-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.139389-05:00'
contentSize: 379981
contentUrl:
- https://api.dandiarchive.org/api/assets/11cc2ee9-fd0a-4bd1-8056-8637d3694fef/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/21c/9e7/21c9e76c-6ecd-4e28-821c-0a8dd0755626
dateModified: '2024-01-15T11:07:58.141135-05:00'
digest:
dandi:dandi-etag: 475bcb380d8602755cb870908e8fd117-1
dandi:sha2-256: 0bb37ebaaf18f63f52ceeb8a0bbd3f3f880e87c51e471fba4d7625e36d3884bb
encodingFormat: video/mp4
id: dandiasset:11cc2ee9-fd0a-4bd1-8056-8637d3694fef
identifier: 11cc2ee9-fd0a-4bd1-8056-8637d3694fef
path: VideoStimulusSet/exp_motionset1_19.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:58.141101-05:00'
id: urn:uuid:56440752-b570-43e4-b21a-7dde5107f940
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:58.141101-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.158379-05:00'
contentSize: 372100
contentUrl:
- https://api.dandiarchive.org/api/assets/9a12810a-145b-4b54-b82f-f8ed87f5575a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/ed2/c8f/ed2c8fe5-1a97-4fbf-be01-a76973106529
dateModified: '2024-01-15T11:07:58.582724-05:00'
digest:
dandi:dandi-etag: 74ecedd85070f5d5ed6efc8ab8bdf129-1
dandi:sha2-256: 89d5e83771759f1c3537224278d44f02ec76bf73fea3b7a8db8f8216fa796d26
encodingFormat: video/mp4
id: dandiasset:9a12810a-145b-4b54-b82f-f8ed87f5575a
identifier: 9a12810a-145b-4b54-b82f-f8ed87f5575a
path: VideoStimulusSet/exp_motionset1_2.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:58.582681-05:00'
id: urn:uuid:9220f4a8-dbc9-4b4a-8283-a83a12aa6129
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:58.582681-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.182367-05:00'
contentSize: 381318
contentUrl:
- https://api.dandiarchive.org/api/assets/f31fa0e5-5b2c-4572-9fd9-e38db4f98fc0/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/cd9/8c0/cd98c029-48b7-4a2d-9829-2525f8da947a
dateModified: '2024-01-15T11:07:59.217965-05:00'
digest:
dandi:dandi-etag: 6f3e172e624f8bf78a25b00efe22e4ff-1
dandi:sha2-256: e3fe167c3d2a5ef20bcda511c866cc107d0b974bde57479b4ae67cd820a473ae
encodingFormat: video/mp4
id: dandiasset:f31fa0e5-5b2c-4572-9fd9-e38db4f98fc0
identifier: f31fa0e5-5b2c-4572-9fd9-e38db4f98fc0
path: VideoStimulusSet/exp_motionset1_20.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:59.217934-05:00'
id: urn:uuid:cc5d4b1b-964b-44e4-841d-3379bfc7efa9
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:59.217934-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.200358-05:00'
contentSize: 382402
contentUrl:
- https://api.dandiarchive.org/api/assets/6bf16ab5-eea6-4f8a-9b7e-f908e4123159/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/336/d71/336d71da-2871-41d1-a8e1-8caf1dbc28d1
dateModified: '2024-01-15T11:07:59.384964-05:00'
digest:
dandi:dandi-etag: 55d9cdddf823e4cc472f38bebd90f65d-1
dandi:sha2-256: 098ad68fe764a9d18ae16f77e0baef548d0735834a46d94bf9fefbb151a23830
encodingFormat: video/mp4
id: dandiasset:6bf16ab5-eea6-4f8a-9b7e-f908e4123159
identifier: 6bf16ab5-eea6-4f8a-9b7e-f908e4123159
path: VideoStimulusSet/exp_motionset1_21.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:07:59.384924-05:00'
id: urn:uuid:4787672e-f7dc-47d1-bde2-520fac32561e
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:07:59.384924-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.212352-05:00'
contentSize: 384848
contentUrl:
- https://api.dandiarchive.org/api/assets/e08744cd-36f8-42cf-ad85-8bd78dd7b2a5/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/5c1/805/5c180595-7fff-421a-9fcd-0150f019080d
dateModified: '2024-01-15T11:08:01.184968-05:00'
digest:
dandi:dandi-etag: e571dbb4c94d717796ce197f19339248-1
dandi:sha2-256: 6ec2b6ce9c7e1a77ad0d3c9ff0390c2c5898fb91054b4bc7430d75a5791ad97a
encodingFormat: video/mp4
id: dandiasset:e08744cd-36f8-42cf-ad85-8bd78dd7b2a5
identifier: e08744cd-36f8-42cf-ad85-8bd78dd7b2a5
path: VideoStimulusSet/exp_motionset1_22.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:01.184929-05:00'
id: urn:uuid:3f25a6b5-d8f0-4595-8781-5b1237ff36d1
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:01.184929-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.232342-05:00'
contentSize: 384550
contentUrl:
- https://api.dandiarchive.org/api/assets/334a8542-b1cc-453a-a238-f71eed8b9389/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/50b/cd9/50bcd9e1-9305-4931-8d08-83a3534a3cec
dateModified: '2024-01-15T11:08:02.576391-05:00'
digest:
dandi:dandi-etag: 9bd5b149ef24b7675773037b392689de-1
dandi:sha2-256: 81d0d3e75a4d415e83f91596bb11bc315aeca7015dc7e10905667e6d326721ed
encodingFormat: video/mp4
id: dandiasset:334a8542-b1cc-453a-a238-f71eed8b9389
identifier: 334a8542-b1cc-453a-a238-f71eed8b9389
path: VideoStimulusSet/exp_motionset1_23.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:02.576347-05:00'
id: urn:uuid:c35ae738-d934-4a4a-a9d8-182843e4c7d5
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:02.576347-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.276320-05:00'
contentSize: 384978
contentUrl:
- https://api.dandiarchive.org/api/assets/92dbff24-a175-4661-9f24-d3f46d5754b2/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/f86/603/f86603ef-c725-413e-84f2-87bea8f9dd43
dateModified: '2024-01-15T11:08:02.633488-05:00'
digest:
dandi:dandi-etag: a797164bdfede0fb483d5a33c4ada086-1
dandi:sha2-256: 59904268752c7ea92c35fb2966a0790783ffd0dbca7fb51a7b90e5ea46602c49
encodingFormat: video/mp4
id: dandiasset:92dbff24-a175-4661-9f24-d3f46d5754b2
identifier: 92dbff24-a175-4661-9f24-d3f46d5754b2
path: VideoStimulusSet/exp_motionset1_24.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:02.633457-05:00'
id: urn:uuid:6be5a294-ce26-4611-8965-5c718054e1af
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:02.633457-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.319299-05:00'
contentSize: 384017
contentUrl:
- https://api.dandiarchive.org/api/assets/d53a5dbe-4bef-4f33-b31f-fff909e3e946/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/4b0/bf0/4b0bf0da-4a0f-4480-9f0f-cca3f680bdc1
dateModified: '2024-01-15T11:08:03.574452-05:00'
digest:
dandi:dandi-etag: 887cb7a410d4ba8153b0c0905353b989-1
dandi:sha2-256: a0de043e964c24d94250705c44ffac943e75c3e22d76ee96ca9a1b1ee33a906c
encodingFormat: video/mp4
id: dandiasset:d53a5dbe-4bef-4f33-b31f-fff909e3e946
identifier: d53a5dbe-4bef-4f33-b31f-fff909e3e946
path: VideoStimulusSet/exp_motionset1_25.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:03.574408-05:00'
id: urn:uuid:a76962f6-5121-47b0-97c3-5bb85e1fb5fc
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:03.574408-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.369274-05:00'
contentSize: 388465
contentUrl:
- https://api.dandiarchive.org/api/assets/67b8b715-7a99-4e82-a926-c96e90472ad3/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/3a8/e97/3a8e97ba-d7e4-4fe6-bee3-1a14f0c9fc05
dateModified: '2024-01-15T11:08:03.813937-05:00'
digest:
dandi:dandi-etag: f16253ca2b7d23c11f8945dc033bc686-1
dandi:sha2-256: 40c0d87e2ed74ff64cd777ece45fa22130f2e01d3191ca40e0c742d5ce84435e
encodingFormat: video/mp4
id: dandiasset:67b8b715-7a99-4e82-a926-c96e90472ad3
identifier: 67b8b715-7a99-4e82-a926-c96e90472ad3
path: VideoStimulusSet/exp_motionset1_26.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:03.813897-05:00'
id: urn:uuid:8238359d-f928-45f8-bcd9-5c5ccbb49edd
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:03.813897-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.392262-05:00'
contentSize: 378884
contentUrl:
- https://api.dandiarchive.org/api/assets/e2c0ecdb-cbef-44cc-84da-f4d950a9a885/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/f8d/797/f8d79705-5307-42f4-a997-aea4b70e83d0
dateModified: '2024-01-15T11:08:04.724418-05:00'
digest:
dandi:dandi-etag: e0fb968c1c426ab2bdc6ba6c0ea551f3-1
dandi:sha2-256: 9e4cf5edd043482c1d468c3e7faedf6d76b71ac3f020ad2d2cc5fda8a5fb3f6d
encodingFormat: video/mp4
id: dandiasset:e2c0ecdb-cbef-44cc-84da-f4d950a9a885
identifier: e2c0ecdb-cbef-44cc-84da-f4d950a9a885
path: VideoStimulusSet/exp_motionset1_27.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:04.724278-05:00'
id: urn:uuid:745457aa-0f44-4e1f-9a98-5ad3a7b1c466
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:04.724278-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.451233-05:00'
contentSize: 382671
contentUrl:
- https://api.dandiarchive.org/api/assets/a3c63e9d-fe12-4a88-9c46-ed7513bb2819/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/fbe/1f4/fbe1f483-ceba-4f24-bddf-b03ec2591627
dateModified: '2024-01-15T11:08:07.124863-05:00'
digest:
dandi:dandi-etag: 67c1db3912b30a401cd97c5a4d1d5654-1
dandi:sha2-256: 2dd945dc0f264a93ea592a8a3b18beb4f7a74a7dcbd36fe0ba04b58641721ac1
encodingFormat: video/mp4
id: dandiasset:a3c63e9d-fe12-4a88-9c46-ed7513bb2819
identifier: a3c63e9d-fe12-4a88-9c46-ed7513bb2819
path: VideoStimulusSet/exp_motionset1_29.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:07.124819-05:00'
id: urn:uuid:6adf80d9-719b-4525-afe6-f0c469620a39
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:07.124819-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.471223-05:00'
contentSize: 376163
contentUrl:
- https://api.dandiarchive.org/api/assets/88897094-f44c-40d5-a319-7de607bb5042/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/032/56f/03256f6b-3936-40d5-89d9-b703fa6f90e3
dateModified: '2024-01-15T11:08:07.859114-05:00'
digest:
dandi:dandi-etag: b341ed89989989af50ab7131cdf9079f-1
dandi:sha2-256: edf124758785464e24dc859e25110878eb0e03208ecf319bb0278a8795728d0a
encodingFormat: video/mp4
id: dandiasset:88897094-f44c-40d5-a319-7de607bb5042
identifier: 88897094-f44c-40d5-a319-7de607bb5042
path: VideoStimulusSet/exp_motionset1_3.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:07.859067-05:00'
id: urn:uuid:ed14656a-a81b-4149-b465-ec4d638bda1b
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:07.859067-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.515201-05:00'
contentSize: 384723
contentUrl:
- https://api.dandiarchive.org/api/assets/2a3bb17b-9d9d-414c-92bb-f9a26a15d540/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/271/01b/27101b6f-6b40-4e51-b41d-d2299e9eb5c1
dateModified: '2024-01-15T11:08:08.075509-05:00'
digest:
dandi:dandi-etag: b0b029b54693db07b0d0473edf4556ae-1
dandi:sha2-256: 93e3e1a70e55576d1d1365e8ebae4fe2eb981772edc30a6d302e609373876e27
encodingFormat: video/mp4
id: dandiasset:2a3bb17b-9d9d-414c-92bb-f9a26a15d540
identifier: 2a3bb17b-9d9d-414c-92bb-f9a26a15d540
path: VideoStimulusSet/exp_motionset1_30.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:08.075476-05:00'
id: urn:uuid:f09df1e3-e0ac-4861-9c2a-d00d12aee402
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:08.075476-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.540188-05:00'
contentSize: 380062
contentUrl:
- https://api.dandiarchive.org/api/assets/b1704aba-f6ff-44a2-ac0d-ff6ec4cc97e4/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/3ef/1f9/3ef1f9bf-926a-482e-a746-43013446dd93
dateModified: '2024-01-15T11:08:08.744737-05:00'
digest:
dandi:dandi-etag: 595babd766583b2daff09b800932b9bf-1
dandi:sha2-256: 42426bfa4268c22395d9a00e3369dd6df1f1a816d659f45389179576e1920441
encodingFormat: video/mp4
id: dandiasset:b1704aba-f6ff-44a2-ac0d-ff6ec4cc97e4
identifier: b1704aba-f6ff-44a2-ac0d-ff6ec4cc97e4
path: VideoStimulusSet/exp_motionset1_31.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:08.744699-05:00'
id: urn:uuid:c454f937-136a-4751-9f89-12ebe9bd54c2
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:08.744699-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.423247-05:00'
contentSize: 374828
contentUrl:
- https://api.dandiarchive.org/api/assets/8120fa1e-fa27-447f-82b0-283a1c6a0bd3/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/a98/8a8/a988a8b1-9417-4bed-94a5-2c578841751f
dateModified: '2024-01-15T11:08:06.848618-05:00'
digest:
dandi:dandi-etag: 5a12deec48b791cda57eab10915bd4dc-1
dandi:sha2-256: ab7d799cfada6ded0a170e2caf781e1836d07542228552bcfc705ac498c46788
encodingFormat: video/mp4
id: dandiasset:8120fa1e-fa27-447f-82b0-283a1c6a0bd3
identifier: 8120fa1e-fa27-447f-82b0-283a1c6a0bd3
path: VideoStimulusSet/exp_motionset1_28.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:06.848585-05:00'
id: urn:uuid:09d3e702-1f24-4de1-a4e0-9fe2b3ed9bf6
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:06.848585-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.557180-05:00'
contentSize: 384481
contentUrl:
- https://api.dandiarchive.org/api/assets/62e0a1ed-cc2a-48b0-84d7-b568db38278a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/36d/28c/36d28c69-8374-4c81-b9c9-10d5f0fb4784
dateModified: '2024-01-15T11:08:11.078225-05:00'
digest:
dandi:dandi-etag: 2009a699750faed364b1410ca55d479a-1
dandi:sha2-256: c7af6fad4776a719b5ff0f644ba00727fac1c65ef972e4ed7c90e176975ac571
encodingFormat: video/mp4
id: dandiasset:62e0a1ed-cc2a-48b0-84d7-b568db38278a
identifier: 62e0a1ed-cc2a-48b0-84d7-b568db38278a
path: VideoStimulusSet/exp_motionset1_32.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:11.078182-05:00'
id: urn:uuid:cbe78e94-05fc-4ae2-940b-9e82ec3c0d3f
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:11.078182-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.596160-05:00'
contentSize: 384857
contentUrl:
- https://api.dandiarchive.org/api/assets/f10f763a-f88e-455a-b662-ca738b792077/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/a3e/621/a3e62110-52bb-47ff-b06d-fda0027e2bde
dateModified: '2024-01-15T11:08:11.637119-05:00'
digest:
dandi:dandi-etag: 2bc0ab14dfd04ed65069fcf85efcc5c7-1
dandi:sha2-256: f031e39a390b661f3228dca23b36565bdffaab8c1f14d23256b1308287a0ea56
encodingFormat: video/mp4
id: dandiasset:f10f763a-f88e-455a-b662-ca738b792077
identifier: f10f763a-f88e-455a-b662-ca738b792077
path: VideoStimulusSet/exp_motionset1_34.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:11.637015-05:00'
id: urn:uuid:c4ef4f3d-99e3-429f-a13f-346f898e9899
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:11.637015-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.585166-05:00'
contentSize: 382688
contentUrl:
- https://api.dandiarchive.org/api/assets/4765d2bb-2dc1-4882-b336-72c7e8590237/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/64a/ea1/64aea1b3-3e8b-4781-83d6-ddad0051e349
dateModified: '2024-01-15T11:08:11.708700-05:00'
digest:
dandi:dandi-etag: e79779fbbdd724ce7e3ef6a1e308a7d0-1
dandi:sha2-256: eae46cdf8a200bbdf475e6b4574fbe6ccdaba190649beb57c5ad46f2af875d39
encodingFormat: video/mp4
id: dandiasset:4765d2bb-2dc1-4882-b336-72c7e8590237
identifier: 4765d2bb-2dc1-4882-b336-72c7e8590237
path: VideoStimulusSet/exp_motionset1_33.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:11.708654-05:00'
id: urn:uuid:b2581be6-eb66-4320-b6ba-6c3b83ba7061
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:11.708654-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.631143-05:00'
contentSize: 384875
contentUrl:
- https://api.dandiarchive.org/api/assets/dc7f272e-a93c-4230-b7f6-e5562fc23fb0/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/aad/576/aad5761b-4829-400e-8eb9-a9a9cb66dbfb
dateModified: '2024-01-15T11:08:12.189924-05:00'
digest:
dandi:dandi-etag: e9bee63e8f4e75d419d1ccf5e6bbc241-1
dandi:sha2-256: 851de5c38fc4cb497580f730790ff85e94de299672601655307bef28ae801d56
encodingFormat: video/mp4
id: dandiasset:dc7f272e-a93c-4230-b7f6-e5562fc23fb0
identifier: dc7f272e-a93c-4230-b7f6-e5562fc23fb0
path: VideoStimulusSet/exp_motionset1_35.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:12.189876-05:00'
id: urn:uuid:74a836af-b131-45ab-9be9-20218aaed5fc
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:12.189876-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.655131-05:00'
contentSize: 385060
contentUrl:
- https://api.dandiarchive.org/api/assets/8009a8a6-b668-4ae4-ac6f-e76c1e036ed0/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/f60/8ef/f608ef8c-28de-4cd5-8129-f8b94302fdf6
dateModified: '2024-01-15T11:08:13.374309-05:00'
digest:
dandi:dandi-etag: 588857b41283ee9f8b7af6c0c9888d01-1
dandi:sha2-256: 143a021e56ee50cdefcf7c770165d8f39a3aeced97463261c4ee4d50f1d68696
encodingFormat: video/mp4
id: dandiasset:8009a8a6-b668-4ae4-ac6f-e76c1e036ed0
identifier: 8009a8a6-b668-4ae4-ac6f-e76c1e036ed0
path: VideoStimulusSet/exp_motionset1_36.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:13.374268-05:00'
id: urn:uuid:ff418b94-2982-4cf6-a547-3b1ac600c252
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:13.374268-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.672122-05:00'
contentSize: 384281
contentUrl:
- https://api.dandiarchive.org/api/assets/81a59392-6ec3-4f1e-a951-8fa067bbde2b/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/414/523/41452334-2c75-4d32-a1e7-50f265786e13
dateModified: '2024-01-15T11:08:15.131507-05:00'
digest:
dandi:dandi-etag: 4e9e03e02ee3e53c15c7ee4e4253a902-1
dandi:sha2-256: 8d0f75023c8cbccb10ceac380584c772011ae3edf94b082fafe2839cfa984591
encodingFormat: video/mp4
id: dandiasset:81a59392-6ec3-4f1e-a951-8fa067bbde2b
identifier: 81a59392-6ec3-4f1e-a951-8fa067bbde2b
path: VideoStimulusSet/exp_motionset1_37.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:15.131457-05:00'
id: urn:uuid:1facaa33-83a9-4cf6-ae4e-a02fed5dc544
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:15.131457-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.698109-05:00'
contentSize: 391524
contentUrl:
- https://api.dandiarchive.org/api/assets/2137f875-fefe-43c8-83fb-53228f20aa3f/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/fdc/fef/fdcfefc6-2c8b-45f0-95d2-f548a8446b2a
dateModified: '2024-01-15T11:08:16.173534-05:00'
digest:
dandi:dandi-etag: 3e761a4cff02d81cbf30edd90699a7f5-1
dandi:sha2-256: 16eb9ebc45f3d3601e19d54a7d01444947a71d08650a577c7195bcd441bb39b4
encodingFormat: video/mp4
id: dandiasset:2137f875-fefe-43c8-83fb-53228f20aa3f
identifier: 2137f875-fefe-43c8-83fb-53228f20aa3f
path: VideoStimulusSet/exp_motionset1_38.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:16.173495-05:00'
id: urn:uuid:646f132f-9fb6-4234-81c1-4f8b2afe1611
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:16.173495-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.738089-05:00'
contentSize: 378817
contentUrl:
- https://api.dandiarchive.org/api/assets/0653a9b4-6fcc-4bbd-805b-057154fdbe8e/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/dd4/464/dd446489-ef39-4c91-8d3f-8bbf1d1ef328
dateModified: '2024-01-15T11:08:16.376851-05:00'
digest:
dandi:dandi-etag: 1e137b0fb6a857aff07d01c68612c12a-1
dandi:sha2-256: 12edc63df6d295e73b842fd92a158baf7fda91583b5cfa68259f4b392b7395a8
encodingFormat: video/mp4
id: dandiasset:0653a9b4-6fcc-4bbd-805b-057154fdbe8e
identifier: 0653a9b4-6fcc-4bbd-805b-057154fdbe8e
path: VideoStimulusSet/exp_motionset1_39.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:16.376812-05:00'
id: urn:uuid:5aa7f3f8-59d9-4809-8658-c3886a6e9552
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:16.376812-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.756080-05:00'
contentSize: 378471
contentUrl:
- https://api.dandiarchive.org/api/assets/4674164f-1562-4def-8334-8658c1266b0d/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/82b/942/82b94201-6b6d-46d2-9c2f-cb4520c38a34
dateModified: '2024-01-15T11:08:16.801166-05:00'
digest:
dandi:dandi-etag: 5c43be5e4902b889693dd7a8d9583595-1
dandi:sha2-256: 09c8b4ddf9edd52a29124dc1b29b9b39f26fda32653f8a79e5c37fa825b67c49
encodingFormat: video/mp4
id: dandiasset:4674164f-1562-4def-8334-8658c1266b0d
identifier: 4674164f-1562-4def-8334-8658c1266b0d
path: VideoStimulusSet/exp_motionset1_4.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:16.801123-05:00'
id: urn:uuid:936502fa-7dff-4437-b784-65bb05c33600
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:16.801123-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.787065-05:00'
contentSize: 379927
contentUrl:
- https://api.dandiarchive.org/api/assets/6b08653b-e285-4626-8cae-9a2629eb84bc/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/374/7db/3747dbfa-dbce-4cbb-96f6-509f994509f7
dateModified: '2024-01-15T11:08:17.600192-05:00'
digest:
dandi:dandi-etag: 632f9d64f79448635f33f642ed935ac2-1
dandi:sha2-256: 44d6f1522316e5da0b15341855a5cd5028f2f1009fc9b4b5f5a9775243cd4fff
encodingFormat: video/mp4
id: dandiasset:6b08653b-e285-4626-8cae-9a2629eb84bc
identifier: 6b08653b-e285-4626-8cae-9a2629eb84bc
path: VideoStimulusSet/exp_motionset1_40.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:17.600146-05:00'
id: urn:uuid:8c517f08-96a1-4985-b25c-1c7d9a9b45e7
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:17.600146-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.805056-05:00'
contentSize: 382114
contentUrl:
- https://api.dandiarchive.org/api/assets/d2a5b9a0-fc2b-4735-afff-5ee3edb71860/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/4b2/26a/4b226ab0-73d9-44b8-8474-e16933a68d4a
dateModified: '2024-01-15T11:08:19.354999-05:00'
digest:
dandi:dandi-etag: 4ba3fc3fee6dc136559962ce971cb3db-1
dandi:sha2-256: 5dda872f67bd5be1aa077ac7e0b09a0ba9b93d588080a66852569ce67e06172e
encodingFormat: video/mp4
id: dandiasset:d2a5b9a0-fc2b-4735-afff-5ee3edb71860
identifier: d2a5b9a0-fc2b-4735-afff-5ee3edb71860
path: VideoStimulusSet/exp_motionset1_41.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:19.354958-05:00'
id: urn:uuid:788405fd-3754-47e3-b7ee-bd092e16c642
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:19.354958-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.822047-05:00'
contentSize: 389612
contentUrl:
- https://api.dandiarchive.org/api/assets/cc12db78-adf2-4938-9d47-34c08cde4a63/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/aa9/9e0/aa99e04c-47bb-4713-8bab-03ebf6d034f3
dateModified: '2024-01-15T11:08:20.708421-05:00'
digest:
dandi:dandi-etag: 728fbb9b42daa40b66ce3a42108d62c5-1
dandi:sha2-256: 968ff4f2f0489d4f265d735b586929fa878d4649438a7bdc8bf30fce0b371ccf
encodingFormat: video/mp4
id: dandiasset:cc12db78-adf2-4938-9d47-34c08cde4a63
identifier: cc12db78-adf2-4938-9d47-34c08cde4a63
path: VideoStimulusSet/exp_motionset1_42.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:20.708387-05:00'
id: urn:uuid:d63895be-6524-4d8c-8b87-7dccf4922bcf
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:20.708387-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.843037-05:00'
contentSize: 388484
contentUrl:
- https://api.dandiarchive.org/api/assets/daf1d2d0-be25-4273-8491-8fe06fee5388/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/0c0/c53/0c0c53e1-5571-4e91-9569-c2d2c16e2636
dateModified: '2024-01-15T11:08:20.945495-05:00'
digest:
dandi:dandi-etag: 0a0de708cae7ed19cce701ac3c586d6a-1
dandi:sha2-256: 70b4dc90ecf911c9ade8f805ff6e0b03f3485810a4e73b36b813b13edc33d0ee
encodingFormat: video/mp4
id: dandiasset:daf1d2d0-be25-4273-8491-8fe06fee5388
identifier: daf1d2d0-be25-4273-8491-8fe06fee5388
path: VideoStimulusSet/exp_motionset1_43.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:20.945453-05:00'
id: urn:uuid:96a29467-e04c-4ea1-b17e-6f89786c165a
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:20.945453-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.863027-05:00'
contentSize: 391280
contentUrl:
- https://api.dandiarchive.org/api/assets/feb21c14-b119-4552-a2c9-6b375e398f47/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/38b/142/38b14233-c795-4b15-88c3-afd9f9ab906f
dateModified: '2024-01-15T11:08:21.235483-05:00'
digest:
dandi:dandi-etag: fba19eda4240153c96744a3cd1ed7358-1
dandi:sha2-256: af9e61494a27ed0a054f3a1fc68335fe7e391e4e17ecfb2faa4a65c22cd02345
encodingFormat: video/mp4
id: dandiasset:feb21c14-b119-4552-a2c9-6b375e398f47
identifier: feb21c14-b119-4552-a2c9-6b375e398f47
path: VideoStimulusSet/exp_motionset1_44.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:21.235435-05:00'
id: urn:uuid:3f47dc60-64f6-4c85-b87a-a6a2e635feb6
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:21.235435-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.884016-05:00'
contentSize: 386275
contentUrl:
- https://api.dandiarchive.org/api/assets/44a9a667-348b-4497-a969-f9b8f5e8554b/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/309/f63/309f6388-83d9-4d49-8334-311ab3ab9595
dateModified: '2024-01-15T11:08:21.581084-05:00'
digest:
dandi:dandi-etag: b8e324bc36506145b37954a2b8043e3a-1
dandi:sha2-256: 3caa4652dc050d725a89487d7b7781052b18f277148e96d0aa495aa81e7da439
encodingFormat: video/mp4
id: dandiasset:44a9a667-348b-4497-a969-f9b8f5e8554b
identifier: 44a9a667-348b-4497-a969-f9b8f5e8554b
path: VideoStimulusSet/exp_motionset1_45.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:21.581040-05:00'
id: urn:uuid:d63f90dc-eaed-4ed6-a25e-357035e4c338
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:21.581040-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.899009-05:00'
contentSize: 392310
contentUrl:
- https://api.dandiarchive.org/api/assets/9952db9a-1801-4b45-9348-4e38c8deb7c1/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/dd5/8b9/dd58b9a9-2306-45e2-a0d1-e5fbca4dcaf3
dateModified: '2024-01-15T11:08:23.208898-05:00'
digest:
dandi:dandi-etag: f2c866692edf80dd4c7ab16622b37e09-1
dandi:sha2-256: 3401c5bcc4e618c158ac34827fa93721d368691c7b30752ba2cdbcec05287e1a
encodingFormat: video/mp4
id: dandiasset:9952db9a-1801-4b45-9348-4e38c8deb7c1
identifier: 9952db9a-1801-4b45-9348-4e38c8deb7c1
path: VideoStimulusSet/exp_motionset1_46.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:23.208865-05:00'
id: urn:uuid:7f19e5ed-c140-459a-9eff-0f42c5a9de0e
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:23.208865-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.920998-05:00'
contentSize: 386663
contentUrl:
- https://api.dandiarchive.org/api/assets/d9fdf050-cd08-428c-896d-80d2616e2003/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/6d4/1fb/6d41fb6f-4ed6-4f1f-8ae6-5dba57bb70ae
dateModified: '2024-01-15T11:08:24.773832-05:00'
digest:
dandi:dandi-etag: 7ad0373ff265ea32cce67b4d1589f9a3-1
dandi:sha2-256: ce4f8d2567cdb977da6905a4370d16661f779c2fc4caeab12488afadbd4625ca
encodingFormat: video/mp4
id: dandiasset:d9fdf050-cd08-428c-896d-80d2616e2003
identifier: d9fdf050-cd08-428c-896d-80d2616e2003
path: VideoStimulusSet/exp_motionset1_47.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:24.773792-05:00'
id: urn:uuid:0e245f42-9a28-403e-adc5-50712fcb0734
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:24.773792-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.955980-05:00'
contentSize: 385782
contentUrl:
- https://api.dandiarchive.org/api/assets/835f0bf7-5df5-48cf-900c-fd4d310b7a4e/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/c36/3a0/c363a04a-a09d-4046-b5a6-abd53cb3e376
dateModified: '2024-01-15T11:08:25.196007-05:00'
digest:
dandi:dandi-etag: 8523b8e412b55a6d6506eb4a7b94fc82-1
dandi:sha2-256: 7407a638d8157091ca2813ecc38ec6e45be88f2a6f1de2fefcdc8d1c13d75fc7
encodingFormat: video/mp4
id: dandiasset:835f0bf7-5df5-48cf-900c-fd4d310b7a4e
identifier: 835f0bf7-5df5-48cf-900c-fd4d310b7a4e
path: VideoStimulusSet/exp_motionset1_48.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:25.195972-05:00'
id: urn:uuid:624e9609-64d2-4c90-bb90-f88726607819
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:25.195972-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:11.982967-05:00'
contentSize: 389510
contentUrl:
- https://api.dandiarchive.org/api/assets/14af52c7-84d3-4fa0-8fcc-a582f6669613/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/0c1/417/0c1417ba-a591-410e-bd90-6d04f6765acc
dateModified: '2024-01-15T11:08:25.889792-05:00'
digest:
dandi:dandi-etag: ee5b242ca90236997af37e9913d59cca-1
dandi:sha2-256: ee1e495a88d7437be9e3a685dd35ba12c47cbe7d81e610dc3151e0d737567704
encodingFormat: video/mp4
id: dandiasset:14af52c7-84d3-4fa0-8fcc-a582f6669613
identifier: 14af52c7-84d3-4fa0-8fcc-a582f6669613
path: VideoStimulusSet/exp_motionset1_49.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:25.889739-05:00'
id: urn:uuid:706b4a7e-52a1-43f3-8a4e-71e81e0c82e8
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:25.889739-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.001957-05:00'
contentSize: 380708
contentUrl:
- https://api.dandiarchive.org/api/assets/eab19f71-0c93-4340-92ee-b5f819213e8f/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/6bf/9e8/6bf9e8ad-2210-4375-8903-47c2987168a9
dateModified: '2024-01-15T11:08:26.187244-05:00'
digest:
dandi:dandi-etag: a9bb5280941480f7258f2da8ecd08fa5-1
dandi:sha2-256: 7f02c0cf6e837b47a6cb8d51874cfaeb029027048fe112d2fe8b50234fb22937
encodingFormat: video/mp4
id: dandiasset:eab19f71-0c93-4340-92ee-b5f819213e8f
identifier: eab19f71-0c93-4340-92ee-b5f819213e8f
path: VideoStimulusSet/exp_motionset1_5.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:26.187205-05:00'
id: urn:uuid:de1c0ef0-8f8e-4737-b657-4a6bbe39f975
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:26.187205-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.031942-05:00'
contentSize: 378561
contentUrl:
- https://api.dandiarchive.org/api/assets/119690ad-10ef-45ac-aa08-5b2263cc7768/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/f60/cdd/f60cdd0d-a688-49ec-a5de-5155e70ac12f
dateModified: '2024-01-15T11:08:27.221720-05:00'
digest:
dandi:dandi-etag: 692c49178d7bb3fad0678ee0ccb871c5-1
dandi:sha2-256: 2e9f8cb03662ca74c1f26fbab42c1b1ee963850dbe8ddc9994b583334733f602
encodingFormat: video/mp4
id: dandiasset:119690ad-10ef-45ac-aa08-5b2263cc7768
identifier: 119690ad-10ef-45ac-aa08-5b2263cc7768
path: VideoStimulusSet/exp_motionset1_50.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:27.221682-05:00'
id: urn:uuid:e29549a2-be30-4471-8028-ceab596770d5
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:27.221682-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.058929-05:00'
contentSize: 387881
contentUrl:
- https://api.dandiarchive.org/api/assets/02f6a116-c35b-4359-a16f-d96f46a7e4d2/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/1c6/ea2/1c6ea2d9-ad37-4341-9d7c-e03a12c4e130
dateModified: '2024-01-15T11:08:29.009392-05:00'
digest:
dandi:dandi-etag: 2e0bcea4b0c1459a7ad7995b007fac99-1
dandi:sha2-256: 539b2f0149193ca498eb1c058878cd9877aa5af0056506bcf6bfe5501e0ad868
encodingFormat: video/mp4
id: dandiasset:02f6a116-c35b-4359-a16f-d96f46a7e4d2
identifier: 02f6a116-c35b-4359-a16f-d96f46a7e4d2
path: VideoStimulusSet/exp_motionset1_51.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:29.009299-05:00'
id: urn:uuid:8b2ac5fd-ed80-4b85-b144-4e93c53e1e7f
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:29.009299-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.069923-05:00'
contentSize: 388597
contentUrl:
- https://api.dandiarchive.org/api/assets/1cb326ac-d53b-4f47-9b39-b6741519487a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/d10/8b5/d108b555-ae87-434e-b61d-7039991a2fea
dateModified: '2024-01-15T11:08:29.656074-05:00'
digest:
dandi:dandi-etag: 26a16eef53fc2ff39253c7422c1ec25e-1
dandi:sha2-256: 21a45dcc137ad9b963b41a1f335422783bd90f5c3504fb78f95745d8bcd462c9
encodingFormat: video/mp4
id: dandiasset:1cb326ac-d53b-4f47-9b39-b6741519487a
identifier: 1cb326ac-d53b-4f47-9b39-b6741519487a
path: VideoStimulusSet/exp_motionset1_52.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:29.656048-05:00'
id: urn:uuid:cf9cd026-0ed6-46fc-87db-2fda1da5c570
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:29.656048-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.102907-05:00'
contentSize: 387520
contentUrl:
- https://api.dandiarchive.org/api/assets/18e4a865-95ca-4e64-b84f-f91f7acbd6a4/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/8ec/ace/8ecace7b-2c6a-425b-a2b5-e6362f4eba4a
dateModified: '2024-01-15T11:08:30.757541-05:00'
digest:
dandi:dandi-etag: 62049130714e01e283c8b2999fe47d86-1
dandi:sha2-256: a856f16616f4b10d318fe8fdd453904a0fd4bf62d49a3600600f052861ac8b88
encodingFormat: video/mp4
id: dandiasset:18e4a865-95ca-4e64-b84f-f91f7acbd6a4
identifier: 18e4a865-95ca-4e64-b84f-f91f7acbd6a4
path: VideoStimulusSet/exp_motionset1_53.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:30.757506-05:00'
id: urn:uuid:1f33d51b-adf0-40d8-9273-b21e90018586
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:30.757506-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.113901-05:00'
contentSize: 390291
contentUrl:
- https://api.dandiarchive.org/api/assets/c4b3d96b-16bb-4e80-bd24-d79456d24a53/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/bef/b94/befb946f-c82d-41b2-9c52-d7d4c884e67d
dateModified: '2024-01-15T11:08:30.903329-05:00'
digest:
dandi:dandi-etag: dc95818a617fe42dfe96bde730fd333f-1
dandi:sha2-256: 664d4171ce8497f870ad3cccace85b9bc2a894f68a5faf6d5c07eeb96d0b3f54
encodingFormat: video/mp4
id: dandiasset:c4b3d96b-16bb-4e80-bd24-d79456d24a53
identifier: c4b3d96b-16bb-4e80-bd24-d79456d24a53
path: VideoStimulusSet/exp_motionset1_54.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:30.903296-05:00'
id: urn:uuid:fa00e2cb-bf34-43fb-8c19-c51eef2c28c6
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:30.903296-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.125895-05:00'
contentSize: 390676
contentUrl:
- https://api.dandiarchive.org/api/assets/1eaafdd7-d20d-40cb-8063-60547da44998/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/32c/a52/32ca5258-824d-4a7d-97df-bf496ec1d346
dateModified: '2024-01-15T11:08:31.662195-05:00'
digest:
dandi:dandi-etag: cf550d61db6d7a944a8583a434b5eef8-1
dandi:sha2-256: 9340186eb31a34fc92025b8663acab9337caec9e2300c896b25c9d806affd2d9
encodingFormat: video/mp4
id: dandiasset:1eaafdd7-d20d-40cb-8063-60547da44998
identifier: 1eaafdd7-d20d-40cb-8063-60547da44998
path: VideoStimulusSet/exp_motionset1_55.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:31.662153-05:00'
id: urn:uuid:655a8fc1-1f6c-4cbc-8278-bae23e7009f7
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:31.662153-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.153881-05:00'
contentSize: 384725
contentUrl:
- https://api.dandiarchive.org/api/assets/22544830-2c78-4c05-be5e-5ba142fdb768/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/c34/a4d/c34a4d50-fce2-446c-b944-fc72a5415f50
dateModified: '2024-01-15T11:08:32.998224-05:00'
digest:
dandi:dandi-etag: 12977013bcc58babdad655e7a768c47c-1
dandi:sha2-256: 105c370707290d71422510b3ad88cddf5e4c22b4ee3ff19ffb41d461457e4420
encodingFormat: video/mp4
id: dandiasset:22544830-2c78-4c05-be5e-5ba142fdb768
identifier: 22544830-2c78-4c05-be5e-5ba142fdb768
path: VideoStimulusSet/exp_motionset1_56.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:32.998184-05:00'
id: urn:uuid:48c231a3-f4e5-4269-9b7c-de376ae07e72
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:32.998184-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.179868-05:00'
contentSize: 387984
contentUrl:
- https://api.dandiarchive.org/api/assets/77d2babd-a056-4500-943a-f072f330b448/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/a5b/243/a5b243f8-ae1f-42d7-a8ee-301b69b170ed
dateModified: '2024-01-15T11:08:34.012738-05:00'
digest:
dandi:dandi-etag: d5c7d15221d533a9f42cb9a1598c0c81-1
dandi:sha2-256: 8f2aebbc9f0a59b321dc26cc017952842f938c2075490e803e3e34496224bbd8
encodingFormat: video/mp4
id: dandiasset:77d2babd-a056-4500-943a-f072f330b448
identifier: 77d2babd-a056-4500-943a-f072f330b448
path: VideoStimulusSet/exp_motionset1_57.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:34.012712-05:00'
id: urn:uuid:ecc4b87b-e946-4e66-9ad1-0a383f6d50d0
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:34.012712-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.208854-05:00'
contentSize: 395360
contentUrl:
- https://api.dandiarchive.org/api/assets/d68d0cc6-7dd3-4665-a6bc-a43600a2708c/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/93c/35f/93c35fe3-6493-4567-b9aa-831bb418adee
dateModified: '2024-01-15T11:08:35.356507-05:00'
digest:
dandi:dandi-etag: 89fcb0d4c27abaaed61f1cb6d5af5e8f-1
dandi:sha2-256: e61cd28ce8e2df3e4122ff3404f7d68d711e86a41a6c7bcdbf96896b75de31cd
encodingFormat: video/mp4
id: dandiasset:d68d0cc6-7dd3-4665-a6bc-a43600a2708c
identifier: d68d0cc6-7dd3-4665-a6bc-a43600a2708c
path: VideoStimulusSet/exp_motionset1_58.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:35.356476-05:00'
id: urn:uuid:389993be-a3e7-417d-a1b2-74bb5192d6cb
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:35.356476-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.227844-05:00'
contentSize: 388056
contentUrl:
- https://api.dandiarchive.org/api/assets/dd3156b6-f26f-4330-8abf-d43bc5d1bd5c/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/ecc/c69/eccc69ee-9206-4eee-a366-81feb26a05b3
dateModified: '2024-01-15T11:08:35.735057-05:00'
digest:
dandi:dandi-etag: c6fb9a0712b9aef98514ccf8374ab3f1-1
dandi:sha2-256: b0b8ae5cb8bda70b6afea37a7a44721974583665aad68152ca6ee9e9203a6303
encodingFormat: video/mp4
id: dandiasset:dd3156b6-f26f-4330-8abf-d43bc5d1bd5c
identifier: dd3156b6-f26f-4330-8abf-d43bc5d1bd5c
path: VideoStimulusSet/exp_motionset1_59.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:35.735019-05:00'
id: urn:uuid:8b14bba3-0dec-437e-9248-9015cb905eb7
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:35.735019-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.248834-05:00'
contentSize: 378014
contentUrl:
- https://api.dandiarchive.org/api/assets/2c416d46-5a1e-46b6-a8bc-22f7d2c1872d/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/649/9d7/6499d706-8dae-49e3-b0cf-5585fed41fd2
dateModified: '2024-01-15T11:08:36.194971-05:00'
digest:
dandi:dandi-etag: 9920a39a0a7586e15ca25929c116e5d1-1
dandi:sha2-256: 81689b9f76987c8baaefd8188d86d1fcaf426c6c388671632403a89d6e886c88
encodingFormat: video/mp4
id: dandiasset:2c416d46-5a1e-46b6-a8bc-22f7d2c1872d
identifier: 2c416d46-5a1e-46b6-a8bc-22f7d2c1872d
path: VideoStimulusSet/exp_motionset1_6.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:36.194938-05:00'
id: urn:uuid:0632cdd2-494b-4d46-8f6b-20df874c2bb3
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:36.194938-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.260828-05:00'
contentSize: 388557
contentUrl:
- https://api.dandiarchive.org/api/assets/cacb13cc-92b8-4e82-971f-ed90667c75a4/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/679/19e/67919e95-ddd6-4d41-9f9c-5fdf12e5235e
dateModified: '2024-01-15T11:08:37.501474-05:00'
digest:
dandi:dandi-etag: b43d2c8268338f726a98282c77b1b163-1
dandi:sha2-256: c4c6fa09be69bc716026e973268e84ec7f50b4f1974477f4d1d3af2505a8c55b
encodingFormat: video/mp4
id: dandiasset:cacb13cc-92b8-4e82-971f-ed90667c75a4
identifier: cacb13cc-92b8-4e82-971f-ed90667c75a4
path: VideoStimulusSet/exp_motionset1_60.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:37.501435-05:00'
id: urn:uuid:e5f6abc5-5371-4dc7-976d-3a1b5ef80074
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:37.501435-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.287814-05:00'
contentSize: 389145
contentUrl:
- https://api.dandiarchive.org/api/assets/2c8f2c6d-963d-4986-9bec-1170e33d30ae/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/692/c29/692c295d-8162-4a44-bc8f-e474c36ea10f
dateModified: '2024-01-15T11:08:37.699014-05:00'
digest:
dandi:dandi-etag: 970478c10702c7a10e95dd96dbd9fe7c-1
dandi:sha2-256: 450f01fed81ed98fa6590673f9d9d8e27f6ce29f223f846ff340455f514df41f
encodingFormat: video/mp4
id: dandiasset:2c8f2c6d-963d-4986-9bec-1170e33d30ae
identifier: 2c8f2c6d-963d-4986-9bec-1170e33d30ae
path: VideoStimulusSet/exp_motionset1_61.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:37.698980-05:00'
id: urn:uuid:d64cda39-5e78-46d5-ab9d-20848f6be24e
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:37.698980-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.308804-05:00'
contentSize: 390242
contentUrl:
- https://api.dandiarchive.org/api/assets/de21eb66-b674-41e2-8802-ce2daa0d7bf2/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/e37/dbf/e37dbf42-80e4-452c-b743-9545d760188f
dateModified: '2024-01-15T11:08:39.581999-05:00'
digest:
dandi:dandi-etag: 7f1c087a8b1406caaf58d3f82bcb198b-1
dandi:sha2-256: 334f233569f49300d420e8441279a911688f8f9cf4bb3d28308561a50dbb41fb
encodingFormat: video/mp4
id: dandiasset:de21eb66-b674-41e2-8802-ce2daa0d7bf2
identifier: de21eb66-b674-41e2-8802-ce2daa0d7bf2
path: VideoStimulusSet/exp_motionset1_62.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:39.581967-05:00'
id: urn:uuid:116c66d0-c439-451a-9469-07b18942e4fc
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:39.581967-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.325795-05:00'
contentSize: 390886
contentUrl:
- https://api.dandiarchive.org/api/assets/054110d4-b5aa-4fa0-8970-334c67ee455c/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/2c7/f4c/2c7f4c41-4016-412f-96c0-53a31120771f
dateModified: '2024-01-15T11:08:40.499684-05:00'
digest:
dandi:dandi-etag: 8dde4517e11efd9d0320d87369cb9e1c-1
dandi:sha2-256: d21fd41b1736221bf4591d3f3aa558efe4ccd401004bf2ceb7b6ab3b3cf04e2c
encodingFormat: video/mp4
id: dandiasset:054110d4-b5aa-4fa0-8970-334c67ee455c
identifier: 054110d4-b5aa-4fa0-8970-334c67ee455c
path: VideoStimulusSet/exp_motionset1_63.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:40.499636-05:00'
id: urn:uuid:ad39d112-31ed-4880-a90a-a8a2753a0a4c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:40.499636-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.356780-05:00'
contentSize: 391254
contentUrl:
- https://api.dandiarchive.org/api/assets/804513f4-3ab7-4610-9a0d-f12071ea45a3/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/6c4/68b/6c468b28-6f91-4562-84d0-24fb8c19914b
dateModified: '2024-01-15T11:08:40.808315-05:00'
digest:
dandi:dandi-etag: 3aa1916af5d6d31c6634036507887594-1
dandi:sha2-256: b10d337f23fd84e1225660ead54514bf8d5290eada25822461fde4631a6d3d72
encodingFormat: video/mp4
id: dandiasset:804513f4-3ab7-4610-9a0d-f12071ea45a3
identifier: 804513f4-3ab7-4610-9a0d-f12071ea45a3
path: VideoStimulusSet/exp_motionset1_64.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:40.808278-05:00'
id: urn:uuid:efa162de-6194-41db-8702-994f1782de2b
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:40.808278-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.377769-05:00'
contentSize: 391764
contentUrl:
- https://api.dandiarchive.org/api/assets/44304988-9778-482e-9c3a-91f5774ffb8d/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/9b4/3e0/9b43e0d7-f7b3-47f8-a010-88b08e78c791
dateModified: '2024-01-15T11:08:42.147526-05:00'
digest:
dandi:dandi-etag: a1bdc9ff7fc1edb96a63c7a8d9303f49-1
dandi:sha2-256: 3fb94b3a19bf8c8464a30eb29393b2c395d01a547b149099175ed538e79ea601
encodingFormat: video/mp4
id: dandiasset:44304988-9778-482e-9c3a-91f5774ffb8d
identifier: 44304988-9778-482e-9c3a-91f5774ffb8d
path: VideoStimulusSet/exp_motionset1_65.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:42.147482-05:00'
id: urn:uuid:ea7a8a5a-d782-4729-bedf-af895caddf13
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:42.147482-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.398759-05:00'
contentSize: 388494
contentUrl:
- https://api.dandiarchive.org/api/assets/7742e1a1-059d-4add-9b02-c83dfeb41734/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/c25/61f/c2561fb0-9fbd-4c88-b78d-9934d3a508d4
dateModified: '2024-01-15T11:08:42.494833-05:00'
digest:
dandi:dandi-etag: 0cca3acab9e964af3cabbe3b2b661883-1
dandi:sha2-256: 257dc367c2f38444688e8c931a88eb2df4eb001b1204a2c82eded7533d081488
encodingFormat: video/mp4
id: dandiasset:7742e1a1-059d-4add-9b02-c83dfeb41734
identifier: 7742e1a1-059d-4add-9b02-c83dfeb41734
path: VideoStimulusSet/exp_motionset1_66.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:42.494788-05:00'
id: urn:uuid:19145c3c-c2ab-4d45-8d76-9eefb653e401
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:42.494788-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.409753-05:00'
contentSize: 395956
contentUrl:
- https://api.dandiarchive.org/api/assets/85f83ab2-f448-4f0e-8dc9-c16fa86848ac/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/85d/200/85d20086-f49a-4d49-9655-139f9c8ae054
dateModified: '2024-01-15T11:08:43.861502-05:00'
digest:
dandi:dandi-etag: 37ea5e7547604cb22331752eb10472dd-1
dandi:sha2-256: 9c224a70625253cdc821223e5fe4f6bb8f50f1a565e1dd5b5e22f874117b7c86
encodingFormat: video/mp4
id: dandiasset:85f83ab2-f448-4f0e-8dc9-c16fa86848ac
identifier: 85f83ab2-f448-4f0e-8dc9-c16fa86848ac
path: VideoStimulusSet/exp_motionset1_67.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:43.861460-05:00'
id: urn:uuid:75098205-fb0d-4abd-8570-911d8570bfb9
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:43.861460-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.432742-05:00'
contentSize: 395860
contentUrl:
- https://api.dandiarchive.org/api/assets/aec18702-a21c-44d6-9216-3184e379ea6c/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/746/643/746643a9-a37d-4ef2-b0da-c1a40958de77
dateModified: '2024-01-15T11:08:44.932999-05:00'
digest:
dandi:dandi-etag: 29bf242e9ec7883bb1852596876735f2-1
dandi:sha2-256: 3232e201c356df19b48c3d3b515bf4af044cd447d4490d71577ee6226a4ac770
encodingFormat: video/mp4
id: dandiasset:aec18702-a21c-44d6-9216-3184e379ea6c
identifier: aec18702-a21c-44d6-9216-3184e379ea6c
path: VideoStimulusSet/exp_motionset1_68.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:44.932949-05:00'
id: urn:uuid:7f00001a-76df-4eef-9a87-56d6c135ea79
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:44.932949-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.451732-05:00'
contentSize: 389926
contentUrl:
- https://api.dandiarchive.org/api/assets/80317b63-3fe8-4684-b4ad-514e678e7d6c/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/a22/62f/a2262f3b-d2c9-4adb-bef0-3a19217e2f11
dateModified: '2024-01-15T11:08:45.436589-05:00'
digest:
dandi:dandi-etag: 44fe27ad79588dcf9d2dd661f910b028-1
dandi:sha2-256: d3a8e245d7b8003f62bdf5cb05677f7c4fe21b2d70e78a474f47f7ee256568fb
encodingFormat: video/mp4
id: dandiasset:80317b63-3fe8-4684-b4ad-514e678e7d6c
identifier: 80317b63-3fe8-4684-b4ad-514e678e7d6c
path: VideoStimulusSet/exp_motionset1_69.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:45.436547-05:00'
id: urn:uuid:97364ed1-5f1a-48ab-9c4b-21c8c940c249
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:45.436547-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.476720-05:00'
contentSize: 380490
contentUrl:
- https://api.dandiarchive.org/api/assets/240d0a29-2d50-4b3d-ba1b-d7b68ad3777c/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/3ad/b15/3adb15f6-cd72-4b74-bdb0-066ca3538e37
dateModified: '2024-01-15T11:08:46.727508-05:00'
digest:
dandi:dandi-etag: b28bbf96bc487378e95c47d091049043-1
dandi:sha2-256: 32a8fdfebd47ee180163969adcbf36c0f59afb36f229deb1acbfd783544d4d61
encodingFormat: video/mp4
id: dandiasset:240d0a29-2d50-4b3d-ba1b-d7b68ad3777c
identifier: 240d0a29-2d50-4b3d-ba1b-d7b68ad3777c
path: VideoStimulusSet/exp_motionset1_7.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:46.727474-05:00'
id: urn:uuid:316c7884-cc28-42dd-859f-22691b14d260
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:46.727474-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.495710-05:00'
contentSize: 390387
contentUrl:
- https://api.dandiarchive.org/api/assets/05208539-ec7e-4d2e-8c55-95aae7d20bfa/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/5c9/d4f/5c9d4f5b-b074-46f9-8ce0-077dd6d83916
dateModified: '2024-01-15T11:08:47.001044-05:00'
digest:
dandi:dandi-etag: d3e7ebf4840a371f32a4b1c820d2cbdb-1
dandi:sha2-256: c4a7f6bbed96d5336f3abe79d64dcb166f9b43af61d69a66ea67fba25114ac0f
encodingFormat: video/mp4
id: dandiasset:05208539-ec7e-4d2e-8c55-95aae7d20bfa
identifier: 05208539-ec7e-4d2e-8c55-95aae7d20bfa
path: VideoStimulusSet/exp_motionset1_70.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:47.001016-05:00'
id: urn:uuid:bc011394-fea3-4fd1-a9cf-2f119236dae3
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:47.001016-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.515700-05:00'
contentSize: 392834
contentUrl:
- https://api.dandiarchive.org/api/assets/38a6ac7f-9ae6-429a-9da2-9c8a32513d79/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/348/e3e/348e3e54-5d97-41fd-b502-00ba0b45b218
dateModified: '2024-01-15T11:08:48.431247-05:00'
digest:
dandi:dandi-etag: ddd7ccc0f2f5d184f620a46c9e8b6bc0-1
dandi:sha2-256: 7fafebb8f2853c62dd33637b62b29f14b12c5652f0e954ba7a4d728e29368e5e
encodingFormat: video/mp4
id: dandiasset:38a6ac7f-9ae6-429a-9da2-9c8a32513d79
identifier: 38a6ac7f-9ae6-429a-9da2-9c8a32513d79
path: VideoStimulusSet/exp_motionset1_71.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:48.431195-05:00'
id: urn:uuid:489594e0-4dbd-4506-bcfc-e68ef353abd2
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:48.431195-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.533691-05:00'
contentSize: 394872
contentUrl:
- https://api.dandiarchive.org/api/assets/1bdcc97a-c821-4c8c-b33f-18a7ad12c6be/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/b69/d07/b69d074e-66c9-47ed-b83e-4102ef50ab78
dateModified: '2024-01-15T11:08:48.745617-05:00'
digest:
dandi:dandi-etag: 6fd6ccb2d8b555545066efdd05ffa3ee-1
dandi:sha2-256: 8042fc8710129dde729aa5cf32f651b0d0c0fdd7d91665bc57fee96c6b51d3a9
encodingFormat: video/mp4
id: dandiasset:1bdcc97a-c821-4c8c-b33f-18a7ad12c6be
identifier: 1bdcc97a-c821-4c8c-b33f-18a7ad12c6be
path: VideoStimulusSet/exp_motionset1_72.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:48.745566-05:00'
id: urn:uuid:a6670603-5b9e-4cd3-bdfc-3d47eabeab2b
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:48.745566-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.553681-05:00'
contentSize: 394128
contentUrl:
- https://api.dandiarchive.org/api/assets/a80ab0f5-5bd9-4303-895f-dedac9f3731d/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/53d/667/53d66768-7dd4-4b95-a9bd-01583b2bbd3d
dateModified: '2024-01-15T11:08:50.229426-05:00'
digest:
dandi:dandi-etag: 1f027d909925cd7ba056acf80b5c4414-1
dandi:sha2-256: 2d9452e4b4ecf9b95e7cdf4ac61c9144afc9c8b1fc59a0ebe1c2ce7c31b34cd0
encodingFormat: video/mp4
id: dandiasset:a80ab0f5-5bd9-4303-895f-dedac9f3731d
identifier: a80ab0f5-5bd9-4303-895f-dedac9f3731d
path: VideoStimulusSet/exp_motionset1_73.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:50.229398-05:00'
id: urn:uuid:4a0dc91a-cbae-4814-b6d2-7ffb96dc36ad
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:50.229398-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.576670-05:00'
contentSize: 390843
contentUrl:
- https://api.dandiarchive.org/api/assets/2e34fffa-4909-4fac-9328-2b26febbef8c/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/e40/0c6/e400c6fe-d484-4b08-b104-6981a415cd02
dateModified: '2024-01-15T11:08:51.001807-05:00'
digest:
dandi:dandi-etag: eaf8633df45594ff52c2e646aa00b054-1
dandi:sha2-256: c525e9e73198f8c08381b6ba86bc278c82301c5fc8da96bde579356f57853de0
encodingFormat: video/mp4
id: dandiasset:2e34fffa-4909-4fac-9328-2b26febbef8c
identifier: 2e34fffa-4909-4fac-9328-2b26febbef8c
path: VideoStimulusSet/exp_motionset1_74.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:51.001775-05:00'
id: urn:uuid:dafad46a-b6bd-4e66-bc35-92e5be4b532d
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:51.001775-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.596660-05:00'
contentSize: 394365
contentUrl:
- https://api.dandiarchive.org/api/assets/d7bcaee9-f169-429e-b593-c30692a0f187/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/2f0/ed6/2f0ed620-58db-4b72-8388-26646ba08029
dateModified: '2024-01-15T11:08:51.457920-05:00'
digest:
dandi:dandi-etag: 02f5fc11a679dc00faa8dfd4966b8c3a-1
dandi:sha2-256: b3439e85baffb1c6117b8aca9ed11238e0cd6da039c91602afd127abfb68868d
encodingFormat: video/mp4
id: dandiasset:d7bcaee9-f169-429e-b593-c30692a0f187
identifier: d7bcaee9-f169-429e-b593-c30692a0f187
path: VideoStimulusSet/exp_motionset1_75.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:51.457878-05:00'
id: urn:uuid:39924616-3930-416a-bebe-3fd3fe068151
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:51.457878-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.619648-05:00'
contentSize: 397987
contentUrl:
- https://api.dandiarchive.org/api/assets/029ca0db-ce0d-4fc3-bbfc-50b5678c9879/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/169/c60/169c601a-6681-42eb-9415-c27d4e3a90f3
dateModified: '2024-01-15T11:08:52.809581-05:00'
digest:
dandi:dandi-etag: 069541f3bbe2e850e79bc488027e6aac-1
dandi:sha2-256: 6676ef1eeea9679ce677b5668115ebe622ddb73d17f6658f427c038be51044f3
encodingFormat: video/mp4
id: dandiasset:029ca0db-ce0d-4fc3-bbfc-50b5678c9879
identifier: 029ca0db-ce0d-4fc3-bbfc-50b5678c9879
path: VideoStimulusSet/exp_motionset1_76.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:52.809531-05:00'
id: urn:uuid:3589202e-433e-41ae-b01e-80adc7bb9136
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:52.809531-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.636640-05:00'
contentSize: 389449
contentUrl:
- https://api.dandiarchive.org/api/assets/2d06491e-8b0c-4a81-9992-785218b5db5f/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/35a/5f7/35a5f733-f6e9-4b07-aa11-590ecf32e94b
dateModified: '2024-01-15T11:08:53.476923-05:00'
digest:
dandi:dandi-etag: e330661bdef77677f1d1f04ed9a63066-1
dandi:sha2-256: 8f6b4c9c3fa3183945aa83aaa9245d19485eb98cc61affb23d5e51e17203a038
encodingFormat: video/mp4
id: dandiasset:2d06491e-8b0c-4a81-9992-785218b5db5f
identifier: 2d06491e-8b0c-4a81-9992-785218b5db5f
path: VideoStimulusSet/exp_motionset1_77.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:53.476892-05:00'
id: urn:uuid:38fb1b54-c18c-4cc5-a317-3d1c4bed8460
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:53.476892-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.663626-05:00'
contentSize: 392257
contentUrl:
- https://api.dandiarchive.org/api/assets/9d0e549f-f9d7-4d63-b3d6-06aafa47b258/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/e6d/770/e6d770bf-f6fa-455b-bd63-9cccbfe11865
dateModified: '2024-01-15T11:08:54.324319-05:00'
digest:
dandi:dandi-etag: 902c7629e9d6ca51b2aab9771142cb1a-1
dandi:sha2-256: a6791cde41b4cfbc146a79049acfe5a36dfc206deca4fe16d4c8749decc52a35
encodingFormat: video/mp4
id: dandiasset:9d0e549f-f9d7-4d63-b3d6-06aafa47b258
identifier: 9d0e549f-f9d7-4d63-b3d6-06aafa47b258
path: VideoStimulusSet/exp_motionset1_78.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:54.324289-05:00'
id: urn:uuid:010b935d-7133-46c1-80ea-1d0d6069d9a1
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:54.324289-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.690613-05:00'
contentSize: 392665
contentUrl:
- https://api.dandiarchive.org/api/assets/6b984ae9-30f5-43fc-b0da-3c95966ebe61/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/da2/fed/da2fed80-34cd-41f4-833c-052ad0488a8e
dateModified: '2024-01-15T11:08:55.283666-05:00'
digest:
dandi:dandi-etag: 10c056c92985c2b0263016c955169b97-1
dandi:sha2-256: 9741c8a4c3c381b953be350ae9ce2da883ab53417017967fd59307ef4a8112be
encodingFormat: video/mp4
id: dandiasset:6b984ae9-30f5-43fc-b0da-3c95966ebe61
identifier: 6b984ae9-30f5-43fc-b0da-3c95966ebe61
path: VideoStimulusSet/exp_motionset1_79.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:55.283635-05:00'
id: urn:uuid:20b74779-07d3-4ccf-ad29-78f7fc186906
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:55.283635-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.712602-05:00'
contentSize: 383421
contentUrl:
- https://api.dandiarchive.org/api/assets/2144a2eb-c767-4392-a554-81785517be7e/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/d89/487/d89487d3-cc6d-4f6a-b29c-c2ce642f491e
dateModified: '2024-01-15T11:08:55.767431-05:00'
digest:
dandi:dandi-etag: 08c40d98deb1dcf43c10ce4774a86a47-1
dandi:sha2-256: ab8594dff585beda999d1689a125160e26e02b65b3f9e85a986d08ff00734bb1
encodingFormat: video/mp4
id: dandiasset:2144a2eb-c767-4392-a554-81785517be7e
identifier: 2144a2eb-c767-4392-a554-81785517be7e
path: VideoStimulusSet/exp_motionset1_8.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:55.767403-05:00'
id: urn:uuid:43510f90-ca62-434e-923a-99c2c5c88809
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:55.767403-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.754581-05:00'
contentSize: 393376
contentUrl:
- https://api.dandiarchive.org/api/assets/e552a105-ff0b-4c5a-82ad-c5ffed56e4b7/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/993/a88/993a887a-5adb-4e01-a516-e2d264af6ecf
dateModified: '2024-01-15T11:08:56.822922-05:00'
digest:
dandi:dandi-etag: 9cb9f3fcbec47c3dd0e39886c770b78a-1
dandi:sha2-256: 076a3cacc385d452de60a3d8e76de97ff950a169deef2fe701d04ad433237f2f
encodingFormat: video/mp4
id: dandiasset:e552a105-ff0b-4c5a-82ad-c5ffed56e4b7
identifier: e552a105-ff0b-4c5a-82ad-c5ffed56e4b7
path: VideoStimulusSet/exp_motionset1_80.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:56.822878-05:00'
id: urn:uuid:cfb55551-39de-4ddd-bd92-3b11c0215ef7
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:56.822878-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.773571-05:00'
contentSize: 389948
contentUrl:
- https://api.dandiarchive.org/api/assets/29c62740-ee8f-40e3-b7a8-957187f27f52/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/251/99c/25199cbc-59eb-4058-bea9-886523938bb9
dateModified: '2024-01-15T11:08:57.684603-05:00'
digest:
dandi:dandi-etag: c016134cda42b40fe4fd14912f78b65f-1
dandi:sha2-256: ef6ec66fc1c2ea198cc7203c9b4dfa335a5d5a0a522b1c32b56686a1810b1e45
encodingFormat: video/mp4
id: dandiasset:29c62740-ee8f-40e3-b7a8-957187f27f52
identifier: 29c62740-ee8f-40e3-b7a8-957187f27f52
path: VideoStimulusSet/exp_motionset1_81.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:57.684567-05:00'
id: urn:uuid:1e00a4c5-e5cb-44d7-9e43-0c98fc47ffa2
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:57.684567-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.797559-05:00'
contentSize: 395021
contentUrl:
- https://api.dandiarchive.org/api/assets/472f5340-e0b3-4d52-94d6-79d2e67ac1c1/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/1f6/d20/1f6d2056-8d75-4029-830f-60ac653aa214
dateModified: '2024-01-15T11:08:59.054630-05:00'
digest:
dandi:dandi-etag: 694e31e51d55339de139973202019299-1
dandi:sha2-256: 1c868a559cb4c6911c217b72e7d81ce4769a6a94c2424dd6da9a317edfc80c37
encodingFormat: video/mp4
id: dandiasset:472f5340-e0b3-4d52-94d6-79d2e67ac1c1
identifier: 472f5340-e0b3-4d52-94d6-79d2e67ac1c1
path: VideoStimulusSet/exp_motionset1_82.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:59.054589-05:00'
id: urn:uuid:d5b33ae6-d879-4601-ac6f-1f2394dde541
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:59.054589-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.819548-05:00'
contentSize: 398756
contentUrl:
- https://api.dandiarchive.org/api/assets/fafc29b7-ab87-4596-8c32-6c0f8d3c754b/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/f27/a12/f27a126e-f877-4f09-a5fc-4b9a3599e211
dateModified: '2024-01-15T11:08:59.819376-05:00'
digest:
dandi:dandi-etag: 58b03ba9936a16bf02e9e279245041d0-1
dandi:sha2-256: 7e2fdfd8bdad83ed03d06f7fcc7787b53effb477f596e97d933959c6547d919b
encodingFormat: video/mp4
id: dandiasset:fafc29b7-ab87-4596-8c32-6c0f8d3c754b
identifier: fafc29b7-ab87-4596-8c32-6c0f8d3c754b
path: VideoStimulusSet/exp_motionset1_83.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:08:59.819330-05:00'
id: urn:uuid:065d06a5-ef75-4d71-82e1-277439d91987
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:08:59.819330-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.839538-05:00'
contentSize: 392459
contentUrl:
- https://api.dandiarchive.org/api/assets/48feea99-30df-4b21-ba9d-e23aa7a3e740/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/15b/26d/15b26d2c-34e4-4342-849a-21c8e39df88d
dateModified: '2024-01-15T11:09:00.684466-05:00'
digest:
dandi:dandi-etag: c70f5881a3bb3eac2d7846a84f6e7765-1
dandi:sha2-256: 3c9812ce0b7bbbc4699246423c85c58a478ebc8e762a0e755c860eae07ae86fc
encodingFormat: video/mp4
id: dandiasset:48feea99-30df-4b21-ba9d-e23aa7a3e740
identifier: 48feea99-30df-4b21-ba9d-e23aa7a3e740
path: VideoStimulusSet/exp_motionset1_84.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:00.684425-05:00'
id: urn:uuid:752c0963-7cbb-46d6-93a0-96eaf94cd6a9
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:00.684425-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.870523-05:00'
contentSize: 394485
contentUrl:
- https://api.dandiarchive.org/api/assets/1edd7e85-9be4-4d63-ad7b-b4ba2bc0cb1f/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/5b0/fa8/5b0fa814-de3b-40f2-a13b-29f176c9cbf6
dateModified: '2024-01-15T11:09:01.051784-05:00'
digest:
dandi:dandi-etag: 83c4fbc1ceacc0013327a5d7f62b23e8-1
dandi:sha2-256: 2baa95bca02aeb3b739470eff5a26bcaafc160c4b918a5f55bd97649e58b0f25
encodingFormat: video/mp4
id: dandiasset:1edd7e85-9be4-4d63-ad7b-b4ba2bc0cb1f
identifier: 1edd7e85-9be4-4d63-ad7b-b4ba2bc0cb1f
path: VideoStimulusSet/exp_motionset1_85.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:01.051738-05:00'
id: urn:uuid:de39a33a-ecd2-4a19-9824-486cf3c4c994
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:01.051738-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.892512-05:00'
contentSize: 395813
contentUrl:
- https://api.dandiarchive.org/api/assets/839fc982-1709-4ad1-b231-853724d65e84/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/3b3/94f/3b394fd3-ade2-415e-84a8-8060372ee78b
dateModified: '2024-01-15T11:09:02.323702-05:00'
digest:
dandi:dandi-etag: 28df606b23b8db27841302592ccc21d4-1
dandi:sha2-256: 12fde32f33f7126ddd5a9043012e711ce924815c5a68e2c65c7f9b2fbe820380
encodingFormat: video/mp4
id: dandiasset:839fc982-1709-4ad1-b231-853724d65e84
identifier: 839fc982-1709-4ad1-b231-853724d65e84
path: VideoStimulusSet/exp_motionset1_86.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:02.323646-05:00'
id: urn:uuid:78d9de5d-74c9-4664-8c5e-89d9c56dd096
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:02.323646-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.917499-05:00'
contentSize: 394763
contentUrl:
- https://api.dandiarchive.org/api/assets/1b50c5b1-7e59-4b5e-8fd1-c7d4904e926e/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/e6d/21c/e6d21c6e-3937-413b-b81d-f0b2794c239b
dateModified: '2024-01-15T11:09:04.021640-05:00'
digest:
dandi:dandi-etag: 145f3ba02ffe03b6692db39bbf2dd391-1
dandi:sha2-256: fa3bc5e166b6f7faa21757b2e01dd084c1db4af37bc83dc27ba39e7916933ded
encodingFormat: video/mp4
id: dandiasset:1b50c5b1-7e59-4b5e-8fd1-c7d4904e926e
identifier: 1b50c5b1-7e59-4b5e-8fd1-c7d4904e926e
path: VideoStimulusSet/exp_motionset1_87.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:04.021610-05:00'
id: urn:uuid:c2d57ac6-b975-4e9d-8f87-31cb540aadfe
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:04.021610-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.934491-05:00'
contentSize: 393928
contentUrl:
- https://api.dandiarchive.org/api/assets/a6570754-57c6-45ad-a2d4-95b6456cb506/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/5f8/718/5f87184d-4b5d-4084-92a5-acdf4bdd4e57
dateModified: '2024-01-15T11:09:04.161726-05:00'
digest:
dandi:dandi-etag: f1124a8b9330f2504c7aab20e203b06c-1
dandi:sha2-256: d074db0f61848fe2f8ce134af16230e0db3c49b234b51e6653e88f2a70c97d39
encodingFormat: video/mp4
id: dandiasset:a6570754-57c6-45ad-a2d4-95b6456cb506
identifier: a6570754-57c6-45ad-a2d4-95b6456cb506
path: VideoStimulusSet/exp_motionset1_88.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:04.161697-05:00'
id: urn:uuid:4c6361d8-6ca1-4cea-968c-3d443ea92702
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:04.161697-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.957479-05:00'
contentSize: 399152
contentUrl:
- https://api.dandiarchive.org/api/assets/dc7665b7-58d4-4806-a038-d13ea33e6cd2/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/6b3/5b4/6b35b4fd-35be-45c6-8a50-66aa2235e635
dateModified: '2024-01-15T11:09:04.961224-05:00'
digest:
dandi:dandi-etag: aca51053ac239587e0c1f446b61c357d-1
dandi:sha2-256: 1290de7f458cf7dcebdef211999fc75b607d6c72f0a6bb671af1a9cb054daa80
encodingFormat: video/mp4
id: dandiasset:dc7665b7-58d4-4806-a038-d13ea33e6cd2
identifier: dc7665b7-58d4-4806-a038-d13ea33e6cd2
path: VideoStimulusSet/exp_motionset1_89.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:04.961182-05:00'
id: urn:uuid:3bddc8b5-aab4-4994-a5de-c2e7906348ce
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:04.961182-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.978469-05:00'
contentSize: 383652
contentUrl:
- https://api.dandiarchive.org/api/assets/28663e61-f8d1-4c04-8c72-a4ffec130a17/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/4e5/f18/4e5f1845-eafc-4c9b-8029-957ddbb2872d
dateModified: '2024-01-15T11:09:05.340622-05:00'
digest:
dandi:dandi-etag: 887024d1effb28fb14644fd141afa1c8-1
dandi:sha2-256: 330d3a631a3be2ab010c0bc4564773ad452e24f3bbc8e6329588972d0e83ce6f
encodingFormat: video/mp4
id: dandiasset:28663e61-f8d1-4c04-8c72-a4ffec130a17
identifier: 28663e61-f8d1-4c04-8c72-a4ffec130a17
path: VideoStimulusSet/exp_motionset1_9.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:05.340579-05:00'
id: urn:uuid:2c6b535c-b42f-4bea-b59a-c1fd9a019a1c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:05.340579-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:12.996460-05:00'
contentSize: 397519
contentUrl:
- https://api.dandiarchive.org/api/assets/40f4c2d8-756b-4726-b434-9c4ae0aafbb7/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/502/46a/50246a8f-cc71-4aab-b171-35dd0463e834
dateModified: '2024-01-15T11:09:06.956542-05:00'
digest:
dandi:dandi-etag: b3e63c53cabc656964f4ed59b2e14b2f-1
dandi:sha2-256: ef8131aea35e978411b59fc4d30ec622d7689538bd6e0f3de384be449acab904
encodingFormat: video/mp4
id: dandiasset:40f4c2d8-756b-4726-b434-9c4ae0aafbb7
identifier: 40f4c2d8-756b-4726-b434-9c4ae0aafbb7
path: VideoStimulusSet/exp_motionset1_90.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:06.956495-05:00'
id: urn:uuid:a4cca075-f65b-4046-8caf-f3b79cd6a313
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:06.956495-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:13.046435-05:00'
contentSize: 397472
contentUrl:
- https://api.dandiarchive.org/api/assets/6d8b8ff2-0712-40eb-8087-c27a8ddac474/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/b90/aa3/b90aa37a-e920-4467-85e6-50bf4279eb4e
dateModified: '2024-01-15T11:09:09.001816-05:00'
digest:
dandi:dandi-etag: 3a570571a480e5eefa1d86792ea984c9-1
dandi:sha2-256: 0c4c29ef5312da45f3187dd7467ea77e56965f7ebb449ce0e8a6ad88399d1de8
encodingFormat: video/mp4
id: dandiasset:6d8b8ff2-0712-40eb-8087-c27a8ddac474
identifier: 6d8b8ff2-0712-40eb-8087-c27a8ddac474
path: VideoStimulusSet/exp_motionset1_92.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:09.001772-05:00'
id: urn:uuid:860edb71-ae38-4e29-87d8-d89392e965b3
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:09.001772-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:13.022447-05:00'
contentSize: 397224
contentUrl:
- https://api.dandiarchive.org/api/assets/8fad14c7-fd2c-4199-afb8-2b53f5ac120e/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/9fe/236/9fe23695-5574-4058-9399-38bd085ade49
dateModified: '2024-01-15T11:09:08.349758-05:00'
digest:
dandi:dandi-etag: 37d1b90793f0abbadb449f914f663c4c-1
dandi:sha2-256: bd057b7f89db557904cae2eca99adb65c7472b0e66adcde2467e142d728d51be
encodingFormat: video/mp4
id: dandiasset:8fad14c7-fd2c-4199-afb8-2b53f5ac120e
identifier: 8fad14c7-fd2c-4199-afb8-2b53f5ac120e
path: VideoStimulusSet/exp_motionset1_91.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:08.349714-05:00'
id: urn:uuid:463eaa5b-3c4c-4618-b224-99a0846c3e5b
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:08.349714-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:13.059428-05:00'
contentSize: 400129
contentUrl:
- https://api.dandiarchive.org/api/assets/5f327435-2785-4bab-aa18-877969c5c1cb/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/98b/585/98b58582-41c4-4d4f-9d52-0f4fbb74b302
dateModified: '2024-01-15T11:09:09.639881-05:00'
digest:
dandi:dandi-etag: 925bd2344e02aca002a4f09ae35e3707-1
dandi:sha2-256: a926285433c3b85497484a036205ed24ad0aa983994d746572b8ee7a1c2f0486
encodingFormat: video/mp4
id: dandiasset:5f327435-2785-4bab-aa18-877969c5c1cb
identifier: 5f327435-2785-4bab-aa18-877969c5c1cb
path: VideoStimulusSet/exp_motionset1_93.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:09.639849-05:00'
id: urn:uuid:374a4be0-5c32-4433-a8da-bea3959e0a5c
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:09.639849-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:13.078419-05:00'
contentSize: 399532
contentUrl:
- https://api.dandiarchive.org/api/assets/bb3f5b2c-8c2c-43c8-bd5e-72347a87c444/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/6a3/d4d/6a3d4dd9-629c-40b7-850e-956ea43e11d7
dateModified: '2024-01-15T11:09:10.356851-05:00'
digest:
dandi:dandi-etag: 5b7ee6864546dd63f6b03780e78e948f-1
dandi:sha2-256: 4244336ccb27a385fa7a478173d32cfe61232618ea9be7bb3156d3e202b924a9
encodingFormat: video/mp4
id: dandiasset:bb3f5b2c-8c2c-43c8-bd5e-72347a87c444
identifier: bb3f5b2c-8c2c-43c8-bd5e-72347a87c444
path: VideoStimulusSet/exp_motionset1_94.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:10.356814-05:00'
id: urn:uuid:731de206-abba-4b55-971a-1eee61b31fd2
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:10.356814-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:13.117399-05:00'
contentSize: 398235
contentUrl:
- https://api.dandiarchive.org/api/assets/9898585c-f469-4492-9e0e-b92cf3df59e8/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/4e5/f05/4e5f0551-5784-40fc-9e19-652debc46495
dateModified: '2024-01-15T11:09:10.932876-05:00'
digest:
dandi:dandi-etag: ef45ee421e562f9c561653c9ce9ddfa7-1
dandi:sha2-256: f50bc72205ddce05c60c819e002b61b338ac01222054d55a9d5108450654648a
encodingFormat: video/mp4
id: dandiasset:9898585c-f469-4492-9e0e-b92cf3df59e8
identifier: 9898585c-f469-4492-9e0e-b92cf3df59e8
path: VideoStimulusSet/exp_motionset1_95.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:10.932847-05:00'
id: urn:uuid:939f5fb6-2e70-4f85-a98a-ba350b7b1a11
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:10.932847-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:13.148384-05:00'
contentSize: 397831
contentUrl:
- https://api.dandiarchive.org/api/assets/abe732d2-4a6b-4b13-a67c-406e60a8e22a/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/049/9d8/0499d8a8-83c5-4f18-948c-f4767f98ecfa
dateModified: '2024-01-15T11:09:12.717003-05:00'
digest:
dandi:dandi-etag: b50b7cb42516b0ec01f8adc634e22bcf-1
dandi:sha2-256: be08edd3e9549a5fd1476dc0dbb68184ca53487172a40f6df66749909ea34fd8
encodingFormat: video/mp4
id: dandiasset:abe732d2-4a6b-4b13-a67c-406e60a8e22a
identifier: abe732d2-4a6b-4b13-a67c-406e60a8e22a
path: VideoStimulusSet/exp_motionset1_96.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:12.716959-05:00'
id: urn:uuid:32c15174-6d13-47f5-9009-23b21fbf0321
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:12.716959-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:13.188364-05:00'
contentSize: 400684
contentUrl:
- https://api.dandiarchive.org/api/assets/0aa8c487-f964-4166-bdc1-04d04c4612c6/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/c63/78c/c6378cc5-7e06-414c-9179-21f8891ee87e
dateModified: '2024-01-15T11:09:13.892014-05:00'
digest:
dandi:dandi-etag: 7c56af5b4f24244792fa9704c8b5474b-1
dandi:sha2-256: 2b5f19e101c25ffbb9f73531b4f5801dc13b0a0150595f2b68e9b373a1b73fee
encodingFormat: video/mp4
id: dandiasset:0aa8c487-f964-4166-bdc1-04d04c4612c6
identifier: 0aa8c487-f964-4166-bdc1-04d04c4612c6
path: VideoStimulusSet/exp_motionset1_98.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:13.891979-05:00'
id: urn:uuid:920618c7-5477-48a4-8048-cd9b7fe08d1e
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:13.891979-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:13.171372-05:00'
contentSize: 402440
contentUrl:
- https://api.dandiarchive.org/api/assets/0ab2f274-eaf2-4637-bbc0-63aacc61db22/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/7b6/d10/7b6d10bd-33ae-4e1e-b99a-f8c1a281f6b8
dateModified: '2024-01-15T11:09:13.213054-05:00'
digest:
dandi:dandi-etag: 7c418ac9159d4c5b3f9886004ac54fbc-1
dandi:sha2-256: d6a1180b36e03c377dd5e1f246dac9abcdaebde1e7101caca134e6f71b3d84b2
encodingFormat: video/mp4
id: dandiasset:0ab2f274-eaf2-4637-bbc0-63aacc61db22
identifier: 0ab2f274-eaf2-4637-bbc0-63aacc61db22
path: VideoStimulusSet/exp_motionset1_97.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:13.213022-05:00'
id: urn:uuid:12e96ef7-cf0d-480b-914f-801ba5ae9592
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:13.213022-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
blobDateModified: '2024-01-15T11:07:13.211352-05:00'
contentSize: 398482
contentUrl:
- https://api.dandiarchive.org/api/assets/d4a5c890-c257-46f4-8b18-8ea7c9111880/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/5cd/46f/5cd46f6d-5cd0-48d3-ac1e-267922d9a13d
dateModified: '2024-01-15T11:09:14.303548-05:00'
digest:
dandi:dandi-etag: 24c700bf0079009ad817b892dfe56ab6-1
dandi:sha2-256: c2bef63ee106615e9613433d84f648d263fef6d94a985e69f1c1370111ab895c
encodingFormat: video/mp4
id: dandiasset:d4a5c890-c257-46f4-8b18-8ea7c9111880
identifier: d4a5c890-c257-46f4-8b18-8ea7c9111880
path: VideoStimulusSet/exp_motionset1_99.mp4
schemaKey: Asset
schemaVersion: 0.6.4
wasGeneratedBy:
- description: Metadata generated by DANDI cli
endDate: '2024-01-15T11:09:14.303515-05:00'
id: urn:uuid:d5e40d76-4d01-4742-a4bb-eaf40f1d6d91
name: Metadata generation
schemaKey: Activity
startDate: '2024-01-15T11:09:14.303515-05:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.59.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2024-04-21T10:19:19.034151-04:00'
contentSize: 933931000
contentUrl:
- https://api.dandiarchive.org/api/assets/df952281-db79-43dd-9f6f-1abaf4d38972/download/
- https://dandiarchive-embargo.s3.amazonaws.com/000832/blobs/b43/edc/b43edc98-c9e5-487f-a4f0-e1148080365a
dateModified: '2024-04-21T17:19:01.627419-04:00'
digest:
dandi:dandi-etag: cb4c285cfc71a7c6ef6fd76e805606e6-14
encodingFormat: application/x-nwb
id: dandiasset:df952281-db79-43dd-9f6f-1abaf4d38972
identifier: df952281-db79-43dd-9f6f-1abaf4d38972
keywords:
- Vistual Stimuli
- Object Recognition
- Inferior temporal cortex (IT)
- Ventral visual pathway
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-pico/sub-pico_ecephys+image.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P3266DT46943S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: pico
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: This NWB is derived from the processing of neurophysiological recordings
in the inferior temporal (IT) cortex of one macaque monkey (indicated in
the file). These recordings were conducted during Rapid Serial Visual Presentation
(RSVP) of randomized images, each presented at the center of gaze during
fixation. The dataset in this file includes a responses from a number of individual
neural recording sites collected via chronically implanted Utah arrays. For each
recording site, the multiunit or single unit response of that site is
summarized as a set of peristimulus time histograms (PSTH). Each PSTH is derived
from the site’s response to repeated, emporally randomized, presentations
of the same image. Thus, the number of PSTHs is identical to the number of images
in the stimulus set (typically 100-2000 images). The number of repetitions
of each image is indicated in the file and the data from individual repetitions
are available in the file. For larger image sets these recordings were
made over a series of consecutive days (usually <5 days). Quality control measures
(e.g. consistency of response pattern over images) collected on each day are used
to check for site stability across those days before producing the final
PSTH estimates for each site. The corresponding visual images used in these recordings
are linked or stored in the "Stimulus_Template" section of each NWB file.
identifier: exp_motionset1
name: exp_motionset1
schemaKey: Session
startDate: '2023-06-01T13:02:23-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-21T17:19:01.627346-04:00'
id: urn:uuid:712d6b78-fcb8-46e5-bce6-6de63a55b69a
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-21T17:19:01.618538-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.2
Tip!
Press p or to see the previous file or,
n or to see the next file