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

assets.yaml 149 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: electrophysiological approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2024-03-18T17:32:21.325766-04:00'
  9. contentSize: 68108722585
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/7b1c45c0-4df1-4a8c-8be6-6bef75edc7e4/download/
  12. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/798/75f/79875ffd-45b2-4d62-ba68-d3497b87db87
  13. dateModified: '2024-03-18T17:41:33.083738-04:00'
  14. digest:
  15. dandi:dandi-etag: 2ee4b0c8c53382abd6b55601d3149239-1015
  16. dandi:sha2-256: df3b14b9d3498930bdbb2342a8d86dd925f3573986d085f88d48e619f50f6fc8
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:7b1c45c0-4df1-4a8c-8be6-6bef75edc7e4
  19. identifier: 7b1c45c0-4df1-4a8c-8be6-6bef75edc7e4
  20. measurementTechnique:
  21. - name: surgical technique
  22. schemaKey: MeasurementTechniqueType
  23. - name: multi electrode extracellular electrophysiology recording technique
  24. schemaKey: MeasurementTechniqueType
  25. path: sub-Elgar/sub-Elgar_ses-2022-05-02_ecephys.nwb
  26. schemaKey: Asset
  27. schemaVersion: 0.6.6
  28. variableMeasured:
  29. - schemaKey: PropertyValue
  30. value: ElectrodeGroup
  31. - schemaKey: PropertyValue
  32. value: ElectricalSeries
  33. wasAttributedTo:
  34. - age:
  35. schemaKey: PropertyValue
  36. unitText: ISO-8601 duration
  37. value: P11Y
  38. valueReference:
  39. schemaKey: PropertyValue
  40. value: dandi:BirthReference
  41. identifier: Elgar
  42. schemaKey: Participant
  43. sex:
  44. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  45. name: Male
  46. schemaKey: SexType
  47. species:
  48. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  49. name: Macaca mulatta - Rhesus monkey
  50. schemaKey: SpeciesType
  51. wasGeneratedBy:
  52. - description: Data from macaque performing multi-object working memory task. Subject
  53. is presented with multiple objects at different locations on a screen. After a
  54. delay, the subject is then cued with one of the objects, now displayed at the
  55. center of the screen. Subject should respond by saccading to the location of the
  56. cued object at its initial presentation.
  57. identifier: '2022-05-02'
  58. name: '2022-05-02'
  59. schemaKey: Session
  60. startDate: '2022-05-02T17:17:45-04:00'
  61. - description: Metadata generated by DANDI cli
  62. endDate: '2024-03-18T17:41:33.083657-04:00'
  63. id: urn:uuid:c2cf216e-9126-4645-af35-82d54e5eb062
  64. name: Metadata generation
  65. schemaKey: Activity
  66. startDate: '2024-03-18T17:41:29.083788-04:00'
  67. wasAssociatedWith:
  68. - identifier: RRID:SCR_019009
  69. name: DANDI Command Line Interface
  70. schemaKey: Software
  71. url: https://github.com/dandi/dandi-cli
  72. version: 0.60.0
  73. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  74. access:
  75. - schemaKey: AccessRequirements
  76. status: dandi:OpenAccess
  77. approach:
  78. - name: electrophysiological approach
  79. schemaKey: ApproachType
  80. blobDateModified: '2024-03-18T17:32:20.963771-04:00'
  81. contentSize: 80470562574
  82. contentUrl:
  83. - https://api.dandiarchive.org/api/assets/2f352a00-e691-4cfe-a189-d786b82169d2/download/
  84. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/f4d/b5e/f4db5ed4-8594-4a55-a8c1-1aec8b5c4db9
  85. dateModified: '2024-03-18T17:42:44.310821-04:00'
  86. digest:
  87. dandi:dandi-etag: 2a16c2f24cd94899b0be97ac9dfc2f91-1200
  88. dandi:sha2-256: 44be3e6acb0031d881dd1fe7ea8fd6f84aa8961bfb1e51fecd95729e8b9e675b
  89. encodingFormat: application/x-nwb
  90. id: dandiasset:2f352a00-e691-4cfe-a189-d786b82169d2
  91. identifier: 2f352a00-e691-4cfe-a189-d786b82169d2
  92. measurementTechnique:
  93. - name: surgical technique
  94. schemaKey: MeasurementTechniqueType
  95. - name: multi electrode extracellular electrophysiology recording technique
  96. schemaKey: MeasurementTechniqueType
  97. path: sub-Elgar/sub-Elgar_ses-2022-05-06_ecephys.nwb
  98. schemaKey: Asset
  99. schemaVersion: 0.6.6
  100. variableMeasured:
  101. - schemaKey: PropertyValue
  102. value: ElectrodeGroup
  103. - schemaKey: PropertyValue
  104. value: ElectricalSeries
  105. wasAttributedTo:
  106. - age:
  107. schemaKey: PropertyValue
  108. unitText: ISO-8601 duration
  109. value: P11Y
  110. valueReference:
  111. schemaKey: PropertyValue
  112. value: dandi:BirthReference
  113. identifier: Elgar
  114. schemaKey: Participant
  115. sex:
  116. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  117. name: Male
  118. schemaKey: SexType
  119. species:
  120. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  121. name: Macaca mulatta - Rhesus monkey
  122. schemaKey: SpeciesType
  123. wasGeneratedBy:
  124. - description: Data from macaque performing multi-object working memory task. Subject
  125. is presented with multiple objects at different locations on a screen. After a
  126. delay, the subject is then cued with one of the objects, now displayed at the
  127. center of the screen. Subject should respond by saccading to the location of the
  128. cued object at its initial presentation.
  129. identifier: '2022-05-06'
  130. name: '2022-05-06'
  131. schemaKey: Session
  132. startDate: '2022-05-06T21:01:03-04:00'
  133. - description: Metadata generated by DANDI cli
  134. endDate: '2024-03-18T17:42:44.310761-04:00'
  135. id: urn:uuid:59ba4a70-588e-4218-977a-4ba0b985688e
  136. name: Metadata generation
  137. schemaKey: Activity
  138. startDate: '2024-03-18T17:42:38.994207-04:00'
  139. wasAssociatedWith:
  140. - identifier: RRID:SCR_019009
  141. name: DANDI Command Line Interface
  142. schemaKey: Software
  143. url: https://github.com/dandi/dandi-cli
  144. version: 0.60.0
  145. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  146. access:
  147. - schemaKey: AccessRequirements
  148. status: dandi:OpenAccess
  149. approach:
  150. - name: electrophysiological approach
  151. schemaKey: ApproachType
  152. blobDateModified: '2024-03-18T17:32:20.901891-04:00'
  153. contentSize: 90404258501
  154. contentUrl:
  155. - https://api.dandiarchive.org/api/assets/af1d4905-57a8-45b0-b0b4-1fde5fb9eb7c/download/
  156. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/32c/c9e/32cc9eeb-b4c4-4bd3-aa34-cb9edd83aa92
  157. dateModified: '2024-03-18T17:43:35.791544-04:00'
  158. digest:
  159. dandi:dandi-etag: 5547fa7e3e7461dfeee82d69e91185c1-1348
  160. dandi:sha2-256: 6d43dc5e0b9c6031c6583f91e257ea952ad59b7ebf3cd96b45069423b0e0ab0c
  161. encodingFormat: application/x-nwb
  162. id: dandiasset:af1d4905-57a8-45b0-b0b4-1fde5fb9eb7c
  163. identifier: af1d4905-57a8-45b0-b0b4-1fde5fb9eb7c
  164. measurementTechnique:
  165. - name: surgical technique
  166. schemaKey: MeasurementTechniqueType
  167. - name: multi electrode extracellular electrophysiology recording technique
  168. schemaKey: MeasurementTechniqueType
  169. path: sub-Elgar/sub-Elgar_ses-2022-05-12_ecephys.nwb
  170. schemaKey: Asset
  171. schemaVersion: 0.6.6
  172. variableMeasured:
  173. - schemaKey: PropertyValue
  174. value: ElectrodeGroup
  175. - schemaKey: PropertyValue
  176. value: ElectricalSeries
  177. wasAttributedTo:
  178. - age:
  179. schemaKey: PropertyValue
  180. unitText: ISO-8601 duration
  181. value: P11Y
  182. valueReference:
  183. schemaKey: PropertyValue
  184. value: dandi:BirthReference
  185. identifier: Elgar
  186. schemaKey: Participant
  187. sex:
  188. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  189. name: Male
  190. schemaKey: SexType
  191. species:
  192. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  193. name: Macaca mulatta - Rhesus monkey
  194. schemaKey: SpeciesType
  195. wasGeneratedBy:
  196. - description: Data from macaque performing multi-object working memory task. Subject
  197. is presented with multiple objects at different locations on a screen. After a
  198. delay, the subject is then cued with one of the objects, now displayed at the
  199. center of the screen. Subject should respond by saccading to the location of the
  200. cued object at its initial presentation.
  201. identifier: '2022-05-12'
  202. name: '2022-05-12'
  203. schemaKey: Session
  204. startDate: '2022-05-12T20:15:48-04:00'
  205. - description: Metadata generated by DANDI cli
  206. endDate: '2024-03-18T17:43:35.791465-04:00'
  207. id: urn:uuid:6ff0c999-947c-45ef-afc0-8b6e56f3fd10
  208. name: Metadata generation
  209. schemaKey: Activity
  210. startDate: '2024-03-18T17:43:30.299440-04:00'
  211. wasAssociatedWith:
  212. - identifier: RRID:SCR_019009
  213. name: DANDI Command Line Interface
  214. schemaKey: Software
  215. url: https://github.com/dandi/dandi-cli
  216. version: 0.60.0
  217. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  218. access:
  219. - schemaKey: AccessRequirements
  220. status: dandi:OpenAccess
  221. approach:
  222. - name: electrophysiological approach
  223. schemaKey: ApproachType
  224. blobDateModified: '2024-03-18T17:32:20.963771-04:00'
  225. contentSize: 109384493208
  226. contentUrl:
  227. - https://api.dandiarchive.org/api/assets/0657aeca-cc5f-4e48-af06-21555d337596/download/
  228. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/dea/c9f/deac9f43-a285-4131-9325-9f85e54c33da
  229. dateModified: '2024-03-18T17:45:26.371975-04:00'
  230. digest:
  231. dandi:dandi-etag: 8aa4fc66afafba5de88a5d023ad30f94-1630
  232. dandi:sha2-256: eb9cd2d84f7edd9c3cb70aac25339830d242dec7568281e74076267db53bfcde
  233. encodingFormat: application/x-nwb
  234. id: dandiasset:0657aeca-cc5f-4e48-af06-21555d337596
  235. identifier: 0657aeca-cc5f-4e48-af06-21555d337596
  236. measurementTechnique:
  237. - name: surgical technique
  238. schemaKey: MeasurementTechniqueType
  239. - name: multi electrode extracellular electrophysiology recording technique
  240. schemaKey: MeasurementTechniqueType
  241. path: sub-Elgar/sub-Elgar_ses-2022-05-08_ecephys.nwb
  242. schemaKey: Asset
  243. schemaVersion: 0.6.6
  244. variableMeasured:
  245. - schemaKey: PropertyValue
  246. value: ElectrodeGroup
  247. - schemaKey: PropertyValue
  248. value: ElectricalSeries
  249. wasAttributedTo:
  250. - age:
  251. schemaKey: PropertyValue
  252. unitText: ISO-8601 duration
  253. value: P11Y
  254. valueReference:
  255. schemaKey: PropertyValue
  256. value: dandi:BirthReference
  257. identifier: Elgar
  258. schemaKey: Participant
  259. sex:
  260. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  261. name: Male
  262. schemaKey: SexType
  263. species:
  264. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  265. name: Macaca mulatta - Rhesus monkey
  266. schemaKey: SpeciesType
  267. wasGeneratedBy:
  268. - description: Data from macaque performing multi-object working memory task. Subject
  269. is presented with multiple objects at different locations on a screen. After a
  270. delay, the subject is then cued with one of the objects, now displayed at the
  271. center of the screen. Subject should respond by saccading to the location of the
  272. cued object at its initial presentation.
  273. identifier: '2022-05-08'
  274. name: '2022-05-08'
  275. schemaKey: Session
  276. startDate: '2022-05-08T18:15:58-04:00'
  277. - description: Metadata generated by DANDI cli
  278. endDate: '2024-03-18T17:45:26.371914-04:00'
  279. id: urn:uuid:a4f07946-b85f-45ec-992b-99f5cc956164
  280. name: Metadata generation
  281. schemaKey: Activity
  282. startDate: '2024-03-18T17:45:20.471419-04:00'
  283. wasAssociatedWith:
  284. - identifier: RRID:SCR_019009
  285. name: DANDI Command Line Interface
  286. schemaKey: Software
  287. url: https://github.com/dandi/dandi-cli
  288. version: 0.60.0
  289. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  290. access:
  291. - schemaKey: AccessRequirements
  292. status: dandi:OpenAccess
  293. approach:
  294. - name: electrophysiological approach
  295. schemaKey: ApproachType
  296. blobDateModified: '2024-03-18T08:09:17.367197-04:00'
  297. contentSize: 75770528266
  298. contentUrl:
  299. - https://api.dandiarchive.org/api/assets/65822418-a234-4d3f-b877-3ce29df2e02d/download/
  300. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/ea1/ef7/ea1ef7b2-5873-4a21-89fb-6bf4a331d3f1
  301. dateModified: '2024-03-18T21:33:57.173409-04:00'
  302. digest:
  303. dandi:dandi-etag: ffe10c9117c1b90b61e8c0e0ecf7b158-1130
  304. dandi:sha2-256: 97cd867052a9a55ca3c1e1e1515e4009b06e2879b0d83b2b1cf192824a4ac6a4
  305. encodingFormat: application/x-nwb
  306. id: dandiasset:65822418-a234-4d3f-b877-3ce29df2e02d
  307. identifier: 65822418-a234-4d3f-b877-3ce29df2e02d
  308. measurementTechnique:
  309. - name: multi electrode extracellular electrophysiology recording technique
  310. schemaKey: MeasurementTechniqueType
  311. - name: surgical technique
  312. schemaKey: MeasurementTechniqueType
  313. path: sub-Elgar/sub-Elgar_ses-2022-05-05_ecephys.nwb
  314. schemaKey: Asset
  315. schemaVersion: 0.6.6
  316. variableMeasured:
  317. - schemaKey: PropertyValue
  318. value: ElectricalSeries
  319. - schemaKey: PropertyValue
  320. value: ElectrodeGroup
  321. wasAttributedTo:
  322. - age:
  323. schemaKey: PropertyValue
  324. unitText: ISO-8601 duration
  325. value: P11Y
  326. valueReference:
  327. schemaKey: PropertyValue
  328. value: dandi:BirthReference
  329. identifier: Elgar
  330. schemaKey: Participant
  331. sex:
  332. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  333. name: Male
  334. schemaKey: SexType
  335. species:
  336. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  337. name: Macaca mulatta - Rhesus monkey
  338. schemaKey: SpeciesType
  339. wasGeneratedBy:
  340. - description: Data from macaque performing multi-object working memory task. Subject
  341. is presented with multiple objects at different locations on a screen. After a
  342. delay, the subject is then cued with one of the objects, now displayed at the
  343. center of the screen. Subject should respond by saccading to the location of the
  344. cued object at its initial presentation.
  345. identifier: '2022-05-05'
  346. name: '2022-05-05'
  347. schemaKey: Session
  348. startDate: '2022-05-05T20:36:48-04:00'
  349. - description: Metadata generated by DANDI cli
  350. endDate: '2024-03-18T21:33:57.173335-04:00'
  351. id: urn:uuid:be8f751c-a69e-423d-a1e1-45ba38c79d05
  352. name: Metadata generation
  353. schemaKey: Activity
  354. startDate: '2024-03-18T21:33:54.011638-04:00'
  355. wasAssociatedWith:
  356. - identifier: RRID:SCR_019009
  357. name: DANDI Command Line Interface
  358. schemaKey: Software
  359. url: https://github.com/dandi/dandi-cli
  360. version: 0.60.0
  361. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  362. access:
  363. - schemaKey: AccessRequirements
  364. status: dandi:OpenAccess
  365. approach:
  366. - name: electrophysiological approach
  367. schemaKey: ApproachType
  368. blobDateModified: '2024-03-18T10:29:16.064086-04:00'
  369. contentSize: 83756964375
  370. contentUrl:
  371. - https://api.dandiarchive.org/api/assets/7b25f656-eb2c-4d4a-a206-57e898750e7c/download/
  372. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/4f5/861/4f5861fa-8f71-4388-842f-f1d6075c87fc
  373. dateModified: '2024-03-18T21:34:40.097074-04:00'
  374. digest:
  375. dandi:dandi-etag: b59bf4b1254d396ffdcbdbe077a6bfd2-1249
  376. dandi:sha2-256: 3cc497f65447a9a0df7435a5d28a0031ce0a18637339702743dcd8a0c138da22
  377. encodingFormat: application/x-nwb
  378. id: dandiasset:7b25f656-eb2c-4d4a-a206-57e898750e7c
  379. identifier: 7b25f656-eb2c-4d4a-a206-57e898750e7c
  380. measurementTechnique:
  381. - name: multi electrode extracellular electrophysiology recording technique
  382. schemaKey: MeasurementTechniqueType
  383. - name: surgical technique
  384. schemaKey: MeasurementTechniqueType
  385. path: sub-Elgar/sub-Elgar_ses-2022-05-14_ecephys.nwb
  386. schemaKey: Asset
  387. schemaVersion: 0.6.6
  388. variableMeasured:
  389. - schemaKey: PropertyValue
  390. value: ElectricalSeries
  391. - schemaKey: PropertyValue
  392. value: ElectrodeGroup
  393. wasAttributedTo:
  394. - age:
  395. schemaKey: PropertyValue
  396. unitText: ISO-8601 duration
  397. value: P11Y
  398. valueReference:
  399. schemaKey: PropertyValue
  400. value: dandi:BirthReference
  401. identifier: Elgar
  402. schemaKey: Participant
  403. sex:
  404. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  405. name: Male
  406. schemaKey: SexType
  407. species:
  408. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  409. name: Macaca mulatta - Rhesus monkey
  410. schemaKey: SpeciesType
  411. wasGeneratedBy:
  412. - description: Data from macaque performing multi-object working memory task. Subject
  413. is presented with multiple objects at different locations on a screen. After a
  414. delay, the subject is then cued with one of the objects, now displayed at the
  415. center of the screen. Subject should respond by saccading to the location of the
  416. cued object at its initial presentation.
  417. identifier: '2022-05-14'
  418. name: '2022-05-14'
  419. schemaKey: Session
  420. startDate: '2022-05-14T20:08:58-04:00'
  421. - description: Metadata generated by DANDI cli
  422. endDate: '2024-03-18T21:34:40.097024-04:00'
  423. id: urn:uuid:4adec0aa-aec5-4bcf-9271-902e55b82a4b
  424. name: Metadata generation
  425. schemaKey: Activity
  426. startDate: '2024-03-18T21:34:35.767342-04:00'
  427. wasAssociatedWith:
  428. - identifier: RRID:SCR_019009
  429. name: DANDI Command Line Interface
  430. schemaKey: Software
  431. url: https://github.com/dandi/dandi-cli
  432. version: 0.60.0
  433. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  434. access:
  435. - schemaKey: AccessRequirements
  436. status: dandi:OpenAccess
  437. approach:
  438. - name: electrophysiological approach
  439. schemaKey: ApproachType
  440. blobDateModified: '2024-03-18T02:33:08.302412-04:00'
  441. contentSize: 134889289567
  442. contentUrl:
  443. - https://api.dandiarchive.org/api/assets/6e6b939b-f87d-403a-815e-f217b0ab6118/download/
  444. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/b74/c47/b74c4757-603c-40b8-9e42-f74b3e5eabf8
  445. dateModified: '2024-03-19T18:57:43.447234-04:00'
  446. digest:
  447. dandi:dandi-etag: 1e9d8249dd97f56ae0ed3bcc746bb9ae-2011
  448. dandi:sha2-256: 49d6fd07ad39a6c3f4d9fa997f31dc5f85719c6225dd7b5f278a0568f6561b26
  449. encodingFormat: application/x-nwb
  450. id: dandiasset:6e6b939b-f87d-403a-815e-f217b0ab6118
  451. identifier: 6e6b939b-f87d-403a-815e-f217b0ab6118
  452. measurementTechnique:
  453. - name: surgical technique
  454. schemaKey: MeasurementTechniqueType
  455. - name: multi electrode extracellular electrophysiology recording technique
  456. schemaKey: MeasurementTechniqueType
  457. path: sub-Elgar/sub-Elgar_ses-2022-05-04_ecephys.nwb
  458. schemaKey: Asset
  459. schemaVersion: 0.6.6
  460. variableMeasured:
  461. - schemaKey: PropertyValue
  462. value: ElectricalSeries
  463. - schemaKey: PropertyValue
  464. value: ElectrodeGroup
  465. wasAttributedTo:
  466. - age:
  467. schemaKey: PropertyValue
  468. unitText: ISO-8601 duration
  469. value: P11Y
  470. valueReference:
  471. schemaKey: PropertyValue
  472. value: dandi:BirthReference
  473. identifier: Elgar
  474. schemaKey: Participant
  475. sex:
  476. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  477. name: Male
  478. schemaKey: SexType
  479. species:
  480. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  481. name: Macaca mulatta - Rhesus monkey
  482. schemaKey: SpeciesType
  483. wasGeneratedBy:
  484. - description: Data from macaque performing multi-object working memory task. Subject
  485. is presented with multiple objects at different locations on a screen. After a
  486. delay, the subject is then cued with one of the objects, now displayed at the
  487. center of the screen. Subject should respond by saccading to the location of the
  488. cued object at its initial presentation.
  489. identifier: '2022-05-04'
  490. name: '2022-05-04'
  491. schemaKey: Session
  492. startDate: '2022-05-04T15:46:07-04:00'
  493. - description: Metadata generated by DANDI cli
  494. endDate: '2024-03-19T18:57:43.447167-04:00'
  495. id: urn:uuid:71cac0fc-a3a3-4392-9ca5-09eeef357d33
  496. name: Metadata generation
  497. schemaKey: Activity
  498. startDate: '2024-03-19T18:57:40.341990-04:00'
  499. wasAssociatedWith:
  500. - identifier: RRID:SCR_019009
  501. name: DANDI Command Line Interface
  502. schemaKey: Software
  503. url: https://github.com/dandi/dandi-cli
  504. version: 0.60.0
  505. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  506. access:
  507. - schemaKey: AccessRequirements
  508. status: dandi:OpenAccess
  509. approach:
  510. - name: electrophysiological approach
  511. schemaKey: ApproachType
  512. blobDateModified: '2024-03-18T11:10:15.238336-04:00'
  513. contentSize: 103121821584
  514. contentUrl:
  515. - https://api.dandiarchive.org/api/assets/1aeb93e3-9953-4e22-9fa2-abfe53baa11d/download/
  516. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/412/cb4/412cb45f-8487-4207-a455-bc35670df54a
  517. dateModified: '2024-03-19T23:21:32.720286-04:00'
  518. digest:
  519. dandi:dandi-etag: 41ff28899063cf827c0e18df1d46b723-1537
  520. dandi:sha2-256: ab6e6328369e2c72e383bcdb07a4763c616991a4672a35731d61c63f7761eea6
  521. encodingFormat: application/x-nwb
  522. id: dandiasset:1aeb93e3-9953-4e22-9fa2-abfe53baa11d
  523. identifier: 1aeb93e3-9953-4e22-9fa2-abfe53baa11d
  524. measurementTechnique:
  525. - name: surgical technique
  526. schemaKey: MeasurementTechniqueType
  527. - name: multi electrode extracellular electrophysiology recording technique
  528. schemaKey: MeasurementTechniqueType
  529. path: sub-Elgar/sub-Elgar_ses-2022-05-16_ecephys.nwb
  530. schemaKey: Asset
  531. schemaVersion: 0.6.6
  532. variableMeasured:
  533. - schemaKey: PropertyValue
  534. value: ElectrodeGroup
  535. - schemaKey: PropertyValue
  536. value: ElectricalSeries
  537. wasAttributedTo:
  538. - age:
  539. schemaKey: PropertyValue
  540. unitText: ISO-8601 duration
  541. value: P11Y
  542. valueReference:
  543. schemaKey: PropertyValue
  544. value: dandi:BirthReference
  545. identifier: Elgar
  546. schemaKey: Participant
  547. sex:
  548. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  549. name: Male
  550. schemaKey: SexType
  551. species:
  552. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  553. name: Macaca mulatta - Rhesus monkey
  554. schemaKey: SpeciesType
  555. wasGeneratedBy:
  556. - description: Data from macaque performing multi-object working memory task. Subject
  557. is presented with multiple objects at different locations on a screen. After a
  558. delay, the subject is then cued with one of the objects, now displayed at the
  559. center of the screen. Subject should respond by saccading to the location of the
  560. cued object at its initial presentation.
  561. identifier: '2022-05-16'
  562. name: '2022-05-16'
  563. schemaKey: Session
  564. startDate: '2022-05-16T19:29:03-04:00'
  565. - description: Metadata generated by DANDI cli
  566. endDate: '2024-03-19T23:21:32.720216-04:00'
  567. id: urn:uuid:d1fa9f95-db73-4443-b5cb-24a41db7abe4
  568. name: Metadata generation
  569. schemaKey: Activity
  570. startDate: '2024-03-19T23:21:24.977050-04:00'
  571. wasAssociatedWith:
  572. - identifier: RRID:SCR_019009
  573. name: DANDI Command Line Interface
  574. schemaKey: Software
  575. url: https://github.com/dandi/dandi-cli
  576. version: 0.60.0
  577. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  578. access:
  579. - schemaKey: AccessRequirements
  580. status: dandi:OpenAccess
  581. approach:
  582. - name: electrophysiological approach
  583. schemaKey: ApproachType
  584. blobDateModified: '2024-03-18T09:54:15.176121-04:00'
  585. contentSize: 137119756972
  586. contentUrl:
  587. - https://api.dandiarchive.org/api/assets/1393be0c-f2a8-44d1-baf7-525745f990dc/download/
  588. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/1f0/0d9/1f00d91a-afef-4bd4-97da-c7c9da93fee4
  589. dateModified: '2024-03-19T23:35:24.443496-04:00'
  590. digest:
  591. dandi:dandi-etag: f78d35bfdb7a957cc8f50e7ba24c1be9-2044
  592. dandi:sha2-256: 8809b4c43e55ce3bfa1b8e1cd99f3c4c42be5cc96d5b20f7ab8fc9ed98578c9c
  593. encodingFormat: application/x-nwb
  594. id: dandiasset:1393be0c-f2a8-44d1-baf7-525745f990dc
  595. identifier: 1393be0c-f2a8-44d1-baf7-525745f990dc
  596. measurementTechnique:
  597. - name: surgical technique
  598. schemaKey: MeasurementTechniqueType
  599. - name: multi electrode extracellular electrophysiology recording technique
  600. schemaKey: MeasurementTechniqueType
  601. path: sub-Elgar/sub-Elgar_ses-2022-05-10_ecephys.nwb
  602. schemaKey: Asset
  603. schemaVersion: 0.6.6
  604. variableMeasured:
  605. - schemaKey: PropertyValue
  606. value: ElectrodeGroup
  607. - schemaKey: PropertyValue
  608. value: ElectricalSeries
  609. wasAttributedTo:
  610. - age:
  611. schemaKey: PropertyValue
  612. unitText: ISO-8601 duration
  613. value: P11Y
  614. valueReference:
  615. schemaKey: PropertyValue
  616. value: dandi:BirthReference
  617. identifier: Elgar
  618. schemaKey: Participant
  619. sex:
  620. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  621. name: Male
  622. schemaKey: SexType
  623. species:
  624. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  625. name: Macaca mulatta - Rhesus monkey
  626. schemaKey: SpeciesType
  627. wasGeneratedBy:
  628. - description: Data from macaque performing multi-object working memory task. Subject
  629. is presented with multiple objects at different locations on a screen. After a
  630. delay, the subject is then cued with one of the objects, now displayed at the
  631. center of the screen. Subject should respond by saccading to the location of the
  632. cued object at its initial presentation.
  633. identifier: '2022-05-10'
  634. name: '2022-05-10'
  635. schemaKey: Session
  636. startDate: '2022-05-10T17:46:16-04:00'
  637. - description: Metadata generated by DANDI cli
  638. endDate: '2024-03-19T23:35:24.443449-04:00'
  639. id: urn:uuid:03849dd5-bd97-4944-beb2-1befb6dba6cd
  640. name: Metadata generation
  641. schemaKey: Activity
  642. startDate: '2024-03-19T23:35:16.587806-04:00'
  643. wasAssociatedWith:
  644. - identifier: RRID:SCR_019009
  645. name: DANDI Command Line Interface
  646. schemaKey: Software
  647. url: https://github.com/dandi/dandi-cli
  648. version: 0.60.0
  649. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  650. access:
  651. - schemaKey: AccessRequirements
  652. status: dandi:OpenAccess
  653. approach:
  654. - name: electrophysiological approach
  655. schemaKey: ApproachType
  656. blobDateModified: '2024-03-18T08:09:15.985126-04:00'
  657. contentSize: 101379103853
  658. contentUrl:
  659. - https://api.dandiarchive.org/api/assets/0e819a0c-d728-47a3-80c6-6c11795e7e9e/download/
  660. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/68b/3ca/68b3caf4-22fe-4409-86b7-422f64bd898b
  661. dateModified: '2024-03-20T02:52:57.353985-04:00'
  662. digest:
  663. dandi:dandi-etag: 77a5697b937c62a12230f180676f79ba-1511
  664. dandi:sha2-256: 4926859cff8f457625963b2262341c0b2e54ecf78cc09581e8768b444f80ecfa
  665. encodingFormat: application/x-nwb
  666. id: dandiasset:0e819a0c-d728-47a3-80c6-6c11795e7e9e
  667. identifier: 0e819a0c-d728-47a3-80c6-6c11795e7e9e
  668. measurementTechnique:
  669. - name: multi electrode extracellular electrophysiology recording technique
  670. schemaKey: MeasurementTechniqueType
  671. - name: surgical technique
  672. schemaKey: MeasurementTechniqueType
  673. path: sub-Elgar/sub-Elgar_ses-2022-05-07_ecephys.nwb
  674. schemaKey: Asset
  675. schemaVersion: 0.6.6
  676. variableMeasured:
  677. - schemaKey: PropertyValue
  678. value: ElectricalSeries
  679. - schemaKey: PropertyValue
  680. value: ElectrodeGroup
  681. wasAttributedTo:
  682. - age:
  683. schemaKey: PropertyValue
  684. unitText: ISO-8601 duration
  685. value: P11Y
  686. valueReference:
  687. schemaKey: PropertyValue
  688. value: dandi:BirthReference
  689. identifier: Elgar
  690. schemaKey: Participant
  691. sex:
  692. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  693. name: Male
  694. schemaKey: SexType
  695. species:
  696. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  697. name: Macaca mulatta - Rhesus monkey
  698. schemaKey: SpeciesType
  699. wasGeneratedBy:
  700. - description: Data from macaque performing multi-object working memory task. Subject
  701. is presented with multiple objects at different locations on a screen. After a
  702. delay, the subject is then cued with one of the objects, now displayed at the
  703. center of the screen. Subject should respond by saccading to the location of the
  704. cued object at its initial presentation.
  705. identifier: '2022-05-07'
  706. name: '2022-05-07'
  707. schemaKey: Session
  708. startDate: '2022-05-07T16:43:56-04:00'
  709. - description: Metadata generated by DANDI cli
  710. endDate: '2024-03-20T02:52:57.353874-04:00'
  711. id: urn:uuid:8980b9bb-7517-430e-b625-5be9431fedb3
  712. name: Metadata generation
  713. schemaKey: Activity
  714. startDate: '2024-03-20T02:52:45.496833-04:00'
  715. wasAssociatedWith:
  716. - identifier: RRID:SCR_019009
  717. name: DANDI Command Line Interface
  718. schemaKey: Software
  719. url: https://github.com/dandi/dandi-cli
  720. version: 0.60.0
  721. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  722. access:
  723. - schemaKey: AccessRequirements
  724. status: dandi:OpenAccess
  725. approach:
  726. - name: electrophysiological approach
  727. schemaKey: ApproachType
  728. blobDateModified: '2024-03-19T18:22:45.319992-04:00'
  729. contentSize: 119254693034
  730. contentUrl:
  731. - https://api.dandiarchive.org/api/assets/cd34a42b-d8f2-4c57-bfed-5ab9318c5d81/download/
  732. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/fdf/909/fdf9097d-885b-4799-b62a-8168b3a0b938
  733. dateModified: '2024-03-20T02:59:09.995752-04:00'
  734. digest:
  735. dandi:dandi-etag: 2db195f6cdd6297daf56c5f3ee2913f3-1778
  736. dandi:sha2-256: 3a4a672db2246ab32dd70a8622b235d451e7de8406781e219fb46540baf102c0
  737. encodingFormat: application/x-nwb
  738. id: dandiasset:cd34a42b-d8f2-4c57-bfed-5ab9318c5d81
  739. identifier: cd34a42b-d8f2-4c57-bfed-5ab9318c5d81
  740. measurementTechnique:
  741. - name: multi electrode extracellular electrophysiology recording technique
  742. schemaKey: MeasurementTechniqueType
  743. - name: surgical technique
  744. schemaKey: MeasurementTechniqueType
  745. path: sub-Elgar/sub-Elgar_ses-2022-05-19_ecephys.nwb
  746. schemaKey: Asset
  747. schemaVersion: 0.6.6
  748. variableMeasured:
  749. - schemaKey: PropertyValue
  750. value: ElectricalSeries
  751. - schemaKey: PropertyValue
  752. value: ElectrodeGroup
  753. wasAttributedTo:
  754. - age:
  755. schemaKey: PropertyValue
  756. unitText: ISO-8601 duration
  757. value: P11Y
  758. valueReference:
  759. schemaKey: PropertyValue
  760. value: dandi:BirthReference
  761. identifier: Elgar
  762. schemaKey: Participant
  763. sex:
  764. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  765. name: Male
  766. schemaKey: SexType
  767. species:
  768. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  769. name: Macaca mulatta - Rhesus monkey
  770. schemaKey: SpeciesType
  771. wasGeneratedBy:
  772. - description: Data from macaque performing multi-object working memory task. Subject
  773. is presented with multiple objects at different locations on a screen. After a
  774. delay, the subject is then cued with one of the objects, now displayed at the
  775. center of the screen. Subject should respond by saccading to the location of the
  776. cued object at its initial presentation.
  777. identifier: '2022-05-19'
  778. name: '2022-05-19'
  779. schemaKey: Session
  780. startDate: '2022-05-19T18:29:07-04:00'
  781. - description: Metadata generated by DANDI cli
  782. endDate: '2024-03-20T02:59:09.995517-04:00'
  783. id: urn:uuid:d2fee360-cbef-4d14-b100-b3c84a7a4a21
  784. name: Metadata generation
  785. schemaKey: Activity
  786. startDate: '2024-03-20T02:58:53.158374-04:00'
  787. wasAssociatedWith:
  788. - identifier: RRID:SCR_019009
  789. name: DANDI Command Line Interface
  790. schemaKey: Software
  791. url: https://github.com/dandi/dandi-cli
  792. version: 0.60.0
  793. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  794. access:
  795. - schemaKey: AccessRequirements
  796. status: dandi:OpenAccess
  797. approach:
  798. - name: electrophysiological approach
  799. schemaKey: ApproachType
  800. blobDateModified: '2024-03-18T11:16:15.276400-04:00'
  801. contentSize: 125551117869
  802. contentUrl:
  803. - https://api.dandiarchive.org/api/assets/6c4267dc-c5ec-429c-a04e-a05011c681f8/download/
  804. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/6b0/a29/6b0a2973-0746-4db2-88d1-4b3324a4d1d6
  805. dateModified: '2024-03-20T03:01:46.227965-04:00'
  806. digest:
  807. dandi:dandi-etag: 4e9f72970075520d4af465efa0d05aea-1871
  808. dandi:sha2-256: 896b3962658875b520a45b7674d12c257803ddb07ea0fbc6bf6633783d69680a
  809. encodingFormat: application/x-nwb
  810. id: dandiasset:6c4267dc-c5ec-429c-a04e-a05011c681f8
  811. identifier: 6c4267dc-c5ec-429c-a04e-a05011c681f8
  812. measurementTechnique:
  813. - name: multi electrode extracellular electrophysiology recording technique
  814. schemaKey: MeasurementTechniqueType
  815. - name: surgical technique
  816. schemaKey: MeasurementTechniqueType
  817. path: sub-Elgar/sub-Elgar_ses-2022-05-17_ecephys.nwb
  818. schemaKey: Asset
  819. schemaVersion: 0.6.6
  820. variableMeasured:
  821. - schemaKey: PropertyValue
  822. value: ElectricalSeries
  823. - schemaKey: PropertyValue
  824. value: ElectrodeGroup
  825. wasAttributedTo:
  826. - age:
  827. schemaKey: PropertyValue
  828. unitText: ISO-8601 duration
  829. value: P11Y
  830. valueReference:
  831. schemaKey: PropertyValue
  832. value: dandi:BirthReference
  833. identifier: Elgar
  834. schemaKey: Participant
  835. sex:
  836. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  837. name: Male
  838. schemaKey: SexType
  839. species:
  840. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  841. name: Macaca mulatta - Rhesus monkey
  842. schemaKey: SpeciesType
  843. wasGeneratedBy:
  844. - description: Data from macaque performing multi-object working memory task. Subject
  845. is presented with multiple objects at different locations on a screen. After a
  846. delay, the subject is then cued with one of the objects, now displayed at the
  847. center of the screen. Subject should respond by saccading to the location of the
  848. cued object at its initial presentation.
  849. identifier: '2022-05-17'
  850. name: '2022-05-17'
  851. schemaKey: Session
  852. startDate: '2022-05-17T19:11:11-04:00'
  853. - description: Metadata generated by DANDI cli
  854. endDate: '2024-03-20T03:01:46.227911-04:00'
  855. id: urn:uuid:6ac5efa3-0291-4184-8410-01857396d67d
  856. name: Metadata generation
  857. schemaKey: Activity
  858. startDate: '2024-03-20T03:01:34.856479-04:00'
  859. wasAssociatedWith:
  860. - identifier: RRID:SCR_019009
  861. name: DANDI Command Line Interface
  862. schemaKey: Software
  863. url: https://github.com/dandi/dandi-cli
  864. version: 0.60.0
  865. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  866. access:
  867. - schemaKey: AccessRequirements
  868. status: dandi:OpenAccess
  869. approach:
  870. - name: electrophysiological approach
  871. schemaKey: ApproachType
  872. blobDateModified: '2024-03-19T22:35:25.726085-04:00'
  873. contentSize: 81408789235
  874. contentUrl:
  875. - https://api.dandiarchive.org/api/assets/ecb16711-0ef3-443b-81d5-a27c7d470a4c/download/
  876. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/23a/07c/23a07c2b-1bb1-4211-9002-66e8ed33ff73
  877. dateModified: '2024-03-20T09:58:29.705612-04:00'
  878. digest:
  879. dandi:dandi-etag: 44464ec414dc4ead266b4f592337e85b-1214
  880. dandi:sha2-256: d0fa0944d059dd53546d31eb5bbd9560e93c5e293b163dee8cf5d5c8f7a02416
  881. encodingFormat: application/x-nwb
  882. id: dandiasset:ecb16711-0ef3-443b-81d5-a27c7d470a4c
  883. identifier: ecb16711-0ef3-443b-81d5-a27c7d470a4c
  884. measurementTechnique:
  885. - name: multi electrode extracellular electrophysiology recording technique
  886. schemaKey: MeasurementTechniqueType
  887. - name: surgical technique
  888. schemaKey: MeasurementTechniqueType
  889. path: sub-Perle/sub-Perle_ses-2022-06-18_ecephys.nwb
  890. schemaKey: Asset
  891. schemaVersion: 0.6.6
  892. variableMeasured:
  893. - schemaKey: PropertyValue
  894. value: ElectrodeGroup
  895. - schemaKey: PropertyValue
  896. value: ElectricalSeries
  897. wasAttributedTo:
  898. - age:
  899. schemaKey: PropertyValue
  900. unitText: ISO-8601 duration
  901. value: P10Y
  902. valueReference:
  903. schemaKey: PropertyValue
  904. value: dandi:BirthReference
  905. identifier: Perle
  906. schemaKey: Participant
  907. sex:
  908. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  909. name: Female
  910. schemaKey: SexType
  911. species:
  912. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  913. name: Macaca mulatta - Rhesus monkey
  914. schemaKey: SpeciesType
  915. wasGeneratedBy:
  916. - description: Data from macaque performing multi-object working memory task. Subject
  917. is presented with multiple objects at different locations on a screen. After a
  918. delay, the subject is then cued with one of the objects, now displayed at the
  919. center of the screen. Subject should respond by saccading to the location of the
  920. cued object at its initial presentation.
  921. identifier: '2022-06-18'
  922. name: '2022-06-18'
  923. schemaKey: Session
  924. startDate: '2022-06-18T15:12:05-04:00'
  925. - description: Metadata generated by DANDI cli
  926. endDate: '2024-03-20T09:58:29.705550-04:00'
  927. id: urn:uuid:285bfe18-ed32-44b2-8f52-cb3b3dfb79a1
  928. name: Metadata generation
  929. schemaKey: Activity
  930. startDate: '2024-03-20T09:58:18.866779-04:00'
  931. wasAssociatedWith:
  932. - identifier: RRID:SCR_019009
  933. name: DANDI Command Line Interface
  934. schemaKey: Software
  935. url: https://github.com/dandi/dandi-cli
  936. version: 0.60.0
  937. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  938. access:
  939. - schemaKey: AccessRequirements
  940. status: dandi:OpenAccess
  941. approach:
  942. - name: electrophysiological approach
  943. schemaKey: ApproachType
  944. blobDateModified: '2024-03-19T18:23:35.567154-04:00'
  945. contentSize: 103307157382
  946. contentUrl:
  947. - https://api.dandiarchive.org/api/assets/e4c66436-2d65-49ee-bd5f-2dce1284ea91/download/
  948. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/905/ca8/905ca88c-a528-4951-83a1-3588d5c96a68
  949. dateModified: '2024-03-20T10:02:25.106429-04:00'
  950. digest:
  951. dandi:dandi-etag: bcc3191e0d614189c3a0f4e384f1defc-1540
  952. dandi:sha2-256: d00cc02a3eddbdd4543be4a33f27139db02fe3b88baab29626ec1d7fa137228d
  953. encodingFormat: application/x-nwb
  954. id: dandiasset:e4c66436-2d65-49ee-bd5f-2dce1284ea91
  955. identifier: e4c66436-2d65-49ee-bd5f-2dce1284ea91
  956. measurementTechnique:
  957. - name: multi electrode extracellular electrophysiology recording technique
  958. schemaKey: MeasurementTechniqueType
  959. - name: surgical technique
  960. schemaKey: MeasurementTechniqueType
  961. path: sub-Elgar/sub-Elgar_ses-2022-09-23_ecephys.nwb
  962. schemaKey: Asset
  963. schemaVersion: 0.6.6
  964. variableMeasured:
  965. - schemaKey: PropertyValue
  966. value: ElectrodeGroup
  967. - schemaKey: PropertyValue
  968. value: ElectricalSeries
  969. wasAttributedTo:
  970. - age:
  971. schemaKey: PropertyValue
  972. unitText: ISO-8601 duration
  973. value: P11Y
  974. valueReference:
  975. schemaKey: PropertyValue
  976. value: dandi:BirthReference
  977. identifier: Elgar
  978. schemaKey: Participant
  979. sex:
  980. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  981. name: Male
  982. schemaKey: SexType
  983. species:
  984. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  985. name: Macaca mulatta - Rhesus monkey
  986. schemaKey: SpeciesType
  987. wasGeneratedBy:
  988. - description: Data from macaque performing multi-object working memory task. Subject
  989. is presented with multiple objects at different locations on a screen. After a
  990. delay, the subject is then cued with one of the objects, now displayed at the
  991. center of the screen. Subject should respond by saccading to the location of the
  992. cued object at its initial presentation.
  993. identifier: '2022-09-23'
  994. name: '2022-09-23'
  995. schemaKey: Session
  996. startDate: '2022-09-23T18:29:34-04:00'
  997. - description: Metadata generated by DANDI cli
  998. endDate: '2024-03-20T10:02:25.106360-04:00'
  999. id: urn:uuid:de4c4813-deb4-422b-a969-f61ef371cb76
  1000. name: Metadata generation
  1001. schemaKey: Activity
  1002. startDate: '2024-03-20T10:02:14.774107-04:00'
  1003. wasAssociatedWith:
  1004. - identifier: RRID:SCR_019009
  1005. name: DANDI Command Line Interface
  1006. schemaKey: Software
  1007. url: https://github.com/dandi/dandi-cli
  1008. version: 0.60.0
  1009. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1010. access:
  1011. - schemaKey: AccessRequirements
  1012. status: dandi:OpenAccess
  1013. approach:
  1014. - name: electrophysiological approach
  1015. schemaKey: ApproachType
  1016. blobDateModified: '2024-03-19T18:22:33.565639-04:00'
  1017. contentSize: 127311751594
  1018. contentUrl:
  1019. - https://api.dandiarchive.org/api/assets/eba30bb7-5007-4f9e-ab0b-73e596e1e1f6/download/
  1020. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/62f/d7c/62fd7c21-ebbc-41f3-9a6e-20381fd3cfba
  1021. dateModified: '2024-03-20T10:08:37.511262-04:00'
  1022. digest:
  1023. dandi:dandi-etag: 3808c76b89a36e9678032f3c7d251d6e-1898
  1024. dandi:sha2-256: 22f880c0bd2acc217248041c457d9c92e3be8b4d24aefdfe5085d6bde17874fc
  1025. encodingFormat: application/x-nwb
  1026. id: dandiasset:eba30bb7-5007-4f9e-ab0b-73e596e1e1f6
  1027. identifier: eba30bb7-5007-4f9e-ab0b-73e596e1e1f6
  1028. measurementTechnique:
  1029. - name: multi electrode extracellular electrophysiology recording technique
  1030. schemaKey: MeasurementTechniqueType
  1031. - name: surgical technique
  1032. schemaKey: MeasurementTechniqueType
  1033. path: sub-Elgar/sub-Elgar_ses-2022-05-18_ecephys.nwb
  1034. schemaKey: Asset
  1035. schemaVersion: 0.6.6
  1036. variableMeasured:
  1037. - schemaKey: PropertyValue
  1038. value: ElectrodeGroup
  1039. - schemaKey: PropertyValue
  1040. value: ElectricalSeries
  1041. wasAttributedTo:
  1042. - age:
  1043. schemaKey: PropertyValue
  1044. unitText: ISO-8601 duration
  1045. value: P11Y
  1046. valueReference:
  1047. schemaKey: PropertyValue
  1048. value: dandi:BirthReference
  1049. identifier: Elgar
  1050. schemaKey: Participant
  1051. sex:
  1052. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1053. name: Male
  1054. schemaKey: SexType
  1055. species:
  1056. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1057. name: Macaca mulatta - Rhesus monkey
  1058. schemaKey: SpeciesType
  1059. wasGeneratedBy:
  1060. - description: Data from macaque performing multi-object working memory task. Subject
  1061. is presented with multiple objects at different locations on a screen. After a
  1062. delay, the subject is then cued with one of the objects, now displayed at the
  1063. center of the screen. Subject should respond by saccading to the location of the
  1064. cued object at its initial presentation.
  1065. identifier: '2022-05-18'
  1066. name: '2022-05-18'
  1067. schemaKey: Session
  1068. startDate: '2022-05-18T17:11:30-04:00'
  1069. - description: Metadata generated by DANDI cli
  1070. endDate: '2024-03-20T10:08:37.511203-04:00'
  1071. id: urn:uuid:e755d9ac-c263-4fb6-9463-3d31e77aa22d
  1072. name: Metadata generation
  1073. schemaKey: Activity
  1074. startDate: '2024-03-20T10:08:17.085234-04:00'
  1075. wasAssociatedWith:
  1076. - identifier: RRID:SCR_019009
  1077. name: DANDI Command Line Interface
  1078. schemaKey: Software
  1079. url: https://github.com/dandi/dandi-cli
  1080. version: 0.60.0
  1081. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1082. access:
  1083. - schemaKey: AccessRequirements
  1084. status: dandi:OpenAccess
  1085. approach:
  1086. - name: electrophysiological approach
  1087. schemaKey: ApproachType
  1088. blobDateModified: '2024-03-19T18:23:32.949134-04:00'
  1089. contentSize: 128421795394
  1090. contentUrl:
  1091. - https://api.dandiarchive.org/api/assets/2f36ab04-e90d-465d-9973-36533fdf6a87/download/
  1092. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/325/a27/325a27f6-c2fd-4fe6-8ace-b748206b66bc
  1093. dateModified: '2024-03-20T10:09:04.637272-04:00'
  1094. digest:
  1095. dandi:dandi-etag: 040319e1843c9e5039a41bd38b2d140f-1914
  1096. dandi:sha2-256: c566cb921496e2b51143f08f8c0eaf072f32693d9e3d97bd2921eb2706b533b1
  1097. encodingFormat: application/x-nwb
  1098. id: dandiasset:2f36ab04-e90d-465d-9973-36533fdf6a87
  1099. identifier: 2f36ab04-e90d-465d-9973-36533fdf6a87
  1100. measurementTechnique:
  1101. - name: multi electrode extracellular electrophysiology recording technique
  1102. schemaKey: MeasurementTechniqueType
  1103. - name: surgical technique
  1104. schemaKey: MeasurementTechniqueType
  1105. path: sub-Elgar/sub-Elgar_ses-2022-09-22_ecephys.nwb
  1106. schemaKey: Asset
  1107. schemaVersion: 0.6.6
  1108. variableMeasured:
  1109. - schemaKey: PropertyValue
  1110. value: ElectrodeGroup
  1111. - schemaKey: PropertyValue
  1112. value: ElectricalSeries
  1113. wasAttributedTo:
  1114. - age:
  1115. schemaKey: PropertyValue
  1116. unitText: ISO-8601 duration
  1117. value: P11Y
  1118. valueReference:
  1119. schemaKey: PropertyValue
  1120. value: dandi:BirthReference
  1121. identifier: Elgar
  1122. schemaKey: Participant
  1123. sex:
  1124. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1125. name: Male
  1126. schemaKey: SexType
  1127. species:
  1128. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1129. name: Macaca mulatta - Rhesus monkey
  1130. schemaKey: SpeciesType
  1131. wasGeneratedBy:
  1132. - description: Data from macaque performing multi-object working memory task. Subject
  1133. is presented with multiple objects at different locations on a screen. After a
  1134. delay, the subject is then cued with one of the objects, now displayed at the
  1135. center of the screen. Subject should respond by saccading to the location of the
  1136. cued object at its initial presentation.
  1137. identifier: '2022-09-22'
  1138. name: '2022-09-22'
  1139. schemaKey: Session
  1140. startDate: '2022-09-22T23:15:04-04:00'
  1141. - description: Metadata generated by DANDI cli
  1142. endDate: '2024-03-20T10:09:04.637213-04:00'
  1143. id: urn:uuid:47e8759a-df07-4424-b357-6651af6b24af
  1144. name: Metadata generation
  1145. schemaKey: Activity
  1146. startDate: '2024-03-20T10:08:52.856611-04:00'
  1147. wasAssociatedWith:
  1148. - identifier: RRID:SCR_019009
  1149. name: DANDI Command Line Interface
  1150. schemaKey: Software
  1151. url: https://github.com/dandi/dandi-cli
  1152. version: 0.60.0
  1153. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1154. access:
  1155. - schemaKey: AccessRequirements
  1156. status: dandi:OpenAccess
  1157. approach:
  1158. - name: electrophysiological approach
  1159. schemaKey: ApproachType
  1160. blobDateModified: '2024-03-19T18:23:27.305090-04:00'
  1161. contentSize: 153426945255
  1162. contentUrl:
  1163. - https://api.dandiarchive.org/api/assets/571c45f1-eec6-4757-9054-15f236033fac/download/
  1164. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/302/aed/302aede1-717c-40d4-9a73-84764efb55ac
  1165. dateModified: '2024-03-20T21:16:58.494453-04:00'
  1166. digest:
  1167. dandi:dandi-etag: 275439d62c7d2784333c2b505772a62f-2287
  1168. dandi:sha2-256: b9cd0ed598bcab8a27f9eb6c58801f156509b7578e92d074e51a20141b8b5d10
  1169. encodingFormat: application/x-nwb
  1170. id: dandiasset:571c45f1-eec6-4757-9054-15f236033fac
  1171. identifier: 571c45f1-eec6-4757-9054-15f236033fac
  1172. measurementTechnique:
  1173. - name: surgical technique
  1174. schemaKey: MeasurementTechniqueType
  1175. - name: multi electrode extracellular electrophysiology recording technique
  1176. schemaKey: MeasurementTechniqueType
  1177. path: sub-Elgar/sub-Elgar_ses-2022-09-21_ecephys.nwb
  1178. schemaKey: Asset
  1179. schemaVersion: 0.6.6
  1180. variableMeasured:
  1181. - schemaKey: PropertyValue
  1182. value: ElectricalSeries
  1183. - schemaKey: PropertyValue
  1184. value: ElectrodeGroup
  1185. wasAttributedTo:
  1186. - age:
  1187. schemaKey: PropertyValue
  1188. unitText: ISO-8601 duration
  1189. value: P11Y
  1190. valueReference:
  1191. schemaKey: PropertyValue
  1192. value: dandi:BirthReference
  1193. identifier: Elgar
  1194. schemaKey: Participant
  1195. sex:
  1196. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1197. name: Male
  1198. schemaKey: SexType
  1199. species:
  1200. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1201. name: Macaca mulatta - Rhesus monkey
  1202. schemaKey: SpeciesType
  1203. wasGeneratedBy:
  1204. - description: Data from macaque performing multi-object working memory task. Subject
  1205. is presented with multiple objects at different locations on a screen. After a
  1206. delay, the subject is then cued with one of the objects, now displayed at the
  1207. center of the screen. Subject should respond by saccading to the location of the
  1208. cued object at its initial presentation.
  1209. identifier: '2022-09-21'
  1210. name: '2022-09-21'
  1211. schemaKey: Session
  1212. startDate: '2022-09-22T00:33:35-04:00'
  1213. - description: Metadata generated by DANDI cli
  1214. endDate: '2024-03-20T21:16:58.494404-04:00'
  1215. id: urn:uuid:9b208bc3-d965-43ef-9950-a7612ca36045
  1216. name: Metadata generation
  1217. schemaKey: Activity
  1218. startDate: '2024-03-20T21:16:55.737443-04:00'
  1219. wasAssociatedWith:
  1220. - identifier: RRID:SCR_019009
  1221. name: DANDI Command Line Interface
  1222. schemaKey: Software
  1223. url: https://github.com/dandi/dandi-cli
  1224. version: 0.60.0
  1225. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1226. access:
  1227. - schemaKey: AccessRequirements
  1228. status: dandi:OpenAccess
  1229. approach:
  1230. - name: electrophysiological approach
  1231. schemaKey: ApproachType
  1232. blobDateModified: '2024-03-20T15:41:14.754308-04:00'
  1233. contentSize: 117623173909
  1234. contentUrl:
  1235. - https://api.dandiarchive.org/api/assets/2ba36382-7612-4803-a467-330d30e549ca/download/
  1236. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/e60/76c/e6076cb2-28bf-447e-b6b9-c8cfcd36c24c
  1237. dateModified: '2024-03-21T08:54:12.092541-04:00'
  1238. digest:
  1239. dandi:dandi-etag: 1f1ba2d97eb362a319c7186e2b5f79a3-1753
  1240. dandi:sha2-256: 66574cc2b1f36a01876284c55e04216bfe16f323742b844590859f8f28540a05
  1241. encodingFormat: application/x-nwb
  1242. id: dandiasset:2ba36382-7612-4803-a467-330d30e549ca
  1243. identifier: 2ba36382-7612-4803-a467-330d30e549ca
  1244. measurementTechnique:
  1245. - name: multi electrode extracellular electrophysiology recording technique
  1246. schemaKey: MeasurementTechniqueType
  1247. - name: surgical technique
  1248. schemaKey: MeasurementTechniqueType
  1249. path: sub-Perle/sub-Perle_ses-2022-06-17_ecephys.nwb
  1250. schemaKey: Asset
  1251. schemaVersion: 0.6.6
  1252. variableMeasured:
  1253. - schemaKey: PropertyValue
  1254. value: ElectrodeGroup
  1255. - schemaKey: PropertyValue
  1256. value: ElectricalSeries
  1257. wasAttributedTo:
  1258. - age:
  1259. schemaKey: PropertyValue
  1260. unitText: ISO-8601 duration
  1261. value: P10Y
  1262. valueReference:
  1263. schemaKey: PropertyValue
  1264. value: dandi:BirthReference
  1265. identifier: Perle
  1266. schemaKey: Participant
  1267. sex:
  1268. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1269. name: Female
  1270. schemaKey: SexType
  1271. species:
  1272. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1273. name: Macaca mulatta - Rhesus monkey
  1274. schemaKey: SpeciesType
  1275. wasGeneratedBy:
  1276. - description: Data from macaque performing multi-object working memory task. Subject
  1277. is presented with multiple objects at different locations on a screen. After a
  1278. delay, the subject is then cued with one of the objects, now displayed at the
  1279. center of the screen. Subject should respond by saccading to the location of the
  1280. cued object at its initial presentation.
  1281. identifier: '2022-06-17'
  1282. name: '2022-06-17'
  1283. schemaKey: Session
  1284. startDate: '2022-06-17T14:44:54-04:00'
  1285. - description: Metadata generated by DANDI cli
  1286. endDate: '2024-03-21T08:54:12.092497-04:00'
  1287. id: urn:uuid:630b2e4a-70f6-4746-94f8-f25a72bb3083
  1288. name: Metadata generation
  1289. schemaKey: Activity
  1290. startDate: '2024-03-21T08:54:09.147008-04:00'
  1291. wasAssociatedWith:
  1292. - identifier: RRID:SCR_019009
  1293. name: DANDI Command Line Interface
  1294. schemaKey: Software
  1295. url: https://github.com/dandi/dandi-cli
  1296. version: 0.60.0
  1297. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1298. access:
  1299. - schemaKey: AccessRequirements
  1300. status: dandi:OpenAccess
  1301. approach:
  1302. - name: electrophysiological approach
  1303. schemaKey: ApproachType
  1304. blobDateModified: '2024-03-24T10:37:37.620819-04:00'
  1305. contentSize: 46639376
  1306. contentUrl:
  1307. - https://api.dandiarchive.org/api/assets/d671c0f6-a5ed-413c-8314-2d126e983f48/download/
  1308. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/b65/41c/b6541c6f-fc0c-48b0-be67-f760cc681dcf
  1309. dateModified: '2024-03-25T02:56:59.412345-04:00'
  1310. digest:
  1311. dandi:dandi-etag: abd003cffc67caaf7c9d1d6b81e61432-1
  1312. dandi:sha2-256: e8de2bdad0da7697a8a0aa3948136b28625a67cba8282f2543edcd582419271f
  1313. encodingFormat: application/x-nwb
  1314. id: dandiasset:d671c0f6-a5ed-413c-8314-2d126e983f48
  1315. identifier: d671c0f6-a5ed-413c-8314-2d126e983f48
  1316. measurementTechnique:
  1317. - name: analytical technique
  1318. schemaKey: MeasurementTechniqueType
  1319. - name: surgical technique
  1320. schemaKey: MeasurementTechniqueType
  1321. - name: spike sorting technique
  1322. schemaKey: MeasurementTechniqueType
  1323. path: sub-Elgar/sub-Elgar_ses-2022-05-05_spikesorting.nwb
  1324. schemaKey: Asset
  1325. schemaVersion: 0.6.7
  1326. variableMeasured:
  1327. - schemaKey: PropertyValue
  1328. value: Units
  1329. - schemaKey: PropertyValue
  1330. value: ProcessingModule
  1331. - schemaKey: PropertyValue
  1332. value: ElectrodeGroup
  1333. wasAttributedTo:
  1334. - age:
  1335. schemaKey: PropertyValue
  1336. unitText: ISO-8601 duration
  1337. value: P11Y
  1338. valueReference:
  1339. schemaKey: PropertyValue
  1340. value: dandi:BirthReference
  1341. identifier: Elgar
  1342. schemaKey: Participant
  1343. sex:
  1344. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1345. name: Male
  1346. schemaKey: SexType
  1347. species:
  1348. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1349. name: Macaca mulatta - Rhesus monkey
  1350. schemaKey: SpeciesType
  1351. wasGeneratedBy:
  1352. - description: Data from macaque performing multi-object working memory task. Subject
  1353. is presented with multiple objects at different locations on a screen. After a
  1354. delay, the subject is then cued with one of the objects, now displayed at the
  1355. center of the screen. Subject should respond by saccading to the location of the
  1356. cued object at its initial presentation.
  1357. identifier: '2022-05-05'
  1358. name: '2022-05-05'
  1359. schemaKey: Session
  1360. startDate: '2022-05-05T20:36:48-04:00'
  1361. - description: Metadata generated by DANDI cli
  1362. endDate: '2024-03-25T02:56:59.412287-04:00'
  1363. id: urn:uuid:a7ae1da8-86e5-48da-9ae7-e483a96aed65
  1364. name: Metadata generation
  1365. schemaKey: Activity
  1366. startDate: '2024-03-25T02:56:42.418667-04:00'
  1367. wasAssociatedWith:
  1368. - identifier: RRID:SCR_019009
  1369. name: DANDI Command Line Interface
  1370. schemaKey: Software
  1371. url: https://github.com/dandi/dandi-cli
  1372. version: 0.61.2
  1373. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1374. access:
  1375. - schemaKey: AccessRequirements
  1376. status: dandi:OpenAccess
  1377. approach:
  1378. - name: electrophysiological approach
  1379. schemaKey: ApproachType
  1380. blobDateModified: '2024-03-24T10:39:28.237970-04:00'
  1381. contentSize: 56319562
  1382. contentUrl:
  1383. - https://api.dandiarchive.org/api/assets/0689f419-9908-44a6-a917-4cfa3c4af09b/download/
  1384. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/42f/9a4/42f9a4b8-f972-48ec-922a-9b40dda7c1fd
  1385. dateModified: '2024-03-25T02:56:59.646424-04:00'
  1386. digest:
  1387. dandi:dandi-etag: 0c120f06f5bea71236dcb8c9c6f4e894-1
  1388. dandi:sha2-256: 35fc5f4cfba636b51350c8331e21836cdbd77d8941dcb825fd9beb8323db7274
  1389. encodingFormat: application/x-nwb
  1390. id: dandiasset:0689f419-9908-44a6-a917-4cfa3c4af09b
  1391. identifier: 0689f419-9908-44a6-a917-4cfa3c4af09b
  1392. measurementTechnique:
  1393. - name: analytical technique
  1394. schemaKey: MeasurementTechniqueType
  1395. - name: surgical technique
  1396. schemaKey: MeasurementTechniqueType
  1397. - name: spike sorting technique
  1398. schemaKey: MeasurementTechniqueType
  1399. path: sub-Elgar/sub-Elgar_ses-2022-05-04_spikesorting.nwb
  1400. schemaKey: Asset
  1401. schemaVersion: 0.6.7
  1402. variableMeasured:
  1403. - schemaKey: PropertyValue
  1404. value: Units
  1405. - schemaKey: PropertyValue
  1406. value: ProcessingModule
  1407. - schemaKey: PropertyValue
  1408. value: ElectrodeGroup
  1409. wasAttributedTo:
  1410. - age:
  1411. schemaKey: PropertyValue
  1412. unitText: ISO-8601 duration
  1413. value: P11Y
  1414. valueReference:
  1415. schemaKey: PropertyValue
  1416. value: dandi:BirthReference
  1417. identifier: Elgar
  1418. schemaKey: Participant
  1419. sex:
  1420. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1421. name: Male
  1422. schemaKey: SexType
  1423. species:
  1424. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1425. name: Macaca mulatta - Rhesus monkey
  1426. schemaKey: SpeciesType
  1427. wasGeneratedBy:
  1428. - description: Data from macaque performing multi-object working memory task. Subject
  1429. is presented with multiple objects at different locations on a screen. After a
  1430. delay, the subject is then cued with one of the objects, now displayed at the
  1431. center of the screen. Subject should respond by saccading to the location of the
  1432. cued object at its initial presentation.
  1433. identifier: '2022-05-04'
  1434. name: '2022-05-04'
  1435. schemaKey: Session
  1436. startDate: '2022-05-04T15:46:07-04:00'
  1437. - description: Metadata generated by DANDI cli
  1438. endDate: '2024-03-25T02:56:59.646375-04:00'
  1439. id: urn:uuid:bfb516dc-9e8d-4241-a401-1026cdd3991c
  1440. name: Metadata generation
  1441. schemaKey: Activity
  1442. startDate: '2024-03-25T02:56:42.657146-04:00'
  1443. wasAssociatedWith:
  1444. - identifier: RRID:SCR_019009
  1445. name: DANDI Command Line Interface
  1446. schemaKey: Software
  1447. url: https://github.com/dandi/dandi-cli
  1448. version: 0.61.2
  1449. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1450. access:
  1451. - schemaKey: AccessRequirements
  1452. status: dandi:OpenAccess
  1453. approach:
  1454. - name: electrophysiological approach
  1455. schemaKey: ApproachType
  1456. blobDateModified: '2024-03-24T10:41:36.451136-04:00'
  1457. contentSize: 21961784
  1458. contentUrl:
  1459. - https://api.dandiarchive.org/api/assets/b1c55d46-180d-4ecc-b309-cf7e5e860184/download/
  1460. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/c05/2c2/c052c254-3ff3-4041-981c-97c12acfaaa9
  1461. dateModified: '2024-03-25T02:57:00.024380-04:00'
  1462. digest:
  1463. dandi:dandi-etag: 6cae71e3187c8c28032a443c8066a4e6-1
  1464. dandi:sha2-256: 7ed53616a1baa436e181234d0f13beec3ebaea7af2e5debb4cfa01c54a8216b5
  1465. encodingFormat: application/x-nwb
  1466. id: dandiasset:b1c55d46-180d-4ecc-b309-cf7e5e860184
  1467. identifier: b1c55d46-180d-4ecc-b309-cf7e5e860184
  1468. measurementTechnique:
  1469. - name: analytical technique
  1470. schemaKey: MeasurementTechniqueType
  1471. - name: surgical technique
  1472. schemaKey: MeasurementTechniqueType
  1473. - name: spike sorting technique
  1474. schemaKey: MeasurementTechniqueType
  1475. path: sub-Elgar/sub-Elgar_ses-2022-05-07_spikesorting.nwb
  1476. schemaKey: Asset
  1477. schemaVersion: 0.6.7
  1478. variableMeasured:
  1479. - schemaKey: PropertyValue
  1480. value: Units
  1481. - schemaKey: PropertyValue
  1482. value: ProcessingModule
  1483. - schemaKey: PropertyValue
  1484. value: ElectrodeGroup
  1485. wasAttributedTo:
  1486. - age:
  1487. schemaKey: PropertyValue
  1488. unitText: ISO-8601 duration
  1489. value: P11Y
  1490. valueReference:
  1491. schemaKey: PropertyValue
  1492. value: dandi:BirthReference
  1493. identifier: Elgar
  1494. schemaKey: Participant
  1495. sex:
  1496. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1497. name: Male
  1498. schemaKey: SexType
  1499. species:
  1500. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1501. name: Macaca mulatta - Rhesus monkey
  1502. schemaKey: SpeciesType
  1503. wasGeneratedBy:
  1504. - description: Data from macaque performing multi-object working memory task. Subject
  1505. is presented with multiple objects at different locations on a screen. After a
  1506. delay, the subject is then cued with one of the objects, now displayed at the
  1507. center of the screen. Subject should respond by saccading to the location of the
  1508. cued object at its initial presentation.
  1509. identifier: '2022-05-07'
  1510. name: '2022-05-07'
  1511. schemaKey: Session
  1512. startDate: '2022-05-07T16:43:56-04:00'
  1513. - description: Metadata generated by DANDI cli
  1514. endDate: '2024-03-25T02:57:00.024337-04:00'
  1515. id: urn:uuid:721bf966-9102-4f45-b6da-77fa27927729
  1516. name: Metadata generation
  1517. schemaKey: Activity
  1518. startDate: '2024-03-25T02:56:43.828114-04:00'
  1519. wasAssociatedWith:
  1520. - identifier: RRID:SCR_019009
  1521. name: DANDI Command Line Interface
  1522. schemaKey: Software
  1523. url: https://github.com/dandi/dandi-cli
  1524. version: 0.61.2
  1525. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1526. access:
  1527. - schemaKey: AccessRequirements
  1528. status: dandi:OpenAccess
  1529. approach:
  1530. - name: electrophysiological approach
  1531. schemaKey: ApproachType
  1532. blobDateModified: '2024-03-24T10:39:13.048949-04:00'
  1533. contentSize: 33142152
  1534. contentUrl:
  1535. - https://api.dandiarchive.org/api/assets/702c7d96-4507-430a-b94f-d9a24aab2b11/download/
  1536. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/fd8/c37/fd8c371e-71f8-478b-b237-f78ddf7115b7
  1537. dateModified: '2024-03-25T02:56:59.795504-04:00'
  1538. digest:
  1539. dandi:dandi-etag: 497f508306d96f0bb3a5cf07170fc52e-1
  1540. dandi:sha2-256: 5f935ac6911097c6b37a65595aa0d52e98230831eeb5134a985a8543e7370034
  1541. encodingFormat: application/x-nwb
  1542. id: dandiasset:702c7d96-4507-430a-b94f-d9a24aab2b11
  1543. identifier: 702c7d96-4507-430a-b94f-d9a24aab2b11
  1544. measurementTechnique:
  1545. - name: analytical technique
  1546. schemaKey: MeasurementTechniqueType
  1547. - name: surgical technique
  1548. schemaKey: MeasurementTechniqueType
  1549. - name: spike sorting technique
  1550. schemaKey: MeasurementTechniqueType
  1551. path: sub-Elgar/sub-Elgar_ses-2022-05-02_spikesorting.nwb
  1552. schemaKey: Asset
  1553. schemaVersion: 0.6.7
  1554. variableMeasured:
  1555. - schemaKey: PropertyValue
  1556. value: Units
  1557. - schemaKey: PropertyValue
  1558. value: ProcessingModule
  1559. - schemaKey: PropertyValue
  1560. value: ElectrodeGroup
  1561. wasAttributedTo:
  1562. - age:
  1563. schemaKey: PropertyValue
  1564. unitText: ISO-8601 duration
  1565. value: P11Y
  1566. valueReference:
  1567. schemaKey: PropertyValue
  1568. value: dandi:BirthReference
  1569. identifier: Elgar
  1570. schemaKey: Participant
  1571. sex:
  1572. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1573. name: Male
  1574. schemaKey: SexType
  1575. species:
  1576. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1577. name: Macaca mulatta - Rhesus monkey
  1578. schemaKey: SpeciesType
  1579. wasGeneratedBy:
  1580. - description: Data from macaque performing multi-object working memory task. Subject
  1581. is presented with multiple objects at different locations on a screen. After a
  1582. delay, the subject is then cued with one of the objects, now displayed at the
  1583. center of the screen. Subject should respond by saccading to the location of the
  1584. cued object at its initial presentation.
  1585. identifier: '2022-05-02'
  1586. name: '2022-05-02'
  1587. schemaKey: Session
  1588. startDate: '2022-05-02T17:17:45-04:00'
  1589. - description: Metadata generated by DANDI cli
  1590. endDate: '2024-03-25T02:56:59.795464-04:00'
  1591. id: urn:uuid:ecd71ae8-fffe-4ce0-8883-3aa770fb3445
  1592. name: Metadata generation
  1593. schemaKey: Activity
  1594. startDate: '2024-03-25T02:56:43.663830-04:00'
  1595. wasAssociatedWith:
  1596. - identifier: RRID:SCR_019009
  1597. name: DANDI Command Line Interface
  1598. schemaKey: Software
  1599. url: https://github.com/dandi/dandi-cli
  1600. version: 0.61.2
  1601. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1602. access:
  1603. - schemaKey: AccessRequirements
  1604. status: dandi:OpenAccess
  1605. approach:
  1606. - name: electrophysiological approach
  1607. schemaKey: ApproachType
  1608. blobDateModified: '2024-03-24T10:38:55.125925-04:00'
  1609. contentSize: 48271136
  1610. contentUrl:
  1611. - https://api.dandiarchive.org/api/assets/3128076a-cd34-4f4c-ad05-b4e4d474ffcd/download/
  1612. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/cc2/e01/cc2e0159-50ab-483a-9b1a-ea1ca21cd050
  1613. dateModified: '2024-03-25T02:57:00.157401-04:00'
  1614. digest:
  1615. dandi:dandi-etag: 280bb9aba227177f01f2e583b66f4a6d-1
  1616. dandi:sha2-256: 8bae45b9998b8220b3a69983fb930c6faf4378661bcb8487c11f20a9e15d9668
  1617. encodingFormat: application/x-nwb
  1618. id: dandiasset:3128076a-cd34-4f4c-ad05-b4e4d474ffcd
  1619. identifier: 3128076a-cd34-4f4c-ad05-b4e4d474ffcd
  1620. measurementTechnique:
  1621. - name: analytical technique
  1622. schemaKey: MeasurementTechniqueType
  1623. - name: surgical technique
  1624. schemaKey: MeasurementTechniqueType
  1625. - name: spike sorting technique
  1626. schemaKey: MeasurementTechniqueType
  1627. path: sub-Elgar/sub-Elgar_ses-2022-05-06_spikesorting.nwb
  1628. schemaKey: Asset
  1629. schemaVersion: 0.6.7
  1630. variableMeasured:
  1631. - schemaKey: PropertyValue
  1632. value: Units
  1633. - schemaKey: PropertyValue
  1634. value: ProcessingModule
  1635. - schemaKey: PropertyValue
  1636. value: ElectrodeGroup
  1637. wasAttributedTo:
  1638. - age:
  1639. schemaKey: PropertyValue
  1640. unitText: ISO-8601 duration
  1641. value: P11Y
  1642. valueReference:
  1643. schemaKey: PropertyValue
  1644. value: dandi:BirthReference
  1645. identifier: Elgar
  1646. schemaKey: Participant
  1647. sex:
  1648. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1649. name: Male
  1650. schemaKey: SexType
  1651. species:
  1652. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1653. name: Macaca mulatta - Rhesus monkey
  1654. schemaKey: SpeciesType
  1655. wasGeneratedBy:
  1656. - description: Data from macaque performing multi-object working memory task. Subject
  1657. is presented with multiple objects at different locations on a screen. After a
  1658. delay, the subject is then cued with one of the objects, now displayed at the
  1659. center of the screen. Subject should respond by saccading to the location of the
  1660. cued object at its initial presentation.
  1661. identifier: '2022-05-06'
  1662. name: '2022-05-06'
  1663. schemaKey: Session
  1664. startDate: '2022-05-06T21:01:03-04:00'
  1665. - description: Metadata generated by DANDI cli
  1666. endDate: '2024-03-25T02:57:00.157360-04:00'
  1667. id: urn:uuid:f10726fd-54ff-4e01-8899-9e647eba2d9b
  1668. name: Metadata generation
  1669. schemaKey: Activity
  1670. startDate: '2024-03-25T02:56:44.478765-04:00'
  1671. wasAssociatedWith:
  1672. - identifier: RRID:SCR_019009
  1673. name: DANDI Command Line Interface
  1674. schemaKey: Software
  1675. url: https://github.com/dandi/dandi-cli
  1676. version: 0.61.2
  1677. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1678. access:
  1679. - schemaKey: AccessRequirements
  1680. status: dandi:OpenAccess
  1681. approach:
  1682. - name: electrophysiological approach
  1683. schemaKey: ApproachType
  1684. blobDateModified: '2024-03-24T10:39:51.474001-04:00'
  1685. contentSize: 87360936
  1686. contentUrl:
  1687. - https://api.dandiarchive.org/api/assets/3ad9d1e9-2f69-4d4c-a60c-66f9670d6800/download/
  1688. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/195/f19/195f1963-12f3-4f61-a042-ed8fec6db610
  1689. dateModified: '2024-03-25T02:57:43.674219-04:00'
  1690. digest:
  1691. dandi:dandi-etag: ac2fc2b1e2c2be92a480e14df2cc1f3e-2
  1692. dandi:sha2-256: c23172731222daa89c85612153a10a4fde7cf0159b7fd58fb6925957b8fa2531
  1693. encodingFormat: application/x-nwb
  1694. id: dandiasset:3ad9d1e9-2f69-4d4c-a60c-66f9670d6800
  1695. identifier: 3ad9d1e9-2f69-4d4c-a60c-66f9670d6800
  1696. measurementTechnique:
  1697. - name: analytical technique
  1698. schemaKey: MeasurementTechniqueType
  1699. - name: surgical technique
  1700. schemaKey: MeasurementTechniqueType
  1701. - name: spike sorting technique
  1702. schemaKey: MeasurementTechniqueType
  1703. path: sub-Elgar/sub-Elgar_ses-2022-05-12_spikesorting.nwb
  1704. schemaKey: Asset
  1705. schemaVersion: 0.6.7
  1706. variableMeasured:
  1707. - schemaKey: PropertyValue
  1708. value: Units
  1709. - schemaKey: PropertyValue
  1710. value: ProcessingModule
  1711. - schemaKey: PropertyValue
  1712. value: ElectrodeGroup
  1713. wasAttributedTo:
  1714. - age:
  1715. schemaKey: PropertyValue
  1716. unitText: ISO-8601 duration
  1717. value: P11Y
  1718. valueReference:
  1719. schemaKey: PropertyValue
  1720. value: dandi:BirthReference
  1721. identifier: Elgar
  1722. schemaKey: Participant
  1723. sex:
  1724. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1725. name: Male
  1726. schemaKey: SexType
  1727. species:
  1728. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1729. name: Macaca mulatta - Rhesus monkey
  1730. schemaKey: SpeciesType
  1731. wasGeneratedBy:
  1732. - description: Data from macaque performing multi-object working memory task. Subject
  1733. is presented with multiple objects at different locations on a screen. After a
  1734. delay, the subject is then cued with one of the objects, now displayed at the
  1735. center of the screen. Subject should respond by saccading to the location of the
  1736. cued object at its initial presentation.
  1737. identifier: '2022-05-12'
  1738. name: '2022-05-12'
  1739. schemaKey: Session
  1740. startDate: '2022-05-12T20:15:48-04:00'
  1741. - description: Metadata generated by DANDI cli
  1742. endDate: '2024-03-25T02:57:43.674160-04:00'
  1743. id: urn:uuid:de348fd7-2c13-42c7-8afa-4dec91b8d37d
  1744. name: Metadata generation
  1745. schemaKey: Activity
  1746. startDate: '2024-03-25T02:57:34.112411-04:00'
  1747. wasAssociatedWith:
  1748. - identifier: RRID:SCR_019009
  1749. name: DANDI Command Line Interface
  1750. schemaKey: Software
  1751. url: https://github.com/dandi/dandi-cli
  1752. version: 0.61.2
  1753. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1754. access:
  1755. - schemaKey: AccessRequirements
  1756. status: dandi:OpenAccess
  1757. approach:
  1758. - name: electrophysiological approach
  1759. schemaKey: ApproachType
  1760. blobDateModified: '2024-03-24T10:36:53.758759-04:00'
  1761. contentSize: 98038436
  1762. contentUrl:
  1763. - https://api.dandiarchive.org/api/assets/9cec3d23-f4f3-4e62-a7c4-7f2b274a8abc/download/
  1764. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/d64/fca/d64fcac9-e90f-42e6-aa5f-5b061f76a346
  1765. dateModified: '2024-03-25T02:57:43.731175-04:00'
  1766. digest:
  1767. dandi:dandi-etag: 23c08c286a95729ef2d377e18a943bc0-2
  1768. dandi:sha2-256: b7e68a9c3b113a07379ed143d1051a681e73c1adaec617557e2eb18584f36f24
  1769. encodingFormat: application/x-nwb
  1770. id: dandiasset:9cec3d23-f4f3-4e62-a7c4-7f2b274a8abc
  1771. identifier: 9cec3d23-f4f3-4e62-a7c4-7f2b274a8abc
  1772. measurementTechnique:
  1773. - name: analytical technique
  1774. schemaKey: MeasurementTechniqueType
  1775. - name: surgical technique
  1776. schemaKey: MeasurementTechniqueType
  1777. - name: spike sorting technique
  1778. schemaKey: MeasurementTechniqueType
  1779. path: sub-Elgar/sub-Elgar_ses-2022-05-08_spikesorting.nwb
  1780. schemaKey: Asset
  1781. schemaVersion: 0.6.7
  1782. variableMeasured:
  1783. - schemaKey: PropertyValue
  1784. value: Units
  1785. - schemaKey: PropertyValue
  1786. value: ProcessingModule
  1787. - schemaKey: PropertyValue
  1788. value: ElectrodeGroup
  1789. wasAttributedTo:
  1790. - age:
  1791. schemaKey: PropertyValue
  1792. unitText: ISO-8601 duration
  1793. value: P11Y
  1794. valueReference:
  1795. schemaKey: PropertyValue
  1796. value: dandi:BirthReference
  1797. identifier: Elgar
  1798. schemaKey: Participant
  1799. sex:
  1800. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1801. name: Male
  1802. schemaKey: SexType
  1803. species:
  1804. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1805. name: Macaca mulatta - Rhesus monkey
  1806. schemaKey: SpeciesType
  1807. wasGeneratedBy:
  1808. - description: Data from macaque performing multi-object working memory task. Subject
  1809. is presented with multiple objects at different locations on a screen. After a
  1810. delay, the subject is then cued with one of the objects, now displayed at the
  1811. center of the screen. Subject should respond by saccading to the location of the
  1812. cued object at its initial presentation.
  1813. identifier: '2022-05-08'
  1814. name: '2022-05-08'
  1815. schemaKey: Session
  1816. startDate: '2022-05-08T18:15:58-04:00'
  1817. - description: Metadata generated by DANDI cli
  1818. endDate: '2024-03-25T02:57:43.731146-04:00'
  1819. id: urn:uuid:1c8df279-6c79-4768-863f-faf0e4b556d1
  1820. name: Metadata generation
  1821. schemaKey: Activity
  1822. startDate: '2024-03-25T02:57:31.433105-04:00'
  1823. wasAssociatedWith:
  1824. - identifier: RRID:SCR_019009
  1825. name: DANDI Command Line Interface
  1826. schemaKey: Software
  1827. url: https://github.com/dandi/dandi-cli
  1828. version: 0.61.2
  1829. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1830. access:
  1831. - schemaKey: AccessRequirements
  1832. status: dandi:OpenAccess
  1833. approach:
  1834. - name: electrophysiological approach
  1835. schemaKey: ApproachType
  1836. blobDateModified: '2024-03-24T10:39:03.690937-04:00'
  1837. contentSize: 29243072
  1838. contentUrl:
  1839. - https://api.dandiarchive.org/api/assets/14f8f04a-7670-46b4-afbb-f3b367b9f9f2/download/
  1840. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/186/989/186989dd-dc71-4049-8976-2b9e967b5dea
  1841. dateModified: '2024-03-25T02:57:58.599619-04:00'
  1842. digest:
  1843. dandi:dandi-etag: 81077f14c05cf08d51c849716f30d6c2-1
  1844. dandi:sha2-256: 3cadf9814ef38f581b4965016be528a30a15a945d83e8d7accab12593c095336
  1845. encodingFormat: application/x-nwb
  1846. id: dandiasset:14f8f04a-7670-46b4-afbb-f3b367b9f9f2
  1847. identifier: 14f8f04a-7670-46b4-afbb-f3b367b9f9f2
  1848. measurementTechnique:
  1849. - name: analytical technique
  1850. schemaKey: MeasurementTechniqueType
  1851. - name: surgical technique
  1852. schemaKey: MeasurementTechniqueType
  1853. - name: spike sorting technique
  1854. schemaKey: MeasurementTechniqueType
  1855. path: sub-Elgar/sub-Elgar_ses-2022-05-10_spikesorting.nwb
  1856. schemaKey: Asset
  1857. schemaVersion: 0.6.7
  1858. variableMeasured:
  1859. - schemaKey: PropertyValue
  1860. value: Units
  1861. - schemaKey: PropertyValue
  1862. value: ProcessingModule
  1863. - schemaKey: PropertyValue
  1864. value: ElectrodeGroup
  1865. wasAttributedTo:
  1866. - age:
  1867. schemaKey: PropertyValue
  1868. unitText: ISO-8601 duration
  1869. value: P11Y
  1870. valueReference:
  1871. schemaKey: PropertyValue
  1872. value: dandi:BirthReference
  1873. identifier: Elgar
  1874. schemaKey: Participant
  1875. sex:
  1876. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1877. name: Male
  1878. schemaKey: SexType
  1879. species:
  1880. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1881. name: Macaca mulatta - Rhesus monkey
  1882. schemaKey: SpeciesType
  1883. wasGeneratedBy:
  1884. - description: Data from macaque performing multi-object working memory task. Subject
  1885. is presented with multiple objects at different locations on a screen. After a
  1886. delay, the subject is then cued with one of the objects, now displayed at the
  1887. center of the screen. Subject should respond by saccading to the location of the
  1888. cued object at its initial presentation.
  1889. identifier: '2022-05-10'
  1890. name: '2022-05-10'
  1891. schemaKey: Session
  1892. startDate: '2022-05-10T17:46:16-04:00'
  1893. - description: Metadata generated by DANDI cli
  1894. endDate: '2024-03-25T02:57:58.599557-04:00'
  1895. id: urn:uuid:d9c278f0-93ee-463a-9751-0f252589bbf1
  1896. name: Metadata generation
  1897. schemaKey: Activity
  1898. startDate: '2024-03-25T02:57:43.479699-04:00'
  1899. wasAssociatedWith:
  1900. - identifier: RRID:SCR_019009
  1901. name: DANDI Command Line Interface
  1902. schemaKey: Software
  1903. url: https://github.com/dandi/dandi-cli
  1904. version: 0.61.2
  1905. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1906. access:
  1907. - schemaKey: AccessRequirements
  1908. status: dandi:OpenAccess
  1909. approach:
  1910. - name: electrophysiological approach
  1911. schemaKey: ApproachType
  1912. blobDateModified: '2024-03-24T10:36:10.901699-04:00'
  1913. contentSize: 77555312
  1914. contentUrl:
  1915. - https://api.dandiarchive.org/api/assets/a16cc223-40b7-4bef-8adb-29e412e7c001/download/
  1916. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/07d/ad6/07dad6d1-b062-4174-a7a9-09fd2ac9a541
  1917. dateModified: '2024-03-25T02:58:01.866139-04:00'
  1918. digest:
  1919. dandi:dandi-etag: adc233623f7e116f13beb6148a4cfa3f-2
  1920. dandi:sha2-256: 96ca3fa105308d8b00bfbe4a0476d47bc20d2ecc06caf039f8e9423c08749291
  1921. encodingFormat: application/x-nwb
  1922. id: dandiasset:a16cc223-40b7-4bef-8adb-29e412e7c001
  1923. identifier: a16cc223-40b7-4bef-8adb-29e412e7c001
  1924. measurementTechnique:
  1925. - name: analytical technique
  1926. schemaKey: MeasurementTechniqueType
  1927. - name: surgical technique
  1928. schemaKey: MeasurementTechniqueType
  1929. - name: spike sorting technique
  1930. schemaKey: MeasurementTechniqueType
  1931. path: sub-Elgar/sub-Elgar_ses-2022-05-14_spikesorting.nwb
  1932. schemaKey: Asset
  1933. schemaVersion: 0.6.7
  1934. variableMeasured:
  1935. - schemaKey: PropertyValue
  1936. value: Units
  1937. - schemaKey: PropertyValue
  1938. value: ProcessingModule
  1939. - schemaKey: PropertyValue
  1940. value: ElectrodeGroup
  1941. wasAttributedTo:
  1942. - age:
  1943. schemaKey: PropertyValue
  1944. unitText: ISO-8601 duration
  1945. value: P11Y
  1946. valueReference:
  1947. schemaKey: PropertyValue
  1948. value: dandi:BirthReference
  1949. identifier: Elgar
  1950. schemaKey: Participant
  1951. sex:
  1952. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1953. name: Male
  1954. schemaKey: SexType
  1955. species:
  1956. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1957. name: Macaca mulatta - Rhesus monkey
  1958. schemaKey: SpeciesType
  1959. wasGeneratedBy:
  1960. - description: Data from macaque performing multi-object working memory task. Subject
  1961. is presented with multiple objects at different locations on a screen. After a
  1962. delay, the subject is then cued with one of the objects, now displayed at the
  1963. center of the screen. Subject should respond by saccading to the location of the
  1964. cued object at its initial presentation.
  1965. identifier: '2022-05-14'
  1966. name: '2022-05-14'
  1967. schemaKey: Session
  1968. startDate: '2022-05-14T20:08:58-04:00'
  1969. - description: Metadata generated by DANDI cli
  1970. endDate: '2024-03-25T02:58:01.866096-04:00'
  1971. id: urn:uuid:77569a6d-635f-4004-ba2e-1768ba881959
  1972. name: Metadata generation
  1973. schemaKey: Activity
  1974. startDate: '2024-03-25T02:57:43.276923-04:00'
  1975. wasAssociatedWith:
  1976. - identifier: RRID:SCR_019009
  1977. name: DANDI Command Line Interface
  1978. schemaKey: Software
  1979. url: https://github.com/dandi/dandi-cli
  1980. version: 0.61.2
  1981. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1982. access:
  1983. - schemaKey: AccessRequirements
  1984. status: dandi:OpenAccess
  1985. approach:
  1986. - name: electrophysiological approach
  1987. schemaKey: ApproachType
  1988. blobDateModified: '2024-03-24T10:36:28.173724-04:00'
  1989. contentSize: 64126798
  1990. contentUrl:
  1991. - https://api.dandiarchive.org/api/assets/c3506154-bb8e-4b23-829d-644bb7cc9534/download/
  1992. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/be4/9ab/be49abe7-e8bf-4bcb-a419-2c8a9c1ffc8d
  1993. dateModified: '2024-03-25T02:58:09.330321-04:00'
  1994. digest:
  1995. dandi:dandi-etag: b76bf34bf1434f6d43a4272c84f3136a-1
  1996. dandi:sha2-256: 2b908cd7cd1437cfec1c659321f388cb4533295cea14afef184b109331dc2f2e
  1997. encodingFormat: application/x-nwb
  1998. id: dandiasset:c3506154-bb8e-4b23-829d-644bb7cc9534
  1999. identifier: c3506154-bb8e-4b23-829d-644bb7cc9534
  2000. measurementTechnique:
  2001. - name: analytical technique
  2002. schemaKey: MeasurementTechniqueType
  2003. - name: surgical technique
  2004. schemaKey: MeasurementTechniqueType
  2005. - name: spike sorting technique
  2006. schemaKey: MeasurementTechniqueType
  2007. path: sub-Elgar/sub-Elgar_ses-2022-05-16_spikesorting.nwb
  2008. schemaKey: Asset
  2009. schemaVersion: 0.6.7
  2010. variableMeasured:
  2011. - schemaKey: PropertyValue
  2012. value: Units
  2013. - schemaKey: PropertyValue
  2014. value: ProcessingModule
  2015. - schemaKey: PropertyValue
  2016. value: ElectrodeGroup
  2017. wasAttributedTo:
  2018. - age:
  2019. schemaKey: PropertyValue
  2020. unitText: ISO-8601 duration
  2021. value: P11Y
  2022. valueReference:
  2023. schemaKey: PropertyValue
  2024. value: dandi:BirthReference
  2025. identifier: Elgar
  2026. schemaKey: Participant
  2027. sex:
  2028. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2029. name: Male
  2030. schemaKey: SexType
  2031. species:
  2032. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2033. name: Macaca mulatta - Rhesus monkey
  2034. schemaKey: SpeciesType
  2035. wasGeneratedBy:
  2036. - description: Data from macaque performing multi-object working memory task. Subject
  2037. is presented with multiple objects at different locations on a screen. After a
  2038. delay, the subject is then cued with one of the objects, now displayed at the
  2039. center of the screen. Subject should respond by saccading to the location of the
  2040. cued object at its initial presentation.
  2041. identifier: '2022-05-16'
  2042. name: '2022-05-16'
  2043. schemaKey: Session
  2044. startDate: '2022-05-16T19:29:03-04:00'
  2045. - description: Metadata generated by DANDI cli
  2046. endDate: '2024-03-25T02:58:09.330254-04:00'
  2047. id: urn:uuid:f26250d3-1ac9-4a1a-94e5-058141e173cf
  2048. name: Metadata generation
  2049. schemaKey: Activity
  2050. startDate: '2024-03-25T02:57:44.791520-04:00'
  2051. wasAssociatedWith:
  2052. - identifier: RRID:SCR_019009
  2053. name: DANDI Command Line Interface
  2054. schemaKey: Software
  2055. url: https://github.com/dandi/dandi-cli
  2056. version: 0.61.2
  2057. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2058. access:
  2059. - schemaKey: AccessRequirements
  2060. status: dandi:OpenAccess
  2061. approach:
  2062. - name: electrophysiological approach
  2063. schemaKey: ApproachType
  2064. blobDateModified: '2024-03-24T10:40:23.411042-04:00'
  2065. contentSize: 121292170
  2066. contentUrl:
  2067. - https://api.dandiarchive.org/api/assets/7e376e2e-5b8c-405d-8667-1fa78a596b8d/download/
  2068. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/08a/303/08a30326-cf5f-421a-a50a-d1448ff6727b
  2069. dateModified: '2024-03-25T02:58:40.595899-04:00'
  2070. digest:
  2071. dandi:dandi-etag: 832b9c869ad2316e3698ca86bc7c80ce-2
  2072. dandi:sha2-256: 4fad80f0a2c3d7732180b22d31786ab155b30c58a151d29bf321c80fe99b6406
  2073. encodingFormat: application/x-nwb
  2074. id: dandiasset:7e376e2e-5b8c-405d-8667-1fa78a596b8d
  2075. identifier: 7e376e2e-5b8c-405d-8667-1fa78a596b8d
  2076. measurementTechnique:
  2077. - name: analytical technique
  2078. schemaKey: MeasurementTechniqueType
  2079. - name: surgical technique
  2080. schemaKey: MeasurementTechniqueType
  2081. - name: spike sorting technique
  2082. schemaKey: MeasurementTechniqueType
  2083. path: sub-Elgar/sub-Elgar_ses-2022-05-18_spikesorting.nwb
  2084. schemaKey: Asset
  2085. schemaVersion: 0.6.7
  2086. variableMeasured:
  2087. - schemaKey: PropertyValue
  2088. value: Units
  2089. - schemaKey: PropertyValue
  2090. value: ProcessingModule
  2091. - schemaKey: PropertyValue
  2092. value: ElectrodeGroup
  2093. wasAttributedTo:
  2094. - age:
  2095. schemaKey: PropertyValue
  2096. unitText: ISO-8601 duration
  2097. value: P11Y
  2098. valueReference:
  2099. schemaKey: PropertyValue
  2100. value: dandi:BirthReference
  2101. identifier: Elgar
  2102. schemaKey: Participant
  2103. sex:
  2104. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2105. name: Male
  2106. schemaKey: SexType
  2107. species:
  2108. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2109. name: Macaca mulatta - Rhesus monkey
  2110. schemaKey: SpeciesType
  2111. wasGeneratedBy:
  2112. - description: Data from macaque performing multi-object working memory task. Subject
  2113. is presented with multiple objects at different locations on a screen. After a
  2114. delay, the subject is then cued with one of the objects, now displayed at the
  2115. center of the screen. Subject should respond by saccading to the location of the
  2116. cued object at its initial presentation.
  2117. identifier: '2022-05-18'
  2118. name: '2022-05-18'
  2119. schemaKey: Session
  2120. startDate: '2022-05-18T17:11:30-04:00'
  2121. - description: Metadata generated by DANDI cli
  2122. endDate: '2024-03-25T02:58:40.595852-04:00'
  2123. id: urn:uuid:77457869-7c2e-4f31-8f28-0b7b87e9a773
  2124. name: Metadata generation
  2125. schemaKey: Activity
  2126. startDate: '2024-03-25T02:58:23.810486-04:00'
  2127. wasAssociatedWith:
  2128. - identifier: RRID:SCR_019009
  2129. name: DANDI Command Line Interface
  2130. schemaKey: Software
  2131. url: https://github.com/dandi/dandi-cli
  2132. version: 0.61.2
  2133. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2134. access:
  2135. - schemaKey: AccessRequirements
  2136. status: dandi:OpenAccess
  2137. approach:
  2138. - name: electrophysiological approach
  2139. schemaKey: ApproachType
  2140. blobDateModified: '2024-03-24T10:37:24.658801-04:00'
  2141. contentSize: 77950003
  2142. contentUrl:
  2143. - https://api.dandiarchive.org/api/assets/033684fa-f009-47e6-baaa-72624e4a8503/download/
  2144. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/ef5/8d6/ef58d600-e652-46e8-b9cc-9baab27be2ee
  2145. dateModified: '2024-03-25T02:58:41.489713-04:00'
  2146. digest:
  2147. dandi:dandi-etag: 81ae8bd7608172d475702627953bbfe6-2
  2148. dandi:sha2-256: 7a7719cdc6ee35c1bcfe89a5b8b140d82f55334c4b0ae99fec2beb4222f5c1d0
  2149. encodingFormat: application/x-nwb
  2150. id: dandiasset:033684fa-f009-47e6-baaa-72624e4a8503
  2151. identifier: 033684fa-f009-47e6-baaa-72624e4a8503
  2152. measurementTechnique:
  2153. - name: analytical technique
  2154. schemaKey: MeasurementTechniqueType
  2155. - name: surgical technique
  2156. schemaKey: MeasurementTechniqueType
  2157. - name: spike sorting technique
  2158. schemaKey: MeasurementTechniqueType
  2159. path: sub-Elgar/sub-Elgar_ses-2022-05-19_spikesorting.nwb
  2160. schemaKey: Asset
  2161. schemaVersion: 0.6.7
  2162. variableMeasured:
  2163. - schemaKey: PropertyValue
  2164. value: Units
  2165. - schemaKey: PropertyValue
  2166. value: ProcessingModule
  2167. - schemaKey: PropertyValue
  2168. value: ElectrodeGroup
  2169. wasAttributedTo:
  2170. - age:
  2171. schemaKey: PropertyValue
  2172. unitText: ISO-8601 duration
  2173. value: P11Y
  2174. valueReference:
  2175. schemaKey: PropertyValue
  2176. value: dandi:BirthReference
  2177. identifier: Elgar
  2178. schemaKey: Participant
  2179. sex:
  2180. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2181. name: Male
  2182. schemaKey: SexType
  2183. species:
  2184. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2185. name: Macaca mulatta - Rhesus monkey
  2186. schemaKey: SpeciesType
  2187. wasGeneratedBy:
  2188. - description: Data from macaque performing multi-object working memory task. Subject
  2189. is presented with multiple objects at different locations on a screen. After a
  2190. delay, the subject is then cued with one of the objects, now displayed at the
  2191. center of the screen. Subject should respond by saccading to the location of the
  2192. cued object at its initial presentation.
  2193. identifier: '2022-05-19'
  2194. name: '2022-05-19'
  2195. schemaKey: Session
  2196. startDate: '2022-05-19T18:29:07-04:00'
  2197. - description: Metadata generated by DANDI cli
  2198. endDate: '2024-03-25T02:58:41.489665-04:00'
  2199. id: urn:uuid:843bd731-7b65-4f21-a433-be3062e25c5e
  2200. name: Metadata generation
  2201. schemaKey: Activity
  2202. startDate: '2024-03-25T02:58:25.349957-04:00'
  2203. wasAssociatedWith:
  2204. - identifier: RRID:SCR_019009
  2205. name: DANDI Command Line Interface
  2206. schemaKey: Software
  2207. url: https://github.com/dandi/dandi-cli
  2208. version: 0.61.2
  2209. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2210. access:
  2211. - schemaKey: AccessRequirements
  2212. status: dandi:OpenAccess
  2213. approach:
  2214. - name: electrophysiological approach
  2215. schemaKey: ApproachType
  2216. blobDateModified: '2024-03-24T10:38:40.865905-04:00'
  2217. contentSize: 249325122
  2218. contentUrl:
  2219. - https://api.dandiarchive.org/api/assets/5edea2e4-26fb-4efb-8eb3-27fe232332dd/download/
  2220. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/352/b86/352b867e-18dd-41b8-80ca-faaa63b6d417
  2221. dateModified: '2024-03-25T02:58:41.436146-04:00'
  2222. digest:
  2223. dandi:dandi-etag: 1ada791ea1bd3b96dee4143c03867b66-4
  2224. dandi:sha2-256: 4b342255fa4073f08b18688698d532788a64cfe613e4cc471d231ded16b3bd7c
  2225. encodingFormat: application/x-nwb
  2226. id: dandiasset:5edea2e4-26fb-4efb-8eb3-27fe232332dd
  2227. identifier: 5edea2e4-26fb-4efb-8eb3-27fe232332dd
  2228. measurementTechnique:
  2229. - name: analytical technique
  2230. schemaKey: MeasurementTechniqueType
  2231. - name: surgical technique
  2232. schemaKey: MeasurementTechniqueType
  2233. - name: spike sorting technique
  2234. schemaKey: MeasurementTechniqueType
  2235. path: sub-Elgar/sub-Elgar_ses-2022-05-17_spikesorting.nwb
  2236. schemaKey: Asset
  2237. schemaVersion: 0.6.7
  2238. variableMeasured:
  2239. - schemaKey: PropertyValue
  2240. value: Units
  2241. - schemaKey: PropertyValue
  2242. value: ProcessingModule
  2243. - schemaKey: PropertyValue
  2244. value: ElectrodeGroup
  2245. wasAttributedTo:
  2246. - age:
  2247. schemaKey: PropertyValue
  2248. unitText: ISO-8601 duration
  2249. value: P11Y
  2250. valueReference:
  2251. schemaKey: PropertyValue
  2252. value: dandi:BirthReference
  2253. identifier: Elgar
  2254. schemaKey: Participant
  2255. sex:
  2256. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2257. name: Male
  2258. schemaKey: SexType
  2259. species:
  2260. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2261. name: Macaca mulatta - Rhesus monkey
  2262. schemaKey: SpeciesType
  2263. wasGeneratedBy:
  2264. - description: Data from macaque performing multi-object working memory task. Subject
  2265. is presented with multiple objects at different locations on a screen. After a
  2266. delay, the subject is then cued with one of the objects, now displayed at the
  2267. center of the screen. Subject should respond by saccading to the location of the
  2268. cued object at its initial presentation.
  2269. identifier: '2022-05-17'
  2270. name: '2022-05-17'
  2271. schemaKey: Session
  2272. startDate: '2022-05-17T19:11:11-04:00'
  2273. - description: Metadata generated by DANDI cli
  2274. endDate: '2024-03-25T02:58:41.436091-04:00'
  2275. id: urn:uuid:2ea486ff-27e9-4558-8f3d-c06a4e08cf72
  2276. name: Metadata generation
  2277. schemaKey: Activity
  2278. startDate: '2024-03-25T02:58:25.711663-04:00'
  2279. wasAssociatedWith:
  2280. - identifier: RRID:SCR_019009
  2281. name: DANDI Command Line Interface
  2282. schemaKey: Software
  2283. url: https://github.com/dandi/dandi-cli
  2284. version: 0.61.2
  2285. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2286. access:
  2287. - schemaKey: AccessRequirements
  2288. status: dandi:OpenAccess
  2289. approach:
  2290. - name: electrophysiological approach
  2291. schemaKey: ApproachType
  2292. blobDateModified: '2024-03-24T10:40:54.998083-04:00'
  2293. contentSize: 123417854
  2294. contentUrl:
  2295. - https://api.dandiarchive.org/api/assets/d64cf6b4-75f7-4e3f-904c-ac26890c5058/download/
  2296. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/cd2/4fa/cd24fa44-d83c-4b5d-8cdf-b39b2c3fadc2
  2297. dateModified: '2024-03-25T02:59:00.698479-04:00'
  2298. digest:
  2299. dandi:dandi-etag: b0ad1b6b844d6fbc531dbc2423bf1581-2
  2300. dandi:sha2-256: 7968b13a413531161fbe80b36daaf09d0514badddf36958072764d12fa909a1a
  2301. encodingFormat: application/x-nwb
  2302. id: dandiasset:d64cf6b4-75f7-4e3f-904c-ac26890c5058
  2303. identifier: d64cf6b4-75f7-4e3f-904c-ac26890c5058
  2304. measurementTechnique:
  2305. - name: analytical technique
  2306. schemaKey: MeasurementTechniqueType
  2307. - name: surgical technique
  2308. schemaKey: MeasurementTechniqueType
  2309. - name: spike sorting technique
  2310. schemaKey: MeasurementTechniqueType
  2311. path: sub-Elgar/sub-Elgar_ses-2022-09-22_spikesorting.nwb
  2312. schemaKey: Asset
  2313. schemaVersion: 0.6.7
  2314. variableMeasured:
  2315. - schemaKey: PropertyValue
  2316. value: Units
  2317. - schemaKey: PropertyValue
  2318. value: ProcessingModule
  2319. - schemaKey: PropertyValue
  2320. value: ElectrodeGroup
  2321. wasAttributedTo:
  2322. - age:
  2323. schemaKey: PropertyValue
  2324. unitText: ISO-8601 duration
  2325. value: P11Y
  2326. valueReference:
  2327. schemaKey: PropertyValue
  2328. value: dandi:BirthReference
  2329. identifier: Elgar
  2330. schemaKey: Participant
  2331. sex:
  2332. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2333. name: Male
  2334. schemaKey: SexType
  2335. species:
  2336. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2337. name: Macaca mulatta - Rhesus monkey
  2338. schemaKey: SpeciesType
  2339. wasGeneratedBy:
  2340. - description: Data from macaque performing multi-object working memory task. Subject
  2341. is presented with multiple objects at different locations on a screen. After a
  2342. delay, the subject is then cued with one of the objects, now displayed at the
  2343. center of the screen. Subject should respond by saccading to the location of the
  2344. cued object at its initial presentation.
  2345. identifier: '2022-09-22'
  2346. name: '2022-09-22'
  2347. schemaKey: Session
  2348. startDate: '2022-09-22T23:15:04-04:00'
  2349. - description: Metadata generated by DANDI cli
  2350. endDate: '2024-03-25T02:59:00.698418-04:00'
  2351. id: urn:uuid:5aad76fa-bcec-4e22-bf3c-4edc60cf1327
  2352. name: Metadata generation
  2353. schemaKey: Activity
  2354. startDate: '2024-03-25T02:58:41.287324-04:00'
  2355. wasAssociatedWith:
  2356. - identifier: RRID:SCR_019009
  2357. name: DANDI Command Line Interface
  2358. schemaKey: Software
  2359. url: https://github.com/dandi/dandi-cli
  2360. version: 0.61.2
  2361. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2362. access:
  2363. - schemaKey: AccessRequirements
  2364. status: dandi:OpenAccess
  2365. approach:
  2366. - name: electrophysiological approach
  2367. schemaKey: ApproachType
  2368. blobDateModified: '2024-03-24T10:41:29.527128-04:00'
  2369. contentSize: 131396547
  2370. contentUrl:
  2371. - https://api.dandiarchive.org/api/assets/33b36f38-cb17-4264-980e-97f5164963cf/download/
  2372. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/c5b/0fb/c5b0fb1a-e8c3-499f-a779-223b5e97fffd
  2373. dateModified: '2024-03-25T02:59:19.629524-04:00'
  2374. digest:
  2375. dandi:dandi-etag: 84d00619ea2885d9c260bfcfe2199bf7-2
  2376. dandi:sha2-256: 95d55dff67637eac72db4c4731669b3b6760f1c19a11fe3d450365dcb72a74e3
  2377. encodingFormat: application/x-nwb
  2378. id: dandiasset:33b36f38-cb17-4264-980e-97f5164963cf
  2379. identifier: 33b36f38-cb17-4264-980e-97f5164963cf
  2380. measurementTechnique:
  2381. - name: analytical technique
  2382. schemaKey: MeasurementTechniqueType
  2383. - name: surgical technique
  2384. schemaKey: MeasurementTechniqueType
  2385. - name: spike sorting technique
  2386. schemaKey: MeasurementTechniqueType
  2387. path: sub-Elgar/sub-Elgar_ses-2022-09-23_spikesorting.nwb
  2388. schemaKey: Asset
  2389. schemaVersion: 0.6.7
  2390. variableMeasured:
  2391. - schemaKey: PropertyValue
  2392. value: Units
  2393. - schemaKey: PropertyValue
  2394. value: ProcessingModule
  2395. - schemaKey: PropertyValue
  2396. value: ElectrodeGroup
  2397. wasAttributedTo:
  2398. - age:
  2399. schemaKey: PropertyValue
  2400. unitText: ISO-8601 duration
  2401. value: P11Y
  2402. valueReference:
  2403. schemaKey: PropertyValue
  2404. value: dandi:BirthReference
  2405. identifier: Elgar
  2406. schemaKey: Participant
  2407. sex:
  2408. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2409. name: Male
  2410. schemaKey: SexType
  2411. species:
  2412. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2413. name: Macaca mulatta - Rhesus monkey
  2414. schemaKey: SpeciesType
  2415. wasGeneratedBy:
  2416. - description: Data from macaque performing multi-object working memory task. Subject
  2417. is presented with multiple objects at different locations on a screen. After a
  2418. delay, the subject is then cued with one of the objects, now displayed at the
  2419. center of the screen. Subject should respond by saccading to the location of the
  2420. cued object at its initial presentation.
  2421. identifier: '2022-09-23'
  2422. name: '2022-09-23'
  2423. schemaKey: Session
  2424. startDate: '2022-09-23T18:29:34-04:00'
  2425. - description: Metadata generated by DANDI cli
  2426. endDate: '2024-03-25T02:59:19.629477-04:00'
  2427. id: urn:uuid:a0185246-d766-473a-a7a8-8f97aa4fd539
  2428. name: Metadata generation
  2429. schemaKey: Activity
  2430. startDate: '2024-03-25T02:59:12.742259-04:00'
  2431. wasAssociatedWith:
  2432. - identifier: RRID:SCR_019009
  2433. name: DANDI Command Line Interface
  2434. schemaKey: Software
  2435. url: https://github.com/dandi/dandi-cli
  2436. version: 0.61.2
  2437. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2438. access:
  2439. - schemaKey: AccessRequirements
  2440. status: dandi:OpenAccess
  2441. approach:
  2442. - name: electrophysiological approach
  2443. schemaKey: ApproachType
  2444. blobDateModified: '2024-03-24T10:35:21.187631-04:00'
  2445. contentSize: 138517272
  2446. contentUrl:
  2447. - https://api.dandiarchive.org/api/assets/c4197aa9-08c5-4f7b-a2ee-5d153c6121fd/download/
  2448. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/372/c40/372c40a4-f521-4700-9dc2-d650b89dcd3a
  2449. dateModified: '2024-03-25T02:59:22.567574-04:00'
  2450. digest:
  2451. dandi:dandi-etag: 01edcac6a4e44063806e98994576a5d3-3
  2452. dandi:sha2-256: 7295ae2cfa214ee4dc11c556604fe44db4498d3b8aaaf70378a16181ed58f9b5
  2453. encodingFormat: application/x-nwb
  2454. id: dandiasset:c4197aa9-08c5-4f7b-a2ee-5d153c6121fd
  2455. identifier: c4197aa9-08c5-4f7b-a2ee-5d153c6121fd
  2456. measurementTechnique:
  2457. - name: analytical technique
  2458. schemaKey: MeasurementTechniqueType
  2459. - name: surgical technique
  2460. schemaKey: MeasurementTechniqueType
  2461. - name: spike sorting technique
  2462. schemaKey: MeasurementTechniqueType
  2463. path: sub-Perle/sub-Perle_ses-2022-06-17_spikesorting.nwb
  2464. schemaKey: Asset
  2465. schemaVersion: 0.6.7
  2466. variableMeasured:
  2467. - schemaKey: PropertyValue
  2468. value: Units
  2469. - schemaKey: PropertyValue
  2470. value: ProcessingModule
  2471. - schemaKey: PropertyValue
  2472. value: ElectrodeGroup
  2473. wasAttributedTo:
  2474. - age:
  2475. schemaKey: PropertyValue
  2476. unitText: ISO-8601 duration
  2477. value: P10Y
  2478. valueReference:
  2479. schemaKey: PropertyValue
  2480. value: dandi:BirthReference
  2481. identifier: Perle
  2482. schemaKey: Participant
  2483. sex:
  2484. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2485. name: Female
  2486. schemaKey: SexType
  2487. species:
  2488. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2489. name: Macaca mulatta - Rhesus monkey
  2490. schemaKey: SpeciesType
  2491. wasGeneratedBy:
  2492. - description: Data from macaque performing multi-object working memory task. Subject
  2493. is presented with multiple objects at different locations on a screen. After a
  2494. delay, the subject is then cued with one of the objects, now displayed at the
  2495. center of the screen. Subject should respond by saccading to the location of the
  2496. cued object at its initial presentation.
  2497. identifier: '2022-06-17'
  2498. name: '2022-06-17'
  2499. schemaKey: Session
  2500. startDate: '2022-06-17T14:44:54-04:00'
  2501. - description: Metadata generated by DANDI cli
  2502. endDate: '2024-03-25T02:59:22.567511-04:00'
  2503. id: urn:uuid:cc9300e6-88cf-4fe6-b46e-92119c9f110c
  2504. name: Metadata generation
  2505. schemaKey: Activity
  2506. startDate: '2024-03-25T02:59:13.796520-04:00'
  2507. wasAssociatedWith:
  2508. - identifier: RRID:SCR_019009
  2509. name: DANDI Command Line Interface
  2510. schemaKey: Software
  2511. url: https://github.com/dandi/dandi-cli
  2512. version: 0.61.2
  2513. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2514. access:
  2515. - schemaKey: AccessRequirements
  2516. status: dandi:OpenAccess
  2517. approach:
  2518. - name: electrophysiological approach
  2519. schemaKey: ApproachType
  2520. blobDateModified: '2024-03-24T10:35:50.394671-04:00'
  2521. contentSize: 112013364
  2522. contentUrl:
  2523. - https://api.dandiarchive.org/api/assets/740681f2-f4f3-4d3a-a034-b16185a25dc2/download/
  2524. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/7c6/0b0/7c60b021-a2cc-416a-bb85-5594b11261ea
  2525. dateModified: '2024-03-25T02:59:22.892387-04:00'
  2526. digest:
  2527. dandi:dandi-etag: 68bc8f7aa475f1908d291bab2575b8a5-2
  2528. dandi:sha2-256: 9f3d66fe53df147fc448ded0813a78b19e023bcae4b96a4567b3a987ed5d744d
  2529. encodingFormat: application/x-nwb
  2530. id: dandiasset:740681f2-f4f3-4d3a-a034-b16185a25dc2
  2531. identifier: 740681f2-f4f3-4d3a-a034-b16185a25dc2
  2532. measurementTechnique:
  2533. - name: analytical technique
  2534. schemaKey: MeasurementTechniqueType
  2535. - name: surgical technique
  2536. schemaKey: MeasurementTechniqueType
  2537. - name: spike sorting technique
  2538. schemaKey: MeasurementTechniqueType
  2539. path: sub-Perle/sub-Perle_ses-2022-06-18_spikesorting.nwb
  2540. schemaKey: Asset
  2541. schemaVersion: 0.6.7
  2542. variableMeasured:
  2543. - schemaKey: PropertyValue
  2544. value: Units
  2545. - schemaKey: PropertyValue
  2546. value: ProcessingModule
  2547. - schemaKey: PropertyValue
  2548. value: ElectrodeGroup
  2549. wasAttributedTo:
  2550. - age:
  2551. schemaKey: PropertyValue
  2552. unitText: ISO-8601 duration
  2553. value: P10Y
  2554. valueReference:
  2555. schemaKey: PropertyValue
  2556. value: dandi:BirthReference
  2557. identifier: Perle
  2558. schemaKey: Participant
  2559. sex:
  2560. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2561. name: Female
  2562. schemaKey: SexType
  2563. species:
  2564. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2565. name: Macaca mulatta - Rhesus monkey
  2566. schemaKey: SpeciesType
  2567. wasGeneratedBy:
  2568. - description: Data from macaque performing multi-object working memory task. Subject
  2569. is presented with multiple objects at different locations on a screen. After a
  2570. delay, the subject is then cued with one of the objects, now displayed at the
  2571. center of the screen. Subject should respond by saccading to the location of the
  2572. cued object at its initial presentation.
  2573. identifier: '2022-06-18'
  2574. name: '2022-06-18'
  2575. schemaKey: Session
  2576. startDate: '2022-06-18T15:12:05-04:00'
  2577. - description: Metadata generated by DANDI cli
  2578. endDate: '2024-03-25T02:59:22.892346-04:00'
  2579. id: urn:uuid:d6f95724-093f-4471-906f-146df96cb1ed
  2580. name: Metadata generation
  2581. schemaKey: Activity
  2582. startDate: '2024-03-25T02:59:13.940295-04:00'
  2583. wasAssociatedWith:
  2584. - identifier: RRID:SCR_019009
  2585. name: DANDI Command Line Interface
  2586. schemaKey: Software
  2587. url: https://github.com/dandi/dandi-cli
  2588. version: 0.61.2
  2589. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2590. access:
  2591. - schemaKey: AccessRequirements
  2592. status: dandi:OpenAccess
  2593. approach:
  2594. - name: behavioral approach
  2595. schemaKey: ApproachType
  2596. blobDateModified: '2024-03-26T21:11:40.992144-04:00'
  2597. contentSize: 133432917
  2598. contentUrl:
  2599. - https://api.dandiarchive.org/api/assets/b061fc15-622f-441b-9441-8ed51a323ded/download/
  2600. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/bb0/9cf/bb09cf58-c97b-46c7-af13-77d67773cb33
  2601. dateModified: '2024-03-26T21:18:43.708372-04:00'
  2602. digest:
  2603. dandi:dandi-etag: 0bea07ec39a5534b97caa0025953142b-2
  2604. dandi:sha2-256: 6cad6e6219fa3d6c7d4017f2c4aa403acfc657da166fc3486482d5ef8446a8f4
  2605. encodingFormat: application/x-nwb
  2606. id: dandiasset:b061fc15-622f-441b-9441-8ed51a323ded
  2607. identifier: b061fc15-622f-441b-9441-8ed51a323ded
  2608. measurementTechnique:
  2609. - name: behavioral technique
  2610. schemaKey: MeasurementTechniqueType
  2611. - name: analytical technique
  2612. schemaKey: MeasurementTechniqueType
  2613. path: sub-Elgar/sub-Elgar_ses-2022-05-02_behavior+task.nwb
  2614. schemaKey: Asset
  2615. schemaVersion: 0.6.7
  2616. variableMeasured:
  2617. - schemaKey: PropertyValue
  2618. value: SpatialSeries
  2619. - schemaKey: PropertyValue
  2620. value: ProcessingModule
  2621. wasAttributedTo:
  2622. - age:
  2623. schemaKey: PropertyValue
  2624. unitText: ISO-8601 duration
  2625. value: P11Y
  2626. valueReference:
  2627. schemaKey: PropertyValue
  2628. value: dandi:BirthReference
  2629. identifier: Elgar
  2630. schemaKey: Participant
  2631. sex:
  2632. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2633. name: Male
  2634. schemaKey: SexType
  2635. species:
  2636. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2637. name: Macaca mulatta - Rhesus monkey
  2638. schemaKey: SpeciesType
  2639. wasGeneratedBy:
  2640. - description: Data from macaque performing multi-object working memory task. Subject
  2641. is presented with multiple objects at different locations on a screen. After a
  2642. delay, the subject is then cued with one of the objects, now displayed at the
  2643. center of the screen. Subject should respond by saccading to the location of the
  2644. cued object at its initial presentation.
  2645. identifier: '2022-05-02'
  2646. name: '2022-05-02'
  2647. schemaKey: Session
  2648. startDate: '2022-05-02T17:17:45-04:00'
  2649. - description: Metadata generated by DANDI cli
  2650. endDate: '2024-03-26T21:18:43.708327-04:00'
  2651. id: urn:uuid:b06a7011-3e31-4c72-b58b-0aff8a445aaa
  2652. name: Metadata generation
  2653. schemaKey: Activity
  2654. startDate: '2024-03-26T21:18:28.961827-04:00'
  2655. wasAssociatedWith:
  2656. - identifier: RRID:SCR_019009
  2657. name: DANDI Command Line Interface
  2658. schemaKey: Software
  2659. url: https://github.com/dandi/dandi-cli
  2660. version: 0.61.2
  2661. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2662. access:
  2663. - schemaKey: AccessRequirements
  2664. status: dandi:OpenAccess
  2665. approach:
  2666. - name: behavioral approach
  2667. schemaKey: ApproachType
  2668. blobDateModified: '2024-03-26T21:11:37.646189-04:00'
  2669. contentSize: 142523172
  2670. contentUrl:
  2671. - https://api.dandiarchive.org/api/assets/c748b36e-17fb-4ffb-aab7-ea7b43264348/download/
  2672. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/bbd/3b2/bbd3b283-f55f-4b67-9fa0-7f86c4667576
  2673. dateModified: '2024-03-26T21:18:52.753331-04:00'
  2674. digest:
  2675. dandi:dandi-etag: e72ee72ae3442c53ba4addad29f344e2-3
  2676. dandi:sha2-256: 840c697acb20faeed8aa2eeda9d418bee678eb031ff076d7f794b6fd7a718d6d
  2677. encodingFormat: application/x-nwb
  2678. id: dandiasset:c748b36e-17fb-4ffb-aab7-ea7b43264348
  2679. identifier: c748b36e-17fb-4ffb-aab7-ea7b43264348
  2680. measurementTechnique:
  2681. - name: behavioral technique
  2682. schemaKey: MeasurementTechniqueType
  2683. - name: analytical technique
  2684. schemaKey: MeasurementTechniqueType
  2685. path: sub-Elgar/sub-Elgar_ses-2022-05-07_behavior+task.nwb
  2686. schemaKey: Asset
  2687. schemaVersion: 0.6.7
  2688. variableMeasured:
  2689. - schemaKey: PropertyValue
  2690. value: SpatialSeries
  2691. - schemaKey: PropertyValue
  2692. value: ProcessingModule
  2693. wasAttributedTo:
  2694. - age:
  2695. schemaKey: PropertyValue
  2696. unitText: ISO-8601 duration
  2697. value: P11Y
  2698. valueReference:
  2699. schemaKey: PropertyValue
  2700. value: dandi:BirthReference
  2701. identifier: Elgar
  2702. schemaKey: Participant
  2703. sex:
  2704. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2705. name: Male
  2706. schemaKey: SexType
  2707. species:
  2708. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2709. name: Macaca mulatta - Rhesus monkey
  2710. schemaKey: SpeciesType
  2711. wasGeneratedBy:
  2712. - description: Data from macaque performing multi-object working memory task. Subject
  2713. is presented with multiple objects at different locations on a screen. After a
  2714. delay, the subject is then cued with one of the objects, now displayed at the
  2715. center of the screen. Subject should respond by saccading to the location of the
  2716. cued object at its initial presentation.
  2717. identifier: '2022-05-07'
  2718. name: '2022-05-07'
  2719. schemaKey: Session
  2720. startDate: '2022-05-07T16:43:56-04:00'
  2721. - description: Metadata generated by DANDI cli
  2722. endDate: '2024-03-26T21:18:52.753282-04:00'
  2723. id: urn:uuid:96ed666b-8582-4e2d-af21-31b542685773
  2724. name: Metadata generation
  2725. schemaKey: Activity
  2726. startDate: '2024-03-26T21:18:33.763110-04:00'
  2727. wasAssociatedWith:
  2728. - identifier: RRID:SCR_019009
  2729. name: DANDI Command Line Interface
  2730. schemaKey: Software
  2731. url: https://github.com/dandi/dandi-cli
  2732. version: 0.61.2
  2733. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2734. access:
  2735. - schemaKey: AccessRequirements
  2736. status: dandi:OpenAccess
  2737. approach:
  2738. - name: behavioral approach
  2739. schemaKey: ApproachType
  2740. blobDateModified: '2024-03-26T21:11:26.899336-04:00'
  2741. contentSize: 148119211
  2742. contentUrl:
  2743. - https://api.dandiarchive.org/api/assets/f878b49c-82d7-4291-a810-64a38eade116/download/
  2744. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/147/add/147add18-6cc1-41b3-ab48-1a7faa68cbad
  2745. dateModified: '2024-03-26T21:18:57.716761-04:00'
  2746. digest:
  2747. dandi:dandi-etag: 42ad9917ea2171ccdcc14bd8a7b7581f-3
  2748. dandi:sha2-256: 193607c08a03c7befdb278fbc44caeeb1529a46f7b91814887f8985a6bebdac2
  2749. encodingFormat: application/x-nwb
  2750. id: dandiasset:f878b49c-82d7-4291-a810-64a38eade116
  2751. identifier: f878b49c-82d7-4291-a810-64a38eade116
  2752. measurementTechnique:
  2753. - name: behavioral technique
  2754. schemaKey: MeasurementTechniqueType
  2755. - name: analytical technique
  2756. schemaKey: MeasurementTechniqueType
  2757. path: sub-Elgar/sub-Elgar_ses-2022-05-05_behavior+task.nwb
  2758. schemaKey: Asset
  2759. schemaVersion: 0.6.7
  2760. variableMeasured:
  2761. - schemaKey: PropertyValue
  2762. value: SpatialSeries
  2763. - schemaKey: PropertyValue
  2764. value: ProcessingModule
  2765. wasAttributedTo:
  2766. - age:
  2767. schemaKey: PropertyValue
  2768. unitText: ISO-8601 duration
  2769. value: P11Y
  2770. valueReference:
  2771. schemaKey: PropertyValue
  2772. value: dandi:BirthReference
  2773. identifier: Elgar
  2774. schemaKey: Participant
  2775. sex:
  2776. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2777. name: Male
  2778. schemaKey: SexType
  2779. species:
  2780. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2781. name: Macaca mulatta - Rhesus monkey
  2782. schemaKey: SpeciesType
  2783. wasGeneratedBy:
  2784. - description: Data from macaque performing multi-object working memory task. Subject
  2785. is presented with multiple objects at different locations on a screen. After a
  2786. delay, the subject is then cued with one of the objects, now displayed at the
  2787. center of the screen. Subject should respond by saccading to the location of the
  2788. cued object at its initial presentation.
  2789. identifier: '2022-05-05'
  2790. name: '2022-05-05'
  2791. schemaKey: Session
  2792. startDate: '2022-05-05T20:36:48-04:00'
  2793. - description: Metadata generated by DANDI cli
  2794. endDate: '2024-03-26T21:18:57.716683-04:00'
  2795. id: urn:uuid:246e7a43-2a2c-434b-beeb-f090d10a3666
  2796. name: Metadata generation
  2797. schemaKey: Activity
  2798. startDate: '2024-03-26T21:18:41.383826-04:00'
  2799. wasAssociatedWith:
  2800. - identifier: RRID:SCR_019009
  2801. name: DANDI Command Line Interface
  2802. schemaKey: Software
  2803. url: https://github.com/dandi/dandi-cli
  2804. version: 0.61.2
  2805. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2806. access:
  2807. - schemaKey: AccessRequirements
  2808. status: dandi:OpenAccess
  2809. approach:
  2810. - name: behavioral approach
  2811. schemaKey: ApproachType
  2812. blobDateModified: '2024-03-26T21:11:43.966103-04:00'
  2813. contentSize: 156820013
  2814. contentUrl:
  2815. - https://api.dandiarchive.org/api/assets/df7cb2c9-5e7f-4ce8-b64a-3ea69073e108/download/
  2816. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/d8d/8c1/d8d8c103-ea23-44a3-9adc-57f72a66d887
  2817. dateModified: '2024-03-26T21:19:01.045191-04:00'
  2818. digest:
  2819. dandi:dandi-etag: a119146ff6066e5264d621f91f20f77b-3
  2820. dandi:sha2-256: dcd4b9fe4af57b2f4e850db5dd6ad5b5bd20525d1fcaecb81e47cbd0afff2c04
  2821. encodingFormat: application/x-nwb
  2822. id: dandiasset:df7cb2c9-5e7f-4ce8-b64a-3ea69073e108
  2823. identifier: df7cb2c9-5e7f-4ce8-b64a-3ea69073e108
  2824. measurementTechnique:
  2825. - name: behavioral technique
  2826. schemaKey: MeasurementTechniqueType
  2827. - name: analytical technique
  2828. schemaKey: MeasurementTechniqueType
  2829. path: sub-Elgar/sub-Elgar_ses-2022-05-06_behavior+task.nwb
  2830. schemaKey: Asset
  2831. schemaVersion: 0.6.7
  2832. variableMeasured:
  2833. - schemaKey: PropertyValue
  2834. value: SpatialSeries
  2835. - schemaKey: PropertyValue
  2836. value: ProcessingModule
  2837. wasAttributedTo:
  2838. - age:
  2839. schemaKey: PropertyValue
  2840. unitText: ISO-8601 duration
  2841. value: P11Y
  2842. valueReference:
  2843. schemaKey: PropertyValue
  2844. value: dandi:BirthReference
  2845. identifier: Elgar
  2846. schemaKey: Participant
  2847. sex:
  2848. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2849. name: Male
  2850. schemaKey: SexType
  2851. species:
  2852. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2853. name: Macaca mulatta - Rhesus monkey
  2854. schemaKey: SpeciesType
  2855. wasGeneratedBy:
  2856. - description: Data from macaque performing multi-object working memory task. Subject
  2857. is presented with multiple objects at different locations on a screen. After a
  2858. delay, the subject is then cued with one of the objects, now displayed at the
  2859. center of the screen. Subject should respond by saccading to the location of the
  2860. cued object at its initial presentation.
  2861. identifier: '2022-05-06'
  2862. name: '2022-05-06'
  2863. schemaKey: Session
  2864. startDate: '2022-05-06T21:01:03-04:00'
  2865. - description: Metadata generated by DANDI cli
  2866. endDate: '2024-03-26T21:19:01.045149-04:00'
  2867. id: urn:uuid:d89dc304-8d03-4e0d-8de0-be0edd1c391f
  2868. name: Metadata generation
  2869. schemaKey: Activity
  2870. startDate: '2024-03-26T21:18:43.049805-04:00'
  2871. wasAssociatedWith:
  2872. - identifier: RRID:SCR_019009
  2873. name: DANDI Command Line Interface
  2874. schemaKey: Software
  2875. url: https://github.com/dandi/dandi-cli
  2876. version: 0.61.2
  2877. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2878. access:
  2879. - schemaKey: AccessRequirements
  2880. status: dandi:OpenAccess
  2881. approach:
  2882. - name: behavioral approach
  2883. schemaKey: ApproachType
  2884. blobDateModified: '2024-03-26T21:11:32.852255-04:00'
  2885. contentSize: 180395138
  2886. contentUrl:
  2887. - https://api.dandiarchive.org/api/assets/8ce5a2a0-fe4f-42cc-9f5c-0156bde7b60f/download/
  2888. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/6d2/1c7/6d21c7f2-d914-4cd9-a8e9-d3cb0eb90110
  2889. dateModified: '2024-03-26T21:19:00.030210-04:00'
  2890. digest:
  2891. dandi:dandi-etag: e4e7f81fbc5bead351d8c6f186a53b2a-3
  2892. dandi:sha2-256: ac3f639babbe6093ede42502b885585bd3bc9d69204e6eab1457e97002e4a62c
  2893. encodingFormat: application/x-nwb
  2894. id: dandiasset:8ce5a2a0-fe4f-42cc-9f5c-0156bde7b60f
  2895. identifier: 8ce5a2a0-fe4f-42cc-9f5c-0156bde7b60f
  2896. measurementTechnique:
  2897. - name: behavioral technique
  2898. schemaKey: MeasurementTechniqueType
  2899. - name: analytical technique
  2900. schemaKey: MeasurementTechniqueType
  2901. path: sub-Elgar/sub-Elgar_ses-2022-05-04_behavior+task.nwb
  2902. schemaKey: Asset
  2903. schemaVersion: 0.6.7
  2904. variableMeasured:
  2905. - schemaKey: PropertyValue
  2906. value: SpatialSeries
  2907. - schemaKey: PropertyValue
  2908. value: ProcessingModule
  2909. wasAttributedTo:
  2910. - age:
  2911. schemaKey: PropertyValue
  2912. unitText: ISO-8601 duration
  2913. value: P11Y
  2914. valueReference:
  2915. schemaKey: PropertyValue
  2916. value: dandi:BirthReference
  2917. identifier: Elgar
  2918. schemaKey: Participant
  2919. sex:
  2920. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2921. name: Male
  2922. schemaKey: SexType
  2923. species:
  2924. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2925. name: Macaca mulatta - Rhesus monkey
  2926. schemaKey: SpeciesType
  2927. wasGeneratedBy:
  2928. - description: Data from macaque performing multi-object working memory task. Subject
  2929. is presented with multiple objects at different locations on a screen. After a
  2930. delay, the subject is then cued with one of the objects, now displayed at the
  2931. center of the screen. Subject should respond by saccading to the location of the
  2932. cued object at its initial presentation.
  2933. identifier: '2022-05-04'
  2934. name: '2022-05-04'
  2935. schemaKey: Session
  2936. startDate: '2022-05-04T15:46:07-04:00'
  2937. - description: Metadata generated by DANDI cli
  2938. endDate: '2024-03-26T21:19:00.030150-04:00'
  2939. id: urn:uuid:77fc6ca2-312f-4c5f-9b9b-80b82dfad3ca
  2940. name: Metadata generation
  2941. schemaKey: Activity
  2942. startDate: '2024-03-26T21:18:40.232898-04:00'
  2943. wasAssociatedWith:
  2944. - identifier: RRID:SCR_019009
  2945. name: DANDI Command Line Interface
  2946. schemaKey: Software
  2947. url: https://github.com/dandi/dandi-cli
  2948. version: 0.61.2
  2949. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2950. access:
  2951. - schemaKey: AccessRequirements
  2952. status: dandi:OpenAccess
  2953. approach:
  2954. - name: behavioral approach
  2955. schemaKey: ApproachType
  2956. blobDateModified: '2024-03-26T21:11:18.947445-04:00'
  2957. contentSize: 150603862
  2958. contentUrl:
  2959. - https://api.dandiarchive.org/api/assets/131b4e20-815c-44b6-833b-8f3ea9d2c2e4/download/
  2960. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/f7e/9f0/f7e9f00b-4c1b-470c-97d8-6ae70c530fef
  2961. dateModified: '2024-03-26T21:19:45.895532-04:00'
  2962. digest:
  2963. dandi:dandi-etag: 33f58e30a56c2bfb9a4444d0fb2e1ea7-3
  2964. dandi:sha2-256: 3523357a1aca2a345c4258c178b8f4edfbf5710b33b020b7d4a5f932b972596d
  2965. encodingFormat: application/x-nwb
  2966. id: dandiasset:131b4e20-815c-44b6-833b-8f3ea9d2c2e4
  2967. identifier: 131b4e20-815c-44b6-833b-8f3ea9d2c2e4
  2968. measurementTechnique:
  2969. - name: behavioral technique
  2970. schemaKey: MeasurementTechniqueType
  2971. - name: analytical technique
  2972. schemaKey: MeasurementTechniqueType
  2973. path: sub-Elgar/sub-Elgar_ses-2022-05-08_behavior+task.nwb
  2974. schemaKey: Asset
  2975. schemaVersion: 0.6.7
  2976. variableMeasured:
  2977. - schemaKey: PropertyValue
  2978. value: SpatialSeries
  2979. - schemaKey: PropertyValue
  2980. value: ProcessingModule
  2981. wasAttributedTo:
  2982. - age:
  2983. schemaKey: PropertyValue
  2984. unitText: ISO-8601 duration
  2985. value: P11Y
  2986. valueReference:
  2987. schemaKey: PropertyValue
  2988. value: dandi:BirthReference
  2989. identifier: Elgar
  2990. schemaKey: Participant
  2991. sex:
  2992. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2993. name: Male
  2994. schemaKey: SexType
  2995. species:
  2996. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2997. name: Macaca mulatta - Rhesus monkey
  2998. schemaKey: SpeciesType
  2999. wasGeneratedBy:
  3000. - description: Data from macaque performing multi-object working memory task. Subject
  3001. is presented with multiple objects at different locations on a screen. After a
  3002. delay, the subject is then cued with one of the objects, now displayed at the
  3003. center of the screen. Subject should respond by saccading to the location of the
  3004. cued object at its initial presentation.
  3005. identifier: '2022-05-08'
  3006. name: '2022-05-08'
  3007. schemaKey: Session
  3008. startDate: '2022-05-08T18:15:58-04:00'
  3009. - description: Metadata generated by DANDI cli
  3010. endDate: '2024-03-26T21:19:45.895450-04:00'
  3011. id: urn:uuid:c25f0f9f-b916-4ec9-8ce4-0cb44eab09b4
  3012. name: Metadata generation
  3013. schemaKey: Activity
  3014. startDate: '2024-03-26T21:19:22.397587-04:00'
  3015. wasAssociatedWith:
  3016. - identifier: RRID:SCR_019009
  3017. name: DANDI Command Line Interface
  3018. schemaKey: Software
  3019. url: https://github.com/dandi/dandi-cli
  3020. version: 0.61.2
  3021. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3022. access:
  3023. - schemaKey: AccessRequirements
  3024. status: dandi:OpenAccess
  3025. approach:
  3026. - name: behavioral approach
  3027. schemaKey: ApproachType
  3028. blobDateModified: '2024-03-26T21:11:23.587381-04:00'
  3029. contentSize: 145485463
  3030. contentUrl:
  3031. - https://api.dandiarchive.org/api/assets/380fed08-40af-49a0-af4e-23c77033009e/download/
  3032. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/9e5/47a/9e547af5-b36f-47b5-89c4-4d726a2404aa
  3033. dateModified: '2024-03-26T21:19:47.563838-04:00'
  3034. digest:
  3035. dandi:dandi-etag: b517871506ee1226da5fd4d1cba9e763-3
  3036. dandi:sha2-256: ad358a8620b4fc9faef166124966edf7705acf37181ef19adf804f25418593cc
  3037. encodingFormat: application/x-nwb
  3038. id: dandiasset:380fed08-40af-49a0-af4e-23c77033009e
  3039. identifier: 380fed08-40af-49a0-af4e-23c77033009e
  3040. measurementTechnique:
  3041. - name: behavioral technique
  3042. schemaKey: MeasurementTechniqueType
  3043. - name: analytical technique
  3044. schemaKey: MeasurementTechniqueType
  3045. path: sub-Elgar/sub-Elgar_ses-2022-05-10_behavior+task.nwb
  3046. schemaKey: Asset
  3047. schemaVersion: 0.6.7
  3048. variableMeasured:
  3049. - schemaKey: PropertyValue
  3050. value: SpatialSeries
  3051. - schemaKey: PropertyValue
  3052. value: ProcessingModule
  3053. wasAttributedTo:
  3054. - age:
  3055. schemaKey: PropertyValue
  3056. unitText: ISO-8601 duration
  3057. value: P11Y
  3058. valueReference:
  3059. schemaKey: PropertyValue
  3060. value: dandi:BirthReference
  3061. identifier: Elgar
  3062. schemaKey: Participant
  3063. sex:
  3064. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3065. name: Male
  3066. schemaKey: SexType
  3067. species:
  3068. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3069. name: Macaca mulatta - Rhesus monkey
  3070. schemaKey: SpeciesType
  3071. wasGeneratedBy:
  3072. - description: Data from macaque performing multi-object working memory task. Subject
  3073. is presented with multiple objects at different locations on a screen. After a
  3074. delay, the subject is then cued with one of the objects, now displayed at the
  3075. center of the screen. Subject should respond by saccading to the location of the
  3076. cued object at its initial presentation.
  3077. identifier: '2022-05-10'
  3078. name: '2022-05-10'
  3079. schemaKey: Session
  3080. startDate: '2022-05-10T17:46:16-04:00'
  3081. - description: Metadata generated by DANDI cli
  3082. endDate: '2024-03-26T21:19:47.563799-04:00'
  3083. id: urn:uuid:6cd06c93-5349-47a9-acff-1ec102e2439c
  3084. name: Metadata generation
  3085. schemaKey: Activity
  3086. startDate: '2024-03-26T21:19:26.738043-04:00'
  3087. wasAssociatedWith:
  3088. - identifier: RRID:SCR_019009
  3089. name: DANDI Command Line Interface
  3090. schemaKey: Software
  3091. url: https://github.com/dandi/dandi-cli
  3092. version: 0.61.2
  3093. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3094. access:
  3095. - schemaKey: AccessRequirements
  3096. status: dandi:OpenAccess
  3097. approach:
  3098. - name: behavioral approach
  3099. schemaKey: ApproachType
  3100. blobDateModified: '2024-03-26T21:11:16.540478-04:00'
  3101. contentSize: 142766830
  3102. contentUrl:
  3103. - https://api.dandiarchive.org/api/assets/2affa281-de45-4107-a7c4-5cfc22581c55/download/
  3104. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/277/0d3/2770d340-1cd5-4b6c-8be0-2512c93de72b
  3105. dateModified: '2024-03-26T21:20:06.283503-04:00'
  3106. digest:
  3107. dandi:dandi-etag: 647afeffa3cc2fbe43f1f57bd82c8ad5-3
  3108. dandi:sha2-256: 3de67ec4d30ca451c116e52a420a38e81f07eb1b7397d6f5c639cd0db207d9f8
  3109. encodingFormat: application/x-nwb
  3110. id: dandiasset:2affa281-de45-4107-a7c4-5cfc22581c55
  3111. identifier: 2affa281-de45-4107-a7c4-5cfc22581c55
  3112. measurementTechnique:
  3113. - name: behavioral technique
  3114. schemaKey: MeasurementTechniqueType
  3115. - name: analytical technique
  3116. schemaKey: MeasurementTechniqueType
  3117. path: sub-Elgar/sub-Elgar_ses-2022-05-12_behavior+task.nwb
  3118. schemaKey: Asset
  3119. schemaVersion: 0.6.7
  3120. variableMeasured:
  3121. - schemaKey: PropertyValue
  3122. value: SpatialSeries
  3123. - schemaKey: PropertyValue
  3124. value: ProcessingModule
  3125. wasAttributedTo:
  3126. - age:
  3127. schemaKey: PropertyValue
  3128. unitText: ISO-8601 duration
  3129. value: P11Y
  3130. valueReference:
  3131. schemaKey: PropertyValue
  3132. value: dandi:BirthReference
  3133. identifier: Elgar
  3134. schemaKey: Participant
  3135. sex:
  3136. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3137. name: Male
  3138. schemaKey: SexType
  3139. species:
  3140. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3141. name: Macaca mulatta - Rhesus monkey
  3142. schemaKey: SpeciesType
  3143. wasGeneratedBy:
  3144. - description: Data from macaque performing multi-object working memory task. Subject
  3145. is presented with multiple objects at different locations on a screen. After a
  3146. delay, the subject is then cued with one of the objects, now displayed at the
  3147. center of the screen. Subject should respond by saccading to the location of the
  3148. cued object at its initial presentation.
  3149. identifier: '2022-05-12'
  3150. name: '2022-05-12'
  3151. schemaKey: Session
  3152. startDate: '2022-05-12T20:15:48-04:00'
  3153. - description: Metadata generated by DANDI cli
  3154. endDate: '2024-03-26T21:20:06.283462-04:00'
  3155. id: urn:uuid:d86528c4-aed2-4dc6-a0e7-fb97ec6593e7
  3156. name: Metadata generation
  3157. schemaKey: Activity
  3158. startDate: '2024-03-26T21:19:44.223710-04:00'
  3159. wasAssociatedWith:
  3160. - identifier: RRID:SCR_019009
  3161. name: DANDI Command Line Interface
  3162. schemaKey: Software
  3163. url: https://github.com/dandi/dandi-cli
  3164. version: 0.61.2
  3165. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3166. access:
  3167. - schemaKey: AccessRequirements
  3168. status: dandi:OpenAccess
  3169. approach:
  3170. - name: behavioral approach
  3171. schemaKey: ApproachType
  3172. blobDateModified: '2024-03-26T21:11:10.992553-04:00'
  3173. contentSize: 156724541
  3174. contentUrl:
  3175. - https://api.dandiarchive.org/api/assets/6d26f41a-fe9f-477c-b21b-c58fa14f5f7b/download/
  3176. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/c67/5bb/c675bbb8-8f53-45e7-8fda-e29a304c3a10
  3177. dateModified: '2024-03-26T21:20:06.940181-04:00'
  3178. digest:
  3179. dandi:dandi-etag: 48527ec7a1a476d50e99e9909324998e-3
  3180. dandi:sha2-256: 5045c6b61f109f595ae0bf78dcb9077ec06b4e571a9c6dbcc81b31cc04e0991d
  3181. encodingFormat: application/x-nwb
  3182. id: dandiasset:6d26f41a-fe9f-477c-b21b-c58fa14f5f7b
  3183. identifier: 6d26f41a-fe9f-477c-b21b-c58fa14f5f7b
  3184. measurementTechnique:
  3185. - name: behavioral technique
  3186. schemaKey: MeasurementTechniqueType
  3187. - name: analytical technique
  3188. schemaKey: MeasurementTechniqueType
  3189. path: sub-Elgar/sub-Elgar_ses-2022-05-16_behavior+task.nwb
  3190. schemaKey: Asset
  3191. schemaVersion: 0.6.7
  3192. variableMeasured:
  3193. - schemaKey: PropertyValue
  3194. value: SpatialSeries
  3195. - schemaKey: PropertyValue
  3196. value: ProcessingModule
  3197. wasAttributedTo:
  3198. - age:
  3199. schemaKey: PropertyValue
  3200. unitText: ISO-8601 duration
  3201. value: P11Y
  3202. valueReference:
  3203. schemaKey: PropertyValue
  3204. value: dandi:BirthReference
  3205. identifier: Elgar
  3206. schemaKey: Participant
  3207. sex:
  3208. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3209. name: Male
  3210. schemaKey: SexType
  3211. species:
  3212. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3213. name: Macaca mulatta - Rhesus monkey
  3214. schemaKey: SpeciesType
  3215. wasGeneratedBy:
  3216. - description: Data from macaque performing multi-object working memory task. Subject
  3217. is presented with multiple objects at different locations on a screen. After a
  3218. delay, the subject is then cued with one of the objects, now displayed at the
  3219. center of the screen. Subject should respond by saccading to the location of the
  3220. cued object at its initial presentation.
  3221. identifier: '2022-05-16'
  3222. name: '2022-05-16'
  3223. schemaKey: Session
  3224. startDate: '2022-05-16T19:29:03-04:00'
  3225. - description: Metadata generated by DANDI cli
  3226. endDate: '2024-03-26T21:20:06.940139-04:00'
  3227. id: urn:uuid:15463e81-799c-4d8b-bbfd-5b6c02716638
  3228. name: Metadata generation
  3229. schemaKey: Activity
  3230. startDate: '2024-03-26T21:19:47.137838-04:00'
  3231. wasAssociatedWith:
  3232. - identifier: RRID:SCR_019009
  3233. name: DANDI Command Line Interface
  3234. schemaKey: Software
  3235. url: https://github.com/dandi/dandi-cli
  3236. version: 0.61.2
  3237. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3238. access:
  3239. - schemaKey: AccessRequirements
  3240. status: dandi:OpenAccess
  3241. approach:
  3242. - name: behavioral approach
  3243. schemaKey: ApproachType
  3244. blobDateModified: '2024-03-26T21:11:21.412411-04:00'
  3245. contentSize: 141180386
  3246. contentUrl:
  3247. - https://api.dandiarchive.org/api/assets/65f84aa2-f3d2-4382-8daa-2edc7d937a97/download/
  3248. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/942/a92/942a923b-9556-4083-9729-0b4fea29c232
  3249. dateModified: '2024-03-26T21:20:09.276606-04:00'
  3250. digest:
  3251. dandi:dandi-etag: a59e044d5049efc2673342b3a262e8b0-3
  3252. dandi:sha2-256: 3da8da5732097b3026537ec3cd47e3a988c327bcbb65471dcfd0f260e359d849
  3253. encodingFormat: application/x-nwb
  3254. id: dandiasset:65f84aa2-f3d2-4382-8daa-2edc7d937a97
  3255. identifier: 65f84aa2-f3d2-4382-8daa-2edc7d937a97
  3256. measurementTechnique:
  3257. - name: behavioral technique
  3258. schemaKey: MeasurementTechniqueType
  3259. - name: analytical technique
  3260. schemaKey: MeasurementTechniqueType
  3261. path: sub-Elgar/sub-Elgar_ses-2022-05-14_behavior+task.nwb
  3262. schemaKey: Asset
  3263. schemaVersion: 0.6.7
  3264. variableMeasured:
  3265. - schemaKey: PropertyValue
  3266. value: SpatialSeries
  3267. - schemaKey: PropertyValue
  3268. value: ProcessingModule
  3269. wasAttributedTo:
  3270. - age:
  3271. schemaKey: PropertyValue
  3272. unitText: ISO-8601 duration
  3273. value: P11Y
  3274. valueReference:
  3275. schemaKey: PropertyValue
  3276. value: dandi:BirthReference
  3277. identifier: Elgar
  3278. schemaKey: Participant
  3279. sex:
  3280. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3281. name: Male
  3282. schemaKey: SexType
  3283. species:
  3284. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3285. name: Macaca mulatta - Rhesus monkey
  3286. schemaKey: SpeciesType
  3287. wasGeneratedBy:
  3288. - description: Data from macaque performing multi-object working memory task. Subject
  3289. is presented with multiple objects at different locations on a screen. After a
  3290. delay, the subject is then cued with one of the objects, now displayed at the
  3291. center of the screen. Subject should respond by saccading to the location of the
  3292. cued object at its initial presentation.
  3293. identifier: '2022-05-14'
  3294. name: '2022-05-14'
  3295. schemaKey: Session
  3296. startDate: '2022-05-14T20:08:58-04:00'
  3297. - description: Metadata generated by DANDI cli
  3298. endDate: '2024-03-26T21:20:09.276490-04:00'
  3299. id: urn:uuid:3c285163-fdaf-4546-8e00-9096ca21cb17
  3300. name: Metadata generation
  3301. schemaKey: Activity
  3302. startDate: '2024-03-26T21:19:49.266803-04:00'
  3303. wasAssociatedWith:
  3304. - identifier: RRID:SCR_019009
  3305. name: DANDI Command Line Interface
  3306. schemaKey: Software
  3307. url: https://github.com/dandi/dandi-cli
  3308. version: 0.61.2
  3309. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3310. access:
  3311. - schemaKey: AccessRequirements
  3312. status: dandi:OpenAccess
  3313. approach:
  3314. - name: behavioral approach
  3315. schemaKey: ApproachType
  3316. blobDateModified: '2024-03-26T21:11:14.283509-04:00'
  3317. contentSize: 185901914
  3318. contentUrl:
  3319. - https://api.dandiarchive.org/api/assets/0123a287-1a8f-4fb4-81fb-2d81b6a37ea6/download/
  3320. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/dba/e63/dbae63b9-2400-4486-9792-f28983a5ce54
  3321. dateModified: '2024-03-26T21:20:55.501672-04:00'
  3322. digest:
  3323. dandi:dandi-etag: fbbe93dc8df029dd68f501bd5133c09b-3
  3324. dandi:sha2-256: 4559cdb11b80b8869a120e51521fdb05bd2496f5917ea1dd931820e19a1cd3e1
  3325. encodingFormat: application/x-nwb
  3326. id: dandiasset:0123a287-1a8f-4fb4-81fb-2d81b6a37ea6
  3327. identifier: 0123a287-1a8f-4fb4-81fb-2d81b6a37ea6
  3328. measurementTechnique:
  3329. - name: behavioral technique
  3330. schemaKey: MeasurementTechniqueType
  3331. - name: analytical technique
  3332. schemaKey: MeasurementTechniqueType
  3333. path: sub-Elgar/sub-Elgar_ses-2022-05-17_behavior+task.nwb
  3334. schemaKey: Asset
  3335. schemaVersion: 0.6.7
  3336. variableMeasured:
  3337. - schemaKey: PropertyValue
  3338. value: SpatialSeries
  3339. - schemaKey: PropertyValue
  3340. value: ProcessingModule
  3341. wasAttributedTo:
  3342. - age:
  3343. schemaKey: PropertyValue
  3344. unitText: ISO-8601 duration
  3345. value: P11Y
  3346. valueReference:
  3347. schemaKey: PropertyValue
  3348. value: dandi:BirthReference
  3349. identifier: Elgar
  3350. schemaKey: Participant
  3351. sex:
  3352. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3353. name: Male
  3354. schemaKey: SexType
  3355. species:
  3356. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3357. name: Macaca mulatta - Rhesus monkey
  3358. schemaKey: SpeciesType
  3359. wasGeneratedBy:
  3360. - description: Data from macaque performing multi-object working memory task. Subject
  3361. is presented with multiple objects at different locations on a screen. After a
  3362. delay, the subject is then cued with one of the objects, now displayed at the
  3363. center of the screen. Subject should respond by saccading to the location of the
  3364. cued object at its initial presentation.
  3365. identifier: '2022-05-17'
  3366. name: '2022-05-17'
  3367. schemaKey: Session
  3368. startDate: '2022-05-17T19:11:11-04:00'
  3369. - description: Metadata generated by DANDI cli
  3370. endDate: '2024-03-26T21:20:55.501625-04:00'
  3371. id: urn:uuid:1d886ca9-6579-45a7-a3cc-f67ac3fb4730
  3372. name: Metadata generation
  3373. schemaKey: Activity
  3374. startDate: '2024-03-26T21:20:36.770786-04:00'
  3375. wasAssociatedWith:
  3376. - identifier: RRID:SCR_019009
  3377. name: DANDI Command Line Interface
  3378. schemaKey: Software
  3379. url: https://github.com/dandi/dandi-cli
  3380. version: 0.61.2
  3381. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3382. access:
  3383. - schemaKey: AccessRequirements
  3384. status: dandi:OpenAccess
  3385. approach:
  3386. - name: behavioral approach
  3387. schemaKey: ApproachType
  3388. blobDateModified: '2024-03-26T21:11:35.872214-04:00'
  3389. contentSize: 170235720
  3390. contentUrl:
  3391. - https://api.dandiarchive.org/api/assets/f76d8e06-5c78-484c-9c8e-97f2656f5ed3/download/
  3392. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/35e/ef2/35eef264-88dc-45fd-8aa5-debc6c578c20
  3393. dateModified: '2024-03-26T21:20:56.054920-04:00'
  3394. digest:
  3395. dandi:dandi-etag: 4139766d49ec4cd705df8b3dc892b7cf-3
  3396. dandi:sha2-256: f80b0e48303e16c7348a8356aba10ffc5046c4ac134cec42f2a6d6b408fc0ef0
  3397. encodingFormat: application/x-nwb
  3398. id: dandiasset:f76d8e06-5c78-484c-9c8e-97f2656f5ed3
  3399. identifier: f76d8e06-5c78-484c-9c8e-97f2656f5ed3
  3400. measurementTechnique:
  3401. - name: behavioral technique
  3402. schemaKey: MeasurementTechniqueType
  3403. - name: analytical technique
  3404. schemaKey: MeasurementTechniqueType
  3405. path: sub-Elgar/sub-Elgar_ses-2022-05-18_behavior+task.nwb
  3406. schemaKey: Asset
  3407. schemaVersion: 0.6.7
  3408. variableMeasured:
  3409. - schemaKey: PropertyValue
  3410. value: SpatialSeries
  3411. - schemaKey: PropertyValue
  3412. value: ProcessingModule
  3413. wasAttributedTo:
  3414. - age:
  3415. schemaKey: PropertyValue
  3416. unitText: ISO-8601 duration
  3417. value: P11Y
  3418. valueReference:
  3419. schemaKey: PropertyValue
  3420. value: dandi:BirthReference
  3421. identifier: Elgar
  3422. schemaKey: Participant
  3423. sex:
  3424. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3425. name: Male
  3426. schemaKey: SexType
  3427. species:
  3428. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3429. name: Macaca mulatta - Rhesus monkey
  3430. schemaKey: SpeciesType
  3431. wasGeneratedBy:
  3432. - description: Data from macaque performing multi-object working memory task. Subject
  3433. is presented with multiple objects at different locations on a screen. After a
  3434. delay, the subject is then cued with one of the objects, now displayed at the
  3435. center of the screen. Subject should respond by saccading to the location of the
  3436. cued object at its initial presentation.
  3437. identifier: '2022-05-18'
  3438. name: '2022-05-18'
  3439. schemaKey: Session
  3440. startDate: '2022-05-18T17:11:30-04:00'
  3441. - description: Metadata generated by DANDI cli
  3442. endDate: '2024-03-26T21:20:56.054876-04:00'
  3443. id: urn:uuid:b9ea3553-20ea-4cd8-b37a-520f51dc2f2d
  3444. name: Metadata generation
  3445. schemaKey: Activity
  3446. startDate: '2024-03-26T21:20:31.976589-04:00'
  3447. wasAssociatedWith:
  3448. - identifier: RRID:SCR_019009
  3449. name: DANDI Command Line Interface
  3450. schemaKey: Software
  3451. url: https://github.com/dandi/dandi-cli
  3452. version: 0.61.2
  3453. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3454. access:
  3455. - schemaKey: AccessRequirements
  3456. status: dandi:OpenAccess
  3457. approach:
  3458. - name: behavioral approach
  3459. schemaKey: ApproachType
  3460. blobDateModified: '2024-03-26T21:11:30.667285-04:00'
  3461. contentSize: 166463910
  3462. contentUrl:
  3463. - https://api.dandiarchive.org/api/assets/5625f261-668f-45ca-ae5f-fef177a4fb8a/download/
  3464. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/842/4b6/8424b627-3df6-4140-9813-6392a710a32b
  3465. dateModified: '2024-03-26T21:21:14.850011-04:00'
  3466. digest:
  3467. dandi:dandi-etag: 2e99823e421645b454f25f09f9b26737-3
  3468. dandi:sha2-256: 513aff73a2399f87da5168b409761f530714aefb53fce60dc58407bd2c5494e9
  3469. encodingFormat: application/x-nwb
  3470. id: dandiasset:5625f261-668f-45ca-ae5f-fef177a4fb8a
  3471. identifier: 5625f261-668f-45ca-ae5f-fef177a4fb8a
  3472. measurementTechnique:
  3473. - name: behavioral technique
  3474. schemaKey: MeasurementTechniqueType
  3475. - name: analytical technique
  3476. schemaKey: MeasurementTechniqueType
  3477. path: sub-Elgar/sub-Elgar_ses-2022-05-19_behavior+task.nwb
  3478. schemaKey: Asset
  3479. schemaVersion: 0.6.7
  3480. variableMeasured:
  3481. - schemaKey: PropertyValue
  3482. value: SpatialSeries
  3483. - schemaKey: PropertyValue
  3484. value: ProcessingModule
  3485. wasAttributedTo:
  3486. - age:
  3487. schemaKey: PropertyValue
  3488. unitText: ISO-8601 duration
  3489. value: P11Y
  3490. valueReference:
  3491. schemaKey: PropertyValue
  3492. value: dandi:BirthReference
  3493. identifier: Elgar
  3494. schemaKey: Participant
  3495. sex:
  3496. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3497. name: Male
  3498. schemaKey: SexType
  3499. species:
  3500. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3501. name: Macaca mulatta - Rhesus monkey
  3502. schemaKey: SpeciesType
  3503. wasGeneratedBy:
  3504. - description: Data from macaque performing multi-object working memory task. Subject
  3505. is presented with multiple objects at different locations on a screen. After a
  3506. delay, the subject is then cued with one of the objects, now displayed at the
  3507. center of the screen. Subject should respond by saccading to the location of the
  3508. cued object at its initial presentation.
  3509. identifier: '2022-05-19'
  3510. name: '2022-05-19'
  3511. schemaKey: Session
  3512. startDate: '2022-05-19T18:29:07-04:00'
  3513. - description: Metadata generated by DANDI cli
  3514. endDate: '2024-03-26T21:21:14.849932-04:00'
  3515. id: urn:uuid:a240d309-e1bc-4865-9f80-86e4dfe8d8c8
  3516. name: Metadata generation
  3517. schemaKey: Activity
  3518. startDate: '2024-03-26T21:20:53.315442-04:00'
  3519. wasAssociatedWith:
  3520. - identifier: RRID:SCR_019009
  3521. name: DANDI Command Line Interface
  3522. schemaKey: Software
  3523. url: https://github.com/dandi/dandi-cli
  3524. version: 0.61.2
  3525. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3526. access:
  3527. - schemaKey: AccessRequirements
  3528. status: dandi:OpenAccess
  3529. approach:
  3530. - name: behavioral approach
  3531. schemaKey: ApproachType
  3532. blobDateModified: '2024-03-26T21:11:45.984076-04:00'
  3533. contentSize: 160924073
  3534. contentUrl:
  3535. - https://api.dandiarchive.org/api/assets/bbde4398-dfa7-4e2f-a719-906c1f426e12/download/
  3536. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/ffd/086/ffd086fc-ac7e-47a1-8194-3728eb5ed7d8
  3537. dateModified: '2024-03-26T21:21:15.218543-04:00'
  3538. digest:
  3539. dandi:dandi-etag: e0d38027243efcc20a6045d6f9035e2a-3
  3540. dandi:sha2-256: bb885b437089c49fdb81f8fd25e36faadc1499b1ca3ea6991225a1295c333095
  3541. encodingFormat: application/x-nwb
  3542. id: dandiasset:bbde4398-dfa7-4e2f-a719-906c1f426e12
  3543. identifier: bbde4398-dfa7-4e2f-a719-906c1f426e12
  3544. measurementTechnique:
  3545. - name: behavioral technique
  3546. schemaKey: MeasurementTechniqueType
  3547. - name: analytical technique
  3548. schemaKey: MeasurementTechniqueType
  3549. path: sub-Elgar/sub-Elgar_ses-2022-09-22_behavior+task.nwb
  3550. schemaKey: Asset
  3551. schemaVersion: 0.6.7
  3552. variableMeasured:
  3553. - schemaKey: PropertyValue
  3554. value: SpatialSeries
  3555. - schemaKey: PropertyValue
  3556. value: ProcessingModule
  3557. wasAttributedTo:
  3558. - age:
  3559. schemaKey: PropertyValue
  3560. unitText: ISO-8601 duration
  3561. value: P11Y
  3562. valueReference:
  3563. schemaKey: PropertyValue
  3564. value: dandi:BirthReference
  3565. identifier: Elgar
  3566. schemaKey: Participant
  3567. sex:
  3568. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3569. name: Male
  3570. schemaKey: SexType
  3571. species:
  3572. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3573. name: Macaca mulatta - Rhesus monkey
  3574. schemaKey: SpeciesType
  3575. wasGeneratedBy:
  3576. - description: Data from macaque performing multi-object working memory task. Subject
  3577. is presented with multiple objects at different locations on a screen. After a
  3578. delay, the subject is then cued with one of the objects, now displayed at the
  3579. center of the screen. Subject should respond by saccading to the location of the
  3580. cued object at its initial presentation.
  3581. identifier: '2022-09-22'
  3582. name: '2022-09-22'
  3583. schemaKey: Session
  3584. startDate: '2022-09-22T23:15:04-04:00'
  3585. - description: Metadata generated by DANDI cli
  3586. endDate: '2024-03-26T21:21:15.218503-04:00'
  3587. id: urn:uuid:f6b7c077-1327-4b0f-a377-41be9cefa708
  3588. name: Metadata generation
  3589. schemaKey: Activity
  3590. startDate: '2024-03-26T21:20:55.171188-04:00'
  3591. wasAssociatedWith:
  3592. - identifier: RRID:SCR_019009
  3593. name: DANDI Command Line Interface
  3594. schemaKey: Software
  3595. url: https://github.com/dandi/dandi-cli
  3596. version: 0.61.2
  3597. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3598. access:
  3599. - schemaKey: AccessRequirements
  3600. status: dandi:OpenAccess
  3601. approach:
  3602. - name: behavioral approach
  3603. schemaKey: ApproachType
  3604. blobDateModified: '2024-03-26T21:11:28.754311-04:00'
  3605. contentSize: 171997662
  3606. contentUrl:
  3607. - https://api.dandiarchive.org/api/assets/0cdee50d-7951-4703-af3f-ca7ab0788584/download/
  3608. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/e25/fc4/e25fc4f2-8461-4ba5-9c86-5a8c08ed4ccd
  3609. dateModified: '2024-03-26T21:21:17.225297-04:00'
  3610. digest:
  3611. dandi:dandi-etag: c35ab33088fd96ab88f82eb06ef4a87f-3
  3612. dandi:sha2-256: 1c3a83a2f1274856a2f00f07c0471fb0d18692c95fcd49c49910f1bca01e7d36
  3613. encodingFormat: application/x-nwb
  3614. id: dandiasset:0cdee50d-7951-4703-af3f-ca7ab0788584
  3615. identifier: 0cdee50d-7951-4703-af3f-ca7ab0788584
  3616. measurementTechnique:
  3617. - name: behavioral technique
  3618. schemaKey: MeasurementTechniqueType
  3619. - name: analytical technique
  3620. schemaKey: MeasurementTechniqueType
  3621. path: sub-Elgar/sub-Elgar_ses-2022-09-21_behavior+task.nwb
  3622. schemaKey: Asset
  3623. schemaVersion: 0.6.7
  3624. variableMeasured:
  3625. - schemaKey: PropertyValue
  3626. value: SpatialSeries
  3627. - schemaKey: PropertyValue
  3628. value: ProcessingModule
  3629. wasAttributedTo:
  3630. - age:
  3631. schemaKey: PropertyValue
  3632. unitText: ISO-8601 duration
  3633. value: P11Y
  3634. valueReference:
  3635. schemaKey: PropertyValue
  3636. value: dandi:BirthReference
  3637. identifier: Elgar
  3638. schemaKey: Participant
  3639. sex:
  3640. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3641. name: Male
  3642. schemaKey: SexType
  3643. species:
  3644. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3645. name: Macaca mulatta - Rhesus monkey
  3646. schemaKey: SpeciesType
  3647. wasGeneratedBy:
  3648. - description: Data from macaque performing multi-object working memory task. Subject
  3649. is presented with multiple objects at different locations on a screen. After a
  3650. delay, the subject is then cued with one of the objects, now displayed at the
  3651. center of the screen. Subject should respond by saccading to the location of the
  3652. cued object at its initial presentation.
  3653. identifier: '2022-09-21'
  3654. name: '2022-09-21'
  3655. schemaKey: Session
  3656. startDate: '2022-09-22T00:33:35-04:00'
  3657. - description: Metadata generated by DANDI cli
  3658. endDate: '2024-03-26T21:21:17.225221-04:00'
  3659. id: urn:uuid:923d911a-70c9-4f2b-9cef-6b6634329c96
  3660. name: Metadata generation
  3661. schemaKey: Activity
  3662. startDate: '2024-03-26T21:20:56.547195-04:00'
  3663. wasAssociatedWith:
  3664. - identifier: RRID:SCR_019009
  3665. name: DANDI Command Line Interface
  3666. schemaKey: Software
  3667. url: https://github.com/dandi/dandi-cli
  3668. version: 0.61.2
  3669. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3670. access:
  3671. - schemaKey: AccessRequirements
  3672. status: dandi:OpenAccess
  3673. approach:
  3674. - name: behavioral approach
  3675. schemaKey: ApproachType
  3676. blobDateModified: '2024-03-26T21:11:39.283167-04:00'
  3677. contentSize: 154015265
  3678. contentUrl:
  3679. - https://api.dandiarchive.org/api/assets/07243acc-5494-4734-869b-2506304d927b/download/
  3680. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/1fe/10b/1fe10b6b-fc2c-4412-bb5d-f31d6656ce96
  3681. dateModified: '2024-03-26T21:21:42.099308-04:00'
  3682. digest:
  3683. dandi:dandi-etag: 69a57081b43b0f9965dc8a62e4825a83-3
  3684. dandi:sha2-256: 259365e1eceaec13759d96d5312b4e5a1c8a502ae83a26fb60d92f77319e43ae
  3685. encodingFormat: application/x-nwb
  3686. id: dandiasset:07243acc-5494-4734-869b-2506304d927b
  3687. identifier: 07243acc-5494-4734-869b-2506304d927b
  3688. measurementTechnique:
  3689. - name: behavioral technique
  3690. schemaKey: MeasurementTechniqueType
  3691. - name: analytical technique
  3692. schemaKey: MeasurementTechniqueType
  3693. path: sub-Elgar/sub-Elgar_ses-2022-09-23_behavior+task.nwb
  3694. schemaKey: Asset
  3695. schemaVersion: 0.6.7
  3696. variableMeasured:
  3697. - schemaKey: PropertyValue
  3698. value: SpatialSeries
  3699. - schemaKey: PropertyValue
  3700. value: ProcessingModule
  3701. wasAttributedTo:
  3702. - age:
  3703. schemaKey: PropertyValue
  3704. unitText: ISO-8601 duration
  3705. value: P11Y
  3706. valueReference:
  3707. schemaKey: PropertyValue
  3708. value: dandi:BirthReference
  3709. identifier: Elgar
  3710. schemaKey: Participant
  3711. sex:
  3712. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3713. name: Male
  3714. schemaKey: SexType
  3715. species:
  3716. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3717. name: Macaca mulatta - Rhesus monkey
  3718. schemaKey: SpeciesType
  3719. wasGeneratedBy:
  3720. - description: Data from macaque performing multi-object working memory task. Subject
  3721. is presented with multiple objects at different locations on a screen. After a
  3722. delay, the subject is then cued with one of the objects, now displayed at the
  3723. center of the screen. Subject should respond by saccading to the location of the
  3724. cued object at its initial presentation.
  3725. identifier: '2022-09-23'
  3726. name: '2022-09-23'
  3727. schemaKey: Session
  3728. startDate: '2022-09-23T18:29:34-04:00'
  3729. - description: Metadata generated by DANDI cli
  3730. endDate: '2024-03-26T21:21:42.099234-04:00'
  3731. id: urn:uuid:01f6ed39-e502-4787-ab58-cd60167e88d4
  3732. name: Metadata generation
  3733. schemaKey: Activity
  3734. startDate: '2024-03-26T21:21:31.753818-04:00'
  3735. wasAssociatedWith:
  3736. - identifier: RRID:SCR_019009
  3737. name: DANDI Command Line Interface
  3738. schemaKey: Software
  3739. url: https://github.com/dandi/dandi-cli
  3740. version: 0.61.2
  3741. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3742. access:
  3743. - schemaKey: AccessRequirements
  3744. status: dandi:OpenAccess
  3745. approach:
  3746. - name: behavioral approach
  3747. schemaKey: ApproachType
  3748. blobDateModified: '2024-03-26T21:11:47.081061-04:00'
  3749. contentSize: 79382092
  3750. contentUrl:
  3751. - https://api.dandiarchive.org/api/assets/d305f0bd-3a63-48ac-a8ff-c50497223434/download/
  3752. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/79b/48e/79b48e89-476a-4339-a6f9-a1714b097c27
  3753. dateModified: '2024-03-26T21:21:42.675178-04:00'
  3754. digest:
  3755. dandi:dandi-etag: f672a7cb70914c0567feef37b155b91a-2
  3756. dandi:sha2-256: 2a1cb3d90aaeaf11ea5915a6a3b22c70a3ed008d6e5282f360eff4a7c50698f9
  3757. encodingFormat: application/x-nwb
  3758. id: dandiasset:d305f0bd-3a63-48ac-a8ff-c50497223434
  3759. identifier: d305f0bd-3a63-48ac-a8ff-c50497223434
  3760. measurementTechnique:
  3761. - name: behavioral technique
  3762. schemaKey: MeasurementTechniqueType
  3763. - name: analytical technique
  3764. schemaKey: MeasurementTechniqueType
  3765. path: sub-Perle/sub-Perle_ses-2022-06-18_behavior+task.nwb
  3766. schemaKey: Asset
  3767. schemaVersion: 0.6.7
  3768. variableMeasured:
  3769. - schemaKey: PropertyValue
  3770. value: SpatialSeries
  3771. - schemaKey: PropertyValue
  3772. value: ProcessingModule
  3773. wasAttributedTo:
  3774. - age:
  3775. schemaKey: PropertyValue
  3776. unitText: ISO-8601 duration
  3777. value: P10Y
  3778. valueReference:
  3779. schemaKey: PropertyValue
  3780. value: dandi:BirthReference
  3781. identifier: Perle
  3782. schemaKey: Participant
  3783. sex:
  3784. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3785. name: Female
  3786. schemaKey: SexType
  3787. species:
  3788. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3789. name: Macaca mulatta - Rhesus monkey
  3790. schemaKey: SpeciesType
  3791. wasGeneratedBy:
  3792. - description: Data from macaque performing multi-object working memory task. Subject
  3793. is presented with multiple objects at different locations on a screen. After a
  3794. delay, the subject is then cued with one of the objects, now displayed at the
  3795. center of the screen. Subject should respond by saccading to the location of the
  3796. cued object at its initial presentation.
  3797. identifier: '2022-06-18'
  3798. name: '2022-06-18'
  3799. schemaKey: Session
  3800. startDate: '2022-06-18T15:12:05-04:00'
  3801. - description: Metadata generated by DANDI cli
  3802. endDate: '2024-03-26T21:21:42.675142-04:00'
  3803. id: urn:uuid:dd5ea699-af2f-498a-9e21-4618574433de
  3804. name: Metadata generation
  3805. schemaKey: Activity
  3806. startDate: '2024-03-26T21:21:36.619192-04:00'
  3807. wasAssociatedWith:
  3808. - identifier: RRID:SCR_019009
  3809. name: DANDI Command Line Interface
  3810. schemaKey: Software
  3811. url: https://github.com/dandi/dandi-cli
  3812. version: 0.61.2
  3813. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3814. access:
  3815. - schemaKey: AccessRequirements
  3816. status: dandi:OpenAccess
  3817. approach:
  3818. - name: behavioral approach
  3819. schemaKey: ApproachType
  3820. blobDateModified: '2024-03-26T21:11:48.391043-04:00'
  3821. contentSize: 115296196
  3822. contentUrl:
  3823. - https://api.dandiarchive.org/api/assets/b26f0564-a3ad-4e0b-86ea-b5b3457eff9a/download/
  3824. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/638/796/63879696-d668-4b05-8e53-be7452ff278d
  3825. dateModified: '2024-03-26T21:21:42.375079-04:00'
  3826. digest:
  3827. dandi:dandi-etag: 0ef9af3526dc56e4a172eebdb4cebfd6-2
  3828. dandi:sha2-256: 62f23f0c392721abf68070a74026fe28eb81ace81d8f3245e5dbcc94019ac390
  3829. encodingFormat: application/x-nwb
  3830. id: dandiasset:b26f0564-a3ad-4e0b-86ea-b5b3457eff9a
  3831. identifier: b26f0564-a3ad-4e0b-86ea-b5b3457eff9a
  3832. measurementTechnique:
  3833. - name: behavioral technique
  3834. schemaKey: MeasurementTechniqueType
  3835. - name: analytical technique
  3836. schemaKey: MeasurementTechniqueType
  3837. path: sub-Perle/sub-Perle_ses-2022-06-17_behavior+task.nwb
  3838. schemaKey: Asset
  3839. schemaVersion: 0.6.7
  3840. variableMeasured:
  3841. - schemaKey: PropertyValue
  3842. value: SpatialSeries
  3843. - schemaKey: PropertyValue
  3844. value: ProcessingModule
  3845. wasAttributedTo:
  3846. - age:
  3847. schemaKey: PropertyValue
  3848. unitText: ISO-8601 duration
  3849. value: P10Y
  3850. valueReference:
  3851. schemaKey: PropertyValue
  3852. value: dandi:BirthReference
  3853. identifier: Perle
  3854. schemaKey: Participant
  3855. sex:
  3856. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3857. name: Female
  3858. schemaKey: SexType
  3859. species:
  3860. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3861. name: Macaca mulatta - Rhesus monkey
  3862. schemaKey: SpeciesType
  3863. wasGeneratedBy:
  3864. - description: Data from macaque performing multi-object working memory task. Subject
  3865. is presented with multiple objects at different locations on a screen. After a
  3866. delay, the subject is then cued with one of the objects, now displayed at the
  3867. center of the screen. Subject should respond by saccading to the location of the
  3868. cued object at its initial presentation.
  3869. identifier: '2022-06-17'
  3870. name: '2022-06-17'
  3871. schemaKey: Session
  3872. startDate: '2022-06-17T14:44:54-04:00'
  3873. - description: Metadata generated by DANDI cli
  3874. endDate: '2024-03-26T21:21:42.375031-04:00'
  3875. id: urn:uuid:2d1b581d-c7b5-42cf-aa4b-0449afa6e999
  3876. name: Metadata generation
  3877. schemaKey: Activity
  3878. startDate: '2024-03-26T21:21:31.013890-04:00'
  3879. wasAssociatedWith:
  3880. - identifier: RRID:SCR_019009
  3881. name: DANDI Command Line Interface
  3882. schemaKey: Software
  3883. url: https://github.com/dandi/dandi-cli
  3884. version: 0.61.2
  3885. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3886. access:
  3887. - schemaKey: AccessRequirements
  3888. status: dandi:OpenAccess
  3889. approach:
  3890. - name: electrophysiological approach
  3891. schemaKey: ApproachType
  3892. blobDateModified: '2024-04-09T14:53:33.604965-04:00'
  3893. contentSize: 35236053
  3894. contentUrl:
  3895. - https://api.dandiarchive.org/api/assets/f7ed7860-d00a-44d9-9155-a4627fa0b2d2/download/
  3896. - https://dandiarchive-embargo.s3.amazonaws.com/000771/blobs/29e/20a/29e20ab0-da49-4f19-b665-5a04c90750ff
  3897. dateModified: '2024-04-09T15:15:45.651628-04:00'
  3898. digest:
  3899. dandi:dandi-etag: 707152ba8eb597cf1a15d85fe7c21d29-1
  3900. dandi:sha2-256: 0e1554184bdaee1c87f9126d08b49d351733913f3899edf91c2b9ce647936f62
  3901. encodingFormat: application/x-nwb
  3902. id: dandiasset:f7ed7860-d00a-44d9-9155-a4627fa0b2d2
  3903. identifier: f7ed7860-d00a-44d9-9155-a4627fa0b2d2
  3904. measurementTechnique:
  3905. - name: spike sorting technique
  3906. schemaKey: MeasurementTechniqueType
  3907. - name: surgical technique
  3908. schemaKey: MeasurementTechniqueType
  3909. - name: analytical technique
  3910. schemaKey: MeasurementTechniqueType
  3911. path: sub-Elgar/sub-Elgar_ses-2022-09-21_spikesorting.nwb
  3912. schemaKey: Asset
  3913. schemaVersion: 0.6.7
  3914. variableMeasured:
  3915. - schemaKey: PropertyValue
  3916. value: ElectrodeGroup
  3917. - schemaKey: PropertyValue
  3918. value: Units
  3919. - schemaKey: PropertyValue
  3920. value: ProcessingModule
  3921. wasAttributedTo:
  3922. - age:
  3923. schemaKey: PropertyValue
  3924. unitText: ISO-8601 duration
  3925. value: P11Y
  3926. valueReference:
  3927. schemaKey: PropertyValue
  3928. value: dandi:BirthReference
  3929. identifier: Elgar
  3930. schemaKey: Participant
  3931. sex:
  3932. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3933. name: Male
  3934. schemaKey: SexType
  3935. species:
  3936. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  3937. name: Macaca mulatta - Rhesus monkey
  3938. schemaKey: SpeciesType
  3939. wasGeneratedBy:
  3940. - description: Data from macaque performing multi-object working memory task. Subject
  3941. is presented with multiple objects at different locations on a screen. After a
  3942. delay, the subject is then cued with one of the objects, now displayed at the
  3943. center of the screen. Subject should respond by saccading to the location of the
  3944. cued object at its initial presentation.
  3945. identifier: '2022-09-21'
  3946. name: '2022-09-21'
  3947. schemaKey: Session
  3948. startDate: '2022-09-22T00:33:35-04:00'
  3949. - description: Metadata generated by DANDI cli
  3950. endDate: '2024-04-09T15:15:45.651577-04:00'
  3951. id: urn:uuid:34c77b87-cceb-4237-b263-caef8789c761
  3952. name: Metadata generation
  3953. schemaKey: Activity
  3954. startDate: '2024-04-09T15:15:43.122294-04:00'
  3955. wasAssociatedWith:
  3956. - identifier: RRID:SCR_019009
  3957. name: DANDI Command Line Interface
  3958. schemaKey: Software
  3959. url: https://github.com/dandi/dandi-cli
  3960. version: 0.61.2
Tip!

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

Comments

Loading...