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 116 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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: electrophysiological approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2023-06-23T10:40:36.799877-07:00'
  9. contentSize: 264088224
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/a01931f3-1845-4d91-9697-7153c99dea9e/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/532/a70/532a7017-6110-42f2-b64e-c7ca76eaaf38
  13. dateModified: '2023-06-23T11:56:27.569076-07:00'
  14. datePublished: '2023-12-13T20:47:02.577057+00:00'
  15. digest:
  16. dandi:dandi-etag: 89a4e3dfb733d92269aca747fb45c976-4
  17. dandi:sha2-256: 5800ad0de40f3eb2fe732f20b69bde32e993177b507acafc587e493b6bf636cb
  18. encodingFormat: application/x-nwb
  19. id: dandiasset:a01931f3-1845-4d91-9697-7153c99dea9e
  20. identifier: a01931f3-1845-4d91-9697-7153c99dea9e
  21. keywords:
  22. - single neuron, human, intracranial, persistent activity, working memory
  23. measurementTechnique:
  24. - name: surgical technique
  25. schemaKey: MeasurementTechniqueType
  26. - name: spike sorting technique
  27. schemaKey: MeasurementTechniqueType
  28. path: sub-10/sub-10_ses-2_ecephys+image.nwb
  29. publishedBy:
  30. endDate: '2023-12-13T20:47:02.577057+00:00'
  31. id: urn:uuid:583def55-930f-4152-80d2-8c62865fffc7
  32. name: DANDI publish
  33. schemaKey: PublishActivity
  34. startDate: '2023-12-13T20:47:02.577057+00:00'
  35. wasAssociatedWith:
  36. - id: urn:uuid:bb7a27ad-57fa-40c0-8cc2-700f4657600a
  37. identifier: RRID:SCR_017571
  38. name: DANDI API
  39. schemaKey: Software
  40. version: 0.1.0
  41. schemaKey: Asset
  42. schemaVersion: 0.6.4
  43. variableMeasured:
  44. - schemaKey: PropertyValue
  45. value: Units
  46. - schemaKey: PropertyValue
  47. value: ElectrodeGroup
  48. wasAttributedTo:
  49. - age:
  50. schemaKey: PropertyValue
  51. unitText: ISO-8601 duration
  52. value: P63Y
  53. valueReference:
  54. schemaKey: PropertyValue
  55. value: dandi:BirthReference
  56. identifier: '10'
  57. schemaKey: Participant
  58. sex:
  59. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  60. name: Male
  61. schemaKey: SexType
  62. species:
  63. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  64. name: Homo sapiens - Human
  65. schemaKey: SpeciesType
  66. wasGeneratedBy:
  67. - description: 'SBID: 10'
  68. identifier: '2'
  69. name: '2'
  70. schemaKey: Session
  71. startDate: '2014-01-01T00:00:00-08:00'
  72. - description: Metadata generated by DANDI cli
  73. endDate: '2023-06-23T11:56:27.569076-07:00'
  74. id: urn:uuid:e4bc6492-9d16-473b-be2b-6f7b11462b93
  75. name: Metadata generation
  76. schemaKey: Activity
  77. startDate: '2023-06-23T11:56:26.314768-07:00'
  78. wasAssociatedWith:
  79. - identifier: RRID:SCR_019009
  80. name: DANDI Command Line Interface
  81. schemaKey: Software
  82. url: https://github.com/dandi/dandi-cli
  83. version: 0.55.1
  84. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  85. access:
  86. - schemaKey: AccessRequirements
  87. status: dandi:OpenAccess
  88. approach:
  89. - name: electrophysiological approach
  90. schemaKey: ApproachType
  91. blobDateModified: '2023-06-23T10:17:33.736428-07:00'
  92. contentSize: 221906568
  93. contentUrl:
  94. - https://api.dandiarchive.org/api/assets/ecfb1b42-96c4-4552-aeee-0f12c6da06d2/download/
  95. - https://dandiarchive.s3.amazonaws.com/blobs/c2a/a8c/c2aa8c80-5b53-40fd-91ac-089d3ad9ba7d
  96. dateModified: '2023-06-23T11:56:27.472019-07:00'
  97. datePublished: '2023-12-13T20:47:02.602647+00:00'
  98. digest:
  99. dandi:dandi-etag: 72ff9e05236026ff3782f012ac8734f0-4
  100. dandi:sha2-256: 1404f4fae672cf0ea12c9a269d328916b96bf97235e5ba198fa0db9dafcbce25
  101. encodingFormat: application/x-nwb
  102. id: dandiasset:ecfb1b42-96c4-4552-aeee-0f12c6da06d2
  103. identifier: ecfb1b42-96c4-4552-aeee-0f12c6da06d2
  104. keywords:
  105. - single neuron, human, intracranial, persistent activity, working memory
  106. measurementTechnique:
  107. - name: surgical technique
  108. schemaKey: MeasurementTechniqueType
  109. - name: spike sorting technique
  110. schemaKey: MeasurementTechniqueType
  111. path: sub-1/sub-1_ses-2_ecephys+image.nwb
  112. publishedBy:
  113. endDate: '2023-12-13T20:47:02.602647+00:00'
  114. id: urn:uuid:8b14e9cf-8946-4a1b-bb49-bfbfc9291b90
  115. name: DANDI publish
  116. schemaKey: PublishActivity
  117. startDate: '2023-12-13T20:47:02.602647+00:00'
  118. wasAssociatedWith:
  119. - id: urn:uuid:71e2cd92-7016-4b03-b964-e998850296d3
  120. identifier: RRID:SCR_017571
  121. name: DANDI API
  122. schemaKey: Software
  123. version: 0.1.0
  124. schemaKey: Asset
  125. schemaVersion: 0.6.4
  126. variableMeasured:
  127. - schemaKey: PropertyValue
  128. value: Units
  129. - schemaKey: PropertyValue
  130. value: ElectrodeGroup
  131. wasAttributedTo:
  132. - age:
  133. schemaKey: PropertyValue
  134. unitText: ISO-8601 duration
  135. value: P25Y
  136. valueReference:
  137. schemaKey: PropertyValue
  138. value: dandi:BirthReference
  139. identifier: '1'
  140. schemaKey: Participant
  141. sex:
  142. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  143. name: Female
  144. schemaKey: SexType
  145. species:
  146. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  147. name: Homo sapiens - Human
  148. schemaKey: SpeciesType
  149. wasGeneratedBy:
  150. - description: 'SBID: 1'
  151. identifier: '2'
  152. name: '2'
  153. schemaKey: Session
  154. startDate: '2016-01-01T00:00:00-08:00'
  155. - description: Metadata generated by DANDI cli
  156. endDate: '2023-06-23T11:56:27.472019-07:00'
  157. id: urn:uuid:5a199082-bddc-4479-aeaa-d5b5f7ba2447
  158. name: Metadata generation
  159. schemaKey: Activity
  160. startDate: '2023-06-23T11:56:25.905708-07:00'
  161. wasAssociatedWith:
  162. - identifier: RRID:SCR_019009
  163. name: DANDI Command Line Interface
  164. schemaKey: Software
  165. url: https://github.com/dandi/dandi-cli
  166. version: 0.55.1
  167. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  168. access:
  169. - schemaKey: AccessRequirements
  170. status: dandi:OpenAccess
  171. approach:
  172. - name: electrophysiological approach
  173. schemaKey: ApproachType
  174. blobDateModified: '2023-06-23T10:53:56.624975-07:00'
  175. contentSize: 201240176
  176. contentUrl:
  177. - https://api.dandiarchive.org/api/assets/b3cd4cca-58ad-4c9f-8247-401fa99c68e8/download/
  178. - https://dandiarchive.s3.amazonaws.com/blobs/b58/6c1/b586c127-42dd-4e3d-aefd-3fee06559dbc
  179. dateModified: '2023-06-23T11:56:32.190339-07:00'
  180. datePublished: '2023-12-13T20:47:02.611017+00:00'
  181. digest:
  182. dandi:dandi-etag: f17f12282b1e845a970a160953d0cde8-3
  183. dandi:sha2-256: a0bdea3a5ad93b0771c48241b1ecee8a325b68aefc92bca7a38fd162c2bd468c
  184. encodingFormat: application/x-nwb
  185. id: dandiasset:b3cd4cca-58ad-4c9f-8247-401fa99c68e8
  186. identifier: b3cd4cca-58ad-4c9f-8247-401fa99c68e8
  187. keywords:
  188. - single neuron, human, intracranial, persistent activity, working memory
  189. measurementTechnique:
  190. - name: surgical technique
  191. schemaKey: MeasurementTechniqueType
  192. - name: spike sorting technique
  193. schemaKey: MeasurementTechniqueType
  194. path: sub-1/sub-1_ses-1_ecephys+image.nwb
  195. publishedBy:
  196. endDate: '2023-12-13T20:47:02.611017+00:00'
  197. id: urn:uuid:e5e1e787-9a87-4772-8b79-2e296f98b356
  198. name: DANDI publish
  199. schemaKey: PublishActivity
  200. startDate: '2023-12-13T20:47:02.611017+00:00'
  201. wasAssociatedWith:
  202. - id: urn:uuid:4ae943d5-b26b-4b72-9df5-6af980d77654
  203. identifier: RRID:SCR_017571
  204. name: DANDI API
  205. schemaKey: Software
  206. version: 0.1.0
  207. schemaKey: Asset
  208. schemaVersion: 0.6.4
  209. variableMeasured:
  210. - schemaKey: PropertyValue
  211. value: Units
  212. - schemaKey: PropertyValue
  213. value: ElectrodeGroup
  214. wasAttributedTo:
  215. - age:
  216. schemaKey: PropertyValue
  217. unitText: ISO-8601 duration
  218. value: P25Y
  219. valueReference:
  220. schemaKey: PropertyValue
  221. value: dandi:BirthReference
  222. identifier: '1'
  223. schemaKey: Participant
  224. sex:
  225. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  226. name: Female
  227. schemaKey: SexType
  228. species:
  229. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  230. name: Homo sapiens - Human
  231. schemaKey: SpeciesType
  232. wasGeneratedBy:
  233. - description: 'SCID: 1'
  234. identifier: '1'
  235. name: '1'
  236. schemaKey: Session
  237. startDate: '2016-01-01T00:00:00-08:00'
  238. - description: Metadata generated by DANDI cli
  239. endDate: '2023-06-23T11:56:32.190339-07:00'
  240. id: urn:uuid:9e58043f-03fe-419c-96b4-08c7ac5995c6
  241. name: Metadata generation
  242. schemaKey: Activity
  243. startDate: '2023-06-23T11:56:31.235016-07:00'
  244. wasAssociatedWith:
  245. - identifier: RRID:SCR_019009
  246. name: DANDI Command Line Interface
  247. schemaKey: Software
  248. url: https://github.com/dandi/dandi-cli
  249. version: 0.55.1
  250. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  251. access:
  252. - schemaKey: AccessRequirements
  253. status: dandi:OpenAccess
  254. approach:
  255. - name: electrophysiological approach
  256. schemaKey: ApproachType
  257. blobDateModified: '2023-06-23T11:09:20.388760-07:00'
  258. contentSize: 359151664
  259. contentUrl:
  260. - https://api.dandiarchive.org/api/assets/e71517ad-18bd-41d4-b8e1-e508ce040bd2/download/
  261. - https://dandiarchive.s3.amazonaws.com/blobs/d93/50d/d9350dd5-6e23-437f-bb09-626fe352986b
  262. dateModified: '2023-06-23T11:56:35.138083-07:00'
  263. datePublished: '2023-12-13T20:47:02.687818+00:00'
  264. digest:
  265. dandi:dandi-etag: fe0566ce3257cb266d004c3c2bab4049-6
  266. dandi:sha2-256: b48d707c478eead4a0c986cccef69a16a46e2b8d8d888e61caadf62fcbad6e27
  267. encodingFormat: application/x-nwb
  268. id: dandiasset:e71517ad-18bd-41d4-b8e1-e508ce040bd2
  269. identifier: e71517ad-18bd-41d4-b8e1-e508ce040bd2
  270. keywords:
  271. - single neuron, human, intracranial, persistent activity, working memory
  272. measurementTechnique:
  273. - name: surgical technique
  274. schemaKey: MeasurementTechniqueType
  275. - name: spike sorting technique
  276. schemaKey: MeasurementTechniqueType
  277. path: sub-10/sub-10_ses-1_ecephys+image.nwb
  278. publishedBy:
  279. endDate: '2023-12-13T20:47:02.687818+00:00'
  280. id: urn:uuid:bb988a95-d021-4701-93b7-5cc7e5222425
  281. name: DANDI publish
  282. schemaKey: PublishActivity
  283. startDate: '2023-12-13T20:47:02.687818+00:00'
  284. wasAssociatedWith:
  285. - id: urn:uuid:3df7f4fa-0a51-4028-b0e6-c6cc3067a5a4
  286. identifier: RRID:SCR_017571
  287. name: DANDI API
  288. schemaKey: Software
  289. version: 0.1.0
  290. schemaKey: Asset
  291. schemaVersion: 0.6.4
  292. variableMeasured:
  293. - schemaKey: PropertyValue
  294. value: Units
  295. - schemaKey: PropertyValue
  296. value: ElectrodeGroup
  297. wasAttributedTo:
  298. - age:
  299. schemaKey: PropertyValue
  300. unitText: ISO-8601 duration
  301. value: P63Y
  302. valueReference:
  303. schemaKey: PropertyValue
  304. value: dandi:BirthReference
  305. identifier: '10'
  306. schemaKey: Participant
  307. sex:
  308. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  309. name: Male
  310. schemaKey: SexType
  311. species:
  312. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  313. name: Homo sapiens - Human
  314. schemaKey: SpeciesType
  315. wasGeneratedBy:
  316. - description: 'SCID: 10'
  317. identifier: '1'
  318. name: '1'
  319. schemaKey: Session
  320. startDate: '2014-01-01T00:00:00-08:00'
  321. - description: Metadata generated by DANDI cli
  322. endDate: '2023-06-23T11:56:35.138083-07:00'
  323. id: urn:uuid:d39dd6aa-0dcf-4c8e-be43-cc150c0bb87a
  324. name: Metadata generation
  325. schemaKey: Activity
  326. startDate: '2023-06-23T11:56:33.641426-07:00'
  327. wasAssociatedWith:
  328. - identifier: RRID:SCR_019009
  329. name: DANDI Command Line Interface
  330. schemaKey: Software
  331. url: https://github.com/dandi/dandi-cli
  332. version: 0.55.1
  333. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  334. access:
  335. - schemaKey: AccessRequirements
  336. status: dandi:OpenAccess
  337. approach:
  338. - name: electrophysiological approach
  339. schemaKey: ApproachType
  340. blobDateModified: '2023-06-23T11:15:12.152077-07:00'
  341. contentSize: 523006664
  342. contentUrl:
  343. - https://api.dandiarchive.org/api/assets/c1236a8f-2acb-4b8f-85ab-96ea71560fc9/download/
  344. - https://dandiarchive.s3.amazonaws.com/blobs/9a2/f7f/9a2f7f97-6bf5-4aec-89dc-94576ee692a0
  345. dateModified: '2023-06-23T11:56:36.684635-07:00'
  346. datePublished: '2023-12-13T20:47:02.617814+00:00'
  347. digest:
  348. dandi:dandi-etag: e664e11c744c4100c3798bcff318cf36-8
  349. dandi:sha2-256: 473d02741f09a660a7fd9a7e81113496020b08d9f125699092132373f0f7efe0
  350. encodingFormat: application/x-nwb
  351. id: dandiasset:c1236a8f-2acb-4b8f-85ab-96ea71560fc9
  352. identifier: c1236a8f-2acb-4b8f-85ab-96ea71560fc9
  353. keywords:
  354. - single neuron, human, intracranial, persistent activity, working memory
  355. measurementTechnique:
  356. - name: surgical technique
  357. schemaKey: MeasurementTechniqueType
  358. - name: spike sorting technique
  359. schemaKey: MeasurementTechniqueType
  360. path: sub-11/sub-11_ses-1_ecephys+image.nwb
  361. publishedBy:
  362. endDate: '2023-12-13T20:47:02.617814+00:00'
  363. id: urn:uuid:f6fe4f10-10a5-49db-9c15-c7ad719d2f68
  364. name: DANDI publish
  365. schemaKey: PublishActivity
  366. startDate: '2023-12-13T20:47:02.617814+00:00'
  367. wasAssociatedWith:
  368. - id: urn:uuid:7957b92e-9344-4ae9-b868-9decca771840
  369. identifier: RRID:SCR_017571
  370. name: DANDI API
  371. schemaKey: Software
  372. version: 0.1.0
  373. schemaKey: Asset
  374. schemaVersion: 0.6.4
  375. variableMeasured:
  376. - schemaKey: PropertyValue
  377. value: Units
  378. - schemaKey: PropertyValue
  379. value: ElectrodeGroup
  380. wasAttributedTo:
  381. - age:
  382. schemaKey: PropertyValue
  383. unitText: ISO-8601 duration
  384. value: P45Y
  385. valueReference:
  386. schemaKey: PropertyValue
  387. value: dandi:BirthReference
  388. identifier: '11'
  389. schemaKey: Participant
  390. sex:
  391. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  392. name: Male
  393. schemaKey: SexType
  394. species:
  395. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  396. name: Homo sapiens - Human
  397. schemaKey: SpeciesType
  398. wasGeneratedBy:
  399. - description: 'SCID: 11'
  400. identifier: '1'
  401. name: '1'
  402. schemaKey: Session
  403. startDate: '2015-01-01T00:00:00-08:00'
  404. - description: Metadata generated by DANDI cli
  405. endDate: '2023-06-23T11:56:36.684635-07:00'
  406. id: urn:uuid:acbbb7ec-57cb-4519-beaf-f7e15d5229af
  407. name: Metadata generation
  408. schemaKey: Activity
  409. startDate: '2023-06-23T11:56:36.032790-07:00'
  410. wasAssociatedWith:
  411. - identifier: RRID:SCR_019009
  412. name: DANDI Command Line Interface
  413. schemaKey: Software
  414. url: https://github.com/dandi/dandi-cli
  415. version: 0.55.1
  416. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  417. access:
  418. - schemaKey: AccessRequirements
  419. status: dandi:OpenAccess
  420. approach:
  421. - name: electrophysiological approach
  422. schemaKey: ApproachType
  423. blobDateModified: '2023-06-23T10:43:18.016093-07:00'
  424. contentSize: 124567248
  425. contentUrl:
  426. - https://api.dandiarchive.org/api/assets/7231a2fb-8686-4fd0-817d-fb636808226d/download/
  427. - https://dandiarchive.s3.amazonaws.com/blobs/95b/245/95b24577-bce2-45ae-b992-65339968ad8d
  428. dateModified: '2023-06-23T11:56:56.539435-07:00'
  429. datePublished: '2023-12-13T20:47:02.702755+00:00'
  430. digest:
  431. dandi:dandi-etag: 2b68d3bbd322371a4d97d7f60acc2637-2
  432. dandi:sha2-256: 73b454cbafea344e70f45e10acdaf8cf9eb4d2ee71849774601bb4d1b4bede41
  433. encodingFormat: application/x-nwb
  434. id: dandiasset:7231a2fb-8686-4fd0-817d-fb636808226d
  435. identifier: 7231a2fb-8686-4fd0-817d-fb636808226d
  436. keywords:
  437. - single neuron, human, intracranial, persistent activity, working memory
  438. measurementTechnique:
  439. - name: surgical technique
  440. schemaKey: MeasurementTechniqueType
  441. - name: spike sorting technique
  442. schemaKey: MeasurementTechniqueType
  443. path: sub-12/sub-12_ses-2_ecephys+image.nwb
  444. publishedBy:
  445. endDate: '2023-12-13T20:47:02.702755+00:00'
  446. id: urn:uuid:c85768de-132b-4d1a-8cbb-257ec6d12135
  447. name: DANDI publish
  448. schemaKey: PublishActivity
  449. startDate: '2023-12-13T20:47:02.702755+00:00'
  450. wasAssociatedWith:
  451. - id: urn:uuid:4e70750a-7c99-4dbe-aeda-21f4f41d70a9
  452. identifier: RRID:SCR_017571
  453. name: DANDI API
  454. schemaKey: Software
  455. version: 0.1.0
  456. schemaKey: Asset
  457. schemaVersion: 0.6.4
  458. variableMeasured:
  459. - schemaKey: PropertyValue
  460. value: Units
  461. - schemaKey: PropertyValue
  462. value: ElectrodeGroup
  463. wasAttributedTo:
  464. - age:
  465. schemaKey: PropertyValue
  466. unitText: ISO-8601 duration
  467. value: P33Y
  468. valueReference:
  469. schemaKey: PropertyValue
  470. value: dandi:BirthReference
  471. identifier: '12'
  472. schemaKey: Participant
  473. sex:
  474. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  475. name: Female
  476. schemaKey: SexType
  477. species:
  478. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  479. name: Homo sapiens - Human
  480. schemaKey: SpeciesType
  481. wasGeneratedBy:
  482. - description: 'SBID: 12'
  483. identifier: '2'
  484. name: '2'
  485. schemaKey: Session
  486. startDate: '2015-01-01T00:00:00-08:00'
  487. - description: Metadata generated by DANDI cli
  488. endDate: '2023-06-23T11:56:56.539435-07:00'
  489. id: urn:uuid:edf96641-9ef2-403d-9563-033c5787f7c6
  490. name: Metadata generation
  491. schemaKey: Activity
  492. startDate: '2023-06-23T11:56:55.799317-07:00'
  493. wasAssociatedWith:
  494. - identifier: RRID:SCR_019009
  495. name: DANDI Command Line Interface
  496. schemaKey: Software
  497. url: https://github.com/dandi/dandi-cli
  498. version: 0.55.1
  499. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  500. access:
  501. - schemaKey: AccessRequirements
  502. status: dandi:OpenAccess
  503. approach:
  504. - name: electrophysiological approach
  505. schemaKey: ApproachType
  506. blobDateModified: '2023-06-23T11:15:44.433875-07:00'
  507. contentSize: 71553336
  508. contentUrl:
  509. - https://api.dandiarchive.org/api/assets/c524268b-f595-42fd-9d28-382290cefe92/download/
  510. - https://dandiarchive.s3.amazonaws.com/blobs/319/6ad/3196ad42-61b2-405a-bd23-78a2cf0a6575
  511. dateModified: '2023-06-23T11:56:57.236946-07:00'
  512. datePublished: '2023-12-13T20:47:02.624146+00:00'
  513. digest:
  514. dandi:dandi-etag: 0236c7731a5d78417f97fae91ac0cc85-2
  515. dandi:sha2-256: 03a7b3883cdbe23b95767e4b8c75847b2c3d91edd4bcd6804e57590be0e8bade
  516. encodingFormat: application/x-nwb
  517. id: dandiasset:c524268b-f595-42fd-9d28-382290cefe92
  518. identifier: c524268b-f595-42fd-9d28-382290cefe92
  519. keywords:
  520. - single neuron, human, intracranial, persistent activity, working memory
  521. measurementTechnique:
  522. - name: surgical technique
  523. schemaKey: MeasurementTechniqueType
  524. - name: spike sorting technique
  525. schemaKey: MeasurementTechniqueType
  526. path: sub-12/sub-12_ses-1_ecephys+image.nwb
  527. publishedBy:
  528. endDate: '2023-12-13T20:47:02.624146+00:00'
  529. id: urn:uuid:be346dc2-0080-4066-bf97-95a4b55dc741
  530. name: DANDI publish
  531. schemaKey: PublishActivity
  532. startDate: '2023-12-13T20:47:02.624146+00:00'
  533. wasAssociatedWith:
  534. - id: urn:uuid:a5d256c4-f34b-4b5b-b1a6-f597435ba5fd
  535. identifier: RRID:SCR_017571
  536. name: DANDI API
  537. schemaKey: Software
  538. version: 0.1.0
  539. schemaKey: Asset
  540. schemaVersion: 0.6.4
  541. variableMeasured:
  542. - schemaKey: PropertyValue
  543. value: Units
  544. - schemaKey: PropertyValue
  545. value: ElectrodeGroup
  546. wasAttributedTo:
  547. - age:
  548. schemaKey: PropertyValue
  549. unitText: ISO-8601 duration
  550. value: P33Y
  551. valueReference:
  552. schemaKey: PropertyValue
  553. value: dandi:BirthReference
  554. identifier: '12'
  555. schemaKey: Participant
  556. sex:
  557. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  558. name: Female
  559. schemaKey: SexType
  560. species:
  561. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  562. name: Homo sapiens - Human
  563. schemaKey: SpeciesType
  564. wasGeneratedBy:
  565. - description: 'SCID: 12'
  566. identifier: '1'
  567. name: '1'
  568. schemaKey: Session
  569. startDate: '2015-01-01T00:00:00-08:00'
  570. - description: Metadata generated by DANDI cli
  571. endDate: '2023-06-23T11:56:57.236946-07:00'
  572. id: urn:uuid:d278c67f-2710-4816-aa3a-5b69fca02ffa
  573. name: Metadata generation
  574. schemaKey: Activity
  575. startDate: '2023-06-23T11:56:55.279511-07:00'
  576. wasAssociatedWith:
  577. - identifier: RRID:SCR_019009
  578. name: DANDI Command Line Interface
  579. schemaKey: Software
  580. url: https://github.com/dandi/dandi-cli
  581. version: 0.55.1
  582. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  583. access:
  584. - schemaKey: AccessRequirements
  585. status: dandi:OpenAccess
  586. approach:
  587. - name: electrophysiological approach
  588. schemaKey: ApproachType
  589. blobDateModified: '2023-06-23T10:42:45.743812-07:00'
  590. contentSize: 615628696
  591. contentUrl:
  592. - https://api.dandiarchive.org/api/assets/7d2f0909-d536-4a3e-94d6-3c39a2afbdb8/download/
  593. - https://dandiarchive.s3.amazonaws.com/blobs/a14/e45/a14e4510-5e0e-4d23-96ed-a37b34d98921
  594. dateModified: '2023-06-23T11:56:57.378601-07:00'
  595. datePublished: '2023-12-13T20:47:02.587602+00:00'
  596. digest:
  597. dandi:dandi-etag: d5d079c9d35924219b22cb55ee95a538-10
  598. dandi:sha2-256: 5ee710a5921ce3aabf816aabc6f720bbe4db5cc7a0516cabe4af432aa7626530
  599. encodingFormat: application/x-nwb
  600. id: dandiasset:7d2f0909-d536-4a3e-94d6-3c39a2afbdb8
  601. identifier: 7d2f0909-d536-4a3e-94d6-3c39a2afbdb8
  602. keywords:
  603. - single neuron, human, intracranial, persistent activity, working memory
  604. measurementTechnique:
  605. - name: surgical technique
  606. schemaKey: MeasurementTechniqueType
  607. - name: spike sorting technique
  608. schemaKey: MeasurementTechniqueType
  609. path: sub-11/sub-11_ses-2_ecephys+image.nwb
  610. publishedBy:
  611. endDate: '2023-12-13T20:47:02.587602+00:00'
  612. id: urn:uuid:f59b6e1e-830b-4bbf-923c-ac97ed28a7ec
  613. name: DANDI publish
  614. schemaKey: PublishActivity
  615. startDate: '2023-12-13T20:47:02.587602+00:00'
  616. wasAssociatedWith:
  617. - id: urn:uuid:19b2f2e6-fc8f-4745-9d23-e8f688745052
  618. identifier: RRID:SCR_017571
  619. name: DANDI API
  620. schemaKey: Software
  621. version: 0.1.0
  622. schemaKey: Asset
  623. schemaVersion: 0.6.4
  624. variableMeasured:
  625. - schemaKey: PropertyValue
  626. value: Units
  627. - schemaKey: PropertyValue
  628. value: ElectrodeGroup
  629. wasAttributedTo:
  630. - age:
  631. schemaKey: PropertyValue
  632. unitText: ISO-8601 duration
  633. value: P45Y
  634. valueReference:
  635. schemaKey: PropertyValue
  636. value: dandi:BirthReference
  637. identifier: '11'
  638. schemaKey: Participant
  639. sex:
  640. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  641. name: Male
  642. schemaKey: SexType
  643. species:
  644. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  645. name: Homo sapiens - Human
  646. schemaKey: SpeciesType
  647. wasGeneratedBy:
  648. - description: 'SBID: 11'
  649. identifier: '2'
  650. name: '2'
  651. schemaKey: Session
  652. startDate: '2015-01-01T00:00:00-08:00'
  653. - description: Metadata generated by DANDI cli
  654. endDate: '2023-06-23T11:56:57.378601-07:00'
  655. id: urn:uuid:3f8958d8-09d1-408e-864f-d61bb9edaa5b
  656. name: Metadata generation
  657. schemaKey: Activity
  658. startDate: '2023-06-23T11:56:56.262106-07:00'
  659. wasAssociatedWith:
  660. - identifier: RRID:SCR_019009
  661. name: DANDI Command Line Interface
  662. schemaKey: Software
  663. url: https://github.com/dandi/dandi-cli
  664. version: 0.55.1
  665. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  666. access:
  667. - schemaKey: AccessRequirements
  668. status: dandi:OpenAccess
  669. approach:
  670. - name: electrophysiological approach
  671. schemaKey: ApproachType
  672. blobDateModified: '2023-06-23T11:19:06.049259-07:00'
  673. contentSize: 323444768
  674. contentUrl:
  675. - https://api.dandiarchive.org/api/assets/dfc1b19f-a049-4a03-a039-1710420d23d1/download/
  676. - https://dandiarchive.s3.amazonaws.com/blobs/de3/25b/de325b7d-2c8d-4562-8744-60f0fd56784b
  677. dateModified: '2023-06-23T11:57:05.194850-07:00'
  678. datePublished: '2023-12-13T20:47:02.631165+00:00'
  679. digest:
  680. dandi:dandi-etag: 81ec6873ab7f91c8e67c451805a0bb8e-5
  681. dandi:sha2-256: e32f16ddb2dd98d2fe94ae6ce47135404df42e117c14dff2120cfe2597baf8df
  682. encodingFormat: application/x-nwb
  683. id: dandiasset:dfc1b19f-a049-4a03-a039-1710420d23d1
  684. identifier: dfc1b19f-a049-4a03-a039-1710420d23d1
  685. keywords:
  686. - single neuron, human, intracranial, persistent activity, working memory
  687. measurementTechnique:
  688. - name: surgical technique
  689. schemaKey: MeasurementTechniqueType
  690. - name: spike sorting technique
  691. schemaKey: MeasurementTechniqueType
  692. path: sub-13/sub-13_ses-1_ecephys+image.nwb
  693. publishedBy:
  694. endDate: '2023-12-13T20:47:02.631165+00:00'
  695. id: urn:uuid:668c9d80-ecb4-4516-a8b1-3b1a823c735c
  696. name: DANDI publish
  697. schemaKey: PublishActivity
  698. startDate: '2023-12-13T20:47:02.631165+00:00'
  699. wasAssociatedWith:
  700. - id: urn:uuid:fcc32c4e-98a4-4683-acf5-b7b754442a02
  701. identifier: RRID:SCR_017571
  702. name: DANDI API
  703. schemaKey: Software
  704. version: 0.1.0
  705. schemaKey: Asset
  706. schemaVersion: 0.6.4
  707. variableMeasured:
  708. - schemaKey: PropertyValue
  709. value: Units
  710. - schemaKey: PropertyValue
  711. value: ElectrodeGroup
  712. wasAttributedTo:
  713. - age:
  714. schemaKey: PropertyValue
  715. unitText: ISO-8601 duration
  716. value: P26Y
  717. valueReference:
  718. schemaKey: PropertyValue
  719. value: dandi:BirthReference
  720. identifier: '13'
  721. schemaKey: Participant
  722. sex:
  723. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  724. name: Male
  725. schemaKey: SexType
  726. species:
  727. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  728. name: Homo sapiens - Human
  729. schemaKey: SpeciesType
  730. wasGeneratedBy:
  731. - description: 'SCID: 13'
  732. identifier: '1'
  733. name: '1'
  734. schemaKey: Session
  735. startDate: '2015-01-01T00:00:00-08:00'
  736. - description: Metadata generated by DANDI cli
  737. endDate: '2023-06-23T11:57:05.194850-07:00'
  738. id: urn:uuid:b75e0342-67dd-47a5-b5e4-aa657fccf60a
  739. name: Metadata generation
  740. schemaKey: Activity
  741. startDate: '2023-06-23T11:57:04.551564-07:00'
  742. wasAssociatedWith:
  743. - identifier: RRID:SCR_019009
  744. name: DANDI Command Line Interface
  745. schemaKey: Software
  746. url: https://github.com/dandi/dandi-cli
  747. version: 0.55.1
  748. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  749. access:
  750. - schemaKey: AccessRequirements
  751. status: dandi:OpenAccess
  752. approach:
  753. - name: electrophysiological approach
  754. schemaKey: ApproachType
  755. blobDateModified: '2023-06-23T11:21:38.304162-07:00'
  756. contentSize: 298784488
  757. contentUrl:
  758. - https://api.dandiarchive.org/api/assets/aec8a662-2bc1-4884-831f-b7acbf990450/download/
  759. - https://dandiarchive.s3.amazonaws.com/blobs/f5e/466/f5e466dc-6bdb-4c18-8189-013c9e80805a
  760. dateModified: '2023-06-23T11:57:18.728499-07:00'
  761. datePublished: '2023-12-13T20:47:02.639588+00:00'
  762. digest:
  763. dandi:dandi-etag: ec6efdf8a562aa752d568eeeb1dd187c-5
  764. dandi:sha2-256: 68b9ec736944a3c6ed75548d743fc3ffdd61d57330d1729d60a194b10d755971
  765. encodingFormat: application/x-nwb
  766. id: dandiasset:aec8a662-2bc1-4884-831f-b7acbf990450
  767. identifier: aec8a662-2bc1-4884-831f-b7acbf990450
  768. keywords:
  769. - single neuron, human, intracranial, persistent activity, working memory
  770. measurementTechnique:
  771. - name: surgical technique
  772. schemaKey: MeasurementTechniqueType
  773. - name: spike sorting technique
  774. schemaKey: MeasurementTechniqueType
  775. path: sub-14/sub-14_ses-1_ecephys+image.nwb
  776. publishedBy:
  777. endDate: '2023-12-13T20:47:02.639588+00:00'
  778. id: urn:uuid:18b54e09-73e9-48a8-90f2-b6291cab7759
  779. name: DANDI publish
  780. schemaKey: PublishActivity
  781. startDate: '2023-12-13T20:47:02.639588+00:00'
  782. wasAssociatedWith:
  783. - id: urn:uuid:ab6489e2-19ba-4fbc-a05b-29f45ab4830d
  784. identifier: RRID:SCR_017571
  785. name: DANDI API
  786. schemaKey: Software
  787. version: 0.1.0
  788. schemaKey: Asset
  789. schemaVersion: 0.6.4
  790. variableMeasured:
  791. - schemaKey: PropertyValue
  792. value: Units
  793. - schemaKey: PropertyValue
  794. value: ElectrodeGroup
  795. wasAttributedTo:
  796. - age:
  797. schemaKey: PropertyValue
  798. unitText: ISO-8601 duration
  799. value: P26Y
  800. valueReference:
  801. schemaKey: PropertyValue
  802. value: dandi:BirthReference
  803. identifier: '14'
  804. schemaKey: Participant
  805. sex:
  806. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  807. name: Male
  808. schemaKey: SexType
  809. species:
  810. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  811. name: Homo sapiens - Human
  812. schemaKey: SpeciesType
  813. wasGeneratedBy:
  814. - description: 'SCID: 14'
  815. identifier: '1'
  816. name: '1'
  817. schemaKey: Session
  818. startDate: '2015-01-01T00:00:00-08:00'
  819. - description: Metadata generated by DANDI cli
  820. endDate: '2023-06-23T11:57:18.728499-07:00'
  821. id: urn:uuid:c03936ea-2597-47ff-ae48-da016b0d5947
  822. name: Metadata generation
  823. schemaKey: Activity
  824. startDate: '2023-06-23T11:57:15.723715-07:00'
  825. wasAssociatedWith:
  826. - identifier: RRID:SCR_019009
  827. name: DANDI Command Line Interface
  828. schemaKey: Software
  829. url: https://github.com/dandi/dandi-cli
  830. version: 0.55.1
  831. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  832. access:
  833. - schemaKey: AccessRequirements
  834. status: dandi:OpenAccess
  835. approach:
  836. - name: electrophysiological approach
  837. schemaKey: ApproachType
  838. blobDateModified: '2023-06-23T10:45:35.922707-07:00'
  839. contentSize: 332059624
  840. contentUrl:
  841. - https://api.dandiarchive.org/api/assets/c64359f6-6d0e-4f7c-86f8-910baf25b24e/download/
  842. - https://dandiarchive.s3.amazonaws.com/blobs/0cc/73a/0cc73ac0-fb89-4c67-a6a8-6133654d2740
  843. dateModified: '2023-06-23T11:57:19.328125-07:00'
  844. datePublished: '2023-12-13T20:47:02.695177+00:00'
  845. digest:
  846. dandi:dandi-etag: 59961f439c548909e456e36f71c9c6bc-5
  847. dandi:sha2-256: 13d1e943db3f34b775557a7e5105c222836507c97f2d357c5b4434054286b208
  848. encodingFormat: application/x-nwb
  849. id: dandiasset:c64359f6-6d0e-4f7c-86f8-910baf25b24e
  850. identifier: c64359f6-6d0e-4f7c-86f8-910baf25b24e
  851. keywords:
  852. - single neuron, human, intracranial, persistent activity, working memory
  853. measurementTechnique:
  854. - name: surgical technique
  855. schemaKey: MeasurementTechniqueType
  856. - name: spike sorting technique
  857. schemaKey: MeasurementTechniqueType
  858. path: sub-14/sub-14_ses-2_ecephys+image.nwb
  859. publishedBy:
  860. endDate: '2023-12-13T20:47:02.695177+00:00'
  861. id: urn:uuid:c2bb7820-24fb-4eb0-8ea8-42a0d030bba5
  862. name: DANDI publish
  863. schemaKey: PublishActivity
  864. startDate: '2023-12-13T20:47:02.695177+00:00'
  865. wasAssociatedWith:
  866. - id: urn:uuid:35253b58-9e3f-4944-83d8-75ecf9c1899d
  867. identifier: RRID:SCR_017571
  868. name: DANDI API
  869. schemaKey: Software
  870. version: 0.1.0
  871. schemaKey: Asset
  872. schemaVersion: 0.6.4
  873. variableMeasured:
  874. - schemaKey: PropertyValue
  875. value: Units
  876. - schemaKey: PropertyValue
  877. value: ElectrodeGroup
  878. wasAttributedTo:
  879. - age:
  880. schemaKey: PropertyValue
  881. unitText: ISO-8601 duration
  882. value: P26Y
  883. valueReference:
  884. schemaKey: PropertyValue
  885. value: dandi:BirthReference
  886. identifier: '14'
  887. schemaKey: Participant
  888. sex:
  889. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  890. name: Male
  891. schemaKey: SexType
  892. species:
  893. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  894. name: Homo sapiens - Human
  895. schemaKey: SpeciesType
  896. wasGeneratedBy:
  897. - description: 'SBID: 14'
  898. identifier: '2'
  899. name: '2'
  900. schemaKey: Session
  901. startDate: '2015-01-01T00:00:00-08:00'
  902. - description: Metadata generated by DANDI cli
  903. endDate: '2023-06-23T11:57:19.328125-07:00'
  904. id: urn:uuid:98728ba4-61d9-41cd-87e3-74b9fa5f5bb5
  905. name: Metadata generation
  906. schemaKey: Activity
  907. startDate: '2023-06-23T11:57:17.712962-07:00'
  908. wasAssociatedWith:
  909. - identifier: RRID:SCR_019009
  910. name: DANDI Command Line Interface
  911. schemaKey: Software
  912. url: https://github.com/dandi/dandi-cli
  913. version: 0.55.1
  914. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  915. access:
  916. - schemaKey: AccessRequirements
  917. status: dandi:OpenAccess
  918. approach:
  919. - name: electrophysiological approach
  920. schemaKey: ApproachType
  921. blobDateModified: '2023-06-23T10:44:27.834200-07:00'
  922. contentSize: 263191880
  923. contentUrl:
  924. - https://api.dandiarchive.org/api/assets/60c1e266-44d3-40b8-bd30-81649aed6503/download/
  925. - https://dandiarchive.s3.amazonaws.com/blobs/688/b39/688b394b-bcd9-463c-8111-d394039e1ecc
  926. dateModified: '2023-06-23T11:57:15.889805-07:00'
  927. datePublished: '2023-12-13T20:47:02.594659+00:00'
  928. digest:
  929. dandi:dandi-etag: 53933f3b6c4b138233b226bea2f27990-4
  930. dandi:sha2-256: 44428354286d96d4e1801bda4e101e0167fe41c13af460ab21eaac93cb67a8cd
  931. encodingFormat: application/x-nwb
  932. id: dandiasset:60c1e266-44d3-40b8-bd30-81649aed6503
  933. identifier: 60c1e266-44d3-40b8-bd30-81649aed6503
  934. keywords:
  935. - single neuron, human, intracranial, persistent activity, working memory
  936. measurementTechnique:
  937. - name: surgical technique
  938. schemaKey: MeasurementTechniqueType
  939. - name: spike sorting technique
  940. schemaKey: MeasurementTechniqueType
  941. path: sub-13/sub-13_ses-2_ecephys+image.nwb
  942. publishedBy:
  943. endDate: '2023-12-13T20:47:02.594659+00:00'
  944. id: urn:uuid:1412138f-a346-4286-aa8f-393020a0b95b
  945. name: DANDI publish
  946. schemaKey: PublishActivity
  947. startDate: '2023-12-13T20:47:02.594659+00:00'
  948. wasAssociatedWith:
  949. - id: urn:uuid:71061734-1b5f-46dc-86c1-42d299f5e019
  950. identifier: RRID:SCR_017571
  951. name: DANDI API
  952. schemaKey: Software
  953. version: 0.1.0
  954. schemaKey: Asset
  955. schemaVersion: 0.6.4
  956. variableMeasured:
  957. - schemaKey: PropertyValue
  958. value: Units
  959. - schemaKey: PropertyValue
  960. value: ElectrodeGroup
  961. wasAttributedTo:
  962. - age:
  963. schemaKey: PropertyValue
  964. unitText: ISO-8601 duration
  965. value: P26Y
  966. valueReference:
  967. schemaKey: PropertyValue
  968. value: dandi:BirthReference
  969. identifier: '13'
  970. schemaKey: Participant
  971. sex:
  972. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  973. name: Male
  974. schemaKey: SexType
  975. species:
  976. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  977. name: Homo sapiens - Human
  978. schemaKey: SpeciesType
  979. wasGeneratedBy:
  980. - description: 'SBID: 13'
  981. identifier: '2'
  982. name: '2'
  983. schemaKey: Session
  984. startDate: '2015-01-01T00:00:00-08:00'
  985. - description: Metadata generated by DANDI cli
  986. endDate: '2023-06-23T11:57:15.889805-07:00'
  987. id: urn:uuid:64a7670e-e742-4a48-ae39-46313696b0a1
  988. name: Metadata generation
  989. schemaKey: Activity
  990. startDate: '2023-06-23T11:57:14.995751-07:00'
  991. wasAssociatedWith:
  992. - identifier: RRID:SCR_019009
  993. name: DANDI Command Line Interface
  994. schemaKey: Software
  995. url: https://github.com/dandi/dandi-cli
  996. version: 0.55.1
  997. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  998. access:
  999. - schemaKey: AccessRequirements
  1000. status: dandi:OpenAccess
  1001. approach:
  1002. - name: electrophysiological approach
  1003. schemaKey: ApproachType
  1004. blobDateModified: '2023-06-23T11:23:42.017859-07:00'
  1005. contentSize: 262797288
  1006. contentUrl:
  1007. - https://api.dandiarchive.org/api/assets/573b009e-4d93-4015-8d92-9b37dcfae70a/download/
  1008. - https://dandiarchive.s3.amazonaws.com/blobs/a57/612/a5761234-5ad5-42c6-8b65-e38e1703b1fc
  1009. dateModified: '2023-06-23T11:57:26.998980-07:00'
  1010. datePublished: '2023-12-13T20:47:02.646242+00:00'
  1011. digest:
  1012. dandi:dandi-etag: 1d4cfbb911440fcbec41d9dfcd6dcc5f-4
  1013. dandi:sha2-256: 5844aec9a56722f278e19d894283d30cad40d7d40111bd0c17dfad33714e61f6
  1014. encodingFormat: application/x-nwb
  1015. id: dandiasset:573b009e-4d93-4015-8d92-9b37dcfae70a
  1016. identifier: 573b009e-4d93-4015-8d92-9b37dcfae70a
  1017. keywords:
  1018. - single neuron, human, intracranial, persistent activity, working memory
  1019. measurementTechnique:
  1020. - name: surgical technique
  1021. schemaKey: MeasurementTechniqueType
  1022. - name: spike sorting technique
  1023. schemaKey: MeasurementTechniqueType
  1024. path: sub-15/sub-15_ses-1_ecephys+image.nwb
  1025. publishedBy:
  1026. endDate: '2023-12-13T20:47:02.646242+00:00'
  1027. id: urn:uuid:afddce40-07d3-42c7-ab40-24374c8f27a9
  1028. name: DANDI publish
  1029. schemaKey: PublishActivity
  1030. startDate: '2023-12-13T20:47:02.646242+00:00'
  1031. wasAssociatedWith:
  1032. - id: urn:uuid:5ee2ee33-0615-4750-9f60-b8ca9afb9ee3
  1033. identifier: RRID:SCR_017571
  1034. name: DANDI API
  1035. schemaKey: Software
  1036. version: 0.1.0
  1037. schemaKey: Asset
  1038. schemaVersion: 0.6.4
  1039. variableMeasured:
  1040. - schemaKey: PropertyValue
  1041. value: Units
  1042. - schemaKey: PropertyValue
  1043. value: ElectrodeGroup
  1044. wasAttributedTo:
  1045. - age:
  1046. schemaKey: PropertyValue
  1047. unitText: ISO-8601 duration
  1048. value: P25Y
  1049. valueReference:
  1050. schemaKey: PropertyValue
  1051. value: dandi:BirthReference
  1052. identifier: '15'
  1053. schemaKey: Participant
  1054. sex:
  1055. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1056. name: Male
  1057. schemaKey: SexType
  1058. species:
  1059. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1060. name: Homo sapiens - Human
  1061. schemaKey: SpeciesType
  1062. wasGeneratedBy:
  1063. - description: 'SCID: 15'
  1064. identifier: '1'
  1065. name: '1'
  1066. schemaKey: Session
  1067. startDate: '2016-01-01T00:00:00-08:00'
  1068. - description: Metadata generated by DANDI cli
  1069. endDate: '2023-06-23T11:57:26.998980-07:00'
  1070. id: urn:uuid:6bdd3ea5-1f7c-40f5-803c-ee1974d12ba3
  1071. name: Metadata generation
  1072. schemaKey: Activity
  1073. startDate: '2023-06-23T11:57:25.515954-07:00'
  1074. wasAssociatedWith:
  1075. - identifier: RRID:SCR_019009
  1076. name: DANDI Command Line Interface
  1077. schemaKey: Software
  1078. url: https://github.com/dandi/dandi-cli
  1079. version: 0.55.1
  1080. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1081. access:
  1082. - schemaKey: AccessRequirements
  1083. status: dandi:OpenAccess
  1084. approach:
  1085. - name: electrophysiological approach
  1086. schemaKey: ApproachType
  1087. blobDateModified: '2023-06-23T11:24:39.607143-07:00'
  1088. contentSize: 166473608
  1089. contentUrl:
  1090. - https://api.dandiarchive.org/api/assets/e9d77621-8827-4f2c-ae9c-ab0ea6b73108/download/
  1091. - https://dandiarchive.s3.amazonaws.com/blobs/939/480/93948011-d1ff-41de-865f-3eefe729c599
  1092. dateModified: '2023-06-23T11:57:34.218740-07:00'
  1093. datePublished: '2023-12-13T20:47:02.709983+00:00'
  1094. digest:
  1095. dandi:dandi-etag: e392d9ea793e2dfb786507a1e230ff19-3
  1096. dandi:sha2-256: c240eb545385b28b348ea6ca61f44fcffbbb504a1713c29667a7cde3526819c5
  1097. encodingFormat: application/x-nwb
  1098. id: dandiasset:e9d77621-8827-4f2c-ae9c-ab0ea6b73108
  1099. identifier: e9d77621-8827-4f2c-ae9c-ab0ea6b73108
  1100. keywords:
  1101. - single neuron, human, intracranial, persistent activity, working memory
  1102. measurementTechnique:
  1103. - name: surgical technique
  1104. schemaKey: MeasurementTechniqueType
  1105. - name: spike sorting technique
  1106. schemaKey: MeasurementTechniqueType
  1107. path: sub-16/sub-16_ses-1_ecephys+image.nwb
  1108. publishedBy:
  1109. endDate: '2023-12-13T20:47:02.709983+00:00'
  1110. id: urn:uuid:3bf6cb13-5228-43f3-b624-ff3a6812f733
  1111. name: DANDI publish
  1112. schemaKey: PublishActivity
  1113. startDate: '2023-12-13T20:47:02.709983+00:00'
  1114. wasAssociatedWith:
  1115. - id: urn:uuid:06e33190-fa91-4c18-b070-fd046ceed169
  1116. identifier: RRID:SCR_017571
  1117. name: DANDI API
  1118. schemaKey: Software
  1119. version: 0.1.0
  1120. schemaKey: Asset
  1121. schemaVersion: 0.6.4
  1122. variableMeasured:
  1123. - schemaKey: PropertyValue
  1124. value: Units
  1125. - schemaKey: PropertyValue
  1126. value: ElectrodeGroup
  1127. wasAttributedTo:
  1128. - age:
  1129. schemaKey: PropertyValue
  1130. unitText: ISO-8601 duration
  1131. value: P54Y
  1132. valueReference:
  1133. schemaKey: PropertyValue
  1134. value: dandi:BirthReference
  1135. identifier: '16'
  1136. schemaKey: Participant
  1137. sex:
  1138. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1139. name: Male
  1140. schemaKey: SexType
  1141. species:
  1142. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1143. name: Homo sapiens - Human
  1144. schemaKey: SpeciesType
  1145. wasGeneratedBy:
  1146. - description: 'SCID: 16'
  1147. identifier: '1'
  1148. name: '1'
  1149. schemaKey: Session
  1150. startDate: '2014-01-01T00:00:00-08:00'
  1151. - description: Metadata generated by DANDI cli
  1152. endDate: '2023-06-23T11:57:34.218740-07:00'
  1153. id: urn:uuid:63bc3e81-0ca5-4119-91c4-38dfd6640003
  1154. name: Metadata generation
  1155. schemaKey: Activity
  1156. startDate: '2023-06-23T11:57:33.785307-07:00'
  1157. wasAssociatedWith:
  1158. - identifier: RRID:SCR_019009
  1159. name: DANDI Command Line Interface
  1160. schemaKey: Software
  1161. url: https://github.com/dandi/dandi-cli
  1162. version: 0.55.1
  1163. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1164. access:
  1165. - schemaKey: AccessRequirements
  1166. status: dandi:OpenAccess
  1167. approach:
  1168. - name: electrophysiological approach
  1169. schemaKey: ApproachType
  1170. blobDateModified: '2023-06-23T10:47:08.897263-07:00'
  1171. contentSize: 461967400
  1172. contentUrl:
  1173. - https://api.dandiarchive.org/api/assets/cd162f04-5c53-4214-8b1b-493738b2f7ff/download/
  1174. - https://dandiarchive.s3.amazonaws.com/blobs/333/70a/33370a8f-c7e6-4a2e-b495-efb378a0f8ba
  1175. dateModified: '2023-06-23T11:57:33.518987-07:00'
  1176. datePublished: '2023-12-13T20:47:02.751958+00:00'
  1177. digest:
  1178. dandi:dandi-etag: e675914dc12f6f34345f2fa217da1f90-7
  1179. dandi:sha2-256: c40f0da571fb617313407dcf8772e82b18e6bfe227d0275b19578c7f89ae73aa
  1180. encodingFormat: application/x-nwb
  1181. id: dandiasset:cd162f04-5c53-4214-8b1b-493738b2f7ff
  1182. identifier: cd162f04-5c53-4214-8b1b-493738b2f7ff
  1183. keywords:
  1184. - single neuron, human, intracranial, persistent activity, working memory
  1185. measurementTechnique:
  1186. - name: surgical technique
  1187. schemaKey: MeasurementTechniqueType
  1188. - name: spike sorting technique
  1189. schemaKey: MeasurementTechniqueType
  1190. path: sub-15/sub-15_ses-2_ecephys+image.nwb
  1191. publishedBy:
  1192. endDate: '2023-12-13T20:47:02.751958+00:00'
  1193. id: urn:uuid:766d57fa-7819-4965-a088-a5f33d11515c
  1194. name: DANDI publish
  1195. schemaKey: PublishActivity
  1196. startDate: '2023-12-13T20:47:02.751958+00:00'
  1197. wasAssociatedWith:
  1198. - id: urn:uuid:a9aeff97-6827-4bca-bbf1-0cabab9da67c
  1199. identifier: RRID:SCR_017571
  1200. name: DANDI API
  1201. schemaKey: Software
  1202. version: 0.1.0
  1203. schemaKey: Asset
  1204. schemaVersion: 0.6.4
  1205. variableMeasured:
  1206. - schemaKey: PropertyValue
  1207. value: Units
  1208. - schemaKey: PropertyValue
  1209. value: ElectrodeGroup
  1210. wasAttributedTo:
  1211. - age:
  1212. schemaKey: PropertyValue
  1213. unitText: ISO-8601 duration
  1214. value: P25Y
  1215. valueReference:
  1216. schemaKey: PropertyValue
  1217. value: dandi:BirthReference
  1218. identifier: '15'
  1219. schemaKey: Participant
  1220. sex:
  1221. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1222. name: Male
  1223. schemaKey: SexType
  1224. species:
  1225. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1226. name: Homo sapiens - Human
  1227. schemaKey: SpeciesType
  1228. wasGeneratedBy:
  1229. - description: 'SBID: 15'
  1230. identifier: '2'
  1231. name: '2'
  1232. schemaKey: Session
  1233. startDate: '2016-01-01T00:00:00-08:00'
  1234. - description: Metadata generated by DANDI cli
  1235. endDate: '2023-06-23T11:57:33.518987-07:00'
  1236. id: urn:uuid:511a4676-af2a-4811-a0b0-46a5e221cb9a
  1237. name: Metadata generation
  1238. schemaKey: Activity
  1239. startDate: '2023-06-23T11:57:32.811272-07:00'
  1240. wasAssociatedWith:
  1241. - identifier: RRID:SCR_019009
  1242. name: DANDI Command Line Interface
  1243. schemaKey: Software
  1244. url: https://github.com/dandi/dandi-cli
  1245. version: 0.55.1
  1246. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1247. access:
  1248. - schemaKey: AccessRequirements
  1249. status: dandi:OpenAccess
  1250. approach:
  1251. - name: electrophysiological approach
  1252. schemaKey: ApproachType
  1253. blobDateModified: '2023-06-23T10:48:27.630595-07:00'
  1254. contentSize: 100155416
  1255. contentUrl:
  1256. - https://api.dandiarchive.org/api/assets/5d348c68-d45f-4e17-98ed-1eb484c76db1/download/
  1257. - https://dandiarchive.s3.amazonaws.com/blobs/0bc/ba8/0bcba855-7e9b-456e-bd5b-39749b933e19
  1258. dateModified: '2023-06-23T11:57:46.420352-07:00'
  1259. datePublished: '2023-12-13T20:47:02.844640+00:00'
  1260. digest:
  1261. dandi:dandi-etag: dc39dad698ee0f723f00d8764a24a4a8-2
  1262. dandi:sha2-256: d10a9f35bdb32b564fd0316e68886489ce42e149b1d65d6ed1d93ec466b25867
  1263. encodingFormat: application/x-nwb
  1264. id: dandiasset:5d348c68-d45f-4e17-98ed-1eb484c76db1
  1265. identifier: 5d348c68-d45f-4e17-98ed-1eb484c76db1
  1266. keywords:
  1267. - single neuron, human, intracranial, persistent activity, working memory
  1268. measurementTechnique:
  1269. - name: surgical technique
  1270. schemaKey: MeasurementTechniqueType
  1271. - name: spike sorting technique
  1272. schemaKey: MeasurementTechniqueType
  1273. path: sub-17/sub-17_ses-2_ecephys+image.nwb
  1274. publishedBy:
  1275. endDate: '2023-12-13T20:47:02.844640+00:00'
  1276. id: urn:uuid:fc2fd727-ca53-48da-842a-697c868ee71c
  1277. name: DANDI publish
  1278. schemaKey: PublishActivity
  1279. startDate: '2023-12-13T20:47:02.844640+00:00'
  1280. wasAssociatedWith:
  1281. - id: urn:uuid:66bcd321-f24a-47c3-939c-047e413df6ab
  1282. identifier: RRID:SCR_017571
  1283. name: DANDI API
  1284. schemaKey: Software
  1285. version: 0.1.0
  1286. schemaKey: Asset
  1287. schemaVersion: 0.6.4
  1288. variableMeasured:
  1289. - schemaKey: PropertyValue
  1290. value: Units
  1291. - schemaKey: PropertyValue
  1292. value: ElectrodeGroup
  1293. wasAttributedTo:
  1294. - age:
  1295. schemaKey: PropertyValue
  1296. unitText: ISO-8601 duration
  1297. value: P54Y
  1298. valueReference:
  1299. schemaKey: PropertyValue
  1300. value: dandi:BirthReference
  1301. identifier: '17'
  1302. schemaKey: Participant
  1303. sex:
  1304. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1305. name: Female
  1306. schemaKey: SexType
  1307. species:
  1308. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1309. name: Homo sapiens - Human
  1310. schemaKey: SpeciesType
  1311. wasGeneratedBy:
  1312. - description: 'SBID: 17'
  1313. identifier: '2'
  1314. name: '2'
  1315. schemaKey: Session
  1316. startDate: '2015-01-01T00:00:00-08:00'
  1317. - description: Metadata generated by DANDI cli
  1318. endDate: '2023-06-23T11:57:46.420352-07:00'
  1319. id: urn:uuid:d5a60d8a-3eb4-4b6a-807d-80b5ee74786b
  1320. name: Metadata generation
  1321. schemaKey: Activity
  1322. startDate: '2023-06-23T11:57:45.621339-07:00'
  1323. wasAssociatedWith:
  1324. - identifier: RRID:SCR_019009
  1325. name: DANDI Command Line Interface
  1326. schemaKey: Software
  1327. url: https://github.com/dandi/dandi-cli
  1328. version: 0.55.1
  1329. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1330. access:
  1331. - schemaKey: AccessRequirements
  1332. status: dandi:OpenAccess
  1333. approach:
  1334. - name: electrophysiological approach
  1335. schemaKey: ApproachType
  1336. blobDateModified: '2023-06-23T11:25:02.854026-07:00'
  1337. contentSize: 47345824
  1338. contentUrl:
  1339. - https://api.dandiarchive.org/api/assets/17c90c6d-8b43-4576-bbef-2cce72ac7ef8/download/
  1340. - https://dandiarchive.s3.amazonaws.com/blobs/08f/2fc/08f2fc15-80cb-455f-b8c5-c60cb49f9f6e
  1341. dateModified: '2023-06-23T11:57:44.726436-07:00'
  1342. datePublished: '2023-12-13T20:47:02.851280+00:00'
  1343. digest:
  1344. dandi:dandi-etag: d9193a87d8556fc9f5cd6391505ac8f3-1
  1345. dandi:sha2-256: 9789788d0a2b27b5fb4b1f82e20d121073e7467442ff6602420cd8e5aa080d6a
  1346. encodingFormat: application/x-nwb
  1347. id: dandiasset:17c90c6d-8b43-4576-bbef-2cce72ac7ef8
  1348. identifier: 17c90c6d-8b43-4576-bbef-2cce72ac7ef8
  1349. keywords:
  1350. - single neuron, human, intracranial, persistent activity, working memory
  1351. measurementTechnique:
  1352. - name: surgical technique
  1353. schemaKey: MeasurementTechniqueType
  1354. - name: spike sorting technique
  1355. schemaKey: MeasurementTechniqueType
  1356. path: sub-17/sub-17_ses-1_ecephys+image.nwb
  1357. publishedBy:
  1358. endDate: '2023-12-13T20:47:02.851280+00:00'
  1359. id: urn:uuid:61837ba7-127f-43fc-9b63-582618d04fb6
  1360. name: DANDI publish
  1361. schemaKey: PublishActivity
  1362. startDate: '2023-12-13T20:47:02.851280+00:00'
  1363. wasAssociatedWith:
  1364. - id: urn:uuid:85023747-e030-4be7-8a7a-db34dfadd707
  1365. identifier: RRID:SCR_017571
  1366. name: DANDI API
  1367. schemaKey: Software
  1368. version: 0.1.0
  1369. schemaKey: Asset
  1370. schemaVersion: 0.6.4
  1371. variableMeasured:
  1372. - schemaKey: PropertyValue
  1373. value: Units
  1374. - schemaKey: PropertyValue
  1375. value: ElectrodeGroup
  1376. wasAttributedTo:
  1377. - age:
  1378. schemaKey: PropertyValue
  1379. unitText: ISO-8601 duration
  1380. value: P54Y
  1381. valueReference:
  1382. schemaKey: PropertyValue
  1383. value: dandi:BirthReference
  1384. identifier: '17'
  1385. schemaKey: Participant
  1386. sex:
  1387. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1388. name: Female
  1389. schemaKey: SexType
  1390. species:
  1391. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1392. name: Homo sapiens - Human
  1393. schemaKey: SpeciesType
  1394. wasGeneratedBy:
  1395. - description: 'SCID: 17'
  1396. identifier: '1'
  1397. name: '1'
  1398. schemaKey: Session
  1399. startDate: '2015-01-01T00:00:00-08:00'
  1400. - description: Metadata generated by DANDI cli
  1401. endDate: '2023-06-23T11:57:44.726436-07:00'
  1402. id: urn:uuid:fb71150c-eed3-49b6-a84b-2c94e0babe18
  1403. name: Metadata generation
  1404. schemaKey: Activity
  1405. startDate: '2023-06-23T11:57:43.822564-07:00'
  1406. wasAssociatedWith:
  1407. - identifier: RRID:SCR_019009
  1408. name: DANDI Command Line Interface
  1409. schemaKey: Software
  1410. url: https://github.com/dandi/dandi-cli
  1411. version: 0.55.1
  1412. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1413. access:
  1414. - schemaKey: AccessRequirements
  1415. status: dandi:OpenAccess
  1416. approach:
  1417. - name: electrophysiological approach
  1418. schemaKey: ApproachType
  1419. blobDateModified: '2023-06-23T10:50:37.295487-07:00'
  1420. contentSize: 27268224
  1421. contentUrl:
  1422. - https://api.dandiarchive.org/api/assets/d452ea33-5135-47f8-9448-f6293e8fbea7/download/
  1423. - https://dandiarchive.s3.amazonaws.com/blobs/b6f/99b/b6f99b66-e8e9-47e4-acc8-e7c9c7cdfdda
  1424. dateModified: '2023-06-23T11:57:58.336338-07:00'
  1425. datePublished: '2023-12-13T20:47:02.758977+00:00'
  1426. digest:
  1427. dandi:dandi-etag: ddbecc4f1244fbbfb3bb0562a2c3fc8f-1
  1428. dandi:sha2-256: 9e3d53e94aa7d3b9486c971d320822f1f3d896ad7c7b339595b9db5e81d22356
  1429. encodingFormat: application/x-nwb
  1430. id: dandiasset:d452ea33-5135-47f8-9448-f6293e8fbea7
  1431. identifier: d452ea33-5135-47f8-9448-f6293e8fbea7
  1432. keywords:
  1433. - single neuron, human, intracranial, persistent activity, working memory
  1434. measurementTechnique:
  1435. - name: surgical technique
  1436. schemaKey: MeasurementTechniqueType
  1437. - name: spike sorting technique
  1438. schemaKey: MeasurementTechniqueType
  1439. path: sub-19/sub-19_ses-2_ecephys+image.nwb
  1440. publishedBy:
  1441. endDate: '2023-12-13T20:47:02.758977+00:00'
  1442. id: urn:uuid:cecbb643-ed6f-49e7-8a6e-f17e2ee6cacd
  1443. name: DANDI publish
  1444. schemaKey: PublishActivity
  1445. startDate: '2023-12-13T20:47:02.758977+00:00'
  1446. wasAssociatedWith:
  1447. - id: urn:uuid:520e94ca-f8af-414c-9ca3-d411187c3108
  1448. identifier: RRID:SCR_017571
  1449. name: DANDI API
  1450. schemaKey: Software
  1451. version: 0.1.0
  1452. schemaKey: Asset
  1453. schemaVersion: 0.6.4
  1454. variableMeasured:
  1455. - schemaKey: PropertyValue
  1456. value: Units
  1457. - schemaKey: PropertyValue
  1458. value: ElectrodeGroup
  1459. wasAttributedTo:
  1460. - age:
  1461. schemaKey: PropertyValue
  1462. unitText: ISO-8601 duration
  1463. value: P20Y
  1464. valueReference:
  1465. schemaKey: PropertyValue
  1466. value: dandi:BirthReference
  1467. identifier: '19'
  1468. schemaKey: Participant
  1469. sex:
  1470. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1471. name: Male
  1472. schemaKey: SexType
  1473. species:
  1474. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1475. name: Homo sapiens - Human
  1476. schemaKey: SpeciesType
  1477. wasGeneratedBy:
  1478. - description: 'SBID: 19'
  1479. identifier: '2'
  1480. name: '2'
  1481. schemaKey: Session
  1482. startDate: '2014-01-01T00:00:00-08:00'
  1483. - description: Metadata generated by DANDI cli
  1484. endDate: '2023-06-23T11:57:58.336338-07:00'
  1485. id: urn:uuid:a101c071-3ab0-4d04-ae32-54ed567e4a46
  1486. name: Metadata generation
  1487. schemaKey: Activity
  1488. startDate: '2023-06-23T11:57:57.905273-07:00'
  1489. wasAssociatedWith:
  1490. - identifier: RRID:SCR_019009
  1491. name: DANDI Command Line Interface
  1492. schemaKey: Software
  1493. url: https://github.com/dandi/dandi-cli
  1494. version: 0.55.1
  1495. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1496. access:
  1497. - schemaKey: AccessRequirements
  1498. status: dandi:OpenAccess
  1499. approach:
  1500. - name: electrophysiological approach
  1501. schemaKey: ApproachType
  1502. blobDateModified: '2023-06-23T10:48:04.451103-07:00'
  1503. contentSize: 364952192
  1504. contentUrl:
  1505. - https://api.dandiarchive.org/api/assets/8e5682e9-71af-402d-9c06-b6088ac0a853/download/
  1506. - https://dandiarchive.s3.amazonaws.com/blobs/a1a/94b/a1a94b01-8b5b-4fa4-ac28-67465e6b6f30
  1507. dateModified: '2023-06-23T11:57:45.831031-07:00'
  1508. datePublished: '2023-12-13T20:47:02.766383+00:00'
  1509. digest:
  1510. dandi:dandi-etag: f59e7499e9389a169992c16f3e98e010-6
  1511. dandi:sha2-256: 1873011b3b38cc2c3221cdbce7d570d6fc196f65971b9905ada8cab332bffef8
  1512. encodingFormat: application/x-nwb
  1513. id: dandiasset:8e5682e9-71af-402d-9c06-b6088ac0a853
  1514. identifier: 8e5682e9-71af-402d-9c06-b6088ac0a853
  1515. keywords:
  1516. - single neuron, human, intracranial, persistent activity, working memory
  1517. measurementTechnique:
  1518. - name: surgical technique
  1519. schemaKey: MeasurementTechniqueType
  1520. - name: spike sorting technique
  1521. schemaKey: MeasurementTechniqueType
  1522. path: sub-16/sub-16_ses-2_ecephys+image.nwb
  1523. publishedBy:
  1524. endDate: '2023-12-13T20:47:02.766383+00:00'
  1525. id: urn:uuid:48ffb987-a6c5-47ee-8d97-3d8936201d5a
  1526. name: DANDI publish
  1527. schemaKey: PublishActivity
  1528. startDate: '2023-12-13T20:47:02.766383+00:00'
  1529. wasAssociatedWith:
  1530. - id: urn:uuid:7bd2277a-535c-45fe-8986-a14aa0782c7e
  1531. identifier: RRID:SCR_017571
  1532. name: DANDI API
  1533. schemaKey: Software
  1534. version: 0.1.0
  1535. schemaKey: Asset
  1536. schemaVersion: 0.6.4
  1537. variableMeasured:
  1538. - schemaKey: PropertyValue
  1539. value: Units
  1540. - schemaKey: PropertyValue
  1541. value: ElectrodeGroup
  1542. wasAttributedTo:
  1543. - age:
  1544. schemaKey: PropertyValue
  1545. unitText: ISO-8601 duration
  1546. value: P54Y
  1547. valueReference:
  1548. schemaKey: PropertyValue
  1549. value: dandi:BirthReference
  1550. identifier: '16'
  1551. schemaKey: Participant
  1552. sex:
  1553. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1554. name: Male
  1555. schemaKey: SexType
  1556. species:
  1557. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1558. name: Homo sapiens - Human
  1559. schemaKey: SpeciesType
  1560. wasGeneratedBy:
  1561. - description: 'SBID: 16'
  1562. identifier: '2'
  1563. name: '2'
  1564. schemaKey: Session
  1565. startDate: '2014-01-01T00:00:00-08:00'
  1566. - description: Metadata generated by DANDI cli
  1567. endDate: '2023-06-23T11:57:45.831031-07:00'
  1568. id: urn:uuid:e0d313a6-d39c-4221-a980-bf1e272d7c6a
  1569. name: Metadata generation
  1570. schemaKey: Activity
  1571. startDate: '2023-06-23T11:57:45.009732-07:00'
  1572. wasAssociatedWith:
  1573. - identifier: RRID:SCR_019009
  1574. name: DANDI Command Line Interface
  1575. schemaKey: Software
  1576. url: https://github.com/dandi/dandi-cli
  1577. version: 0.55.1
  1578. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1579. access:
  1580. - schemaKey: AccessRequirements
  1581. status: dandi:OpenAccess
  1582. approach:
  1583. - name: electrophysiological approach
  1584. schemaKey: ApproachType
  1585. blobDateModified: '2023-06-23T11:27:42.780826-07:00'
  1586. contentSize: 33147864
  1587. contentUrl:
  1588. - https://api.dandiarchive.org/api/assets/d1970c9a-628e-4880-a67c-9c70108456ab/download/
  1589. - https://dandiarchive.s3.amazonaws.com/blobs/137/11b/13711ba7-e5dd-4a97-b5e2-3d7fd3d6c423
  1590. dateModified: '2023-06-23T11:58:07.171135-07:00'
  1591. datePublished: '2023-12-13T20:47:02.717794+00:00'
  1592. digest:
  1593. dandi:dandi-etag: 980c868cd90bcde715675b35ed05618a-1
  1594. dandi:sha2-256: f3ab1aed7125c222afdf9c176d2868452490895b6d521cf8d2138bee5681420a
  1595. encodingFormat: application/x-nwb
  1596. id: dandiasset:d1970c9a-628e-4880-a67c-9c70108456ab
  1597. identifier: d1970c9a-628e-4880-a67c-9c70108456ab
  1598. keywords:
  1599. - single neuron, human, intracranial, persistent activity, working memory
  1600. measurementTechnique:
  1601. - name: surgical technique
  1602. schemaKey: MeasurementTechniqueType
  1603. - name: spike sorting technique
  1604. schemaKey: MeasurementTechniqueType
  1605. path: sub-20/sub-20_ses-1_ecephys+image.nwb
  1606. publishedBy:
  1607. endDate: '2023-12-13T20:47:02.717794+00:00'
  1608. id: urn:uuid:22c44710-63cb-48c0-b47d-85f084b70ad5
  1609. name: DANDI publish
  1610. schemaKey: PublishActivity
  1611. startDate: '2023-12-13T20:47:02.717794+00:00'
  1612. wasAssociatedWith:
  1613. - id: urn:uuid:444ed74b-d7cc-4e4f-a594-8222bac3da4f
  1614. identifier: RRID:SCR_017571
  1615. name: DANDI API
  1616. schemaKey: Software
  1617. version: 0.1.0
  1618. schemaKey: Asset
  1619. schemaVersion: 0.6.4
  1620. variableMeasured:
  1621. - schemaKey: PropertyValue
  1622. value: Units
  1623. - schemaKey: PropertyValue
  1624. value: ElectrodeGroup
  1625. wasAttributedTo:
  1626. - age:
  1627. schemaKey: PropertyValue
  1628. unitText: ISO-8601 duration
  1629. value: P24Y
  1630. valueReference:
  1631. schemaKey: PropertyValue
  1632. value: dandi:BirthReference
  1633. identifier: '20'
  1634. schemaKey: Participant
  1635. sex:
  1636. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1637. name: Female
  1638. schemaKey: SexType
  1639. species:
  1640. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1641. name: Homo sapiens - Human
  1642. schemaKey: SpeciesType
  1643. wasGeneratedBy:
  1644. - description: 'SCID: 20'
  1645. identifier: '1'
  1646. name: '1'
  1647. schemaKey: Session
  1648. startDate: '2017-01-01T00:00:00-08:00'
  1649. - description: Metadata generated by DANDI cli
  1650. endDate: '2023-06-23T11:58:07.171135-07:00'
  1651. id: urn:uuid:1d0fa5d8-3a81-4ff6-a00d-de64a8db4156
  1652. name: Metadata generation
  1653. schemaKey: Activity
  1654. startDate: '2023-06-23T11:58:06.375297-07:00'
  1655. wasAssociatedWith:
  1656. - identifier: RRID:SCR_019009
  1657. name: DANDI Command Line Interface
  1658. schemaKey: Software
  1659. url: https://github.com/dandi/dandi-cli
  1660. version: 0.55.1
  1661. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1662. access:
  1663. - schemaKey: AccessRequirements
  1664. status: dandi:OpenAccess
  1665. approach:
  1666. - name: electrophysiological approach
  1667. schemaKey: ApproachType
  1668. blobDateModified: '2023-06-23T10:50:49.543776-07:00'
  1669. contentSize: 25582000
  1670. contentUrl:
  1671. - https://api.dandiarchive.org/api/assets/bb415d95-baf6-43c6-be6c-dcd765dd3af1/download/
  1672. - https://dandiarchive.s3.amazonaws.com/blobs/ab1/c57/ab1c5718-36de-42f3-b060-82ff97b1c647
  1673. dateModified: '2023-06-23T11:58:13.429632-07:00'
  1674. datePublished: '2023-12-13T20:47:02.653051+00:00'
  1675. digest:
  1676. dandi:dandi-etag: 26537fc185f74f91bea11ab3e87f72bb-1
  1677. dandi:sha2-256: 311de59768282dfe9bb7df249abf0e1efb5383981c6fe93d5760a32da9fe6270
  1678. encodingFormat: application/x-nwb
  1679. id: dandiasset:bb415d95-baf6-43c6-be6c-dcd765dd3af1
  1680. identifier: bb415d95-baf6-43c6-be6c-dcd765dd3af1
  1681. keywords:
  1682. - single neuron, human, intracranial, persistent activity, working memory
  1683. measurementTechnique:
  1684. - name: surgical technique
  1685. schemaKey: MeasurementTechniqueType
  1686. - name: spike sorting technique
  1687. schemaKey: MeasurementTechniqueType
  1688. path: sub-20/sub-20_ses-2_ecephys+image.nwb
  1689. publishedBy:
  1690. endDate: '2023-12-13T20:47:02.653051+00:00'
  1691. id: urn:uuid:6afa0421-3659-4f0b-aa40-e6f10e72bf8e
  1692. name: DANDI publish
  1693. schemaKey: PublishActivity
  1694. startDate: '2023-12-13T20:47:02.653051+00:00'
  1695. wasAssociatedWith:
  1696. - id: urn:uuid:fe844c7c-3e94-4fe1-a1e1-0d2b6872a962
  1697. identifier: RRID:SCR_017571
  1698. name: DANDI API
  1699. schemaKey: Software
  1700. version: 0.1.0
  1701. schemaKey: Asset
  1702. schemaVersion: 0.6.4
  1703. variableMeasured:
  1704. - schemaKey: PropertyValue
  1705. value: Units
  1706. - schemaKey: PropertyValue
  1707. value: ElectrodeGroup
  1708. wasAttributedTo:
  1709. - age:
  1710. schemaKey: PropertyValue
  1711. unitText: ISO-8601 duration
  1712. value: P24Y
  1713. valueReference:
  1714. schemaKey: PropertyValue
  1715. value: dandi:BirthReference
  1716. identifier: '20'
  1717. schemaKey: Participant
  1718. sex:
  1719. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1720. name: Female
  1721. schemaKey: SexType
  1722. species:
  1723. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1724. name: Homo sapiens - Human
  1725. schemaKey: SpeciesType
  1726. wasGeneratedBy:
  1727. - description: 'SBID: 20'
  1728. identifier: '2'
  1729. name: '2'
  1730. schemaKey: Session
  1731. startDate: '2017-01-01T00:00:00-08:00'
  1732. - description: Metadata generated by DANDI cli
  1733. endDate: '2023-06-23T11:58:13.429632-07:00'
  1734. id: urn:uuid:5c08dc02-a2fc-443b-9f4d-31cc01bd5acb
  1735. name: Metadata generation
  1736. schemaKey: Activity
  1737. startDate: '2023-06-23T11:58:12.678488-07:00'
  1738. wasAssociatedWith:
  1739. - identifier: RRID:SCR_019009
  1740. name: DANDI Command Line Interface
  1741. schemaKey: Software
  1742. url: https://github.com/dandi/dandi-cli
  1743. version: 0.55.1
  1744. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1745. access:
  1746. - schemaKey: AccessRequirements
  1747. status: dandi:OpenAccess
  1748. approach:
  1749. - name: electrophysiological approach
  1750. schemaKey: ApproachType
  1751. blobDateModified: '2023-06-23T11:27:26.474840-07:00'
  1752. contentSize: 230621736
  1753. contentUrl:
  1754. - https://api.dandiarchive.org/api/assets/b2c581f5-c9ed-4d24-8912-5ac6a5072aa0/download/
  1755. - https://dandiarchive.s3.amazonaws.com/blobs/82a/bde/82abde26-2184-452b-a250-736d3511e921
  1756. dateModified: '2023-06-23T11:58:00.972839-07:00'
  1757. datePublished: '2023-12-13T20:47:02.772841+00:00'
  1758. digest:
  1759. dandi:dandi-etag: dbe52a3e178836f53d1d57c6d9c40307-4
  1760. dandi:sha2-256: 80bb2f48622e2450f585c2d34ac227268dc00c21da79181510d59fe272a857f5
  1761. encodingFormat: application/x-nwb
  1762. id: dandiasset:b2c581f5-c9ed-4d24-8912-5ac6a5072aa0
  1763. identifier: b2c581f5-c9ed-4d24-8912-5ac6a5072aa0
  1764. keywords:
  1765. - single neuron, human, intracranial, persistent activity, working memory
  1766. measurementTechnique:
  1767. - name: surgical technique
  1768. schemaKey: MeasurementTechniqueType
  1769. - name: spike sorting technique
  1770. schemaKey: MeasurementTechniqueType
  1771. path: sub-18/sub-18_ses-1_ecephys+image.nwb
  1772. publishedBy:
  1773. endDate: '2023-12-13T20:47:02.772841+00:00'
  1774. id: urn:uuid:a1e57899-b8ba-4131-9d5f-bb1d6e63e0e9
  1775. name: DANDI publish
  1776. schemaKey: PublishActivity
  1777. startDate: '2023-12-13T20:47:02.772841+00:00'
  1778. wasAssociatedWith:
  1779. - id: urn:uuid:7bb47e0d-937c-4e0c-96f9-ce91b7a11c2f
  1780. identifier: RRID:SCR_017571
  1781. name: DANDI API
  1782. schemaKey: Software
  1783. version: 0.1.0
  1784. schemaKey: Asset
  1785. schemaVersion: 0.6.4
  1786. variableMeasured:
  1787. - schemaKey: PropertyValue
  1788. value: Units
  1789. - schemaKey: PropertyValue
  1790. value: ElectrodeGroup
  1791. wasAttributedTo:
  1792. - age:
  1793. schemaKey: PropertyValue
  1794. unitText: ISO-8601 duration
  1795. value: P24Y
  1796. valueReference:
  1797. schemaKey: PropertyValue
  1798. value: dandi:BirthReference
  1799. identifier: '18'
  1800. schemaKey: Participant
  1801. sex:
  1802. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1803. name: Male
  1804. schemaKey: SexType
  1805. species:
  1806. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1807. name: Homo sapiens - Human
  1808. schemaKey: SpeciesType
  1809. wasGeneratedBy:
  1810. - description: 'SCID: 18'
  1811. identifier: '1'
  1812. name: '1'
  1813. schemaKey: Session
  1814. startDate: '2016-01-01T00:00:00-08:00'
  1815. - description: Metadata generated by DANDI cli
  1816. endDate: '2023-06-23T11:58:00.972839-07:00'
  1817. id: urn:uuid:5006f452-23fa-4852-b64e-8ded356b30a2
  1818. name: Metadata generation
  1819. schemaKey: Activity
  1820. startDate: '2023-06-23T11:58:00.071817-07:00'
  1821. wasAssociatedWith:
  1822. - identifier: RRID:SCR_019009
  1823. name: DANDI Command Line Interface
  1824. schemaKey: Software
  1825. url: https://github.com/dandi/dandi-cli
  1826. version: 0.55.1
  1827. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1828. access:
  1829. - schemaKey: AccessRequirements
  1830. status: dandi:OpenAccess
  1831. approach:
  1832. - name: electrophysiological approach
  1833. schemaKey: ApproachType
  1834. blobDateModified: '2023-06-23T10:50:27.578757-07:00'
  1835. contentSize: 365508952
  1836. contentUrl:
  1837. - https://api.dandiarchive.org/api/assets/07f9ab25-963e-4bbe-863d-7b1e9bb3f640/download/
  1838. - https://dandiarchive.s3.amazonaws.com/blobs/3bb/a76/3bba7609-58f5-415f-832c-7fb735a07acb
  1839. dateModified: '2023-06-23T11:58:02.003170-07:00'
  1840. datePublished: '2023-12-13T20:47:02.724843+00:00'
  1841. digest:
  1842. dandi:dandi-etag: 789be6ab2f2c26082caa15b90557d96e-6
  1843. dandi:sha2-256: 892cc1538900f7e2111a93746df21daf5b92c3a05cac7030ad72bc4fb6a31179
  1844. encodingFormat: application/x-nwb
  1845. id: dandiasset:07f9ab25-963e-4bbe-863d-7b1e9bb3f640
  1846. identifier: 07f9ab25-963e-4bbe-863d-7b1e9bb3f640
  1847. keywords:
  1848. - single neuron, human, intracranial, persistent activity, working memory
  1849. measurementTechnique:
  1850. - name: surgical technique
  1851. schemaKey: MeasurementTechniqueType
  1852. - name: spike sorting technique
  1853. schemaKey: MeasurementTechniqueType
  1854. path: sub-18/sub-18_ses-2_ecephys+image.nwb
  1855. publishedBy:
  1856. endDate: '2023-12-13T20:47:02.724843+00:00'
  1857. id: urn:uuid:ca7f55c6-b6e5-4270-9f40-ddb76c3d6368
  1858. name: DANDI publish
  1859. schemaKey: PublishActivity
  1860. startDate: '2023-12-13T20:47:02.724843+00:00'
  1861. wasAssociatedWith:
  1862. - id: urn:uuid:4b72e372-2159-44d0-a707-357ef59d6c3a
  1863. identifier: RRID:SCR_017571
  1864. name: DANDI API
  1865. schemaKey: Software
  1866. version: 0.1.0
  1867. schemaKey: Asset
  1868. schemaVersion: 0.6.4
  1869. variableMeasured:
  1870. - schemaKey: PropertyValue
  1871. value: Units
  1872. - schemaKey: PropertyValue
  1873. value: ElectrodeGroup
  1874. wasAttributedTo:
  1875. - age:
  1876. schemaKey: PropertyValue
  1877. unitText: ISO-8601 duration
  1878. value: P24Y
  1879. valueReference:
  1880. schemaKey: PropertyValue
  1881. value: dandi:BirthReference
  1882. identifier: '18'
  1883. schemaKey: Participant
  1884. sex:
  1885. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1886. name: Male
  1887. schemaKey: SexType
  1888. species:
  1889. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1890. name: Homo sapiens - Human
  1891. schemaKey: SpeciesType
  1892. wasGeneratedBy:
  1893. - description: 'SBID: 18'
  1894. identifier: '2'
  1895. name: '2'
  1896. schemaKey: Session
  1897. startDate: '2016-01-01T00:00:00-08:00'
  1898. - description: Metadata generated by DANDI cli
  1899. endDate: '2023-06-23T11:58:02.003170-07:00'
  1900. id: urn:uuid:4792443d-835f-4a68-b4f4-47f047c81b68
  1901. name: Metadata generation
  1902. schemaKey: Activity
  1903. startDate: '2023-06-23T11:58:01.372145-07:00'
  1904. wasAssociatedWith:
  1905. - identifier: RRID:SCR_019009
  1906. name: DANDI Command Line Interface
  1907. schemaKey: Software
  1908. url: https://github.com/dandi/dandi-cli
  1909. version: 0.55.1
  1910. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1911. access:
  1912. - schemaKey: AccessRequirements
  1913. status: dandi:OpenAccess
  1914. approach:
  1915. - name: electrophysiological approach
  1916. schemaKey: ApproachType
  1917. blobDateModified: '2023-06-23T10:55:33.576167-07:00'
  1918. contentSize: 213931648
  1919. contentUrl:
  1920. - https://api.dandiarchive.org/api/assets/886a2738-d6b6-4665-9005-603000a2374c/download/
  1921. - https://dandiarchive.s3.amazonaws.com/blobs/31e/1a2/31e1a2ad-e4fd-4abc-820b-87fe977fabe8
  1922. dateModified: '2023-06-23T11:58:05.709673-07:00'
  1923. datePublished: '2023-12-13T20:47:02.660091+00:00'
  1924. digest:
  1925. dandi:dandi-etag: 37446980acb6782268e827d40ff237c5-4
  1926. dandi:sha2-256: 68c54a0329751d79cd1eff29d85ef1fb936ee8cac701410f78c9c8134871b3a7
  1927. encodingFormat: application/x-nwb
  1928. id: dandiasset:886a2738-d6b6-4665-9005-603000a2374c
  1929. identifier: 886a2738-d6b6-4665-9005-603000a2374c
  1930. keywords:
  1931. - single neuron, human, intracranial, persistent activity, working memory
  1932. measurementTechnique:
  1933. - name: surgical technique
  1934. schemaKey: MeasurementTechniqueType
  1935. - name: spike sorting technique
  1936. schemaKey: MeasurementTechniqueType
  1937. path: sub-2/sub-2_ses-1_ecephys+image.nwb
  1938. publishedBy:
  1939. endDate: '2023-12-13T20:47:02.660091+00:00'
  1940. id: urn:uuid:7b566f39-3c26-4912-abea-5b8fd06ff3f4
  1941. name: DANDI publish
  1942. schemaKey: PublishActivity
  1943. startDate: '2023-12-13T20:47:02.660091+00:00'
  1944. wasAssociatedWith:
  1945. - id: urn:uuid:a10f28b3-3f66-4cf3-a3ad-513c3492080a
  1946. identifier: RRID:SCR_017571
  1947. name: DANDI API
  1948. schemaKey: Software
  1949. version: 0.1.0
  1950. schemaKey: Asset
  1951. schemaVersion: 0.6.4
  1952. variableMeasured:
  1953. - schemaKey: PropertyValue
  1954. value: Units
  1955. - schemaKey: PropertyValue
  1956. value: ElectrodeGroup
  1957. wasAttributedTo:
  1958. - age:
  1959. schemaKey: PropertyValue
  1960. unitText: ISO-8601 duration
  1961. value: P42Y
  1962. valueReference:
  1963. schemaKey: PropertyValue
  1964. value: dandi:BirthReference
  1965. identifier: '2'
  1966. schemaKey: Participant
  1967. sex:
  1968. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1969. name: Female
  1970. schemaKey: SexType
  1971. species:
  1972. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1973. name: Homo sapiens - Human
  1974. schemaKey: SpeciesType
  1975. wasGeneratedBy:
  1976. - description: 'SCID: 2'
  1977. identifier: '1'
  1978. name: '1'
  1979. schemaKey: Session
  1980. startDate: '2016-01-01T00:00:00-08:00'
  1981. - description: Metadata generated by DANDI cli
  1982. endDate: '2023-06-23T11:58:05.709673-07:00'
  1983. id: urn:uuid:fd9cc626-b719-4069-a942-90dc29f37967
  1984. name: Metadata generation
  1985. schemaKey: Activity
  1986. startDate: '2023-06-23T11:58:03.828716-07:00'
  1987. wasAssociatedWith:
  1988. - identifier: RRID:SCR_019009
  1989. name: DANDI Command Line Interface
  1990. schemaKey: Software
  1991. url: https://github.com/dandi/dandi-cli
  1992. version: 0.55.1
  1993. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1994. access:
  1995. - schemaKey: AccessRequirements
  1996. status: dandi:OpenAccess
  1997. approach:
  1998. - name: electrophysiological approach
  1999. schemaKey: ApproachType
  2000. blobDateModified: '2023-06-23T10:20:44.705303-07:00'
  2001. contentSize: 342954064
  2002. contentUrl:
  2003. - https://api.dandiarchive.org/api/assets/66419024-7bfd-4bb8-80e4-4a70b554fb95/download/
  2004. - https://dandiarchive.s3.amazonaws.com/blobs/9ac/3f1/9ac3f12a-8446-4218-831f-caaf6c29249f
  2005. dateModified: '2023-06-23T11:58:12.844607-07:00'
  2006. datePublished: '2023-12-13T20:47:02.783968+00:00'
  2007. digest:
  2008. dandi:dandi-etag: 8dc10cb68fa31298599120af3c64a827-6
  2009. dandi:sha2-256: 68ebec17318c8ed82c42cc35a0f6e3c0cef5bb7c26482cd9b965f9d500cb990a
  2010. encodingFormat: application/x-nwb
  2011. id: dandiasset:66419024-7bfd-4bb8-80e4-4a70b554fb95
  2012. identifier: 66419024-7bfd-4bb8-80e4-4a70b554fb95
  2013. keywords:
  2014. - single neuron, human, intracranial, persistent activity, working memory
  2015. measurementTechnique:
  2016. - name: surgical technique
  2017. schemaKey: MeasurementTechniqueType
  2018. - name: spike sorting technique
  2019. schemaKey: MeasurementTechniqueType
  2020. path: sub-2/sub-2_ses-2_ecephys+image.nwb
  2021. publishedBy:
  2022. endDate: '2023-12-13T20:47:02.783968+00:00'
  2023. id: urn:uuid:50649327-cee3-4d61-829c-37c9d3fa8e55
  2024. name: DANDI publish
  2025. schemaKey: PublishActivity
  2026. startDate: '2023-12-13T20:47:02.783968+00:00'
  2027. wasAssociatedWith:
  2028. - id: urn:uuid:9580ea39-d40a-47f4-bf60-edc6f38d316c
  2029. identifier: RRID:SCR_017571
  2030. name: DANDI API
  2031. schemaKey: Software
  2032. version: 0.1.0
  2033. schemaKey: Asset
  2034. schemaVersion: 0.6.4
  2035. variableMeasured:
  2036. - schemaKey: PropertyValue
  2037. value: Units
  2038. - schemaKey: PropertyValue
  2039. value: ElectrodeGroup
  2040. wasAttributedTo:
  2041. - age:
  2042. schemaKey: PropertyValue
  2043. unitText: ISO-8601 duration
  2044. value: P42Y
  2045. valueReference:
  2046. schemaKey: PropertyValue
  2047. value: dandi:BirthReference
  2048. identifier: '2'
  2049. schemaKey: Participant
  2050. sex:
  2051. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2052. name: Female
  2053. schemaKey: SexType
  2054. species:
  2055. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2056. name: Homo sapiens - Human
  2057. schemaKey: SpeciesType
  2058. wasGeneratedBy:
  2059. - description: 'SBID: 2'
  2060. identifier: '2'
  2061. name: '2'
  2062. schemaKey: Session
  2063. startDate: '2016-01-01T00:00:00-08:00'
  2064. - description: Metadata generated by DANDI cli
  2065. endDate: '2023-06-23T11:58:12.844607-07:00'
  2066. id: urn:uuid:683aceb2-b185-4569-a245-0451a516777c
  2067. name: Metadata generation
  2068. schemaKey: Activity
  2069. startDate: '2023-06-23T11:58:12.247150-07:00'
  2070. wasAssociatedWith:
  2071. - identifier: RRID:SCR_019009
  2072. name: DANDI Command Line Interface
  2073. schemaKey: Software
  2074. url: https://github.com/dandi/dandi-cli
  2075. version: 0.55.1
  2076. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2077. access:
  2078. - schemaKey: AccessRequirements
  2079. status: dandi:OpenAccess
  2080. approach:
  2081. - name: electrophysiological approach
  2082. schemaKey: ApproachType
  2083. blobDateModified: '2023-06-23T11:28:34.319648-07:00'
  2084. contentSize: 75080400
  2085. contentUrl:
  2086. - https://api.dandiarchive.org/api/assets/f802e08e-ef7b-496b-89e3-498481dbf126/download/
  2087. - https://dandiarchive.s3.amazonaws.com/blobs/fe7/2ab/fe72ab7a-846f-48e9-9d71-f550255c1755
  2088. dateModified: '2023-06-23T11:58:20.944830-07:00'
  2089. datePublished: '2023-12-13T20:47:02.667482+00:00'
  2090. digest:
  2091. dandi:dandi-etag: d655812a48ba7b2eeeec3f828c069efb-2
  2092. dandi:sha2-256: 9ccb896c768adea6171a81d51c5bfaceb28a5fe2324b720dea996caaf815eec7
  2093. encodingFormat: application/x-nwb
  2094. id: dandiasset:f802e08e-ef7b-496b-89e3-498481dbf126
  2095. identifier: f802e08e-ef7b-496b-89e3-498481dbf126
  2096. keywords:
  2097. - single neuron, human, intracranial, persistent activity, working memory
  2098. measurementTechnique:
  2099. - name: surgical technique
  2100. schemaKey: MeasurementTechniqueType
  2101. - name: spike sorting technique
  2102. schemaKey: MeasurementTechniqueType
  2103. path: sub-21/sub-21_ses-1_ecephys+image.nwb
  2104. publishedBy:
  2105. endDate: '2023-12-13T20:47:02.667482+00:00'
  2106. id: urn:uuid:830e8d8e-9066-4dc5-89c3-d6d554307dac
  2107. name: DANDI publish
  2108. schemaKey: PublishActivity
  2109. startDate: '2023-12-13T20:47:02.667482+00:00'
  2110. wasAssociatedWith:
  2111. - id: urn:uuid:52dcde0b-5f8e-4c39-b352-9f353c0b9871
  2112. identifier: RRID:SCR_017571
  2113. name: DANDI API
  2114. schemaKey: Software
  2115. version: 0.1.0
  2116. schemaKey: Asset
  2117. schemaVersion: 0.6.4
  2118. variableMeasured:
  2119. - schemaKey: PropertyValue
  2120. value: Units
  2121. - schemaKey: PropertyValue
  2122. value: ElectrodeGroup
  2123. wasAttributedTo:
  2124. - age:
  2125. schemaKey: PropertyValue
  2126. unitText: ISO-8601 duration
  2127. value: P17Y
  2128. valueReference:
  2129. schemaKey: PropertyValue
  2130. value: dandi:BirthReference
  2131. identifier: '21'
  2132. schemaKey: Participant
  2133. sex:
  2134. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2135. name: Male
  2136. schemaKey: SexType
  2137. species:
  2138. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2139. name: Homo sapiens - Human
  2140. schemaKey: SpeciesType
  2141. wasGeneratedBy:
  2142. - description: 'SCID: 21'
  2143. identifier: '1'
  2144. name: '1'
  2145. schemaKey: Session
  2146. startDate: '2017-01-01T00:00:00-08:00'
  2147. - description: Metadata generated by DANDI cli
  2148. endDate: '2023-06-23T11:58:20.944830-07:00'
  2149. id: urn:uuid:92da5e85-a315-40a5-b98e-b3833ff06fb1
  2150. name: Metadata generation
  2151. schemaKey: Activity
  2152. startDate: '2023-06-23T11:58:19.342769-07:00'
  2153. wasAssociatedWith:
  2154. - identifier: RRID:SCR_019009
  2155. name: DANDI Command Line Interface
  2156. schemaKey: Software
  2157. url: https://github.com/dandi/dandi-cli
  2158. version: 0.55.1
  2159. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2160. access:
  2161. - schemaKey: AccessRequirements
  2162. status: dandi:OpenAccess
  2163. approach:
  2164. - name: electrophysiological approach
  2165. schemaKey: ApproachType
  2166. blobDateModified: '2023-06-23T10:51:36.366095-07:00'
  2167. contentSize: 99038648
  2168. contentUrl:
  2169. - https://api.dandiarchive.org/api/assets/80515be9-25a3-4537-b892-5c9d770ce3fe/download/
  2170. - https://dandiarchive.s3.amazonaws.com/blobs/adf/05b/adf05b12-ae09-4671-9604-f2e27f31e6a4
  2171. dateModified: '2023-06-23T11:58:22.994154-07:00'
  2172. datePublished: '2023-12-13T20:47:02.674029+00:00'
  2173. digest:
  2174. dandi:dandi-etag: d7c5fbdd4410bb0db3a870fbdee9c657-2
  2175. dandi:sha2-256: 57695a90a7d70ee4cf793a1fa58c0102dfa34ac3ee6436311e1f5a9ced21e56a
  2176. encodingFormat: application/x-nwb
  2177. id: dandiasset:80515be9-25a3-4537-b892-5c9d770ce3fe
  2178. identifier: 80515be9-25a3-4537-b892-5c9d770ce3fe
  2179. keywords:
  2180. - single neuron, human, intracranial, persistent activity, working memory
  2181. measurementTechnique:
  2182. - name: surgical technique
  2183. schemaKey: MeasurementTechniqueType
  2184. - name: spike sorting technique
  2185. schemaKey: MeasurementTechniqueType
  2186. path: sub-21/sub-21_ses-2_ecephys+image.nwb
  2187. publishedBy:
  2188. endDate: '2023-12-13T20:47:02.674029+00:00'
  2189. id: urn:uuid:9540417e-57f7-4b05-b7f5-77bf31a1dc25
  2190. name: DANDI publish
  2191. schemaKey: PublishActivity
  2192. startDate: '2023-12-13T20:47:02.674029+00:00'
  2193. wasAssociatedWith:
  2194. - id: urn:uuid:b1ccbac1-85a5-4ff4-b388-dfec60dc0036
  2195. identifier: RRID:SCR_017571
  2196. name: DANDI API
  2197. schemaKey: Software
  2198. version: 0.1.0
  2199. schemaKey: Asset
  2200. schemaVersion: 0.6.4
  2201. variableMeasured:
  2202. - schemaKey: PropertyValue
  2203. value: Units
  2204. - schemaKey: PropertyValue
  2205. value: ElectrodeGroup
  2206. wasAttributedTo:
  2207. - age:
  2208. schemaKey: PropertyValue
  2209. unitText: ISO-8601 duration
  2210. value: P17Y
  2211. valueReference:
  2212. schemaKey: PropertyValue
  2213. value: dandi:BirthReference
  2214. identifier: '21'
  2215. schemaKey: Participant
  2216. sex:
  2217. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2218. name: Male
  2219. schemaKey: SexType
  2220. species:
  2221. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2222. name: Homo sapiens - Human
  2223. schemaKey: SpeciesType
  2224. wasGeneratedBy:
  2225. - description: 'SBID: 21'
  2226. identifier: '2'
  2227. name: '2'
  2228. schemaKey: Session
  2229. startDate: '2017-01-01T00:00:00-08:00'
  2230. - description: Metadata generated by DANDI cli
  2231. endDate: '2023-06-23T11:58:22.994154-07:00'
  2232. id: urn:uuid:0c7ab2b5-1caf-4285-99a9-5bfaf47bcb8a
  2233. name: Metadata generation
  2234. schemaKey: Activity
  2235. startDate: '2023-06-23T11:58:21.827739-07:00'
  2236. wasAssociatedWith:
  2237. - identifier: RRID:SCR_019009
  2238. name: DANDI Command Line Interface
  2239. schemaKey: Software
  2240. url: https://github.com/dandi/dandi-cli
  2241. version: 0.55.1
  2242. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2243. access:
  2244. - schemaKey: AccessRequirements
  2245. status: dandi:OpenAccess
  2246. approach:
  2247. - name: electrophysiological approach
  2248. schemaKey: ApproachType
  2249. blobDateModified: '2023-06-23T10:58:18.280535-07:00'
  2250. contentSize: 227851472
  2251. contentUrl:
  2252. - https://api.dandiarchive.org/api/assets/b4bee8bc-ad93-4739-8e5b-7f095b7c300b/download/
  2253. - https://dandiarchive.s3.amazonaws.com/blobs/5cc/b2f/5ccb2fc1-19df-45aa-baf5-9c4300da87cd
  2254. dateModified: '2023-06-23T11:58:26.403202-07:00'
  2255. datePublished: '2023-12-13T20:47:02.790797+00:00'
  2256. digest:
  2257. dandi:dandi-etag: d898f0e010fd2c4ca2d56c1525f9b63d-4
  2258. dandi:sha2-256: 5a5bf64925b6b5886813a68dfd86d1622fbd98833cab1536963736e24d3ee5b7
  2259. encodingFormat: application/x-nwb
  2260. id: dandiasset:b4bee8bc-ad93-4739-8e5b-7f095b7c300b
  2261. identifier: b4bee8bc-ad93-4739-8e5b-7f095b7c300b
  2262. keywords:
  2263. - single neuron, human, intracranial, persistent activity, working memory
  2264. measurementTechnique:
  2265. - name: surgical technique
  2266. schemaKey: MeasurementTechniqueType
  2267. - name: spike sorting technique
  2268. schemaKey: MeasurementTechniqueType
  2269. path: sub-3/sub-3_ses-1_ecephys+image.nwb
  2270. publishedBy:
  2271. endDate: '2023-12-13T20:47:02.790797+00:00'
  2272. id: urn:uuid:2e63f825-c2ac-46aa-bc6d-3e7f1ca69c0f
  2273. name: DANDI publish
  2274. schemaKey: PublishActivity
  2275. startDate: '2023-12-13T20:47:02.790797+00:00'
  2276. wasAssociatedWith:
  2277. - id: urn:uuid:5aee00ce-dd7c-4f4d-ba8d-209376b8f291
  2278. identifier: RRID:SCR_017571
  2279. name: DANDI API
  2280. schemaKey: Software
  2281. version: 0.1.0
  2282. schemaKey: Asset
  2283. schemaVersion: 0.6.4
  2284. variableMeasured:
  2285. - schemaKey: PropertyValue
  2286. value: Units
  2287. - schemaKey: PropertyValue
  2288. value: ElectrodeGroup
  2289. wasAttributedTo:
  2290. - age:
  2291. schemaKey: PropertyValue
  2292. unitText: ISO-8601 duration
  2293. value: P53Y
  2294. valueReference:
  2295. schemaKey: PropertyValue
  2296. value: dandi:BirthReference
  2297. identifier: '3'
  2298. schemaKey: Participant
  2299. sex:
  2300. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2301. name: Female
  2302. schemaKey: SexType
  2303. species:
  2304. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2305. name: Homo sapiens - Human
  2306. schemaKey: SpeciesType
  2307. wasGeneratedBy:
  2308. - description: 'SCID: 3'
  2309. identifier: '1'
  2310. name: '1'
  2311. schemaKey: Session
  2312. startDate: '2016-01-01T00:00:00-08:00'
  2313. - description: Metadata generated by DANDI cli
  2314. endDate: '2023-06-23T11:58:26.403202-07:00'
  2315. id: urn:uuid:199d4d10-2347-400b-b907-fe2152ebb827
  2316. name: Metadata generation
  2317. schemaKey: Activity
  2318. startDate: '2023-06-23T11:58:25.255775-07:00'
  2319. wasAssociatedWith:
  2320. - identifier: RRID:SCR_019009
  2321. name: DANDI Command Line Interface
  2322. schemaKey: Software
  2323. url: https://github.com/dandi/dandi-cli
  2324. version: 0.55.1
  2325. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2326. access:
  2327. - schemaKey: AccessRequirements
  2328. status: dandi:OpenAccess
  2329. approach:
  2330. - name: electrophysiological approach
  2331. schemaKey: ApproachType
  2332. blobDateModified: '2023-06-23T10:23:47.410156-07:00'
  2333. contentSize: 228744632
  2334. contentUrl:
  2335. - https://api.dandiarchive.org/api/assets/f6cfcabc-43bf-4aaa-91d0-c1de28ba74e9/download/
  2336. - https://dandiarchive.s3.amazonaws.com/blobs/c08/62a/c0862a84-ba8c-4fec-9226-3bceaa697fc8
  2337. dateModified: '2023-06-23T11:58:28.452010-07:00'
  2338. datePublished: '2023-12-13T20:47:02.797367+00:00'
  2339. digest:
  2340. dandi:dandi-etag: 6ead6c3646fde9ce22179bfaedec4192-4
  2341. dandi:sha2-256: fa225d878439fa4eced36fc04dcb177bbcdd7ee230a8b9934f03a0c07890caac
  2342. encodingFormat: application/x-nwb
  2343. id: dandiasset:f6cfcabc-43bf-4aaa-91d0-c1de28ba74e9
  2344. identifier: f6cfcabc-43bf-4aaa-91d0-c1de28ba74e9
  2345. keywords:
  2346. - single neuron, human, intracranial, persistent activity, working memory
  2347. measurementTechnique:
  2348. - name: surgical technique
  2349. schemaKey: MeasurementTechniqueType
  2350. - name: spike sorting technique
  2351. schemaKey: MeasurementTechniqueType
  2352. path: sub-3/sub-3_ses-2_ecephys+image.nwb
  2353. publishedBy:
  2354. endDate: '2023-12-13T20:47:02.797367+00:00'
  2355. id: urn:uuid:6ce3c9ae-3818-4c97-86a3-28be8c2a58ee
  2356. name: DANDI publish
  2357. schemaKey: PublishActivity
  2358. startDate: '2023-12-13T20:47:02.797367+00:00'
  2359. wasAssociatedWith:
  2360. - id: urn:uuid:8263581f-ff3c-41c5-9730-b76a28bde9c9
  2361. identifier: RRID:SCR_017571
  2362. name: DANDI API
  2363. schemaKey: Software
  2364. version: 0.1.0
  2365. schemaKey: Asset
  2366. schemaVersion: 0.6.4
  2367. variableMeasured:
  2368. - schemaKey: PropertyValue
  2369. value: Units
  2370. - schemaKey: PropertyValue
  2371. value: ElectrodeGroup
  2372. wasAttributedTo:
  2373. - age:
  2374. schemaKey: PropertyValue
  2375. unitText: ISO-8601 duration
  2376. value: P53Y
  2377. valueReference:
  2378. schemaKey: PropertyValue
  2379. value: dandi:BirthReference
  2380. identifier: '3'
  2381. schemaKey: Participant
  2382. sex:
  2383. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2384. name: Female
  2385. schemaKey: SexType
  2386. species:
  2387. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2388. name: Homo sapiens - Human
  2389. schemaKey: SpeciesType
  2390. wasGeneratedBy:
  2391. - description: 'SBID: 3'
  2392. identifier: '2'
  2393. name: '2'
  2394. schemaKey: Session
  2395. startDate: '2016-01-01T00:00:00-08:00'
  2396. - description: Metadata generated by DANDI cli
  2397. endDate: '2023-06-23T11:58:28.452010-07:00'
  2398. id: urn:uuid:ff6f643f-dc47-4ee7-97e5-0a42667d6aa6
  2399. name: Metadata generation
  2400. schemaKey: Activity
  2401. startDate: '2023-06-23T11:58:27.937582-07:00'
  2402. wasAssociatedWith:
  2403. - identifier: RRID:SCR_019009
  2404. name: DANDI Command Line Interface
  2405. schemaKey: Software
  2406. url: https://github.com/dandi/dandi-cli
  2407. version: 0.55.1
  2408. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2409. access:
  2410. - schemaKey: AccessRequirements
  2411. status: dandi:OpenAccess
  2412. approach:
  2413. - name: electrophysiological approach
  2414. schemaKey: ApproachType
  2415. blobDateModified: '2023-06-23T11:00:10.243545-07:00'
  2416. contentSize: 276630680
  2417. contentUrl:
  2418. - https://api.dandiarchive.org/api/assets/39724a65-c0aa-49d7-b806-45ed96212235/download/
  2419. - https://dandiarchive.s3.amazonaws.com/blobs/5f3/081/5f308143-8a5a-4252-b1f9-81248f26b3fa
  2420. dateModified: '2023-06-23T11:58:35.734098-07:00'
  2421. datePublished: '2023-12-13T20:47:02.804150+00:00'
  2422. digest:
  2423. dandi:dandi-etag: c9585469c5f930cf5c0f349e5df56782-5
  2424. dandi:sha2-256: dfbc8d9d89a3738c1d594b8d1b719b5d3b12550bff4a622eb65c04f4ebf2e998
  2425. encodingFormat: application/x-nwb
  2426. id: dandiasset:39724a65-c0aa-49d7-b806-45ed96212235
  2427. identifier: 39724a65-c0aa-49d7-b806-45ed96212235
  2428. keywords:
  2429. - single neuron, human, intracranial, persistent activity, working memory
  2430. measurementTechnique:
  2431. - name: surgical technique
  2432. schemaKey: MeasurementTechniqueType
  2433. - name: spike sorting technique
  2434. schemaKey: MeasurementTechniqueType
  2435. path: sub-4/sub-4_ses-1_ecephys+image.nwb
  2436. publishedBy:
  2437. endDate: '2023-12-13T20:47:02.804150+00:00'
  2438. id: urn:uuid:6dc6da42-3915-452a-b126-e645a58d6400
  2439. name: DANDI publish
  2440. schemaKey: PublishActivity
  2441. startDate: '2023-12-13T20:47:02.804150+00:00'
  2442. wasAssociatedWith:
  2443. - id: urn:uuid:cadaf28a-1470-43e8-9300-512c7de313f3
  2444. identifier: RRID:SCR_017571
  2445. name: DANDI API
  2446. schemaKey: Software
  2447. version: 0.1.0
  2448. schemaKey: Asset
  2449. schemaVersion: 0.6.4
  2450. variableMeasured:
  2451. - schemaKey: PropertyValue
  2452. value: Units
  2453. - schemaKey: PropertyValue
  2454. value: ElectrodeGroup
  2455. wasAttributedTo:
  2456. - age:
  2457. schemaKey: PropertyValue
  2458. unitText: ISO-8601 duration
  2459. value: P32Y
  2460. valueReference:
  2461. schemaKey: PropertyValue
  2462. value: dandi:BirthReference
  2463. identifier: '4'
  2464. schemaKey: Participant
  2465. sex:
  2466. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2467. name: Male
  2468. schemaKey: SexType
  2469. species:
  2470. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2471. name: Homo sapiens - Human
  2472. schemaKey: SpeciesType
  2473. wasGeneratedBy:
  2474. - description: 'SCID: 4'
  2475. identifier: '1'
  2476. name: '1'
  2477. schemaKey: Session
  2478. startDate: '2017-01-01T00:00:00-08:00'
  2479. - description: Metadata generated by DANDI cli
  2480. endDate: '2023-06-23T11:58:35.734098-07:00'
  2481. id: urn:uuid:242c3054-ebd8-449c-9397-a03b7999089f
  2482. name: Metadata generation
  2483. schemaKey: Activity
  2484. startDate: '2023-06-23T11:58:35.111776-07:00'
  2485. wasAssociatedWith:
  2486. - identifier: RRID:SCR_019009
  2487. name: DANDI Command Line Interface
  2488. schemaKey: Software
  2489. url: https://github.com/dandi/dandi-cli
  2490. version: 0.55.1
  2491. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2492. access:
  2493. - schemaKey: AccessRequirements
  2494. status: dandi:OpenAccess
  2495. approach:
  2496. - name: electrophysiological approach
  2497. schemaKey: ApproachType
  2498. blobDateModified: '2023-06-23T10:31:50.235948-07:00'
  2499. contentSize: 538972688
  2500. contentUrl:
  2501. - https://api.dandiarchive.org/api/assets/2f776ec4-7331-4db3-9a17-75cd970f4040/download/
  2502. - https://dandiarchive.s3.amazonaws.com/blobs/3a9/a76/3a9a76f5-ce2d-4ec3-b063-5633b025049b
  2503. dateModified: '2023-06-23T11:58:46.395582-07:00'
  2504. datePublished: '2023-12-13T20:47:02.810551+00:00'
  2505. digest:
  2506. dandi:dandi-etag: 9a3b6d3529866d14e065d78becfa5da1-9
  2507. dandi:sha2-256: 9e6867d13981b4c039b5d93c8fce0661696d86ba36ba7a87877233f53a4bbbfd
  2508. encodingFormat: application/x-nwb
  2509. id: dandiasset:2f776ec4-7331-4db3-9a17-75cd970f4040
  2510. identifier: 2f776ec4-7331-4db3-9a17-75cd970f4040
  2511. keywords:
  2512. - single neuron, human, intracranial, persistent activity, working memory
  2513. measurementTechnique:
  2514. - name: surgical technique
  2515. schemaKey: MeasurementTechniqueType
  2516. - name: spike sorting technique
  2517. schemaKey: MeasurementTechniqueType
  2518. path: sub-4/sub-4_ses-2_ecephys+image.nwb
  2519. publishedBy:
  2520. endDate: '2023-12-13T20:47:02.810551+00:00'
  2521. id: urn:uuid:b8a63b24-363b-4e6a-861a-36250e7840d7
  2522. name: DANDI publish
  2523. schemaKey: PublishActivity
  2524. startDate: '2023-12-13T20:47:02.810551+00:00'
  2525. wasAssociatedWith:
  2526. - id: urn:uuid:37ddfafb-5db8-4837-916e-0e703ddb12a5
  2527. identifier: RRID:SCR_017571
  2528. name: DANDI API
  2529. schemaKey: Software
  2530. version: 0.1.0
  2531. schemaKey: Asset
  2532. schemaVersion: 0.6.4
  2533. variableMeasured:
  2534. - schemaKey: PropertyValue
  2535. value: Units
  2536. - schemaKey: PropertyValue
  2537. value: ElectrodeGroup
  2538. wasAttributedTo:
  2539. - age:
  2540. schemaKey: PropertyValue
  2541. unitText: ISO-8601 duration
  2542. value: P32Y
  2543. valueReference:
  2544. schemaKey: PropertyValue
  2545. value: dandi:BirthReference
  2546. identifier: '4'
  2547. schemaKey: Participant
  2548. sex:
  2549. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2550. name: Male
  2551. schemaKey: SexType
  2552. species:
  2553. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2554. name: Homo sapiens - Human
  2555. schemaKey: SpeciesType
  2556. wasGeneratedBy:
  2557. - description: 'SBID: 4'
  2558. identifier: '2'
  2559. name: '2'
  2560. schemaKey: Session
  2561. startDate: '2017-01-01T00:00:00-08:00'
  2562. - description: Metadata generated by DANDI cli
  2563. endDate: '2023-06-23T11:58:46.395582-07:00'
  2564. id: urn:uuid:03619502-f29e-4e13-a6b8-c9178e0463a5
  2565. name: Metadata generation
  2566. schemaKey: Activity
  2567. startDate: '2023-06-23T11:58:44.825133-07:00'
  2568. wasAssociatedWith:
  2569. - identifier: RRID:SCR_019009
  2570. name: DANDI Command Line Interface
  2571. schemaKey: Software
  2572. url: https://github.com/dandi/dandi-cli
  2573. version: 0.55.1
  2574. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2575. access:
  2576. - schemaKey: AccessRequirements
  2577. status: dandi:OpenAccess
  2578. approach:
  2579. - name: electrophysiological approach
  2580. schemaKey: ApproachType
  2581. blobDateModified: '2023-06-23T11:01:34.732158-07:00'
  2582. contentSize: 258721152
  2583. contentUrl:
  2584. - https://api.dandiarchive.org/api/assets/b4eb8cbc-d780-4774-8fcf-99bd59ed59fd/download/
  2585. - https://dandiarchive.s3.amazonaws.com/blobs/43a/68a/43a68ad3-8a4f-44ae-b334-97a7b7d72611
  2586. dateModified: '2023-06-23T11:58:49.655157-07:00'
  2587. datePublished: '2023-12-13T20:47:02.817423+00:00'
  2588. digest:
  2589. dandi:dandi-etag: b2d6ee538be7f90722bce3d1779ff1ce-4
  2590. dandi:sha2-256: 8a7907cc969cebe31753333167b8688fcf4187c66097a12c49853503101634b9
  2591. encodingFormat: application/x-nwb
  2592. id: dandiasset:b4eb8cbc-d780-4774-8fcf-99bd59ed59fd
  2593. identifier: b4eb8cbc-d780-4774-8fcf-99bd59ed59fd
  2594. keywords:
  2595. - single neuron, human, intracranial, persistent activity, working memory
  2596. measurementTechnique:
  2597. - name: surgical technique
  2598. schemaKey: MeasurementTechniqueType
  2599. - name: spike sorting technique
  2600. schemaKey: MeasurementTechniqueType
  2601. path: sub-5/sub-5_ses-1_ecephys+image.nwb
  2602. publishedBy:
  2603. endDate: '2023-12-13T20:47:02.817423+00:00'
  2604. id: urn:uuid:f0982409-e268-48e2-b9bc-3ce92deac862
  2605. name: DANDI publish
  2606. schemaKey: PublishActivity
  2607. startDate: '2023-12-13T20:47:02.817423+00:00'
  2608. wasAssociatedWith:
  2609. - id: urn:uuid:c7024f9e-d96e-4f8c-8b9a-5184e3943c81
  2610. identifier: RRID:SCR_017571
  2611. name: DANDI API
  2612. schemaKey: Software
  2613. version: 0.1.0
  2614. schemaKey: Asset
  2615. schemaVersion: 0.6.4
  2616. variableMeasured:
  2617. - schemaKey: PropertyValue
  2618. value: Units
  2619. - schemaKey: PropertyValue
  2620. value: ElectrodeGroup
  2621. wasAttributedTo:
  2622. - age:
  2623. schemaKey: PropertyValue
  2624. unitText: ISO-8601 duration
  2625. value: P32Y
  2626. valueReference:
  2627. schemaKey: PropertyValue
  2628. value: dandi:BirthReference
  2629. identifier: '5'
  2630. schemaKey: Participant
  2631. sex:
  2632. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2633. name: Female
  2634. schemaKey: SexType
  2635. species:
  2636. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2637. name: Homo sapiens - Human
  2638. schemaKey: SpeciesType
  2639. wasGeneratedBy:
  2640. - description: 'SCID: 5'
  2641. identifier: '1'
  2642. name: '1'
  2643. schemaKey: Session
  2644. startDate: '2017-01-01T00:00:00-08:00'
  2645. - description: Metadata generated by DANDI cli
  2646. endDate: '2023-06-23T11:58:49.655157-07:00'
  2647. id: urn:uuid:58c8d03c-98e4-4f7d-852b-0871b5519833
  2648. name: Metadata generation
  2649. schemaKey: Activity
  2650. startDate: '2023-06-23T11:58:48.972959-07:00'
  2651. wasAssociatedWith:
  2652. - identifier: RRID:SCR_019009
  2653. name: DANDI Command Line Interface
  2654. schemaKey: Software
  2655. url: https://github.com/dandi/dandi-cli
  2656. version: 0.55.1
  2657. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2658. access:
  2659. - schemaKey: AccessRequirements
  2660. status: dandi:OpenAccess
  2661. approach:
  2662. - name: electrophysiological approach
  2663. schemaKey: ApproachType
  2664. blobDateModified: '2023-06-23T11:02:23.597939-07:00'
  2665. contentSize: 132778728
  2666. contentUrl:
  2667. - https://api.dandiarchive.org/api/assets/37c99a5d-2592-4744-9a57-1cf40ccbf82a/download/
  2668. - https://dandiarchive.s3.amazonaws.com/blobs/c46/42f/c4642ffa-0cb7-4a03-9294-cce65534c90c
  2669. dateModified: '2023-06-23T11:58:58.261414-07:00'
  2670. datePublished: '2023-12-13T20:47:02.731869+00:00'
  2671. digest:
  2672. dandi:dandi-etag: 11871431f2f94b0f610fd60177212814-2
  2673. dandi:sha2-256: d08169b84615eaf85958c4b83d4eec6c3b56debab085a82aabc5f3a5980b9726
  2674. encodingFormat: application/x-nwb
  2675. id: dandiasset:37c99a5d-2592-4744-9a57-1cf40ccbf82a
  2676. identifier: 37c99a5d-2592-4744-9a57-1cf40ccbf82a
  2677. keywords:
  2678. - single neuron, human, intracranial, persistent activity, working memory
  2679. measurementTechnique:
  2680. - name: surgical technique
  2681. schemaKey: MeasurementTechniqueType
  2682. - name: spike sorting technique
  2683. schemaKey: MeasurementTechniqueType
  2684. path: sub-6/sub-6_ses-1_ecephys+image.nwb
  2685. publishedBy:
  2686. endDate: '2023-12-13T20:47:02.731869+00:00'
  2687. id: urn:uuid:6ef29b23-31ec-4d18-b531-12c56ca11c8c
  2688. name: DANDI publish
  2689. schemaKey: PublishActivity
  2690. startDate: '2023-12-13T20:47:02.731869+00:00'
  2691. wasAssociatedWith:
  2692. - id: urn:uuid:8a156a59-409a-4043-8ed5-5a0f578468fa
  2693. identifier: RRID:SCR_017571
  2694. name: DANDI API
  2695. schemaKey: Software
  2696. version: 0.1.0
  2697. schemaKey: Asset
  2698. schemaVersion: 0.6.4
  2699. variableMeasured:
  2700. - schemaKey: PropertyValue
  2701. value: Units
  2702. - schemaKey: PropertyValue
  2703. value: ElectrodeGroup
  2704. wasAttributedTo:
  2705. - age:
  2706. schemaKey: PropertyValue
  2707. unitText: ISO-8601 duration
  2708. value: P32Y
  2709. valueReference:
  2710. schemaKey: PropertyValue
  2711. value: dandi:BirthReference
  2712. identifier: '6'
  2713. schemaKey: Participant
  2714. sex:
  2715. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2716. name: Male
  2717. schemaKey: SexType
  2718. species:
  2719. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2720. name: Homo sapiens - Human
  2721. schemaKey: SpeciesType
  2722. wasGeneratedBy:
  2723. - description: 'SCID: 6'
  2724. identifier: '1'
  2725. name: '1'
  2726. schemaKey: Session
  2727. startDate: '2014-01-01T00:00:00-08:00'
  2728. - description: Metadata generated by DANDI cli
  2729. endDate: '2023-06-23T11:58:58.261414-07:00'
  2730. id: urn:uuid:cada66d9-5111-472c-b565-39e3e4636b0a
  2731. name: Metadata generation
  2732. schemaKey: Activity
  2733. startDate: '2023-06-23T11:58:56.751897-07:00'
  2734. wasAssociatedWith:
  2735. - identifier: RRID:SCR_019009
  2736. name: DANDI Command Line Interface
  2737. schemaKey: Software
  2738. url: https://github.com/dandi/dandi-cli
  2739. version: 0.55.1
  2740. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2741. access:
  2742. - schemaKey: AccessRequirements
  2743. status: dandi:OpenAccess
  2744. approach:
  2745. - name: electrophysiological approach
  2746. schemaKey: ApproachType
  2747. blobDateModified: '2023-06-23T10:36:28.213227-07:00'
  2748. contentSize: 128838128
  2749. contentUrl:
  2750. - https://api.dandiarchive.org/api/assets/126075e9-f5dd-4f13-a08e-ea886775f656/download/
  2751. - https://dandiarchive.s3.amazonaws.com/blobs/304/3da/3043dadf-2528-4c2f-a0b1-9aadfc19bce1
  2752. dateModified: '2023-06-23T11:58:59.215782-07:00'
  2753. datePublished: '2023-12-13T20:47:02.680730+00:00'
  2754. digest:
  2755. dandi:dandi-etag: 5b3e201729667eff8908b94e4d2cf992-2
  2756. dandi:sha2-256: bbfa34d6c0a858f2d11f30e2950e0c9130948485daa2812a346c40e0364eeb7c
  2757. encodingFormat: application/x-nwb
  2758. id: dandiasset:126075e9-f5dd-4f13-a08e-ea886775f656
  2759. identifier: 126075e9-f5dd-4f13-a08e-ea886775f656
  2760. keywords:
  2761. - single neuron, human, intracranial, persistent activity, working memory
  2762. measurementTechnique:
  2763. - name: surgical technique
  2764. schemaKey: MeasurementTechniqueType
  2765. - name: spike sorting technique
  2766. schemaKey: MeasurementTechniqueType
  2767. path: sub-6/sub-6_ses-2_ecephys+image.nwb
  2768. publishedBy:
  2769. endDate: '2023-12-13T20:47:02.680730+00:00'
  2770. id: urn:uuid:0f9604da-9566-41a7-ad6c-0d2e4c3f67a2
  2771. name: DANDI publish
  2772. schemaKey: PublishActivity
  2773. startDate: '2023-12-13T20:47:02.680730+00:00'
  2774. wasAssociatedWith:
  2775. - id: urn:uuid:796f22bd-3b9a-44ef-ae58-89e20d02dc69
  2776. identifier: RRID:SCR_017571
  2777. name: DANDI API
  2778. schemaKey: Software
  2779. version: 0.1.0
  2780. schemaKey: Asset
  2781. schemaVersion: 0.6.4
  2782. variableMeasured:
  2783. - schemaKey: PropertyValue
  2784. value: Units
  2785. - schemaKey: PropertyValue
  2786. value: ElectrodeGroup
  2787. wasAttributedTo:
  2788. - age:
  2789. schemaKey: PropertyValue
  2790. unitText: ISO-8601 duration
  2791. value: P32Y
  2792. valueReference:
  2793. schemaKey: PropertyValue
  2794. value: dandi:BirthReference
  2795. identifier: '6'
  2796. schemaKey: Participant
  2797. sex:
  2798. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2799. name: Male
  2800. schemaKey: SexType
  2801. species:
  2802. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2803. name: Homo sapiens - Human
  2804. schemaKey: SpeciesType
  2805. wasGeneratedBy:
  2806. - description: 'SBID: 6'
  2807. identifier: '2'
  2808. name: '2'
  2809. schemaKey: Session
  2810. startDate: '2014-01-01T00:00:00-08:00'
  2811. - description: Metadata generated by DANDI cli
  2812. endDate: '2023-06-23T11:58:59.215782-07:00'
  2813. id: urn:uuid:0417f960-1344-4cec-96e8-fa7710359335
  2814. name: Metadata generation
  2815. schemaKey: Activity
  2816. startDate: '2023-06-23T11:58:58.762668-07:00'
  2817. wasAssociatedWith:
  2818. - identifier: RRID:SCR_019009
  2819. name: DANDI Command Line Interface
  2820. schemaKey: Software
  2821. url: https://github.com/dandi/dandi-cli
  2822. version: 0.55.1
  2823. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2824. access:
  2825. - schemaKey: AccessRequirements
  2826. status: dandi:OpenAccess
  2827. approach:
  2828. - name: electrophysiological approach
  2829. schemaKey: ApproachType
  2830. blobDateModified: '2023-06-23T10:35:55.682326-07:00'
  2831. contentSize: 383474360
  2832. contentUrl:
  2833. - https://api.dandiarchive.org/api/assets/819d2b02-509d-4743-9a8e-269b346c45f0/download/
  2834. - https://dandiarchive.s3.amazonaws.com/blobs/a3a/d6f/a3ad6fca-57ba-4348-a8ad-813383defdf7
  2835. dateModified: '2023-06-23T11:58:51.840118-07:00'
  2836. datePublished: '2023-12-13T20:47:02.859838+00:00'
  2837. digest:
  2838. dandi:dandi-etag: 9333142483bf4bd19a0b46807de852cc-6
  2839. dandi:sha2-256: 808f6cb5c88309f91cd4b59be8dad04b1bd386a26b1cd4f880dd10fbed247697
  2840. encodingFormat: application/x-nwb
  2841. id: dandiasset:819d2b02-509d-4743-9a8e-269b346c45f0
  2842. identifier: 819d2b02-509d-4743-9a8e-269b346c45f0
  2843. keywords:
  2844. - single neuron, human, intracranial, persistent activity, working memory
  2845. measurementTechnique:
  2846. - name: surgical technique
  2847. schemaKey: MeasurementTechniqueType
  2848. - name: spike sorting technique
  2849. schemaKey: MeasurementTechniqueType
  2850. path: sub-5/sub-5_ses-2_ecephys+image.nwb
  2851. publishedBy:
  2852. endDate: '2023-12-13T20:47:02.859838+00:00'
  2853. id: urn:uuid:4c078ec6-e15f-44b8-9f7c-bf7c11d9ec64
  2854. name: DANDI publish
  2855. schemaKey: PublishActivity
  2856. startDate: '2023-12-13T20:47:02.859838+00:00'
  2857. wasAssociatedWith:
  2858. - id: urn:uuid:fed32278-b6ca-4229-a6ec-dcd71f41655c
  2859. identifier: RRID:SCR_017571
  2860. name: DANDI API
  2861. schemaKey: Software
  2862. version: 0.1.0
  2863. schemaKey: Asset
  2864. schemaVersion: 0.6.4
  2865. variableMeasured:
  2866. - schemaKey: PropertyValue
  2867. value: Units
  2868. - schemaKey: PropertyValue
  2869. value: ElectrodeGroup
  2870. wasAttributedTo:
  2871. - age:
  2872. schemaKey: PropertyValue
  2873. unitText: ISO-8601 duration
  2874. value: P32Y
  2875. valueReference:
  2876. schemaKey: PropertyValue
  2877. value: dandi:BirthReference
  2878. identifier: '5'
  2879. schemaKey: Participant
  2880. sex:
  2881. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2882. name: Female
  2883. schemaKey: SexType
  2884. species:
  2885. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2886. name: Homo sapiens - Human
  2887. schemaKey: SpeciesType
  2888. wasGeneratedBy:
  2889. - description: 'SBID: 5'
  2890. identifier: '2'
  2891. name: '2'
  2892. schemaKey: Session
  2893. startDate: '2017-01-01T00:00:00-08:00'
  2894. - description: Metadata generated by DANDI cli
  2895. endDate: '2023-06-23T11:58:51.840118-07:00'
  2896. id: urn:uuid:63d540b3-3e6a-437e-a672-32fd3b7bac70
  2897. name: Metadata generation
  2898. schemaKey: Activity
  2899. startDate: '2023-06-23T11:58:51.160252-07:00'
  2900. wasAssociatedWith:
  2901. - identifier: RRID:SCR_019009
  2902. name: DANDI Command Line Interface
  2903. schemaKey: Software
  2904. url: https://github.com/dandi/dandi-cli
  2905. version: 0.55.1
  2906. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2907. access:
  2908. - schemaKey: AccessRequirements
  2909. status: dandi:OpenAccess
  2910. approach:
  2911. - name: electrophysiological approach
  2912. schemaKey: ApproachType
  2913. blobDateModified: '2023-06-23T10:36:47.900813-07:00'
  2914. contentSize: 61340496
  2915. contentUrl:
  2916. - https://api.dandiarchive.org/api/assets/01165f77-101a-419e-9078-70a6de931e78/download/
  2917. - https://dandiarchive.s3.amazonaws.com/blobs/52b/167/52b16735-fb5b-4daf-8f12-2f16844a8e4d
  2918. dateModified: '2023-06-23T11:59:12.266398-07:00'
  2919. datePublished: '2023-12-13T20:47:02.824014+00:00'
  2920. digest:
  2921. dandi:dandi-etag: cf0a5e68675be225f8237767501f4cdd-1
  2922. dandi:sha2-256: ca301e35b97316a4086f6ea2de92d9591281e68b7e66003f074dc21a3e0b952f
  2923. encodingFormat: application/x-nwb
  2924. id: dandiasset:01165f77-101a-419e-9078-70a6de931e78
  2925. identifier: 01165f77-101a-419e-9078-70a6de931e78
  2926. keywords:
  2927. - single neuron, human, intracranial, persistent activity, working memory
  2928. measurementTechnique:
  2929. - name: surgical technique
  2930. schemaKey: MeasurementTechniqueType
  2931. - name: spike sorting technique
  2932. schemaKey: MeasurementTechniqueType
  2933. path: sub-7/sub-7_ses-2_ecephys+image.nwb
  2934. publishedBy:
  2935. endDate: '2023-12-13T20:47:02.824014+00:00'
  2936. id: urn:uuid:2bd0bfc2-1d47-4832-9750-5df1db805abc
  2937. name: DANDI publish
  2938. schemaKey: PublishActivity
  2939. startDate: '2023-12-13T20:47:02.824014+00:00'
  2940. wasAssociatedWith:
  2941. - id: urn:uuid:a4662ce2-e3f0-49e6-831b-2a132ad8de28
  2942. identifier: RRID:SCR_017571
  2943. name: DANDI API
  2944. schemaKey: Software
  2945. version: 0.1.0
  2946. schemaKey: Asset
  2947. schemaVersion: 0.6.4
  2948. variableMeasured:
  2949. - schemaKey: PropertyValue
  2950. value: Units
  2951. - schemaKey: PropertyValue
  2952. value: ElectrodeGroup
  2953. wasAttributedTo:
  2954. - age:
  2955. schemaKey: PropertyValue
  2956. unitText: ISO-8601 duration
  2957. value: P19Y
  2958. valueReference:
  2959. schemaKey: PropertyValue
  2960. value: dandi:BirthReference
  2961. identifier: '7'
  2962. schemaKey: Participant
  2963. sex:
  2964. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2965. name: Male
  2966. schemaKey: SexType
  2967. species:
  2968. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2969. name: Homo sapiens - Human
  2970. schemaKey: SpeciesType
  2971. wasGeneratedBy:
  2972. - description: 'SBID: 7'
  2973. identifier: '2'
  2974. name: '2'
  2975. schemaKey: Session
  2976. startDate: '2014-01-01T00:00:00-08:00'
  2977. - description: Metadata generated by DANDI cli
  2978. endDate: '2023-06-23T11:59:12.266398-07:00'
  2979. id: urn:uuid:1e26c8d4-800c-4fea-9165-2f60f08c3592
  2980. name: Metadata generation
  2981. schemaKey: Activity
  2982. startDate: '2023-06-23T11:59:09.182092-07:00'
  2983. wasAssociatedWith:
  2984. - identifier: RRID:SCR_019009
  2985. name: DANDI Command Line Interface
  2986. schemaKey: Software
  2987. url: https://github.com/dandi/dandi-cli
  2988. version: 0.55.1
  2989. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2990. access:
  2991. - schemaKey: AccessRequirements
  2992. status: dandi:OpenAccess
  2993. approach:
  2994. - name: electrophysiological approach
  2995. schemaKey: ApproachType
  2996. blobDateModified: '2023-06-23T11:03:08.921433-07:00'
  2997. contentSize: 118756904
  2998. contentUrl:
  2999. - https://api.dandiarchive.org/api/assets/27b8adbe-ed91-4ae2-bef0-a31e8bc961e9/download/
  3000. - https://dandiarchive.s3.amazonaws.com/blobs/ef0/9dd/ef09dda0-8854-40be-bf38-d46f46001036
  3001. dateModified: '2023-06-23T11:59:08.934376-07:00'
  3002. datePublished: '2023-12-13T20:47:02.738888+00:00'
  3003. digest:
  3004. dandi:dandi-etag: 3351d791ee9ff249166d3690a2268455-2
  3005. dandi:sha2-256: b3f76382d372886b9624a9655d70d5ed105da03d0eec8d16b1e7a89d59b88dde
  3006. encodingFormat: application/x-nwb
  3007. id: dandiasset:27b8adbe-ed91-4ae2-bef0-a31e8bc961e9
  3008. identifier: 27b8adbe-ed91-4ae2-bef0-a31e8bc961e9
  3009. keywords:
  3010. - single neuron, human, intracranial, persistent activity, working memory
  3011. measurementTechnique:
  3012. - name: surgical technique
  3013. schemaKey: MeasurementTechniqueType
  3014. - name: spike sorting technique
  3015. schemaKey: MeasurementTechniqueType
  3016. path: sub-7/sub-7_ses-1_ecephys+image.nwb
  3017. publishedBy:
  3018. endDate: '2023-12-13T20:47:02.738888+00:00'
  3019. id: urn:uuid:816087ca-1c6a-499c-8019-f649937ca6d3
  3020. name: DANDI publish
  3021. schemaKey: PublishActivity
  3022. startDate: '2023-12-13T20:47:02.738888+00:00'
  3023. wasAssociatedWith:
  3024. - id: urn:uuid:85d90df3-7bc7-42e5-beb8-752416aea1e7
  3025. identifier: RRID:SCR_017571
  3026. name: DANDI API
  3027. schemaKey: Software
  3028. version: 0.1.0
  3029. schemaKey: Asset
  3030. schemaVersion: 0.6.4
  3031. variableMeasured:
  3032. - schemaKey: PropertyValue
  3033. value: Units
  3034. - schemaKey: PropertyValue
  3035. value: ElectrodeGroup
  3036. wasAttributedTo:
  3037. - age:
  3038. schemaKey: PropertyValue
  3039. unitText: ISO-8601 duration
  3040. value: P19Y
  3041. valueReference:
  3042. schemaKey: PropertyValue
  3043. value: dandi:BirthReference
  3044. identifier: '7'
  3045. schemaKey: Participant
  3046. sex:
  3047. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3048. name: Male
  3049. schemaKey: SexType
  3050. species:
  3051. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  3052. name: Homo sapiens - Human
  3053. schemaKey: SpeciesType
  3054. wasGeneratedBy:
  3055. - description: 'SCID: 7'
  3056. identifier: '1'
  3057. name: '1'
  3058. schemaKey: Session
  3059. startDate: '2014-01-01T00:00:00-08:00'
  3060. - description: Metadata generated by DANDI cli
  3061. endDate: '2023-06-23T11:59:08.933378-07:00'
  3062. id: urn:uuid:e0733bd0-3acd-4e21-8abb-99841fc09edd
  3063. name: Metadata generation
  3064. schemaKey: Activity
  3065. startDate: '2023-06-23T11:59:07.017023-07:00'
  3066. wasAssociatedWith:
  3067. - identifier: RRID:SCR_019009
  3068. name: DANDI Command Line Interface
  3069. schemaKey: Software
  3070. url: https://github.com/dandi/dandi-cli
  3071. version: 0.55.1
  3072. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3073. access:
  3074. - schemaKey: AccessRequirements
  3075. status: dandi:OpenAccess
  3076. approach:
  3077. - name: electrophysiological approach
  3078. schemaKey: ApproachType
  3079. blobDateModified: '2023-06-23T11:05:43.319734-07:00'
  3080. contentSize: 129708416
  3081. contentUrl:
  3082. - https://api.dandiarchive.org/api/assets/e5d2e72c-73c3-4920-b1c3-e2975ff7ee6f/download/
  3083. - https://dandiarchive.s3.amazonaws.com/blobs/c12/22b/c1222ba2-7b7b-48a1-8630-e4859d37b0aa
  3084. dateModified: '2023-06-23T11:59:19.730487-07:00'
  3085. datePublished: '2023-12-13T20:47:02.830925+00:00'
  3086. digest:
  3087. dandi:dandi-etag: aa4755493a36b089186aa7b9cc678284-2
  3088. dandi:sha2-256: aa33e3deae255d466e55fcbad09dfe3c8a2e2d612cdc58055422304a6a342e13
  3089. encodingFormat: application/x-nwb
  3090. id: dandiasset:e5d2e72c-73c3-4920-b1c3-e2975ff7ee6f
  3091. identifier: e5d2e72c-73c3-4920-b1c3-e2975ff7ee6f
  3092. keywords:
  3093. - single neuron, human, intracranial, persistent activity, working memory
  3094. measurementTechnique:
  3095. - name: surgical technique
  3096. schemaKey: MeasurementTechniqueType
  3097. - name: spike sorting technique
  3098. schemaKey: MeasurementTechniqueType
  3099. path: sub-9/sub-9_ses-1_ecephys+image.nwb
  3100. publishedBy:
  3101. endDate: '2023-12-13T20:47:02.830925+00:00'
  3102. id: urn:uuid:47d9e4a2-ebf6-40a4-ae21-689d3ebdb5fe
  3103. name: DANDI publish
  3104. schemaKey: PublishActivity
  3105. startDate: '2023-12-13T20:47:02.830925+00:00'
  3106. wasAssociatedWith:
  3107. - id: urn:uuid:15058b6d-0cb5-4ddf-8694-a85d0a5a63cc
  3108. identifier: RRID:SCR_017571
  3109. name: DANDI API
  3110. schemaKey: Software
  3111. version: 0.1.0
  3112. schemaKey: Asset
  3113. schemaVersion: 0.6.4
  3114. variableMeasured:
  3115. - schemaKey: PropertyValue
  3116. value: Units
  3117. - schemaKey: PropertyValue
  3118. value: ElectrodeGroup
  3119. wasAttributedTo:
  3120. - age:
  3121. schemaKey: PropertyValue
  3122. unitText: ISO-8601 duration
  3123. value: P70Y
  3124. valueReference:
  3125. schemaKey: PropertyValue
  3126. value: dandi:BirthReference
  3127. identifier: '9'
  3128. schemaKey: Participant
  3129. sex:
  3130. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3131. name: Male
  3132. schemaKey: SexType
  3133. species:
  3134. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  3135. name: Homo sapiens - Human
  3136. schemaKey: SpeciesType
  3137. wasGeneratedBy:
  3138. - description: 'SCID: 9'
  3139. identifier: '1'
  3140. name: '1'
  3141. schemaKey: Session
  3142. startDate: '2014-01-01T00:00:00-08:00'
  3143. - description: Metadata generated by DANDI cli
  3144. endDate: '2023-06-23T11:59:19.730487-07:00'
  3145. id: urn:uuid:5f0e099a-91af-4204-9035-0ad280ff6323
  3146. name: Metadata generation
  3147. schemaKey: Activity
  3148. startDate: '2023-06-23T11:59:18.597417-07:00'
  3149. wasAssociatedWith:
  3150. - identifier: RRID:SCR_019009
  3151. name: DANDI Command Line Interface
  3152. schemaKey: Software
  3153. url: https://github.com/dandi/dandi-cli
  3154. version: 0.55.1
  3155. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3156. access:
  3157. - schemaKey: AccessRequirements
  3158. status: dandi:OpenAccess
  3159. approach:
  3160. - name: electrophysiological approach
  3161. schemaKey: ApproachType
  3162. blobDateModified: '2023-06-23T11:04:45.630987-07:00'
  3163. contentSize: 267150308
  3164. contentUrl:
  3165. - https://api.dandiarchive.org/api/assets/7658fa3f-134e-462a-bf5c-4a82dcedf8ff/download/
  3166. - https://dandiarchive.s3.amazonaws.com/blobs/fa1/458/fa145892-faa7-4435-ae84-1536aa3e429a
  3167. dateModified: '2023-06-23T11:59:21.000500-07:00'
  3168. datePublished: '2023-12-13T20:47:02.868269+00:00'
  3169. digest:
  3170. dandi:dandi-etag: 9cd6a15fadfdc6ec7de3db8c17a2439d-4
  3171. dandi:sha2-256: 8b3609db4d967426e1ed68d05ead98f4ac96c89316888f25e9df36bdac74408e
  3172. encodingFormat: application/x-nwb
  3173. id: dandiasset:7658fa3f-134e-462a-bf5c-4a82dcedf8ff
  3174. identifier: 7658fa3f-134e-462a-bf5c-4a82dcedf8ff
  3175. keywords:
  3176. - single neuron, human, intracranial, persistent activity, working memory
  3177. measurementTechnique:
  3178. - name: surgical technique
  3179. schemaKey: MeasurementTechniqueType
  3180. - name: spike sorting technique
  3181. schemaKey: MeasurementTechniqueType
  3182. path: sub-8/sub-8_ses-1_ecephys+image.nwb
  3183. publishedBy:
  3184. endDate: '2023-12-13T20:47:02.868269+00:00'
  3185. id: urn:uuid:63078be2-bd18-4c47-aa9d-3ebc4fbefc68
  3186. name: DANDI publish
  3187. schemaKey: PublishActivity
  3188. startDate: '2023-12-13T20:47:02.868269+00:00'
  3189. wasAssociatedWith:
  3190. - id: urn:uuid:4128003f-3722-4033-8617-0f8efa04239a
  3191. identifier: RRID:SCR_017571
  3192. name: DANDI API
  3193. schemaKey: Software
  3194. version: 0.1.0
  3195. schemaKey: Asset
  3196. schemaVersion: 0.6.4
  3197. variableMeasured:
  3198. - schemaKey: PropertyValue
  3199. value: Units
  3200. - schemaKey: PropertyValue
  3201. value: ElectrodeGroup
  3202. wasAttributedTo:
  3203. - age:
  3204. schemaKey: PropertyValue
  3205. unitText: ISO-8601 duration
  3206. value: P44Y
  3207. valueReference:
  3208. schemaKey: PropertyValue
  3209. value: dandi:BirthReference
  3210. identifier: '8'
  3211. schemaKey: Participant
  3212. sex:
  3213. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3214. name: Female
  3215. schemaKey: SexType
  3216. species:
  3217. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  3218. name: Homo sapiens - Human
  3219. schemaKey: SpeciesType
  3220. wasGeneratedBy:
  3221. - description: 'SCID: 8'
  3222. identifier: '1'
  3223. name: '1'
  3224. schemaKey: Session
  3225. startDate: '2014-01-01T00:00:00-08:00'
  3226. - description: Metadata generated by DANDI cli
  3227. endDate: '2023-06-23T11:59:21.000500-07:00'
  3228. id: urn:uuid:ab46971e-25b8-4c34-9140-64806fcaaa36
  3229. name: Metadata generation
  3230. schemaKey: Activity
  3231. startDate: '2023-06-23T11:59:20.105562-07:00'
  3232. wasAssociatedWith:
  3233. - identifier: RRID:SCR_019009
  3234. name: DANDI Command Line Interface
  3235. schemaKey: Software
  3236. url: https://github.com/dandi/dandi-cli
  3237. version: 0.55.1
  3238. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3239. access:
  3240. - schemaKey: AccessRequirements
  3241. status: dandi:OpenAccess
  3242. approach:
  3243. - name: electrophysiological approach
  3244. schemaKey: ApproachType
  3245. blobDateModified: '2023-06-23T10:39:47.594038-07:00'
  3246. contentSize: 104506192
  3247. contentUrl:
  3248. - https://api.dandiarchive.org/api/assets/1bd8f715-70cf-4b00-ac9c-98c9d2d564e6/download/
  3249. - https://dandiarchive.s3.amazonaws.com/blobs/0c8/b09/0c8b097d-0e80-4d09-b1f6-cdd3f7f98684
  3250. dateModified: '2023-06-23T11:59:26.253499-07:00'
  3251. datePublished: '2023-12-13T20:47:02.745554+00:00'
  3252. digest:
  3253. dandi:dandi-etag: 89e37a92c3ed7131ce15807174d6b23e-2
  3254. dandi:sha2-256: 9184e8db4878f76ef61380b959e022b53a5f8c52084350744175bd0fd4770be0
  3255. encodingFormat: application/x-nwb
  3256. id: dandiasset:1bd8f715-70cf-4b00-ac9c-98c9d2d564e6
  3257. identifier: 1bd8f715-70cf-4b00-ac9c-98c9d2d564e6
  3258. keywords:
  3259. - single neuron, human, intracranial, persistent activity, working memory
  3260. measurementTechnique:
  3261. - name: surgical technique
  3262. schemaKey: MeasurementTechniqueType
  3263. - name: spike sorting technique
  3264. schemaKey: MeasurementTechniqueType
  3265. path: sub-9/sub-9_ses-2_ecephys+image.nwb
  3266. publishedBy:
  3267. endDate: '2023-12-13T20:47:02.745554+00:00'
  3268. id: urn:uuid:1b6a2cc4-f585-4307-a590-bd5a3673f44b
  3269. name: DANDI publish
  3270. schemaKey: PublishActivity
  3271. startDate: '2023-12-13T20:47:02.745554+00:00'
  3272. wasAssociatedWith:
  3273. - id: urn:uuid:35725e40-9a70-406a-a3ba-7bb3e51436e0
  3274. identifier: RRID:SCR_017571
  3275. name: DANDI API
  3276. schemaKey: Software
  3277. version: 0.1.0
  3278. schemaKey: Asset
  3279. schemaVersion: 0.6.4
  3280. variableMeasured:
  3281. - schemaKey: PropertyValue
  3282. value: Units
  3283. - schemaKey: PropertyValue
  3284. value: ElectrodeGroup
  3285. wasAttributedTo:
  3286. - age:
  3287. schemaKey: PropertyValue
  3288. unitText: ISO-8601 duration
  3289. value: P70Y
  3290. valueReference:
  3291. schemaKey: PropertyValue
  3292. value: dandi:BirthReference
  3293. identifier: '9'
  3294. schemaKey: Participant
  3295. sex:
  3296. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3297. name: Male
  3298. schemaKey: SexType
  3299. species:
  3300. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  3301. name: Homo sapiens - Human
  3302. schemaKey: SpeciesType
  3303. wasGeneratedBy:
  3304. - description: 'SBID: 9'
  3305. identifier: '2'
  3306. name: '2'
  3307. schemaKey: Session
  3308. startDate: '2014-01-01T00:00:00-08:00'
  3309. - description: Metadata generated by DANDI cli
  3310. endDate: '2023-06-23T11:59:26.253499-07:00'
  3311. id: urn:uuid:4ff5a790-737f-4b4a-9d30-af39df301d27
  3312. name: Metadata generation
  3313. schemaKey: Activity
  3314. startDate: '2023-06-23T11:59:25.719465-07:00'
  3315. wasAssociatedWith:
  3316. - identifier: RRID:SCR_019009
  3317. name: DANDI Command Line Interface
  3318. schemaKey: Software
  3319. url: https://github.com/dandi/dandi-cli
  3320. version: 0.55.1
  3321. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3322. access:
  3323. - schemaKey: AccessRequirements
  3324. status: dandi:OpenAccess
  3325. approach:
  3326. - name: electrophysiological approach
  3327. schemaKey: ApproachType
  3328. blobDateModified: '2023-06-23T10:38:34.550063-07:00'
  3329. contentSize: 515637496
  3330. contentUrl:
  3331. - https://api.dandiarchive.org/api/assets/f57ef276-2d04-4ff5-9938-fbcc37a36080/download/
  3332. - https://dandiarchive.s3.amazonaws.com/blobs/8e4/34a/8e434a73-75cc-4758-b88b-b8ed70cf4928
  3333. dateModified: '2023-06-23T11:59:24.582216-07:00'
  3334. datePublished: '2023-12-13T20:47:02.837879+00:00'
  3335. digest:
  3336. dandi:dandi-etag: a760fd05228144ae48f4c00a82989545-8
  3337. dandi:sha2-256: 11905c53f73dcc7de883ec9bd8cd43b47dd5d2f5ce6c4832ac963989638f801c
  3338. encodingFormat: application/x-nwb
  3339. id: dandiasset:f57ef276-2d04-4ff5-9938-fbcc37a36080
  3340. identifier: f57ef276-2d04-4ff5-9938-fbcc37a36080
  3341. keywords:
  3342. - single neuron, human, intracranial, persistent activity, working memory
  3343. measurementTechnique:
  3344. - name: surgical technique
  3345. schemaKey: MeasurementTechniqueType
  3346. - name: spike sorting technique
  3347. schemaKey: MeasurementTechniqueType
  3348. path: sub-8/sub-8_ses-2_ecephys+image.nwb
  3349. publishedBy:
  3350. endDate: '2023-12-13T20:47:02.837879+00:00'
  3351. id: urn:uuid:4ac6ffe4-2cdd-4f29-90d6-6bd78efea722
  3352. name: DANDI publish
  3353. schemaKey: PublishActivity
  3354. startDate: '2023-12-13T20:47:02.837879+00:00'
  3355. wasAssociatedWith:
  3356. - id: urn:uuid:d1e3f119-9e25-4c0c-afff-d84adb6400f6
  3357. identifier: RRID:SCR_017571
  3358. name: DANDI API
  3359. schemaKey: Software
  3360. version: 0.1.0
  3361. schemaKey: Asset
  3362. schemaVersion: 0.6.4
  3363. variableMeasured:
  3364. - schemaKey: PropertyValue
  3365. value: Units
  3366. - schemaKey: PropertyValue
  3367. value: ElectrodeGroup
  3368. wasAttributedTo:
  3369. - age:
  3370. schemaKey: PropertyValue
  3371. unitText: ISO-8601 duration
  3372. value: P44Y
  3373. valueReference:
  3374. schemaKey: PropertyValue
  3375. value: dandi:BirthReference
  3376. identifier: '8'
  3377. schemaKey: Participant
  3378. sex:
  3379. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3380. name: Female
  3381. schemaKey: SexType
  3382. species:
  3383. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  3384. name: Homo sapiens - Human
  3385. schemaKey: SpeciesType
  3386. wasGeneratedBy:
  3387. - description: 'SBID: 8'
  3388. identifier: '2'
  3389. name: '2'
  3390. schemaKey: Session
  3391. startDate: '2014-01-01T00:00:00-08:00'
  3392. - description: Metadata generated by DANDI cli
  3393. endDate: '2023-06-23T11:59:24.582216-07:00'
  3394. id: urn:uuid:1d6fa243-0736-4149-9d53-fda25a4a85e5
  3395. name: Metadata generation
  3396. schemaKey: Activity
  3397. startDate: '2023-06-23T11:59:22.373556-07:00'
  3398. wasAssociatedWith:
  3399. - identifier: RRID:SCR_019009
  3400. name: DANDI Command Line Interface
  3401. schemaKey: Software
  3402. url: https://github.com/dandi/dandi-cli
  3403. version: 0.55.1
Tip!

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

Comments

Loading...