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 105 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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: electrophysiological approach
  7. schemaKey: ApproachType
  8. - name: behavioral approach
  9. schemaKey: ApproachType
  10. blobDateModified: '2024-04-12T17:41:52.049305-04:00'
  11. contentSize: 325444381
  12. contentUrl:
  13. - https://api.dandiarchive.org/api/assets/d3a96834-ee80-4afa-b985-82066817272c/download/
  14. - https://dandiarchive.s3.amazonaws.com/blobs/a6e/c32/a6ec3274-ceeb-4d21-b091-1e991a512c7b
  15. dateModified: '2024-04-13T17:57:23.216405-04:00'
  16. datePublished: '2024-06-05T17:10:33.895835+00:00'
  17. digest:
  18. dandi:dandi-etag: 6cbeb8cd393d27665d1c89e2d6b6e04c-5
  19. dandi:sha2-256: b4dcf5874e3557a1608a1c7455df4aed176c40e4cc8bb990a4f2f6288dd97097
  20. encodingFormat: application/x-nwb
  21. id: dandiasset:d3a96834-ee80-4afa-b985-82066817272c
  22. identifier: d3a96834-ee80-4afa-b985-82066817272c
  23. measurementTechnique:
  24. - name: behavioral technique
  25. schemaKey: MeasurementTechniqueType
  26. - name: spike sorting technique
  27. schemaKey: MeasurementTechniqueType
  28. - name: analytical technique
  29. schemaKey: MeasurementTechniqueType
  30. - name: surgical technique
  31. schemaKey: MeasurementTechniqueType
  32. path: sub-amadeus/sub-amadeus_ses-08152019_behavior+ecephys.nwb
  33. publishedBy:
  34. endDate: '2024-06-05T17:10:33.895835+00:00'
  35. id: urn:uuid:cffd4e20-c7c6-4a46-a2df-90e4e6fe45ec
  36. name: DANDI publish
  37. schemaKey: PublishActivity
  38. startDate: '2024-06-05T17:10:33.895835+00:00'
  39. wasAssociatedWith:
  40. - id: urn:uuid:1c673da5-6e9f-4583-8c9e-a2cde44df9c6
  41. identifier: RRID:SCR_017571
  42. name: DANDI API
  43. schemaKey: Software
  44. version: 0.1.0
  45. schemaKey: Asset
  46. schemaVersion: 0.6.7
  47. variableMeasured:
  48. - schemaKey: PropertyValue
  49. value: Units
  50. - schemaKey: PropertyValue
  51. value: ElectrodeGroup
  52. - schemaKey: PropertyValue
  53. value: SpatialSeries
  54. - schemaKey: PropertyValue
  55. value: ProcessingModule
  56. wasAttributedTo:
  57. - age:
  58. schemaKey: PropertyValue
  59. unitText: ISO-8601 duration
  60. value: P10Y
  61. valueReference:
  62. schemaKey: PropertyValue
  63. value: dandi:BirthReference
  64. identifier: amadeus
  65. schemaKey: Participant
  66. sex:
  67. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  68. name: Male
  69. schemaKey: SexType
  70. species:
  71. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  72. name: Macaca mulatta - Rhesus monkey
  73. schemaKey: SpeciesType
  74. wasGeneratedBy:
  75. - description: Data from macaque performing mental navigation task. Subject is presented
  76. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  77. a screen. After a delay, the subject is then cued with a go signal to navigate
  78. from start to target landmark with a joystick. Subject should respond by deflecting
  79. the joystick in the right direction and holding it until the subject thinks it
  80. has arrived at the target landmark. The visual drift or intervening landmarks
  81. are all occluded from view making the task a purely mental navigation.
  82. identifier: 08152019
  83. name: 08152019
  84. schemaKey: Session
  85. startDate: '2019-08-15T00:00:00-04:00'
  86. - description: Metadata generated by DANDI cli
  87. endDate: '2024-04-13T17:57:23.216371-04:00'
  88. id: urn:uuid:1b381a3b-01cb-4d14-972e-8e8bd734b729
  89. name: Metadata generation
  90. schemaKey: Activity
  91. startDate: '2024-04-13T17:57:19.693544-04:00'
  92. wasAssociatedWith:
  93. - identifier: RRID:SCR_019009
  94. name: DANDI Command Line Interface
  95. schemaKey: Software
  96. url: https://github.com/dandi/dandi-cli
  97. version: 0.61.2
  98. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  99. access:
  100. - schemaKey: AccessRequirements
  101. status: dandi:OpenAccess
  102. approach:
  103. - name: electrophysiological approach
  104. schemaKey: ApproachType
  105. - name: behavioral approach
  106. schemaKey: ApproachType
  107. blobDateModified: '2024-04-13T10:10:14.291945-04:00'
  108. contentSize: 301723990
  109. contentUrl:
  110. - https://api.dandiarchive.org/api/assets/07eab05e-7002-4522-8498-359b952ab4a2/download/
  111. - https://dandiarchive.s3.amazonaws.com/blobs/8e1/fc7/8e1fc7d8-5b64-4133-aa50-c6ebb2a13192
  112. dateModified: '2024-04-13T19:01:32.716172-04:00'
  113. datePublished: '2024-06-05T17:10:33.905845+00:00'
  114. digest:
  115. dandi:dandi-etag: f7fb50815a9dc7c576dcbf3b1e264fc0-5
  116. dandi:sha2-256: 1fd46aebbb152049b972890a2835412b27c95b125503711e736eb714de981bed
  117. encodingFormat: application/x-nwb
  118. id: dandiasset:07eab05e-7002-4522-8498-359b952ab4a2
  119. identifier: 07eab05e-7002-4522-8498-359b952ab4a2
  120. measurementTechnique:
  121. - name: behavioral technique
  122. schemaKey: MeasurementTechniqueType
  123. - name: spike sorting technique
  124. schemaKey: MeasurementTechniqueType
  125. - name: surgical technique
  126. schemaKey: MeasurementTechniqueType
  127. - name: analytical technique
  128. schemaKey: MeasurementTechniqueType
  129. path: sub-amadeus/sub-amadeus_ses-08212019_behavior+ecephys.nwb
  130. publishedBy:
  131. endDate: '2024-06-05T17:10:33.905845+00:00'
  132. id: urn:uuid:47094514-0fe8-4539-9b9f-a8ec6a9bfab7
  133. name: DANDI publish
  134. schemaKey: PublishActivity
  135. startDate: '2024-06-05T17:10:33.905845+00:00'
  136. wasAssociatedWith:
  137. - id: urn:uuid:52fa210b-90e9-4a29-ae31-6d6f74965652
  138. identifier: RRID:SCR_017571
  139. name: DANDI API
  140. schemaKey: Software
  141. version: 0.1.0
  142. schemaKey: Asset
  143. schemaVersion: 0.6.7
  144. variableMeasured:
  145. - schemaKey: PropertyValue
  146. value: ElectrodeGroup
  147. - schemaKey: PropertyValue
  148. value: ProcessingModule
  149. - schemaKey: PropertyValue
  150. value: SpatialSeries
  151. - schemaKey: PropertyValue
  152. value: Units
  153. wasAttributedTo:
  154. - age:
  155. schemaKey: PropertyValue
  156. unitText: ISO-8601 duration
  157. value: P10Y
  158. valueReference:
  159. schemaKey: PropertyValue
  160. value: dandi:BirthReference
  161. identifier: amadeus
  162. schemaKey: Participant
  163. sex:
  164. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  165. name: Male
  166. schemaKey: SexType
  167. species:
  168. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  169. name: Macaca mulatta - Rhesus monkey
  170. schemaKey: SpeciesType
  171. wasGeneratedBy:
  172. - description: Data from macaque performing mental navigation task. Subject is presented
  173. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  174. a screen. After a delay, the subject is then cued with a go signal to navigate
  175. from start to target landmark with a joystick. Subject should respond by deflecting
  176. the joystick in the right direction and holding it until the subject thinks it
  177. has arrived at the target landmark. The visual drift or intervening landmarks
  178. are all occluded from view making the task a purely mental navigation.
  179. identifier: 08212019
  180. name: 08212019
  181. schemaKey: Session
  182. startDate: '2019-08-21T00:00:00-04:00'
  183. - description: Metadata generated by DANDI cli
  184. endDate: '2024-04-13T19:01:32.716117-04:00'
  185. id: urn:uuid:517c61f8-63c6-4deb-9d94-8cda3ca8ceeb
  186. name: Metadata generation
  187. schemaKey: Activity
  188. startDate: '2024-04-13T19:01:14.392627-04:00'
  189. wasAssociatedWith:
  190. - identifier: RRID:SCR_019009
  191. name: DANDI Command Line Interface
  192. schemaKey: Software
  193. url: https://github.com/dandi/dandi-cli
  194. version: 0.61.2
  195. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  196. access:
  197. - schemaKey: AccessRequirements
  198. status: dandi:OpenAccess
  199. approach:
  200. - name: electrophysiological approach
  201. schemaKey: ApproachType
  202. - name: behavioral approach
  203. schemaKey: ApproachType
  204. blobDateModified: '2024-04-13T10:13:10.507658-04:00'
  205. contentSize: 315918428
  206. contentUrl:
  207. - https://api.dandiarchive.org/api/assets/ca53bd47-e0c8-469b-b7b8-7f277c8868df/download/
  208. - https://dandiarchive.s3.amazonaws.com/blobs/8c9/7ee/8c97eec3-1e12-4653-b9f0-2e14f6203e51
  209. dateModified: '2024-04-13T19:01:33.371345-04:00'
  210. datePublished: '2024-06-05T17:10:33.913115+00:00'
  211. digest:
  212. dandi:dandi-etag: 8f167580c69ba482039673c83d15fd8a-5
  213. dandi:sha2-256: c9e858580de6cd9a431e48d48128476ef5aacac7a41d41a439e22ee5a413e8ad
  214. encodingFormat: application/x-nwb
  215. id: dandiasset:ca53bd47-e0c8-469b-b7b8-7f277c8868df
  216. identifier: ca53bd47-e0c8-469b-b7b8-7f277c8868df
  217. measurementTechnique:
  218. - name: behavioral technique
  219. schemaKey: MeasurementTechniqueType
  220. - name: spike sorting technique
  221. schemaKey: MeasurementTechniqueType
  222. - name: surgical technique
  223. schemaKey: MeasurementTechniqueType
  224. - name: analytical technique
  225. schemaKey: MeasurementTechniqueType
  226. path: sub-amadeus/sub-amadeus_ses-08232019_behavior+ecephys.nwb
  227. publishedBy:
  228. endDate: '2024-06-05T17:10:33.913115+00:00'
  229. id: urn:uuid:f429bfbc-1b1e-475e-bfe6-3907a5b31739
  230. name: DANDI publish
  231. schemaKey: PublishActivity
  232. startDate: '2024-06-05T17:10:33.913115+00:00'
  233. wasAssociatedWith:
  234. - id: urn:uuid:1f01ba53-bf4c-4212-8c0b-2a5d781e9d91
  235. identifier: RRID:SCR_017571
  236. name: DANDI API
  237. schemaKey: Software
  238. version: 0.1.0
  239. schemaKey: Asset
  240. schemaVersion: 0.6.7
  241. variableMeasured:
  242. - schemaKey: PropertyValue
  243. value: ElectrodeGroup
  244. - schemaKey: PropertyValue
  245. value: ProcessingModule
  246. - schemaKey: PropertyValue
  247. value: SpatialSeries
  248. - schemaKey: PropertyValue
  249. value: Units
  250. wasAttributedTo:
  251. - age:
  252. schemaKey: PropertyValue
  253. unitText: ISO-8601 duration
  254. value: P10Y
  255. valueReference:
  256. schemaKey: PropertyValue
  257. value: dandi:BirthReference
  258. identifier: amadeus
  259. schemaKey: Participant
  260. sex:
  261. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  262. name: Male
  263. schemaKey: SexType
  264. species:
  265. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  266. name: Macaca mulatta - Rhesus monkey
  267. schemaKey: SpeciesType
  268. wasGeneratedBy:
  269. - description: Data from macaque performing mental navigation task. Subject is presented
  270. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  271. a screen. After a delay, the subject is then cued with a go signal to navigate
  272. from start to target landmark with a joystick. Subject should respond by deflecting
  273. the joystick in the right direction and holding it until the subject thinks it
  274. has arrived at the target landmark. The visual drift or intervening landmarks
  275. are all occluded from view making the task a purely mental navigation.
  276. identifier: 08232019
  277. name: 08232019
  278. schemaKey: Session
  279. startDate: '2019-08-23T00:00:00-04:00'
  280. - description: Metadata generated by DANDI cli
  281. endDate: '2024-04-13T19:01:33.371253-04:00'
  282. id: urn:uuid:be19ba06-905e-42f2-8382-361f78376b1c
  283. name: Metadata generation
  284. schemaKey: Activity
  285. startDate: '2024-04-13T19:01:21.843824-04:00'
  286. wasAssociatedWith:
  287. - identifier: RRID:SCR_019009
  288. name: DANDI Command Line Interface
  289. schemaKey: Software
  290. url: https://github.com/dandi/dandi-cli
  291. version: 0.61.2
  292. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  293. access:
  294. - schemaKey: AccessRequirements
  295. status: dandi:OpenAccess
  296. approach:
  297. - name: electrophysiological approach
  298. schemaKey: ApproachType
  299. - name: behavioral approach
  300. schemaKey: ApproachType
  301. blobDateModified: '2024-04-13T11:41:10.776851-04:00'
  302. contentSize: 371547088
  303. contentUrl:
  304. - https://api.dandiarchive.org/api/assets/8e2c78d6-ebe8-4e65-87c8-17102478ef3e/download/
  305. - https://dandiarchive.s3.amazonaws.com/blobs/fb4/7b6/fb47b6b5-2f8b-4f0e-b78c-8627da1f03cb
  306. dateModified: '2024-04-13T19:02:03.259447-04:00'
  307. datePublished: '2024-06-05T17:10:33.920082+00:00'
  308. digest:
  309. dandi:dandi-etag: 9c545b77dfd57bae1e3218d03430ad81-6
  310. dandi:sha2-256: b128f0eafcf8aa550a405316d0bee611708b8226be8528f6a291f5aea53c9c5b
  311. encodingFormat: application/x-nwb
  312. id: dandiasset:8e2c78d6-ebe8-4e65-87c8-17102478ef3e
  313. identifier: 8e2c78d6-ebe8-4e65-87c8-17102478ef3e
  314. measurementTechnique:
  315. - name: behavioral technique
  316. schemaKey: MeasurementTechniqueType
  317. - name: spike sorting technique
  318. schemaKey: MeasurementTechniqueType
  319. - name: surgical technique
  320. schemaKey: MeasurementTechniqueType
  321. - name: analytical technique
  322. schemaKey: MeasurementTechniqueType
  323. path: sub-amadeus/sub-amadeus_ses-08272019_behavior+ecephys.nwb
  324. publishedBy:
  325. endDate: '2024-06-05T17:10:33.920082+00:00'
  326. id: urn:uuid:b7509dc3-6c19-4bf8-9c7d-1595219031dc
  327. name: DANDI publish
  328. schemaKey: PublishActivity
  329. startDate: '2024-06-05T17:10:33.920082+00:00'
  330. wasAssociatedWith:
  331. - id: urn:uuid:11749563-db83-4369-a7af-b87243e37a81
  332. identifier: RRID:SCR_017571
  333. name: DANDI API
  334. schemaKey: Software
  335. version: 0.1.0
  336. schemaKey: Asset
  337. schemaVersion: 0.6.7
  338. variableMeasured:
  339. - schemaKey: PropertyValue
  340. value: ElectrodeGroup
  341. - schemaKey: PropertyValue
  342. value: ProcessingModule
  343. - schemaKey: PropertyValue
  344. value: SpatialSeries
  345. - schemaKey: PropertyValue
  346. value: Units
  347. wasAttributedTo:
  348. - age:
  349. schemaKey: PropertyValue
  350. unitText: ISO-8601 duration
  351. value: P10Y
  352. valueReference:
  353. schemaKey: PropertyValue
  354. value: dandi:BirthReference
  355. identifier: amadeus
  356. schemaKey: Participant
  357. sex:
  358. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  359. name: Male
  360. schemaKey: SexType
  361. species:
  362. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  363. name: Macaca mulatta - Rhesus monkey
  364. schemaKey: SpeciesType
  365. wasGeneratedBy:
  366. - description: Data from macaque performing mental navigation task. Subject is presented
  367. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  368. a screen. After a delay, the subject is then cued with a go signal to navigate
  369. from start to target landmark with a joystick. Subject should respond by deflecting
  370. the joystick in the right direction and holding it until the subject thinks it
  371. has arrived at the target landmark. The visual drift or intervening landmarks
  372. are all occluded from view making the task a purely mental navigation.
  373. identifier: 08272019
  374. name: 08272019
  375. schemaKey: Session
  376. startDate: '2019-08-27T00:00:00-04:00'
  377. - description: Metadata generated by DANDI cli
  378. endDate: '2024-04-13T19:02:03.259394-04:00'
  379. id: urn:uuid:0a888497-c16f-481a-857b-5e692bfe4f5a
  380. name: Metadata generation
  381. schemaKey: Activity
  382. startDate: '2024-04-13T19:01:57.335076-04:00'
  383. wasAssociatedWith:
  384. - identifier: RRID:SCR_019009
  385. name: DANDI Command Line Interface
  386. schemaKey: Software
  387. url: https://github.com/dandi/dandi-cli
  388. version: 0.61.2
  389. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  390. access:
  391. - schemaKey: AccessRequirements
  392. status: dandi:OpenAccess
  393. approach:
  394. - name: electrophysiological approach
  395. schemaKey: ApproachType
  396. - name: behavioral approach
  397. schemaKey: ApproachType
  398. blobDateModified: '2024-03-07T18:01:49.891010-05:00'
  399. contentSize: 300897493
  400. contentUrl:
  401. - https://api.dandiarchive.org/api/assets/4253e494-4195-4639-b650-8a1ba409a40b/download/
  402. - https://dandiarchive.s3.amazonaws.com/blobs/4a5/09c/4a509ce9-afd9-4e13-90c9-d3046d94307d
  403. dateModified: '2024-04-13T19:02:29.733362-04:00'
  404. datePublished: '2024-06-05T17:10:33.928715+00:00'
  405. digest:
  406. dandi:dandi-etag: da38157ed4d88be8f51fd38baecf18ba-5
  407. dandi:sha2-256: 3d344303c6c600af2b3dd87294411fca2222e984557081fed5295546e27c9bb7
  408. encodingFormat: application/x-nwb
  409. id: dandiasset:4253e494-4195-4639-b650-8a1ba409a40b
  410. identifier: 4253e494-4195-4639-b650-8a1ba409a40b
  411. measurementTechnique:
  412. - name: behavioral technique
  413. schemaKey: MeasurementTechniqueType
  414. - name: spike sorting technique
  415. schemaKey: MeasurementTechniqueType
  416. - name: surgical technique
  417. schemaKey: MeasurementTechniqueType
  418. - name: analytical technique
  419. schemaKey: MeasurementTechniqueType
  420. path: sub-amadeus/sub-amadeus_ses-08292019_behavior+ecephys.nwb
  421. publishedBy:
  422. endDate: '2024-06-05T17:10:33.928715+00:00'
  423. id: urn:uuid:4e6bd2d7-3720-4c5e-98b3-9fbba94edb57
  424. name: DANDI publish
  425. schemaKey: PublishActivity
  426. startDate: '2024-06-05T17:10:33.928715+00:00'
  427. wasAssociatedWith:
  428. - id: urn:uuid:3f5f571e-0a6c-4dfa-bd7f-45640a485694
  429. identifier: RRID:SCR_017571
  430. name: DANDI API
  431. schemaKey: Software
  432. version: 0.1.0
  433. schemaKey: Asset
  434. schemaVersion: 0.6.7
  435. variableMeasured:
  436. - schemaKey: PropertyValue
  437. value: ElectrodeGroup
  438. - schemaKey: PropertyValue
  439. value: ProcessingModule
  440. - schemaKey: PropertyValue
  441. value: SpatialSeries
  442. - schemaKey: PropertyValue
  443. value: Units
  444. wasAttributedTo:
  445. - age:
  446. schemaKey: PropertyValue
  447. unitText: ISO-8601 duration
  448. value: P10Y
  449. valueReference:
  450. schemaKey: PropertyValue
  451. value: dandi:BirthReference
  452. identifier: amadeus
  453. schemaKey: Participant
  454. sex:
  455. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  456. name: Male
  457. schemaKey: SexType
  458. species:
  459. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  460. name: Macaca mulatta - Rhesus monkey
  461. schemaKey: SpeciesType
  462. wasGeneratedBy:
  463. - description: Data from macaque performing mental navigation task. Subject is presented
  464. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  465. a screen. After a delay, the subject is then cued with a go signal to navigate
  466. from start to target landmark with a joystick. Subject should respond by deflecting
  467. the joystick in the right direction and holding it until the subject thinks it
  468. has arrived at the target landmark. The visual drift or intervening landmarks
  469. are all occluded from view making the task a purely mental navigation.
  470. identifier: 08292019
  471. name: 08292019
  472. schemaKey: Session
  473. startDate: '2019-08-29T00:00:00-04:00'
  474. - description: Metadata generated by DANDI cli
  475. endDate: '2024-04-13T19:02:29.733239-04:00'
  476. id: urn:uuid:35320393-18e6-4b9e-8ecc-cbf161fe8ff4
  477. name: Metadata generation
  478. schemaKey: Activity
  479. startDate: '2024-04-13T19:02:22.621079-04:00'
  480. wasAssociatedWith:
  481. - identifier: RRID:SCR_019009
  482. name: DANDI Command Line Interface
  483. schemaKey: Software
  484. url: https://github.com/dandi/dandi-cli
  485. version: 0.61.2
  486. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  487. access:
  488. - schemaKey: AccessRequirements
  489. status: dandi:OpenAccess
  490. approach:
  491. - name: electrophysiological approach
  492. schemaKey: ApproachType
  493. blobDateModified: '2024-04-12T18:39:37.812219-04:00'
  494. contentSize: 18780818387
  495. contentUrl:
  496. - https://api.dandiarchive.org/api/assets/ca726d0d-c7f6-4aef-9273-73e67174c518/download/
  497. - https://dandiarchive.s3.amazonaws.com/blobs/ef0/61a/ef061ad5-07ec-404f-b0dc-a103aac3185a
  498. dateModified: '2024-04-13T19:01:07.981789-04:00'
  499. datePublished: '2024-06-05T17:10:33.940835+00:00'
  500. digest:
  501. dandi:dandi-etag: e97f6638d54fa586ea75c55c6a9f0ded-280
  502. dandi:sha2-256: 82a6fd72e720db49b107ea1235cdd570af015c71814d9a5aaf6b7d64f247e0da
  503. encodingFormat: application/x-nwb
  504. id: dandiasset:ca726d0d-c7f6-4aef-9273-73e67174c518
  505. identifier: ca726d0d-c7f6-4aef-9273-73e67174c518
  506. measurementTechnique:
  507. - name: surgical technique
  508. schemaKey: MeasurementTechniqueType
  509. - name: multi electrode extracellular electrophysiology recording technique
  510. schemaKey: MeasurementTechniqueType
  511. path: sub-amadeus/sub-amadeus_ses-08152019_ecephys.nwb
  512. publishedBy:
  513. endDate: '2024-06-05T17:10:33.940835+00:00'
  514. id: urn:uuid:a0de163b-20d4-4336-98ce-697111dbcb58
  515. name: DANDI publish
  516. schemaKey: PublishActivity
  517. startDate: '2024-06-05T17:10:33.940835+00:00'
  518. wasAssociatedWith:
  519. - id: urn:uuid:f288c1e7-0140-43ee-b8b4-b811cdca502c
  520. identifier: RRID:SCR_017571
  521. name: DANDI API
  522. schemaKey: Software
  523. version: 0.1.0
  524. schemaKey: Asset
  525. schemaVersion: 0.6.7
  526. variableMeasured:
  527. - schemaKey: PropertyValue
  528. value: ElectrodeGroup
  529. - schemaKey: PropertyValue
  530. value: ElectricalSeries
  531. wasAttributedTo:
  532. - age:
  533. schemaKey: PropertyValue
  534. unitText: ISO-8601 duration
  535. value: P10Y
  536. valueReference:
  537. schemaKey: PropertyValue
  538. value: dandi:BirthReference
  539. identifier: amadeus
  540. schemaKey: Participant
  541. sex:
  542. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  543. name: Male
  544. schemaKey: SexType
  545. species:
  546. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  547. name: Macaca mulatta - Rhesus monkey
  548. schemaKey: SpeciesType
  549. wasGeneratedBy:
  550. - description: Data from macaque performing mental navigation task. Subject is presented
  551. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  552. a screen. After a delay, the subject is then cued with a go signal to navigate
  553. from start to target landmark with a joystick. Subject should respond by deflecting
  554. the joystick in the right direction and holding it until the subject thinks it
  555. has arrived at the target landmark. The visual drift or intervening landmarks
  556. are all occluded from view making the task a purely mental navigation.
  557. identifier: 08152019
  558. name: 08152019
  559. schemaKey: Session
  560. startDate: '2019-08-15T00:00:00-04:00'
  561. - description: Metadata generated by DANDI cli
  562. endDate: '2024-04-13T19:01:07.981754-04:00'
  563. id: urn:uuid:29a8654c-69cf-4a04-8f23-313c9d96e3e1
  564. name: Metadata generation
  565. schemaKey: Activity
  566. startDate: '2024-04-13T19:01:07.968172-04:00'
  567. wasAssociatedWith:
  568. - identifier: RRID:SCR_019009
  569. name: DANDI Command Line Interface
  570. schemaKey: Software
  571. url: https://github.com/dandi/dandi-cli
  572. version: 0.61.2
  573. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  574. access:
  575. - schemaKey: AccessRequirements
  576. status: dandi:OpenAccess
  577. approach:
  578. - name: electrophysiological approach
  579. schemaKey: ApproachType
  580. - name: behavioral approach
  581. schemaKey: ApproachType
  582. blobDateModified: '2024-04-13T11:40:56.231833-04:00'
  583. contentSize: 258327205
  584. contentUrl:
  585. - https://api.dandiarchive.org/api/assets/fb970a2d-d513-45de-a5f3-d1cc17f8d5f0/download/
  586. - https://dandiarchive.s3.amazonaws.com/blobs/7b9/28a/7b928a2b-3580-463f-bae3-9a3886f4ab42
  587. dateModified: '2024-04-13T19:03:05.714684-04:00'
  588. datePublished: '2024-06-05T17:10:33.948775+00:00'
  589. digest:
  590. dandi:dandi-etag: 702bf588869c0a2a6a77085e8a55a649-4
  591. dandi:sha2-256: d6e670fab23eef3b6749e4686ff11a21a1fad311c14b49ae6077643a6806f172
  592. encodingFormat: application/x-nwb
  593. id: dandiasset:fb970a2d-d513-45de-a5f3-d1cc17f8d5f0
  594. identifier: fb970a2d-d513-45de-a5f3-d1cc17f8d5f0
  595. measurementTechnique:
  596. - name: behavioral technique
  597. schemaKey: MeasurementTechniqueType
  598. - name: spike sorting technique
  599. schemaKey: MeasurementTechniqueType
  600. - name: surgical technique
  601. schemaKey: MeasurementTechniqueType
  602. - name: analytical technique
  603. schemaKey: MeasurementTechniqueType
  604. path: sub-amadeus/sub-amadeus_ses-09172019_behavior+ecephys.nwb
  605. publishedBy:
  606. endDate: '2024-06-05T17:10:33.948775+00:00'
  607. id: urn:uuid:131b90c4-68b4-403c-a9a7-bc138ac03025
  608. name: DANDI publish
  609. schemaKey: PublishActivity
  610. startDate: '2024-06-05T17:10:33.948775+00:00'
  611. wasAssociatedWith:
  612. - id: urn:uuid:5d2f73aa-fd34-45ba-a1f5-9c180ddc8833
  613. identifier: RRID:SCR_017571
  614. name: DANDI API
  615. schemaKey: Software
  616. version: 0.1.0
  617. schemaKey: Asset
  618. schemaVersion: 0.6.7
  619. variableMeasured:
  620. - schemaKey: PropertyValue
  621. value: ElectrodeGroup
  622. - schemaKey: PropertyValue
  623. value: ProcessingModule
  624. - schemaKey: PropertyValue
  625. value: SpatialSeries
  626. - schemaKey: PropertyValue
  627. value: Units
  628. wasAttributedTo:
  629. - age:
  630. schemaKey: PropertyValue
  631. unitText: ISO-8601 duration
  632. value: P10Y
  633. valueReference:
  634. schemaKey: PropertyValue
  635. value: dandi:BirthReference
  636. identifier: amadeus
  637. schemaKey: Participant
  638. sex:
  639. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  640. name: Male
  641. schemaKey: SexType
  642. species:
  643. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  644. name: Macaca mulatta - Rhesus monkey
  645. schemaKey: SpeciesType
  646. wasGeneratedBy:
  647. - description: Data from macaque performing mental navigation task. Subject is presented
  648. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  649. a screen. After a delay, the subject is then cued with a go signal to navigate
  650. from start to target landmark with a joystick. Subject should respond by deflecting
  651. the joystick in the right direction and holding it until the subject thinks it
  652. has arrived at the target landmark. The visual drift or intervening landmarks
  653. are all occluded from view making the task a purely mental navigation.
  654. identifier: 09172019
  655. name: 09172019
  656. schemaKey: Session
  657. startDate: '2019-09-17T00:00:00-04:00'
  658. - description: Metadata generated by DANDI cli
  659. endDate: '2024-04-13T19:03:05.714560-04:00'
  660. id: urn:uuid:c2189945-4a0b-4b45-a630-8e4c3216a9d7
  661. name: Metadata generation
  662. schemaKey: Activity
  663. startDate: '2024-04-13T19:02:58.533818-04:00'
  664. wasAssociatedWith:
  665. - identifier: RRID:SCR_019009
  666. name: DANDI Command Line Interface
  667. schemaKey: Software
  668. url: https://github.com/dandi/dandi-cli
  669. version: 0.61.2
  670. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  671. access:
  672. - schemaKey: AccessRequirements
  673. status: dandi:OpenAccess
  674. approach:
  675. - name: electrophysiological approach
  676. schemaKey: ApproachType
  677. blobDateModified: '2024-04-13T10:23:58.137254-04:00'
  678. contentSize: 16232811627
  679. contentUrl:
  680. - https://api.dandiarchive.org/api/assets/36b4f05c-d5be-41b6-8961-079b581b7f04/download/
  681. - https://dandiarchive.s3.amazonaws.com/blobs/8a3/967/8a3967f0-d89b-46d7-9870-a679748eef43
  682. dateModified: '2024-04-13T19:02:48.709852-04:00'
  683. datePublished: '2024-06-05T17:10:33.956599+00:00'
  684. digest:
  685. dandi:dandi-etag: 450c0ce28ccb31f6fdc3fff160c7e395-242
  686. dandi:sha2-256: 79deea5b0b8cf0aa60cb1e83b8c8474093a8b76fdc182239ddef0a62756faa35
  687. encodingFormat: application/x-nwb
  688. id: dandiasset:36b4f05c-d5be-41b6-8961-079b581b7f04
  689. identifier: 36b4f05c-d5be-41b6-8961-079b581b7f04
  690. measurementTechnique:
  691. - name: surgical technique
  692. schemaKey: MeasurementTechniqueType
  693. - name: multi electrode extracellular electrophysiology recording technique
  694. schemaKey: MeasurementTechniqueType
  695. path: sub-amadeus/sub-amadeus_ses-08212019_ecephys.nwb
  696. publishedBy:
  697. endDate: '2024-06-05T17:10:33.956599+00:00'
  698. id: urn:uuid:705639b9-220d-4e27-b76f-a17e3b6a303c
  699. name: DANDI publish
  700. schemaKey: PublishActivity
  701. startDate: '2024-06-05T17:10:33.956599+00:00'
  702. wasAssociatedWith:
  703. - id: urn:uuid:de995491-be26-4a74-9783-f8b410ae6214
  704. identifier: RRID:SCR_017571
  705. name: DANDI API
  706. schemaKey: Software
  707. version: 0.1.0
  708. schemaKey: Asset
  709. schemaVersion: 0.6.7
  710. variableMeasured:
  711. - schemaKey: PropertyValue
  712. value: ElectrodeGroup
  713. - schemaKey: PropertyValue
  714. value: ElectricalSeries
  715. wasAttributedTo:
  716. - age:
  717. schemaKey: PropertyValue
  718. unitText: ISO-8601 duration
  719. value: P10Y
  720. valueReference:
  721. schemaKey: PropertyValue
  722. value: dandi:BirthReference
  723. identifier: amadeus
  724. schemaKey: Participant
  725. sex:
  726. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  727. name: Male
  728. schemaKey: SexType
  729. species:
  730. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  731. name: Macaca mulatta - Rhesus monkey
  732. schemaKey: SpeciesType
  733. wasGeneratedBy:
  734. - description: Data from macaque performing mental navigation task. Subject is presented
  735. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  736. a screen. After a delay, the subject is then cued with a go signal to navigate
  737. from start to target landmark with a joystick. Subject should respond by deflecting
  738. the joystick in the right direction and holding it until the subject thinks it
  739. has arrived at the target landmark. The visual drift or intervening landmarks
  740. are all occluded from view making the task a purely mental navigation.
  741. identifier: 08212019
  742. name: 08212019
  743. schemaKey: Session
  744. startDate: '2019-08-21T00:00:00-04:00'
  745. - description: Metadata generated by DANDI cli
  746. endDate: '2024-04-13T19:02:48.709790-04:00'
  747. id: urn:uuid:8f01d30f-adc1-43cd-a759-14ad9677e626
  748. name: Metadata generation
  749. schemaKey: Activity
  750. startDate: '2024-04-13T19:02:38.821641-04:00'
  751. wasAssociatedWith:
  752. - identifier: RRID:SCR_019009
  753. name: DANDI Command Line Interface
  754. schemaKey: Software
  755. url: https://github.com/dandi/dandi-cli
  756. version: 0.61.2
  757. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  758. access:
  759. - schemaKey: AccessRequirements
  760. status: dandi:OpenAccess
  761. approach:
  762. - name: electrophysiological approach
  763. schemaKey: ApproachType
  764. blobDateModified: '2024-04-13T10:54:05.278836-04:00'
  765. contentSize: 17982170426
  766. contentUrl:
  767. - https://api.dandiarchive.org/api/assets/c2e6972a-a40f-4b31-989a-35a7429816ce/download/
  768. - https://dandiarchive.s3.amazonaws.com/blobs/0f7/43b/0f743bea-fa75-4585-b33b-8f82acf673c3
  769. dateModified: '2024-04-13T19:03:24.220140-04:00'
  770. datePublished: '2024-06-05T17:10:33.965081+00:00'
  771. digest:
  772. dandi:dandi-etag: 72eeff85bae8c4bf01bf74dee22916e3-268
  773. dandi:sha2-256: 44fc10c52f06ae1a75c5bf9b20d11b008a5491f6e04e925a56294409947ea0c8
  774. encodingFormat: application/x-nwb
  775. id: dandiasset:c2e6972a-a40f-4b31-989a-35a7429816ce
  776. identifier: c2e6972a-a40f-4b31-989a-35a7429816ce
  777. measurementTechnique:
  778. - name: surgical technique
  779. schemaKey: MeasurementTechniqueType
  780. - name: multi electrode extracellular electrophysiology recording technique
  781. schemaKey: MeasurementTechniqueType
  782. path: sub-amadeus/sub-amadeus_ses-08232019_ecephys.nwb
  783. publishedBy:
  784. endDate: '2024-06-05T17:10:33.965081+00:00'
  785. id: urn:uuid:7a414af7-9497-4f1e-b548-de4cb1b64a8b
  786. name: DANDI publish
  787. schemaKey: PublishActivity
  788. startDate: '2024-06-05T17:10:33.965081+00:00'
  789. wasAssociatedWith:
  790. - id: urn:uuid:868916ca-bbd9-4cf1-b976-5367d6b38bab
  791. identifier: RRID:SCR_017571
  792. name: DANDI API
  793. schemaKey: Software
  794. version: 0.1.0
  795. schemaKey: Asset
  796. schemaVersion: 0.6.7
  797. variableMeasured:
  798. - schemaKey: PropertyValue
  799. value: ElectrodeGroup
  800. - schemaKey: PropertyValue
  801. value: ElectricalSeries
  802. wasAttributedTo:
  803. - age:
  804. schemaKey: PropertyValue
  805. unitText: ISO-8601 duration
  806. value: P10Y
  807. valueReference:
  808. schemaKey: PropertyValue
  809. value: dandi:BirthReference
  810. identifier: amadeus
  811. schemaKey: Participant
  812. sex:
  813. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  814. name: Male
  815. schemaKey: SexType
  816. species:
  817. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  818. name: Macaca mulatta - Rhesus monkey
  819. schemaKey: SpeciesType
  820. wasGeneratedBy:
  821. - description: Data from macaque performing mental navigation task. Subject is presented
  822. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  823. a screen. After a delay, the subject is then cued with a go signal to navigate
  824. from start to target landmark with a joystick. Subject should respond by deflecting
  825. the joystick in the right direction and holding it until the subject thinks it
  826. has arrived at the target landmark. The visual drift or intervening landmarks
  827. are all occluded from view making the task a purely mental navigation.
  828. identifier: 08232019
  829. name: 08232019
  830. schemaKey: Session
  831. startDate: '2019-08-23T00:00:00-04:00'
  832. - description: Metadata generated by DANDI cli
  833. endDate: '2024-04-13T19:03:24.220085-04:00'
  834. id: urn:uuid:939be867-bb10-44c3-9561-b92cbacefa2b
  835. name: Metadata generation
  836. schemaKey: Activity
  837. startDate: '2024-04-13T19:03:15.131396-04:00'
  838. wasAssociatedWith:
  839. - identifier: RRID:SCR_019009
  840. name: DANDI Command Line Interface
  841. schemaKey: Software
  842. url: https://github.com/dandi/dandi-cli
  843. version: 0.61.2
  844. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  845. access:
  846. - schemaKey: AccessRequirements
  847. status: dandi:OpenAccess
  848. approach:
  849. - name: electrophysiological approach
  850. schemaKey: ApproachType
  851. blobDateModified: '2024-03-07T18:40:50.823796-05:00'
  852. contentSize: 13940823323
  853. contentUrl:
  854. - https://api.dandiarchive.org/api/assets/2ce68324-74d1-4b74-91c7-8d13c5aa6716/download/
  855. - https://dandiarchive.s3.amazonaws.com/blobs/d6a/569/d6a569fc-5ca8-451a-8443-071f6add7742
  856. dateModified: '2024-04-13T19:04:19.544446-04:00'
  857. datePublished: '2024-06-05T17:10:33.974642+00:00'
  858. digest:
  859. dandi:dandi-etag: cda8f78c7e0e7e8d1ac2f880efa05bf5-208
  860. dandi:sha2-256: 6187a9b657ebd953f29a4090ae126162e2a51ad390d0e6c282382566f010df00
  861. encodingFormat: application/x-nwb
  862. id: dandiasset:2ce68324-74d1-4b74-91c7-8d13c5aa6716
  863. identifier: 2ce68324-74d1-4b74-91c7-8d13c5aa6716
  864. measurementTechnique:
  865. - name: surgical technique
  866. schemaKey: MeasurementTechniqueType
  867. - name: multi electrode extracellular electrophysiology recording technique
  868. schemaKey: MeasurementTechniqueType
  869. path: sub-amadeus/sub-amadeus_ses-08292019_ecephys.nwb
  870. publishedBy:
  871. endDate: '2024-06-05T17:10:33.974642+00:00'
  872. id: urn:uuid:9a3008c1-9dc2-4178-a237-c8116534cc2b
  873. name: DANDI publish
  874. schemaKey: PublishActivity
  875. startDate: '2024-06-05T17:10:33.974642+00:00'
  876. wasAssociatedWith:
  877. - id: urn:uuid:2ae0102b-393f-4bfc-955d-89a47d3dc69c
  878. identifier: RRID:SCR_017571
  879. name: DANDI API
  880. schemaKey: Software
  881. version: 0.1.0
  882. schemaKey: Asset
  883. schemaVersion: 0.6.7
  884. variableMeasured:
  885. - schemaKey: PropertyValue
  886. value: ElectrodeGroup
  887. - schemaKey: PropertyValue
  888. value: ElectricalSeries
  889. wasAttributedTo:
  890. - age:
  891. schemaKey: PropertyValue
  892. unitText: ISO-8601 duration
  893. value: P10Y
  894. valueReference:
  895. schemaKey: PropertyValue
  896. value: dandi:BirthReference
  897. identifier: amadeus
  898. schemaKey: Participant
  899. sex:
  900. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  901. name: Male
  902. schemaKey: SexType
  903. species:
  904. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  905. name: Macaca mulatta - Rhesus monkey
  906. schemaKey: SpeciesType
  907. wasGeneratedBy:
  908. - description: Data from macaque performing mental navigation task. Subject is presented
  909. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  910. a screen. After a delay, the subject is then cued with a go signal to navigate
  911. from start to target landmark with a joystick. Subject should respond by deflecting
  912. the joystick in the right direction and holding it until the subject thinks it
  913. has arrived at the target landmark. The visual drift or intervening landmarks
  914. are all occluded from view making the task a purely mental navigation.
  915. identifier: 08292019
  916. name: 08292019
  917. schemaKey: Session
  918. startDate: '2019-08-29T00:00:00-04:00'
  919. - description: Metadata generated by DANDI cli
  920. endDate: '2024-04-13T19:04:19.544391-04:00'
  921. id: urn:uuid:2b1e381d-c896-4d08-8e1c-1741d4d4a741
  922. name: Metadata generation
  923. schemaKey: Activity
  924. startDate: '2024-04-13T19:04:10.573021-04:00'
  925. wasAssociatedWith:
  926. - identifier: RRID:SCR_019009
  927. name: DANDI Command Line Interface
  928. schemaKey: Software
  929. url: https://github.com/dandi/dandi-cli
  930. version: 0.61.2
  931. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  932. access:
  933. - schemaKey: AccessRequirements
  934. status: dandi:OpenAccess
  935. approach:
  936. - name: electrophysiological approach
  937. schemaKey: ApproachType
  938. blobDateModified: '2024-04-13T12:26:24.457311-04:00'
  939. contentSize: 19362627228
  940. contentUrl:
  941. - https://api.dandiarchive.org/api/assets/aeab0294-d97e-4d82-a284-f0c01d69474d/download/
  942. - https://dandiarchive.s3.amazonaws.com/blobs/50c/17e/50c17ed0-5e29-4aaa-a44c-51ea99740597
  943. dateModified: '2024-04-13T19:03:52.013803-04:00'
  944. datePublished: '2024-06-05T17:10:33.982463+00:00'
  945. digest:
  946. dandi:dandi-etag: c12909822d86844c0d89771e605d2468-289
  947. dandi:sha2-256: 324e83bcde1bfe53f4a8a9b826540e4d17565121eace7102d3e54a96191031e0
  948. encodingFormat: application/x-nwb
  949. id: dandiasset:aeab0294-d97e-4d82-a284-f0c01d69474d
  950. identifier: aeab0294-d97e-4d82-a284-f0c01d69474d
  951. measurementTechnique:
  952. - name: surgical technique
  953. schemaKey: MeasurementTechniqueType
  954. - name: multi electrode extracellular electrophysiology recording technique
  955. schemaKey: MeasurementTechniqueType
  956. path: sub-amadeus/sub-amadeus_ses-08272019_ecephys.nwb
  957. publishedBy:
  958. endDate: '2024-06-05T17:10:33.982463+00:00'
  959. id: urn:uuid:4bd3311f-bc8e-41c1-8e90-9929f5bad2c5
  960. name: DANDI publish
  961. schemaKey: PublishActivity
  962. startDate: '2024-06-05T17:10:33.982463+00:00'
  963. wasAssociatedWith:
  964. - id: urn:uuid:083454ce-f883-4a5e-bb25-1a19957ef4f5
  965. identifier: RRID:SCR_017571
  966. name: DANDI API
  967. schemaKey: Software
  968. version: 0.1.0
  969. schemaKey: Asset
  970. schemaVersion: 0.6.7
  971. variableMeasured:
  972. - schemaKey: PropertyValue
  973. value: ElectrodeGroup
  974. - schemaKey: PropertyValue
  975. value: ElectricalSeries
  976. wasAttributedTo:
  977. - age:
  978. schemaKey: PropertyValue
  979. unitText: ISO-8601 duration
  980. value: P10Y
  981. valueReference:
  982. schemaKey: PropertyValue
  983. value: dandi:BirthReference
  984. identifier: amadeus
  985. schemaKey: Participant
  986. sex:
  987. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  988. name: Male
  989. schemaKey: SexType
  990. species:
  991. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  992. name: Macaca mulatta - Rhesus monkey
  993. schemaKey: SpeciesType
  994. wasGeneratedBy:
  995. - description: Data from macaque performing mental navigation task. Subject is presented
  996. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  997. a screen. After a delay, the subject is then cued with a go signal to navigate
  998. from start to target landmark with a joystick. Subject should respond by deflecting
  999. the joystick in the right direction and holding it until the subject thinks it
  1000. has arrived at the target landmark. The visual drift or intervening landmarks
  1001. are all occluded from view making the task a purely mental navigation.
  1002. identifier: 08272019
  1003. name: 08272019
  1004. schemaKey: Session
  1005. startDate: '2019-08-27T00:00:00-04:00'
  1006. - description: Metadata generated by DANDI cli
  1007. endDate: '2024-04-13T19:03:52.013758-04:00'
  1008. id: urn:uuid:e217a0e5-2815-44cf-a30b-f40c05eefd07
  1009. name: Metadata generation
  1010. schemaKey: Activity
  1011. startDate: '2024-04-13T19:03:43.770704-04:00'
  1012. wasAssociatedWith:
  1013. - identifier: RRID:SCR_019009
  1014. name: DANDI Command Line Interface
  1015. schemaKey: Software
  1016. url: https://github.com/dandi/dandi-cli
  1017. version: 0.61.2
  1018. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1019. access:
  1020. - schemaKey: AccessRequirements
  1021. status: dandi:OpenAccess
  1022. approach:
  1023. - name: electrophysiological approach
  1024. schemaKey: ApproachType
  1025. blobDateModified: '2024-04-13T12:09:03.266033-04:00'
  1026. contentSize: 13488593491
  1027. contentUrl:
  1028. - https://api.dandiarchive.org/api/assets/ae717096-b704-46a8-8337-cd78ca96ea2f/download/
  1029. - https://dandiarchive.s3.amazonaws.com/blobs/1d1/9e6/1d19e6a3-dd7a-497c-9235-cd441d7434c1
  1030. dateModified: '2024-04-13T19:04:49.059900-04:00'
  1031. datePublished: '2024-06-05T17:10:33.989494+00:00'
  1032. digest:
  1033. dandi:dandi-etag: 74befb5cfc7bef870d5f6c1d6ecce481-201
  1034. dandi:sha2-256: 5c0f6b48866ca6f6570ceb3245f610ba7e0e5b5c5229af68cc29d9873ba8f976
  1035. encodingFormat: application/x-nwb
  1036. id: dandiasset:ae717096-b704-46a8-8337-cd78ca96ea2f
  1037. identifier: ae717096-b704-46a8-8337-cd78ca96ea2f
  1038. measurementTechnique:
  1039. - name: surgical technique
  1040. schemaKey: MeasurementTechniqueType
  1041. - name: multi electrode extracellular electrophysiology recording technique
  1042. schemaKey: MeasurementTechniqueType
  1043. path: sub-amadeus/sub-amadeus_ses-09172019_ecephys.nwb
  1044. publishedBy:
  1045. endDate: '2024-06-05T17:10:33.989494+00:00'
  1046. id: urn:uuid:15999b23-7bf6-456c-9cb3-aa5cfb957d6f
  1047. name: DANDI publish
  1048. schemaKey: PublishActivity
  1049. startDate: '2024-06-05T17:10:33.989494+00:00'
  1050. wasAssociatedWith:
  1051. - id: urn:uuid:ee4e7983-5d22-432e-903c-823a5f1748f2
  1052. identifier: RRID:SCR_017571
  1053. name: DANDI API
  1054. schemaKey: Software
  1055. version: 0.1.0
  1056. schemaKey: Asset
  1057. schemaVersion: 0.6.7
  1058. variableMeasured:
  1059. - schemaKey: PropertyValue
  1060. value: ElectrodeGroup
  1061. - schemaKey: PropertyValue
  1062. value: ElectricalSeries
  1063. wasAttributedTo:
  1064. - age:
  1065. schemaKey: PropertyValue
  1066. unitText: ISO-8601 duration
  1067. value: P10Y
  1068. valueReference:
  1069. schemaKey: PropertyValue
  1070. value: dandi:BirthReference
  1071. identifier: amadeus
  1072. schemaKey: Participant
  1073. sex:
  1074. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1075. name: Male
  1076. schemaKey: SexType
  1077. species:
  1078. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1079. name: Macaca mulatta - Rhesus monkey
  1080. schemaKey: SpeciesType
  1081. wasGeneratedBy:
  1082. - description: Data from macaque performing mental navigation task. Subject is presented
  1083. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  1084. a screen. After a delay, the subject is then cued with a go signal to navigate
  1085. from start to target landmark with a joystick. Subject should respond by deflecting
  1086. the joystick in the right direction and holding it until the subject thinks it
  1087. has arrived at the target landmark. The visual drift or intervening landmarks
  1088. are all occluded from view making the task a purely mental navigation.
  1089. identifier: 09172019
  1090. name: 09172019
  1091. schemaKey: Session
  1092. startDate: '2019-09-17T00:00:00-04:00'
  1093. - description: Metadata generated by DANDI cli
  1094. endDate: '2024-04-13T19:04:49.059856-04:00'
  1095. id: urn:uuid:5096eda1-3f59-4587-9eb6-ddd761459ec6
  1096. name: Metadata generation
  1097. schemaKey: Activity
  1098. startDate: '2024-04-13T19:04:42.049969-04:00'
  1099. wasAssociatedWith:
  1100. - identifier: RRID:SCR_019009
  1101. name: DANDI Command Line Interface
  1102. schemaKey: Software
  1103. url: https://github.com/dandi/dandi-cli
  1104. version: 0.61.2
  1105. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1106. access:
  1107. - schemaKey: AccessRequirements
  1108. status: dandi:OpenAccess
  1109. approach:
  1110. - name: electrophysiological approach
  1111. schemaKey: ApproachType
  1112. - name: behavioral approach
  1113. schemaKey: ApproachType
  1114. blobDateModified: '2024-04-24T23:09:31.946257-04:00'
  1115. contentSize: 274602293
  1116. contentUrl:
  1117. - https://api.dandiarchive.org/api/assets/4b1bcd24-4b99-46c2-88de-9d53fbed14bf/download/
  1118. - https://dandiarchive.s3.amazonaws.com/blobs/ead/56d/ead56d6f-2203-4a16-a852-5ceefd708386
  1119. dateModified: '2024-04-25T01:27:28.019206-04:00'
  1120. datePublished: '2024-06-05T17:10:33.996459+00:00'
  1121. digest:
  1122. dandi:dandi-etag: 71fef8722361e1d1a6d34ccebb217d30-5
  1123. dandi:sha2-256: 7267a4d75cfd42ec662b7ca7ad4df1e97d40f17e172d562b712d66717bf66e5c
  1124. encodingFormat: application/x-nwb
  1125. id: dandiasset:4b1bcd24-4b99-46c2-88de-9d53fbed14bf
  1126. identifier: 4b1bcd24-4b99-46c2-88de-9d53fbed14bf
  1127. measurementTechnique:
  1128. - name: behavioral technique
  1129. schemaKey: MeasurementTechniqueType
  1130. - name: surgical technique
  1131. schemaKey: MeasurementTechniqueType
  1132. - name: spike sorting technique
  1133. schemaKey: MeasurementTechniqueType
  1134. - name: analytical technique
  1135. schemaKey: MeasurementTechniqueType
  1136. path: sub-mahler/sub-mahler_ses-04132021_behavior+ecephys.nwb
  1137. publishedBy:
  1138. endDate: '2024-06-05T17:10:33.996459+00:00'
  1139. id: urn:uuid:ec94d7e1-85a4-40f2-838a-75226ef69b2d
  1140. name: DANDI publish
  1141. schemaKey: PublishActivity
  1142. startDate: '2024-06-05T17:10:33.996459+00:00'
  1143. wasAssociatedWith:
  1144. - id: urn:uuid:2e8ea3b0-1e2b-4ada-bcb3-6290c90b5a3b
  1145. identifier: RRID:SCR_017571
  1146. name: DANDI API
  1147. schemaKey: Software
  1148. version: 0.1.0
  1149. schemaKey: Asset
  1150. schemaVersion: 0.6.7
  1151. variableMeasured:
  1152. - schemaKey: PropertyValue
  1153. value: ElectrodeGroup
  1154. - schemaKey: PropertyValue
  1155. value: Units
  1156. - schemaKey: PropertyValue
  1157. value: SpatialSeries
  1158. - schemaKey: PropertyValue
  1159. value: ProcessingModule
  1160. wasAttributedTo:
  1161. - age:
  1162. schemaKey: PropertyValue
  1163. unitText: ISO-8601 duration
  1164. value: P05Y
  1165. valueReference:
  1166. schemaKey: PropertyValue
  1167. value: dandi:BirthReference
  1168. identifier: mahler
  1169. schemaKey: Participant
  1170. sex:
  1171. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1172. name: Male
  1173. schemaKey: SexType
  1174. species:
  1175. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1176. name: Macaca mulatta - Rhesus monkey
  1177. schemaKey: SpeciesType
  1178. wasGeneratedBy:
  1179. - description: Data from macaque performing mental navigation task. Subject is presented
  1180. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  1181. a screen. After a delay, the subject is then cued with a go signal to navigate
  1182. from start to target landmark with a joystick. Subject should respond by deflecting
  1183. the joystick in the right direction and holding it until the subject thinks it
  1184. has arrived at the target landmark. The visual drift or intervening landmarks
  1185. are all occluded from view making the task a purely mental navigation.
  1186. identifier: '04132021'
  1187. name: '04132021'
  1188. schemaKey: Session
  1189. startDate: '2021-04-13T00:00:00-04:00'
  1190. - description: Metadata generated by DANDI cli
  1191. endDate: '2024-04-25T01:27:28.019166-04:00'
  1192. id: urn:uuid:b6997c52-be14-4dd0-940a-ec281df9a9b4
  1193. name: Metadata generation
  1194. schemaKey: Activity
  1195. startDate: '2024-04-25T01:27:13.741317-04:00'
  1196. wasAssociatedWith:
  1197. - identifier: RRID:SCR_019009
  1198. name: DANDI Command Line Interface
  1199. schemaKey: Software
  1200. url: https://github.com/dandi/dandi-cli
  1201. version: 0.61.2
  1202. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1203. access:
  1204. - schemaKey: AccessRequirements
  1205. status: dandi:OpenAccess
  1206. approach:
  1207. - name: electrophysiological approach
  1208. schemaKey: ApproachType
  1209. - name: behavioral approach
  1210. schemaKey: ApproachType
  1211. blobDateModified: '2024-04-24T16:34:29.746718-04:00'
  1212. contentSize: 384394812
  1213. contentUrl:
  1214. - https://api.dandiarchive.org/api/assets/520eae71-f6e1-4db4-bd29-9e6a3e98803f/download/
  1215. - https://dandiarchive.s3.amazonaws.com/blobs/b12/baf/b12baf38-caa2-4ae1-b7f7-fe098ab4ead4
  1216. dateModified: '2024-04-25T01:27:28.281520-04:00'
  1217. datePublished: '2024-06-05T17:10:34.003553+00:00'
  1218. digest:
  1219. dandi:dandi-etag: 9766a1f0da1df867c9aa3b000c8da897-6
  1220. dandi:sha2-256: 813d2162c78b5fe1074135bc7cc93a506b9b72404a92e298c3610aaabc57795f
  1221. encodingFormat: application/x-nwb
  1222. id: dandiasset:520eae71-f6e1-4db4-bd29-9e6a3e98803f
  1223. identifier: 520eae71-f6e1-4db4-bd29-9e6a3e98803f
  1224. measurementTechnique:
  1225. - name: behavioral technique
  1226. schemaKey: MeasurementTechniqueType
  1227. - name: surgical technique
  1228. schemaKey: MeasurementTechniqueType
  1229. - name: spike sorting technique
  1230. schemaKey: MeasurementTechniqueType
  1231. - name: analytical technique
  1232. schemaKey: MeasurementTechniqueType
  1233. path: sub-mahler/sub-mahler_ses-04122021_behavior+ecephys.nwb
  1234. publishedBy:
  1235. endDate: '2024-06-05T17:10:34.003553+00:00'
  1236. id: urn:uuid:f022224c-92e6-40b7-a385-3cbb40f4059a
  1237. name: DANDI publish
  1238. schemaKey: PublishActivity
  1239. startDate: '2024-06-05T17:10:34.003553+00:00'
  1240. wasAssociatedWith:
  1241. - id: urn:uuid:51c08c42-2fef-4564-8c3e-35c5097c38f1
  1242. identifier: RRID:SCR_017571
  1243. name: DANDI API
  1244. schemaKey: Software
  1245. version: 0.1.0
  1246. schemaKey: Asset
  1247. schemaVersion: 0.6.7
  1248. variableMeasured:
  1249. - schemaKey: PropertyValue
  1250. value: ElectrodeGroup
  1251. - schemaKey: PropertyValue
  1252. value: Units
  1253. - schemaKey: PropertyValue
  1254. value: SpatialSeries
  1255. - schemaKey: PropertyValue
  1256. value: ProcessingModule
  1257. wasAttributedTo:
  1258. - age:
  1259. schemaKey: PropertyValue
  1260. unitText: ISO-8601 duration
  1261. value: P05Y
  1262. valueReference:
  1263. schemaKey: PropertyValue
  1264. value: dandi:BirthReference
  1265. identifier: mahler
  1266. schemaKey: Participant
  1267. sex:
  1268. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1269. name: Male
  1270. schemaKey: SexType
  1271. species:
  1272. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1273. name: Macaca mulatta - Rhesus monkey
  1274. schemaKey: SpeciesType
  1275. wasGeneratedBy:
  1276. - description: Data from macaque performing mental navigation task. Subject is presented
  1277. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  1278. a screen. After a delay, the subject is then cued with a go signal to navigate
  1279. from start to target landmark with a joystick. Subject should respond by deflecting
  1280. the joystick in the right direction and holding it until the subject thinks it
  1281. has arrived at the target landmark. The visual drift or intervening landmarks
  1282. are all occluded from view making the task a purely mental navigation.
  1283. identifier: '04122021'
  1284. name: '04122021'
  1285. schemaKey: Session
  1286. startDate: '2021-04-12T00:00:00-04:00'
  1287. - description: Metadata generated by DANDI cli
  1288. endDate: '2024-04-25T01:27:28.281485-04:00'
  1289. id: urn:uuid:44d8e4de-cc27-40a0-81fa-8f379665b8bc
  1290. name: Metadata generation
  1291. schemaKey: Activity
  1292. startDate: '2024-04-25T01:27:13.371210-04:00'
  1293. wasAssociatedWith:
  1294. - identifier: RRID:SCR_019009
  1295. name: DANDI Command Line Interface
  1296. schemaKey: Software
  1297. url: https://github.com/dandi/dandi-cli
  1298. version: 0.61.2
  1299. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1300. access:
  1301. - schemaKey: AccessRequirements
  1302. status: dandi:OpenAccess
  1303. approach:
  1304. - name: electrophysiological approach
  1305. schemaKey: ApproachType
  1306. - name: behavioral approach
  1307. schemaKey: ApproachType
  1308. blobDateModified: '2024-04-24T23:09:37.553222-04:00'
  1309. contentSize: 309868163
  1310. contentUrl:
  1311. - https://api.dandiarchive.org/api/assets/9b17e3b2-e310-4408-9ff6-1639579b2d3a/download/
  1312. - https://dandiarchive.s3.amazonaws.com/blobs/223/84c/22384c44-ab34-496f-ae33-0ea3c007188b
  1313. dateModified: '2024-04-25T01:27:42.771044-04:00'
  1314. datePublished: '2024-06-05T17:10:34.015266+00:00'
  1315. digest:
  1316. dandi:dandi-etag: 0d76b3a1e3d7754abaaefa2e89a02143-5
  1317. dandi:sha2-256: ad3ce4abdc1e57f42e4308241a856849bf72c4b127bff5e6b7bc6d93865aada5
  1318. encodingFormat: application/x-nwb
  1319. id: dandiasset:9b17e3b2-e310-4408-9ff6-1639579b2d3a
  1320. identifier: 9b17e3b2-e310-4408-9ff6-1639579b2d3a
  1321. measurementTechnique:
  1322. - name: behavioral technique
  1323. schemaKey: MeasurementTechniqueType
  1324. - name: surgical technique
  1325. schemaKey: MeasurementTechniqueType
  1326. - name: spike sorting technique
  1327. schemaKey: MeasurementTechniqueType
  1328. - name: analytical technique
  1329. schemaKey: MeasurementTechniqueType
  1330. path: sub-mahler/sub-mahler_ses-04142021_behavior+ecephys.nwb
  1331. publishedBy:
  1332. endDate: '2024-06-05T17:10:34.015266+00:00'
  1333. id: urn:uuid:f5f841ae-c7ef-446c-8e8c-22279acc4712
  1334. name: DANDI publish
  1335. schemaKey: PublishActivity
  1336. startDate: '2024-06-05T17:10:34.015266+00:00'
  1337. wasAssociatedWith:
  1338. - id: urn:uuid:172348ff-fb11-4d61-bff5-ddf7cb1d0f25
  1339. identifier: RRID:SCR_017571
  1340. name: DANDI API
  1341. schemaKey: Software
  1342. version: 0.1.0
  1343. schemaKey: Asset
  1344. schemaVersion: 0.6.7
  1345. variableMeasured:
  1346. - schemaKey: PropertyValue
  1347. value: ElectrodeGroup
  1348. - schemaKey: PropertyValue
  1349. value: Units
  1350. - schemaKey: PropertyValue
  1351. value: SpatialSeries
  1352. - schemaKey: PropertyValue
  1353. value: ProcessingModule
  1354. wasAttributedTo:
  1355. - age:
  1356. schemaKey: PropertyValue
  1357. unitText: ISO-8601 duration
  1358. value: P05Y
  1359. valueReference:
  1360. schemaKey: PropertyValue
  1361. value: dandi:BirthReference
  1362. identifier: mahler
  1363. schemaKey: Participant
  1364. sex:
  1365. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1366. name: Male
  1367. schemaKey: SexType
  1368. species:
  1369. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1370. name: Macaca mulatta - Rhesus monkey
  1371. schemaKey: SpeciesType
  1372. wasGeneratedBy:
  1373. - description: Data from macaque performing mental navigation task. Subject is presented
  1374. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  1375. a screen. After a delay, the subject is then cued with a go signal to navigate
  1376. from start to target landmark with a joystick. Subject should respond by deflecting
  1377. the joystick in the right direction and holding it until the subject thinks it
  1378. has arrived at the target landmark. The visual drift or intervening landmarks
  1379. are all occluded from view making the task a purely mental navigation.
  1380. identifier: '04142021'
  1381. name: '04142021'
  1382. schemaKey: Session
  1383. startDate: '2021-04-14T00:00:00-04:00'
  1384. - description: Metadata generated by DANDI cli
  1385. endDate: '2024-04-25T01:27:42.770990-04:00'
  1386. id: urn:uuid:71f65ffa-bb02-419d-a897-d089f7a669f5
  1387. name: Metadata generation
  1388. schemaKey: Activity
  1389. startDate: '2024-04-25T01:27:30.586714-04:00'
  1390. wasAssociatedWith:
  1391. - identifier: RRID:SCR_019009
  1392. name: DANDI Command Line Interface
  1393. schemaKey: Software
  1394. url: https://github.com/dandi/dandi-cli
  1395. version: 0.61.2
  1396. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1397. access:
  1398. - schemaKey: AccessRequirements
  1399. status: dandi:OpenAccess
  1400. approach:
  1401. - name: electrophysiological approach
  1402. schemaKey: ApproachType
  1403. - name: behavioral approach
  1404. schemaKey: ApproachType
  1405. blobDateModified: '2024-04-24T23:10:03.876117-04:00'
  1406. contentSize: 270896865
  1407. contentUrl:
  1408. - https://api.dandiarchive.org/api/assets/e33cb487-aaea-4768-8529-261a69611b9d/download/
  1409. - https://dandiarchive.s3.amazonaws.com/blobs/277/bf2/277bf207-2536-4f47-9cf3-434d879ac467
  1410. dateModified: '2024-04-25T01:27:55.380075-04:00'
  1411. datePublished: '2024-06-05T17:10:34.023093+00:00'
  1412. digest:
  1413. dandi:dandi-etag: 8e5b65f5e97c75af71bb1c0343328792-5
  1414. dandi:sha2-256: 784e8d33bad33ad3a563ac414e64d61262e25cc42cbe272cbf9c8397f0a1e46c
  1415. encodingFormat: application/x-nwb
  1416. id: dandiasset:e33cb487-aaea-4768-8529-261a69611b9d
  1417. identifier: e33cb487-aaea-4768-8529-261a69611b9d
  1418. measurementTechnique:
  1419. - name: behavioral technique
  1420. schemaKey: MeasurementTechniqueType
  1421. - name: surgical technique
  1422. schemaKey: MeasurementTechniqueType
  1423. - name: spike sorting technique
  1424. schemaKey: MeasurementTechniqueType
  1425. - name: analytical technique
  1426. schemaKey: MeasurementTechniqueType
  1427. path: sub-mahler/sub-mahler_ses-04212021_behavior+ecephys.nwb
  1428. publishedBy:
  1429. endDate: '2024-06-05T17:10:34.023093+00:00'
  1430. id: urn:uuid:3ea40eed-c825-4fb8-b102-23c2f6e75ef0
  1431. name: DANDI publish
  1432. schemaKey: PublishActivity
  1433. startDate: '2024-06-05T17:10:34.023093+00:00'
  1434. wasAssociatedWith:
  1435. - id: urn:uuid:a9b8c2e2-e877-4497-bd1d-c8104c7f46fa
  1436. identifier: RRID:SCR_017571
  1437. name: DANDI API
  1438. schemaKey: Software
  1439. version: 0.1.0
  1440. schemaKey: Asset
  1441. schemaVersion: 0.6.7
  1442. variableMeasured:
  1443. - schemaKey: PropertyValue
  1444. value: ElectrodeGroup
  1445. - schemaKey: PropertyValue
  1446. value: Units
  1447. - schemaKey: PropertyValue
  1448. value: SpatialSeries
  1449. - schemaKey: PropertyValue
  1450. value: ProcessingModule
  1451. wasAttributedTo:
  1452. - age:
  1453. schemaKey: PropertyValue
  1454. unitText: ISO-8601 duration
  1455. value: P05Y
  1456. valueReference:
  1457. schemaKey: PropertyValue
  1458. value: dandi:BirthReference
  1459. identifier: mahler
  1460. schemaKey: Participant
  1461. sex:
  1462. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1463. name: Male
  1464. schemaKey: SexType
  1465. species:
  1466. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1467. name: Macaca mulatta - Rhesus monkey
  1468. schemaKey: SpeciesType
  1469. wasGeneratedBy:
  1470. - description: Data from macaque performing mental navigation task. Subject is presented
  1471. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  1472. a screen. After a delay, the subject is then cued with a go signal to navigate
  1473. from start to target landmark with a joystick. Subject should respond by deflecting
  1474. the joystick in the right direction and holding it until the subject thinks it
  1475. has arrived at the target landmark. The visual drift or intervening landmarks
  1476. are all occluded from view making the task a purely mental navigation.
  1477. identifier: '04212021'
  1478. name: '04212021'
  1479. schemaKey: Session
  1480. startDate: '2021-04-21T00:00:00-04:00'
  1481. - description: Metadata generated by DANDI cli
  1482. endDate: '2024-04-25T01:27:55.380031-04:00'
  1483. id: urn:uuid:caea2a49-f6c5-435c-a61b-cef33dc9d6c6
  1484. name: Metadata generation
  1485. schemaKey: Activity
  1486. startDate: '2024-04-25T01:27:50.690702-04:00'
  1487. wasAssociatedWith:
  1488. - identifier: RRID:SCR_019009
  1489. name: DANDI Command Line Interface
  1490. schemaKey: Software
  1491. url: https://github.com/dandi/dandi-cli
  1492. version: 0.61.2
  1493. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1494. access:
  1495. - schemaKey: AccessRequirements
  1496. status: dandi:OpenAccess
  1497. approach:
  1498. - name: electrophysiological approach
  1499. schemaKey: ApproachType
  1500. - name: behavioral approach
  1501. schemaKey: ApproachType
  1502. blobDateModified: '2024-04-24T23:16:15.675798-04:00'
  1503. contentSize: 250564290
  1504. contentUrl:
  1505. - https://api.dandiarchive.org/api/assets/33fd8cfc-8fb0-41d5-9dcc-a69eee008530/download/
  1506. - https://dandiarchive.s3.amazonaws.com/blobs/729/78b/72978b31-e4ee-4bd0-b4f7-12ca6b794587
  1507. dateModified: '2024-04-25T01:28:13.533077-04:00'
  1508. datePublished: '2024-06-05T17:10:34.031419+00:00'
  1509. digest:
  1510. dandi:dandi-etag: 246ad373a93dcf5c9c02ee9e2982ef45-4
  1511. dandi:sha2-256: 7b9bc44ae1abe5059f825213f14871aeb87223f849c3b453be2da45e24195889
  1512. encodingFormat: application/x-nwb
  1513. id: dandiasset:33fd8cfc-8fb0-41d5-9dcc-a69eee008530
  1514. identifier: 33fd8cfc-8fb0-41d5-9dcc-a69eee008530
  1515. measurementTechnique:
  1516. - name: behavioral technique
  1517. schemaKey: MeasurementTechniqueType
  1518. - name: surgical technique
  1519. schemaKey: MeasurementTechniqueType
  1520. - name: spike sorting technique
  1521. schemaKey: MeasurementTechniqueType
  1522. - name: analytical technique
  1523. schemaKey: MeasurementTechniqueType
  1524. path: sub-mahler/sub-mahler_ses-04222021_behavior+ecephys.nwb
  1525. publishedBy:
  1526. endDate: '2024-06-05T17:10:34.031419+00:00'
  1527. id: urn:uuid:78d02079-c6af-4fd7-95c5-5254201ecd5f
  1528. name: DANDI publish
  1529. schemaKey: PublishActivity
  1530. startDate: '2024-06-05T17:10:34.031419+00:00'
  1531. wasAssociatedWith:
  1532. - id: urn:uuid:8c2f83ba-8cf5-49f2-9965-c5eb8a0037c0
  1533. identifier: RRID:SCR_017571
  1534. name: DANDI API
  1535. schemaKey: Software
  1536. version: 0.1.0
  1537. schemaKey: Asset
  1538. schemaVersion: 0.6.7
  1539. variableMeasured:
  1540. - schemaKey: PropertyValue
  1541. value: ElectrodeGroup
  1542. - schemaKey: PropertyValue
  1543. value: Units
  1544. - schemaKey: PropertyValue
  1545. value: SpatialSeries
  1546. - schemaKey: PropertyValue
  1547. value: ProcessingModule
  1548. wasAttributedTo:
  1549. - age:
  1550. schemaKey: PropertyValue
  1551. unitText: ISO-8601 duration
  1552. value: P05Y
  1553. valueReference:
  1554. schemaKey: PropertyValue
  1555. value: dandi:BirthReference
  1556. identifier: mahler
  1557. schemaKey: Participant
  1558. sex:
  1559. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1560. name: Male
  1561. schemaKey: SexType
  1562. species:
  1563. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1564. name: Macaca mulatta - Rhesus monkey
  1565. schemaKey: SpeciesType
  1566. wasGeneratedBy:
  1567. - description: Data from macaque performing mental navigation task. Subject is presented
  1568. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  1569. a screen. After a delay, the subject is then cued with a go signal to navigate
  1570. from start to target landmark with a joystick. Subject should respond by deflecting
  1571. the joystick in the right direction and holding it until the subject thinks it
  1572. has arrived at the target landmark. The visual drift or intervening landmarks
  1573. are all occluded from view making the task a purely mental navigation.
  1574. identifier: '04222021'
  1575. name: '04222021'
  1576. schemaKey: Session
  1577. startDate: '2021-04-22T00:00:00-04:00'
  1578. - description: Metadata generated by DANDI cli
  1579. endDate: '2024-04-25T01:28:13.533025-04:00'
  1580. id: urn:uuid:c1825e04-892c-4f15-902d-6c3a53248744
  1581. name: Metadata generation
  1582. schemaKey: Activity
  1583. startDate: '2024-04-25T01:28:09.799102-04:00'
  1584. wasAssociatedWith:
  1585. - identifier: RRID:SCR_019009
  1586. name: DANDI Command Line Interface
  1587. schemaKey: Software
  1588. url: https://github.com/dandi/dandi-cli
  1589. version: 0.61.2
  1590. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1591. access:
  1592. - schemaKey: AccessRequirements
  1593. status: dandi:OpenAccess
  1594. approach:
  1595. - name: electrophysiological approach
  1596. schemaKey: ApproachType
  1597. blobDateModified: '2024-04-24T23:50:18.270301-04:00'
  1598. contentSize: 16268494585
  1599. contentUrl:
  1600. - https://api.dandiarchive.org/api/assets/346780fe-4db9-48ba-93e9-712579264461/download/
  1601. - https://dandiarchive.s3.amazonaws.com/blobs/166/dd3/166dd388-a1e1-4289-a9dd-b3cd0de0a095
  1602. dateModified: '2024-04-25T01:28:25.825471-04:00'
  1603. datePublished: '2024-06-05T17:10:34.040546+00:00'
  1604. digest:
  1605. dandi:dandi-etag: 5b4e8fead83329c3378b97e2f482dc51-243
  1606. dandi:sha2-256: 8249bf2b234103144e9cbba3a453136e9292f1e576d7969504668d8d39690901
  1607. encodingFormat: application/x-nwb
  1608. id: dandiasset:346780fe-4db9-48ba-93e9-712579264461
  1609. identifier: 346780fe-4db9-48ba-93e9-712579264461
  1610. measurementTechnique:
  1611. - name: surgical technique
  1612. schemaKey: MeasurementTechniqueType
  1613. - name: multi electrode extracellular electrophysiology recording technique
  1614. schemaKey: MeasurementTechniqueType
  1615. path: sub-mahler/sub-mahler_ses-04132021_ecephys.nwb
  1616. publishedBy:
  1617. endDate: '2024-06-05T17:10:34.040546+00:00'
  1618. id: urn:uuid:f75a60d0-7d25-4d5e-9df1-7a390f09488a
  1619. name: DANDI publish
  1620. schemaKey: PublishActivity
  1621. startDate: '2024-06-05T17:10:34.040546+00:00'
  1622. wasAssociatedWith:
  1623. - id: urn:uuid:5722319b-343e-42c8-895d-2c5ee918cc9e
  1624. identifier: RRID:SCR_017571
  1625. name: DANDI API
  1626. schemaKey: Software
  1627. version: 0.1.0
  1628. schemaKey: Asset
  1629. schemaVersion: 0.6.7
  1630. variableMeasured:
  1631. - schemaKey: PropertyValue
  1632. value: ElectrodeGroup
  1633. - schemaKey: PropertyValue
  1634. value: ElectricalSeries
  1635. wasAttributedTo:
  1636. - age:
  1637. schemaKey: PropertyValue
  1638. unitText: ISO-8601 duration
  1639. value: P05Y
  1640. valueReference:
  1641. schemaKey: PropertyValue
  1642. value: dandi:BirthReference
  1643. identifier: mahler
  1644. schemaKey: Participant
  1645. sex:
  1646. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1647. name: Male
  1648. schemaKey: SexType
  1649. species:
  1650. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1651. name: Macaca mulatta - Rhesus monkey
  1652. schemaKey: SpeciesType
  1653. wasGeneratedBy:
  1654. - description: Data from macaque performing mental navigation task. Subject is presented
  1655. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  1656. a screen. After a delay, the subject is then cued with a go signal to navigate
  1657. from start to target landmark with a joystick. Subject should respond by deflecting
  1658. the joystick in the right direction and holding it until the subject thinks it
  1659. has arrived at the target landmark. The visual drift or intervening landmarks
  1660. are all occluded from view making the task a purely mental navigation.
  1661. identifier: '04132021'
  1662. name: '04132021'
  1663. schemaKey: Session
  1664. startDate: '2021-04-13T00:00:00-04:00'
  1665. - description: Metadata generated by DANDI cli
  1666. endDate: '2024-04-25T01:28:25.825406-04:00'
  1667. id: urn:uuid:d21558b9-265d-4917-93f4-dd575657def9
  1668. name: Metadata generation
  1669. schemaKey: Activity
  1670. startDate: '2024-04-25T01:28:21.967552-04:00'
  1671. wasAssociatedWith:
  1672. - identifier: RRID:SCR_019009
  1673. name: DANDI Command Line Interface
  1674. schemaKey: Software
  1675. url: https://github.com/dandi/dandi-cli
  1676. version: 0.61.2
  1677. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1678. access:
  1679. - schemaKey: AccessRequirements
  1680. status: dandi:OpenAccess
  1681. approach:
  1682. - name: electrophysiological approach
  1683. schemaKey: ApproachType
  1684. blobDateModified: '2024-04-25T01:07:09.556857-04:00'
  1685. contentSize: 24010780009
  1686. contentUrl:
  1687. - https://api.dandiarchive.org/api/assets/80679714-36eb-4ebb-90f2-b0d5906e5e25/download/
  1688. - https://dandiarchive.s3.amazonaws.com/blobs/03b/5fa/03b5fa08-4dd1-49d6-8b38-539f4c6eea6e
  1689. dateModified: '2024-04-25T01:29:54.868101-04:00'
  1690. datePublished: '2024-06-05T17:10:34.049172+00:00'
  1691. digest:
  1692. dandi:dandi-etag: d4415f6e0c37e51dbeaf6e43d5b557e7-358
  1693. dandi:sha2-256: 2ca90b0a627dfc74aae5c8ebb654b3a8b82fcf2053d4ac8a9af006a2734bbe0f
  1694. encodingFormat: application/x-nwb
  1695. id: dandiasset:80679714-36eb-4ebb-90f2-b0d5906e5e25
  1696. identifier: 80679714-36eb-4ebb-90f2-b0d5906e5e25
  1697. measurementTechnique:
  1698. - name: surgical technique
  1699. schemaKey: MeasurementTechniqueType
  1700. - name: multi electrode extracellular electrophysiology recording technique
  1701. schemaKey: MeasurementTechniqueType
  1702. path: sub-mahler/sub-mahler_ses-04212021_ecephys.nwb
  1703. publishedBy:
  1704. endDate: '2024-06-05T17:10:34.049172+00:00'
  1705. id: urn:uuid:f6ef160b-74cf-4613-aa8e-12ce56d55b19
  1706. name: DANDI publish
  1707. schemaKey: PublishActivity
  1708. startDate: '2024-06-05T17:10:34.049172+00:00'
  1709. wasAssociatedWith:
  1710. - id: urn:uuid:171e898e-b646-445b-b237-f8aaddc2626a
  1711. identifier: RRID:SCR_017571
  1712. name: DANDI API
  1713. schemaKey: Software
  1714. version: 0.1.0
  1715. schemaKey: Asset
  1716. schemaVersion: 0.6.7
  1717. variableMeasured:
  1718. - schemaKey: PropertyValue
  1719. value: ElectrodeGroup
  1720. - schemaKey: PropertyValue
  1721. value: ElectricalSeries
  1722. wasAttributedTo:
  1723. - age:
  1724. schemaKey: PropertyValue
  1725. unitText: ISO-8601 duration
  1726. value: P05Y
  1727. valueReference:
  1728. schemaKey: PropertyValue
  1729. value: dandi:BirthReference
  1730. identifier: mahler
  1731. schemaKey: Participant
  1732. sex:
  1733. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1734. name: Male
  1735. schemaKey: SexType
  1736. species:
  1737. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1738. name: Macaca mulatta - Rhesus monkey
  1739. schemaKey: SpeciesType
  1740. wasGeneratedBy:
  1741. - description: Data from macaque performing mental navigation task. Subject is presented
  1742. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  1743. a screen. After a delay, the subject is then cued with a go signal to navigate
  1744. from start to target landmark with a joystick. Subject should respond by deflecting
  1745. the joystick in the right direction and holding it until the subject thinks it
  1746. has arrived at the target landmark. The visual drift or intervening landmarks
  1747. are all occluded from view making the task a purely mental navigation.
  1748. identifier: '04212021'
  1749. name: '04212021'
  1750. schemaKey: Session
  1751. startDate: '2021-04-21T00:00:00-04:00'
  1752. - description: Metadata generated by DANDI cli
  1753. endDate: '2024-04-25T01:29:54.868053-04:00'
  1754. id: urn:uuid:166f528b-26e1-4d4c-a686-8a8bcf2d3fac
  1755. name: Metadata generation
  1756. schemaKey: Activity
  1757. startDate: '2024-04-25T01:29:47.008360-04:00'
  1758. wasAssociatedWith:
  1759. - identifier: RRID:SCR_019009
  1760. name: DANDI Command Line Interface
  1761. schemaKey: Software
  1762. url: https://github.com/dandi/dandi-cli
  1763. version: 0.61.2
  1764. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1765. access:
  1766. - schemaKey: AccessRequirements
  1767. status: dandi:OpenAccess
  1768. approach:
  1769. - name: electrophysiological approach
  1770. schemaKey: ApproachType
  1771. blobDateModified: '2024-04-25T00:32:53.968105-04:00'
  1772. contentSize: 28915581345
  1773. contentUrl:
  1774. - https://api.dandiarchive.org/api/assets/7ea1b822-743f-4174-abda-4c2d068b76f6/download/
  1775. - https://dandiarchive.s3.amazonaws.com/blobs/afb/332/afb332ac-85c7-438f-9411-1ede07ec7040
  1776. dateModified: '2024-04-25T01:30:44.854789-04:00'
  1777. datePublished: '2024-06-05T17:10:34.056563+00:00'
  1778. digest:
  1779. dandi:dandi-etag: aa197dec8194d3a03d41514c86b6dcab-431
  1780. dandi:sha2-256: 6bdd97037f52288409b1536153e9ace24e82cebcf45a7392b057f6e006240b11
  1781. encodingFormat: application/x-nwb
  1782. id: dandiasset:7ea1b822-743f-4174-abda-4c2d068b76f6
  1783. identifier: 7ea1b822-743f-4174-abda-4c2d068b76f6
  1784. measurementTechnique:
  1785. - name: surgical technique
  1786. schemaKey: MeasurementTechniqueType
  1787. - name: multi electrode extracellular electrophysiology recording technique
  1788. schemaKey: MeasurementTechniqueType
  1789. path: sub-mahler/sub-mahler_ses-04222021_ecephys.nwb
  1790. publishedBy:
  1791. endDate: '2024-06-05T17:10:34.056563+00:00'
  1792. id: urn:uuid:076a8581-09e2-403a-b676-058ebc2c873e
  1793. name: DANDI publish
  1794. schemaKey: PublishActivity
  1795. startDate: '2024-06-05T17:10:34.056563+00:00'
  1796. wasAssociatedWith:
  1797. - id: urn:uuid:2bc00f38-4c90-4dcf-9127-70e01d28a315
  1798. identifier: RRID:SCR_017571
  1799. name: DANDI API
  1800. schemaKey: Software
  1801. version: 0.1.0
  1802. schemaKey: Asset
  1803. schemaVersion: 0.6.7
  1804. variableMeasured:
  1805. - schemaKey: PropertyValue
  1806. value: ElectrodeGroup
  1807. - schemaKey: PropertyValue
  1808. value: ElectricalSeries
  1809. wasAttributedTo:
  1810. - age:
  1811. schemaKey: PropertyValue
  1812. unitText: ISO-8601 duration
  1813. value: P05Y
  1814. valueReference:
  1815. schemaKey: PropertyValue
  1816. value: dandi:BirthReference
  1817. identifier: mahler
  1818. schemaKey: Participant
  1819. sex:
  1820. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1821. name: Male
  1822. schemaKey: SexType
  1823. species:
  1824. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1825. name: Macaca mulatta - Rhesus monkey
  1826. schemaKey: SpeciesType
  1827. wasGeneratedBy:
  1828. - description: Data from macaque performing mental navigation task. Subject is presented
  1829. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  1830. a screen. After a delay, the subject is then cued with a go signal to navigate
  1831. from start to target landmark with a joystick. Subject should respond by deflecting
  1832. the joystick in the right direction and holding it until the subject thinks it
  1833. has arrived at the target landmark. The visual drift or intervening landmarks
  1834. are all occluded from view making the task a purely mental navigation.
  1835. identifier: '04222021'
  1836. name: '04222021'
  1837. schemaKey: Session
  1838. startDate: '2021-04-22T00:00:00-04:00'
  1839. - description: Metadata generated by DANDI cli
  1840. endDate: '2024-04-25T01:30:44.854732-04:00'
  1841. id: urn:uuid:ea0111a9-311a-45f3-b04b-3aa17561346f
  1842. name: Metadata generation
  1843. schemaKey: Activity
  1844. startDate: '2024-04-25T01:30:35.410152-04:00'
  1845. wasAssociatedWith:
  1846. - identifier: RRID:SCR_019009
  1847. name: DANDI Command Line Interface
  1848. schemaKey: Software
  1849. url: https://github.com/dandi/dandi-cli
  1850. version: 0.61.2
  1851. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1852. access:
  1853. - schemaKey: AccessRequirements
  1854. status: dandi:OpenAccess
  1855. approach:
  1856. - name: electrophysiological approach
  1857. schemaKey: ApproachType
  1858. blobDateModified: '2024-04-25T00:42:06.056632-04:00'
  1859. contentSize: 33496486594
  1860. contentUrl:
  1861. - https://api.dandiarchive.org/api/assets/c759ea8d-bc81-44a4-a697-5340eadbc403/download/
  1862. - https://dandiarchive.s3.amazonaws.com/blobs/9c6/0bd/9c60bd9b-bb4a-4355-9595-388769e7ee23
  1863. dateModified: '2024-04-25T01:30:18.499912-04:00'
  1864. datePublished: '2024-06-05T17:10:34.063706+00:00'
  1865. digest:
  1866. dandi:dandi-etag: 214cabacfb070032a21e3df46a3ec3dc-500
  1867. dandi:sha2-256: 823fc5f4ac0dd7f70998b12f5ccb57413e465df01b8cf580a1fb9319932736df
  1868. encodingFormat: application/x-nwb
  1869. id: dandiasset:c759ea8d-bc81-44a4-a697-5340eadbc403
  1870. identifier: c759ea8d-bc81-44a4-a697-5340eadbc403
  1871. measurementTechnique:
  1872. - name: surgical technique
  1873. schemaKey: MeasurementTechniqueType
  1874. - name: multi electrode extracellular electrophysiology recording technique
  1875. schemaKey: MeasurementTechniqueType
  1876. path: sub-mahler/sub-mahler_ses-04142021_ecephys.nwb
  1877. publishedBy:
  1878. endDate: '2024-06-05T17:10:34.063706+00:00'
  1879. id: urn:uuid:bdcbd2cd-9d3c-467e-bdea-af1ca4d76036
  1880. name: DANDI publish
  1881. schemaKey: PublishActivity
  1882. startDate: '2024-06-05T17:10:34.063706+00:00'
  1883. wasAssociatedWith:
  1884. - id: urn:uuid:302bf62c-eb50-4668-b269-09215c4f22c5
  1885. identifier: RRID:SCR_017571
  1886. name: DANDI API
  1887. schemaKey: Software
  1888. version: 0.1.0
  1889. schemaKey: Asset
  1890. schemaVersion: 0.6.7
  1891. variableMeasured:
  1892. - schemaKey: PropertyValue
  1893. value: ElectrodeGroup
  1894. - schemaKey: PropertyValue
  1895. value: ElectricalSeries
  1896. wasAttributedTo:
  1897. - age:
  1898. schemaKey: PropertyValue
  1899. unitText: ISO-8601 duration
  1900. value: P05Y
  1901. valueReference:
  1902. schemaKey: PropertyValue
  1903. value: dandi:BirthReference
  1904. identifier: mahler
  1905. schemaKey: Participant
  1906. sex:
  1907. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1908. name: Male
  1909. schemaKey: SexType
  1910. species:
  1911. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1912. name: Macaca mulatta - Rhesus monkey
  1913. schemaKey: SpeciesType
  1914. wasGeneratedBy:
  1915. - description: Data from macaque performing mental navigation task. Subject is presented
  1916. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  1917. a screen. After a delay, the subject is then cued with a go signal to navigate
  1918. from start to target landmark with a joystick. Subject should respond by deflecting
  1919. the joystick in the right direction and holding it until the subject thinks it
  1920. has arrived at the target landmark. The visual drift or intervening landmarks
  1921. are all occluded from view making the task a purely mental navigation.
  1922. identifier: '04142021'
  1923. name: '04142021'
  1924. schemaKey: Session
  1925. startDate: '2021-04-14T00:00:00-04:00'
  1926. - description: Metadata generated by DANDI cli
  1927. endDate: '2024-04-25T01:30:18.499843-04:00'
  1928. id: urn:uuid:ddcab80a-33ae-499e-a3ec-1be3c01b4e4c
  1929. name: Metadata generation
  1930. schemaKey: Activity
  1931. startDate: '2024-04-25T01:30:10.340282-04:00'
  1932. wasAssociatedWith:
  1933. - identifier: RRID:SCR_019009
  1934. name: DANDI Command Line Interface
  1935. schemaKey: Software
  1936. url: https://github.com/dandi/dandi-cli
  1937. version: 0.61.2
  1938. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1939. access:
  1940. - schemaKey: AccessRequirements
  1941. status: dandi:OpenAccess
  1942. approach:
  1943. - name: electrophysiological approach
  1944. schemaKey: ApproachType
  1945. blobDateModified: '2024-04-24T18:44:52.938827-04:00'
  1946. contentSize: 36722779208
  1947. contentUrl:
  1948. - https://api.dandiarchive.org/api/assets/ca220464-9255-4749-a537-2bc365a3f30f/download/
  1949. - https://dandiarchive.s3.amazonaws.com/blobs/c02/a10/c02a104c-c5ad-47d8-9668-043fe694d68b
  1950. dateModified: '2024-04-25T01:29:54.970324-04:00'
  1951. datePublished: '2024-06-05T17:10:34.070766+00:00'
  1952. digest:
  1953. dandi:dandi-etag: 37053be295ce47bbd1640d4814254416-548
  1954. dandi:sha2-256: effdd2bee7bd62d30f577321e2a2b45e9172c32886cb639552324efb372df1e1
  1955. encodingFormat: application/x-nwb
  1956. id: dandiasset:ca220464-9255-4749-a537-2bc365a3f30f
  1957. identifier: ca220464-9255-4749-a537-2bc365a3f30f
  1958. measurementTechnique:
  1959. - name: surgical technique
  1960. schemaKey: MeasurementTechniqueType
  1961. - name: multi electrode extracellular electrophysiology recording technique
  1962. schemaKey: MeasurementTechniqueType
  1963. path: sub-mahler/sub-mahler_ses-04122021_ecephys.nwb
  1964. publishedBy:
  1965. endDate: '2024-06-05T17:10:34.070766+00:00'
  1966. id: urn:uuid:6e64e7a4-093a-45ca-b43b-c9f50bb8c656
  1967. name: DANDI publish
  1968. schemaKey: PublishActivity
  1969. startDate: '2024-06-05T17:10:34.070766+00:00'
  1970. wasAssociatedWith:
  1971. - id: urn:uuid:1b505766-f83a-4def-a8f8-cd5c40ec492a
  1972. identifier: RRID:SCR_017571
  1973. name: DANDI API
  1974. schemaKey: Software
  1975. version: 0.1.0
  1976. schemaKey: Asset
  1977. schemaVersion: 0.6.7
  1978. variableMeasured:
  1979. - schemaKey: PropertyValue
  1980. value: ElectrodeGroup
  1981. - schemaKey: PropertyValue
  1982. value: ElectricalSeries
  1983. wasAttributedTo:
  1984. - age:
  1985. schemaKey: PropertyValue
  1986. unitText: ISO-8601 duration
  1987. value: P05Y
  1988. valueReference:
  1989. schemaKey: PropertyValue
  1990. value: dandi:BirthReference
  1991. identifier: mahler
  1992. schemaKey: Participant
  1993. sex:
  1994. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1995. name: Male
  1996. schemaKey: SexType
  1997. species:
  1998. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1999. name: Macaca mulatta - Rhesus monkey
  2000. schemaKey: SpeciesType
  2001. wasGeneratedBy:
  2002. - description: Data from macaque performing mental navigation task. Subject is presented
  2003. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  2004. a screen. After a delay, the subject is then cued with a go signal to navigate
  2005. from start to target landmark with a joystick. Subject should respond by deflecting
  2006. the joystick in the right direction and holding it until the subject thinks it
  2007. has arrived at the target landmark. The visual drift or intervening landmarks
  2008. are all occluded from view making the task a purely mental navigation.
  2009. identifier: '04122021'
  2010. name: '04122021'
  2011. schemaKey: Session
  2012. startDate: '2021-04-12T00:00:00-04:00'
  2013. - description: Metadata generated by DANDI cli
  2014. endDate: '2024-04-25T01:29:54.970285-04:00'
  2015. id: urn:uuid:1a594c1b-27dd-4dd8-bc43-67582c7f91ff
  2016. name: Metadata generation
  2017. schemaKey: Activity
  2018. startDate: '2024-04-25T01:29:47.242741-04:00'
  2019. wasAssociatedWith:
  2020. - identifier: RRID:SCR_019009
  2021. name: DANDI Command Line Interface
  2022. schemaKey: Software
  2023. url: https://github.com/dandi/dandi-cli
  2024. version: 0.61.2
  2025. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2026. access:
  2027. - schemaKey: AccessRequirements
  2028. status: dandi:OpenAccess
  2029. approach:
  2030. - name: electrophysiological approach
  2031. schemaKey: ApproachType
  2032. - name: behavioral approach
  2033. schemaKey: ApproachType
  2034. blobDateModified: '2024-04-25T01:29:15.728398-04:00'
  2035. contentSize: 311084907
  2036. contentUrl:
  2037. - https://api.dandiarchive.org/api/assets/e2104d5e-6324-456b-8fb7-1d9867ac9b09/download/
  2038. - https://dandiarchive.s3.amazonaws.com/blobs/bc3/f15/bc3f1586-034a-425b-96b5-761c4f3803fc
  2039. dateModified: '2024-04-25T08:13:53.198998-04:00'
  2040. datePublished: '2024-06-05T17:10:34.079330+00:00'
  2041. digest:
  2042. dandi:dandi-etag: 7d1b400fb2c6ad97a309c9bef6715231-5
  2043. dandi:sha2-256: 08795eff2db8cddb108f1df6d1a7e7eea7a5816d9707007035c682f3b27524ab
  2044. encodingFormat: application/x-nwb
  2045. id: dandiasset:e2104d5e-6324-456b-8fb7-1d9867ac9b09
  2046. identifier: e2104d5e-6324-456b-8fb7-1d9867ac9b09
  2047. measurementTechnique:
  2048. - name: behavioral technique
  2049. schemaKey: MeasurementTechniqueType
  2050. - name: surgical technique
  2051. schemaKey: MeasurementTechniqueType
  2052. - name: spike sorting technique
  2053. schemaKey: MeasurementTechniqueType
  2054. - name: analytical technique
  2055. schemaKey: MeasurementTechniqueType
  2056. path: sub-mahler/sub-mahler_ses-04252021_behavior+ecephys.nwb
  2057. publishedBy:
  2058. endDate: '2024-06-05T17:10:34.079330+00:00'
  2059. id: urn:uuid:6b8ec77e-d723-4e0b-9c59-cd4b8048ee8c
  2060. name: DANDI publish
  2061. schemaKey: PublishActivity
  2062. startDate: '2024-06-05T17:10:34.079330+00:00'
  2063. wasAssociatedWith:
  2064. - id: urn:uuid:0091d492-2b6f-4fb4-9efe-efc74fd821ce
  2065. identifier: RRID:SCR_017571
  2066. name: DANDI API
  2067. schemaKey: Software
  2068. version: 0.1.0
  2069. schemaKey: Asset
  2070. schemaVersion: 0.6.7
  2071. variableMeasured:
  2072. - schemaKey: PropertyValue
  2073. value: ProcessingModule
  2074. - schemaKey: PropertyValue
  2075. value: SpatialSeries
  2076. - schemaKey: PropertyValue
  2077. value: Units
  2078. - schemaKey: PropertyValue
  2079. value: ElectrodeGroup
  2080. wasAttributedTo:
  2081. - age:
  2082. schemaKey: PropertyValue
  2083. unitText: ISO-8601 duration
  2084. value: P05Y
  2085. valueReference:
  2086. schemaKey: PropertyValue
  2087. value: dandi:BirthReference
  2088. identifier: mahler
  2089. schemaKey: Participant
  2090. sex:
  2091. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2092. name: Male
  2093. schemaKey: SexType
  2094. species:
  2095. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2096. name: Macaca mulatta - Rhesus monkey
  2097. schemaKey: SpeciesType
  2098. wasGeneratedBy:
  2099. - description: Data from macaque performing mental navigation task. Subject is presented
  2100. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  2101. a screen. After a delay, the subject is then cued with a go signal to navigate
  2102. from start to target landmark with a joystick. Subject should respond by deflecting
  2103. the joystick in the right direction and holding it until the subject thinks it
  2104. has arrived at the target landmark. The visual drift or intervening landmarks
  2105. are all occluded from view making the task a purely mental navigation.
  2106. identifier: '04252021'
  2107. name: '04252021'
  2108. schemaKey: Session
  2109. startDate: '2021-04-25T00:00:00-04:00'
  2110. - description: Metadata generated by DANDI cli
  2111. endDate: '2024-04-25T08:13:53.198901-04:00'
  2112. id: urn:uuid:6cd15a60-83a9-478b-9462-5e58b2519762
  2113. name: Metadata generation
  2114. schemaKey: Activity
  2115. startDate: '2024-04-25T08:13:49.050557-04:00'
  2116. wasAssociatedWith:
  2117. - identifier: RRID:SCR_019009
  2118. name: DANDI Command Line Interface
  2119. schemaKey: Software
  2120. url: https://github.com/dandi/dandi-cli
  2121. version: 0.61.2
  2122. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2123. access:
  2124. - schemaKey: AccessRequirements
  2125. status: dandi:OpenAccess
  2126. approach:
  2127. - name: electrophysiological approach
  2128. schemaKey: ApproachType
  2129. - name: behavioral approach
  2130. schemaKey: ApproachType
  2131. blobDateModified: '2024-04-25T01:43:07.199733-04:00'
  2132. contentSize: 346303085
  2133. contentUrl:
  2134. - https://api.dandiarchive.org/api/assets/ea967916-13da-4d76-af0a-d9d86346502c/download/
  2135. - https://dandiarchive.s3.amazonaws.com/blobs/bbe/2a1/bbe2a140-5cc9-44e2-91f7-a37ccad48f10
  2136. dateModified: '2024-04-25T08:13:59.051757-04:00'
  2137. datePublished: '2024-06-05T17:10:34.086692+00:00'
  2138. digest:
  2139. dandi:dandi-etag: 589812bc294f8dafaff5d4eb7016f640-6
  2140. dandi:sha2-256: 9b7d4ad7240f8eb5e3b97cfec5097c588921bbeb5b9be3eb084c67fd156689fa
  2141. encodingFormat: application/x-nwb
  2142. id: dandiasset:ea967916-13da-4d76-af0a-d9d86346502c
  2143. identifier: ea967916-13da-4d76-af0a-d9d86346502c
  2144. measurementTechnique:
  2145. - name: behavioral technique
  2146. schemaKey: MeasurementTechniqueType
  2147. - name: surgical technique
  2148. schemaKey: MeasurementTechniqueType
  2149. - name: spike sorting technique
  2150. schemaKey: MeasurementTechniqueType
  2151. - name: analytical technique
  2152. schemaKey: MeasurementTechniqueType
  2153. path: sub-mahler/sub-mahler_ses-05042021_behavior+ecephys.nwb
  2154. publishedBy:
  2155. endDate: '2024-06-05T17:10:34.086692+00:00'
  2156. id: urn:uuid:e049dd15-3d8a-4178-9c7b-0cbd67775761
  2157. name: DANDI publish
  2158. schemaKey: PublishActivity
  2159. startDate: '2024-06-05T17:10:34.086692+00:00'
  2160. wasAssociatedWith:
  2161. - id: urn:uuid:409a2160-84c5-4fdd-ab0b-6fef5d2fe069
  2162. identifier: RRID:SCR_017571
  2163. name: DANDI API
  2164. schemaKey: Software
  2165. version: 0.1.0
  2166. schemaKey: Asset
  2167. schemaVersion: 0.6.7
  2168. variableMeasured:
  2169. - schemaKey: PropertyValue
  2170. value: ProcessingModule
  2171. - schemaKey: PropertyValue
  2172. value: SpatialSeries
  2173. - schemaKey: PropertyValue
  2174. value: Units
  2175. - schemaKey: PropertyValue
  2176. value: ElectrodeGroup
  2177. wasAttributedTo:
  2178. - age:
  2179. schemaKey: PropertyValue
  2180. unitText: ISO-8601 duration
  2181. value: P05Y
  2182. valueReference:
  2183. schemaKey: PropertyValue
  2184. value: dandi:BirthReference
  2185. identifier: mahler
  2186. schemaKey: Participant
  2187. sex:
  2188. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2189. name: Male
  2190. schemaKey: SexType
  2191. species:
  2192. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2193. name: Macaca mulatta - Rhesus monkey
  2194. schemaKey: SpeciesType
  2195. wasGeneratedBy:
  2196. - description: Data from macaque performing mental navigation task. Subject is presented
  2197. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  2198. a screen. After a delay, the subject is then cued with a go signal to navigate
  2199. from start to target landmark with a joystick. Subject should respond by deflecting
  2200. the joystick in the right direction and holding it until the subject thinks it
  2201. has arrived at the target landmark. The visual drift or intervening landmarks
  2202. are all occluded from view making the task a purely mental navigation.
  2203. identifier: '05042021'
  2204. name: '05042021'
  2205. schemaKey: Session
  2206. startDate: '2021-05-04T00:00:00-04:00'
  2207. - description: Metadata generated by DANDI cli
  2208. endDate: '2024-04-25T08:13:59.051724-04:00'
  2209. id: urn:uuid:0f485b52-5326-4225-b483-d371372deb8a
  2210. name: Metadata generation
  2211. schemaKey: Activity
  2212. startDate: '2024-04-25T08:13:55.312281-04:00'
  2213. wasAssociatedWith:
  2214. - identifier: RRID:SCR_019009
  2215. name: DANDI Command Line Interface
  2216. schemaKey: Software
  2217. url: https://github.com/dandi/dandi-cli
  2218. version: 0.61.2
  2219. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2220. access:
  2221. - schemaKey: AccessRequirements
  2222. status: dandi:OpenAccess
  2223. approach:
  2224. - name: electrophysiological approach
  2225. schemaKey: ApproachType
  2226. blobDateModified: '2024-04-25T02:40:01.098077-04:00'
  2227. contentSize: 28545681416
  2228. contentUrl:
  2229. - https://api.dandiarchive.org/api/assets/cfca58b5-6186-45e0-8b40-442d137d0a4b/download/
  2230. - https://dandiarchive.s3.amazonaws.com/blobs/77f/22d/77f22d46-6e1f-49f9-8283-ece7dd08cbd6
  2231. dateModified: '2024-04-25T08:15:18.777810-04:00'
  2232. datePublished: '2024-06-05T17:10:34.100630+00:00'
  2233. digest:
  2234. dandi:dandi-etag: f5874536f25d3be746c7eacbd5c64486-426
  2235. dandi:sha2-256: f7563781d74ae54af71a618d6a95a700a567cc997205149bede29bf08331dec4
  2236. encodingFormat: application/x-nwb
  2237. id: dandiasset:cfca58b5-6186-45e0-8b40-442d137d0a4b
  2238. identifier: cfca58b5-6186-45e0-8b40-442d137d0a4b
  2239. measurementTechnique:
  2240. - name: surgical technique
  2241. schemaKey: MeasurementTechniqueType
  2242. - name: multi electrode extracellular electrophysiology recording technique
  2243. schemaKey: MeasurementTechniqueType
  2244. path: sub-mahler/sub-mahler_ses-04252021_ecephys.nwb
  2245. publishedBy:
  2246. endDate: '2024-06-05T17:10:34.100630+00:00'
  2247. id: urn:uuid:b278812e-bfe0-4e19-9ccb-68bfda53768b
  2248. name: DANDI publish
  2249. schemaKey: PublishActivity
  2250. startDate: '2024-06-05T17:10:34.100630+00:00'
  2251. wasAssociatedWith:
  2252. - id: urn:uuid:6dc83648-f819-4387-9312-659a4d3bcae1
  2253. identifier: RRID:SCR_017571
  2254. name: DANDI API
  2255. schemaKey: Software
  2256. version: 0.1.0
  2257. schemaKey: Asset
  2258. schemaVersion: 0.6.7
  2259. variableMeasured:
  2260. - schemaKey: PropertyValue
  2261. value: ElectrodeGroup
  2262. - schemaKey: PropertyValue
  2263. value: ElectricalSeries
  2264. wasAttributedTo:
  2265. - age:
  2266. schemaKey: PropertyValue
  2267. unitText: ISO-8601 duration
  2268. value: P05Y
  2269. valueReference:
  2270. schemaKey: PropertyValue
  2271. value: dandi:BirthReference
  2272. identifier: mahler
  2273. schemaKey: Participant
  2274. sex:
  2275. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2276. name: Male
  2277. schemaKey: SexType
  2278. species:
  2279. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2280. name: Macaca mulatta - Rhesus monkey
  2281. schemaKey: SpeciesType
  2282. wasGeneratedBy:
  2283. - description: Data from macaque performing mental navigation task. Subject is presented
  2284. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  2285. a screen. After a delay, the subject is then cued with a go signal to navigate
  2286. from start to target landmark with a joystick. Subject should respond by deflecting
  2287. the joystick in the right direction and holding it until the subject thinks it
  2288. has arrived at the target landmark. The visual drift or intervening landmarks
  2289. are all occluded from view making the task a purely mental navigation.
  2290. identifier: '04252021'
  2291. name: '04252021'
  2292. schemaKey: Session
  2293. startDate: '2021-04-25T00:00:00-04:00'
  2294. - description: Metadata generated by DANDI cli
  2295. endDate: '2024-04-25T08:15:18.777775-04:00'
  2296. id: urn:uuid:100e46a7-f2da-49ff-b348-22d2d46e3f2c
  2297. name: Metadata generation
  2298. schemaKey: Activity
  2299. startDate: '2024-04-25T08:15:16.092079-04:00'
  2300. wasAssociatedWith:
  2301. - identifier: RRID:SCR_019009
  2302. name: DANDI Command Line Interface
  2303. schemaKey: Software
  2304. url: https://github.com/dandi/dandi-cli
  2305. version: 0.61.2
  2306. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2307. access:
  2308. - schemaKey: AccessRequirements
  2309. status: dandi:OpenAccess
  2310. approach:
  2311. - name: electrophysiological approach
  2312. schemaKey: ApproachType
  2313. blobDateModified: '2024-04-25T02:57:09.689217-04:00'
  2314. contentSize: 29455811898
  2315. contentUrl:
  2316. - https://api.dandiarchive.org/api/assets/34a85165-1cb0-4086-b6bd-741dd4285ca1/download/
  2317. - https://dandiarchive.s3.amazonaws.com/blobs/d96/32b/d9632bf3-02c5-4fdc-8710-cb8f0b6bc6c6
  2318. dateModified: '2024-04-25T08:15:33.958696-04:00'
  2319. datePublished: '2024-06-05T17:10:34.107667+00:00'
  2320. digest:
  2321. dandi:dandi-etag: d05a2a07d3e53e54288b3cf25f83e097-439
  2322. dandi:sha2-256: 961236808f6adddf3fff52b34d14f9b59d893111baf8142622853820dffee52a
  2323. encodingFormat: application/x-nwb
  2324. id: dandiasset:34a85165-1cb0-4086-b6bd-741dd4285ca1
  2325. identifier: 34a85165-1cb0-4086-b6bd-741dd4285ca1
  2326. measurementTechnique:
  2327. - name: surgical technique
  2328. schemaKey: MeasurementTechniqueType
  2329. - name: multi electrode extracellular electrophysiology recording technique
  2330. schemaKey: MeasurementTechniqueType
  2331. path: sub-mahler/sub-mahler_ses-05042021_ecephys.nwb
  2332. publishedBy:
  2333. endDate: '2024-06-05T17:10:34.107667+00:00'
  2334. id: urn:uuid:0a2a780e-4fa6-4031-bc8d-e261bef6677d
  2335. name: DANDI publish
  2336. schemaKey: PublishActivity
  2337. startDate: '2024-06-05T17:10:34.107667+00:00'
  2338. wasAssociatedWith:
  2339. - id: urn:uuid:5e9407d5-6ae5-4479-b291-9cf39cb3b45d
  2340. identifier: RRID:SCR_017571
  2341. name: DANDI API
  2342. schemaKey: Software
  2343. version: 0.1.0
  2344. schemaKey: Asset
  2345. schemaVersion: 0.6.7
  2346. variableMeasured:
  2347. - schemaKey: PropertyValue
  2348. value: ElectrodeGroup
  2349. - schemaKey: PropertyValue
  2350. value: ElectricalSeries
  2351. wasAttributedTo:
  2352. - age:
  2353. schemaKey: PropertyValue
  2354. unitText: ISO-8601 duration
  2355. value: P05Y
  2356. valueReference:
  2357. schemaKey: PropertyValue
  2358. value: dandi:BirthReference
  2359. identifier: mahler
  2360. schemaKey: Participant
  2361. sex:
  2362. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2363. name: Male
  2364. schemaKey: SexType
  2365. species:
  2366. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2367. name: Macaca mulatta - Rhesus monkey
  2368. schemaKey: SpeciesType
  2369. wasGeneratedBy:
  2370. - description: Data from macaque performing mental navigation task. Subject is presented
  2371. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  2372. a screen. After a delay, the subject is then cued with a go signal to navigate
  2373. from start to target landmark with a joystick. Subject should respond by deflecting
  2374. the joystick in the right direction and holding it until the subject thinks it
  2375. has arrived at the target landmark. The visual drift or intervening landmarks
  2376. are all occluded from view making the task a purely mental navigation.
  2377. identifier: '05042021'
  2378. name: '05042021'
  2379. schemaKey: Session
  2380. startDate: '2021-05-04T00:00:00-04:00'
  2381. - description: Metadata generated by DANDI cli
  2382. endDate: '2024-04-25T08:15:33.958652-04:00'
  2383. id: urn:uuid:213c9657-60aa-4995-a051-cdb2dfdf24e8
  2384. name: Metadata generation
  2385. schemaKey: Activity
  2386. startDate: '2024-04-25T08:15:29.781100-04:00'
  2387. wasAssociatedWith:
  2388. - identifier: RRID:SCR_019009
  2389. name: DANDI Command Line Interface
  2390. schemaKey: Software
  2391. url: https://github.com/dandi/dandi-cli
  2392. version: 0.61.2
  2393. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2394. access:
  2395. - schemaKey: AccessRequirements
  2396. status: dandi:OpenAccess
  2397. approach:
  2398. - name: electrophysiological approach
  2399. schemaKey: ApproachType
  2400. - name: behavioral approach
  2401. schemaKey: ApproachType
  2402. blobDateModified: '2024-04-25T08:15:51.058552-04:00'
  2403. contentSize: 312323736
  2404. contentUrl:
  2405. - https://api.dandiarchive.org/api/assets/a1fcfb05-e2ef-4292-a6b1-cc198a1ad1ad/download/
  2406. - https://dandiarchive.s3.amazonaws.com/blobs/c4f/7ef/c4f7efb2-ae7c-4f67-b65c-4f93c0e0c4eb
  2407. dateModified: '2024-04-25T10:09:52.203882-04:00'
  2408. datePublished: '2024-06-05T17:10:34.114513+00:00'
  2409. digest:
  2410. dandi:dandi-etag: 620213f867e6929a9146403bb2af7839-5
  2411. dandi:sha2-256: 63246d5ce1113683425b7317884f3789b23cdea908efabf2445ea3886677f286
  2412. encodingFormat: application/x-nwb
  2413. id: dandiasset:a1fcfb05-e2ef-4292-a6b1-cc198a1ad1ad
  2414. identifier: a1fcfb05-e2ef-4292-a6b1-cc198a1ad1ad
  2415. measurementTechnique:
  2416. - name: spike sorting technique
  2417. schemaKey: MeasurementTechniqueType
  2418. - name: analytical technique
  2419. schemaKey: MeasurementTechniqueType
  2420. - name: surgical technique
  2421. schemaKey: MeasurementTechniqueType
  2422. - name: behavioral technique
  2423. schemaKey: MeasurementTechniqueType
  2424. path: sub-mahler/sub-mahler_ses-05062021_behavior+ecephys.nwb
  2425. publishedBy:
  2426. endDate: '2024-06-05T17:10:34.114513+00:00'
  2427. id: urn:uuid:2c64a270-1f1a-4ef8-abf0-43cb2c4ae007
  2428. name: DANDI publish
  2429. schemaKey: PublishActivity
  2430. startDate: '2024-06-05T17:10:34.114513+00:00'
  2431. wasAssociatedWith:
  2432. - id: urn:uuid:4525e011-884f-4cc8-ac17-608e1917af8c
  2433. identifier: RRID:SCR_017571
  2434. name: DANDI API
  2435. schemaKey: Software
  2436. version: 0.1.0
  2437. schemaKey: Asset
  2438. schemaVersion: 0.6.7
  2439. variableMeasured:
  2440. - schemaKey: PropertyValue
  2441. value: ElectrodeGroup
  2442. - schemaKey: PropertyValue
  2443. value: Units
  2444. - schemaKey: PropertyValue
  2445. value: SpatialSeries
  2446. - schemaKey: PropertyValue
  2447. value: ProcessingModule
  2448. wasAttributedTo:
  2449. - age:
  2450. schemaKey: PropertyValue
  2451. unitText: ISO-8601 duration
  2452. value: P05Y
  2453. valueReference:
  2454. schemaKey: PropertyValue
  2455. value: dandi:BirthReference
  2456. identifier: mahler
  2457. schemaKey: Participant
  2458. sex:
  2459. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2460. name: Male
  2461. schemaKey: SexType
  2462. species:
  2463. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2464. name: Macaca mulatta - Rhesus monkey
  2465. schemaKey: SpeciesType
  2466. wasGeneratedBy:
  2467. - description: Data from macaque performing mental navigation task. Subject is presented
  2468. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  2469. a screen. After a delay, the subject is then cued with a go signal to navigate
  2470. from start to target landmark with a joystick. Subject should respond by deflecting
  2471. the joystick in the right direction and holding it until the subject thinks it
  2472. has arrived at the target landmark. The visual drift or intervening landmarks
  2473. are all occluded from view making the task a purely mental navigation.
  2474. identifier: '05062021'
  2475. name: '05062021'
  2476. schemaKey: Session
  2477. startDate: '2021-05-06T00:00:00-04:00'
  2478. - description: Metadata generated by DANDI cli
  2479. endDate: '2024-04-25T10:09:52.203843-04:00'
  2480. id: urn:uuid:b2c6ff5d-0a95-47a8-8e90-f18b9eb2177d
  2481. name: Metadata generation
  2482. schemaKey: Activity
  2483. startDate: '2024-04-25T10:09:44.218463-04:00'
  2484. wasAssociatedWith:
  2485. - identifier: RRID:SCR_019009
  2486. name: DANDI Command Line Interface
  2487. schemaKey: Software
  2488. url: https://github.com/dandi/dandi-cli
  2489. version: 0.61.2
  2490. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2491. access:
  2492. - schemaKey: AccessRequirements
  2493. status: dandi:OpenAccess
  2494. approach:
  2495. - name: electrophysiological approach
  2496. schemaKey: ApproachType
  2497. - name: behavioral approach
  2498. schemaKey: ApproachType
  2499. blobDateModified: '2024-04-25T08:31:52.936699-04:00'
  2500. contentSize: 313499025
  2501. contentUrl:
  2502. - https://api.dandiarchive.org/api/assets/891375f7-65dc-4e46-9dc3-691673676838/download/
  2503. - https://dandiarchive.s3.amazonaws.com/blobs/fff/86c/fff86c78-d195-4400-bf13-cd502eb1730e
  2504. dateModified: '2024-04-25T10:09:52.458503-04:00'
  2505. datePublished: '2024-06-05T17:10:34.122777+00:00'
  2506. digest:
  2507. dandi:dandi-etag: 41be7139a4b16c108a0b9d7a9dbf85ca-5
  2508. dandi:sha2-256: b33599c282d38a7cbc8ead86e905ee463eca90aef8206a97009fb01700894f1b
  2509. encodingFormat: application/x-nwb
  2510. id: dandiasset:891375f7-65dc-4e46-9dc3-691673676838
  2511. identifier: 891375f7-65dc-4e46-9dc3-691673676838
  2512. measurementTechnique:
  2513. - name: spike sorting technique
  2514. schemaKey: MeasurementTechniqueType
  2515. - name: analytical technique
  2516. schemaKey: MeasurementTechniqueType
  2517. - name: surgical technique
  2518. schemaKey: MeasurementTechniqueType
  2519. - name: behavioral technique
  2520. schemaKey: MeasurementTechniqueType
  2521. path: sub-mahler/sub-mahler_ses-05072021_behavior+ecephys.nwb
  2522. publishedBy:
  2523. endDate: '2024-06-05T17:10:34.122777+00:00'
  2524. id: urn:uuid:39048989-aaac-4795-876f-a972cd9ff2c4
  2525. name: DANDI publish
  2526. schemaKey: PublishActivity
  2527. startDate: '2024-06-05T17:10:34.122777+00:00'
  2528. wasAssociatedWith:
  2529. - id: urn:uuid:a5f67656-6fb6-4c70-a16b-4e750913f068
  2530. identifier: RRID:SCR_017571
  2531. name: DANDI API
  2532. schemaKey: Software
  2533. version: 0.1.0
  2534. schemaKey: Asset
  2535. schemaVersion: 0.6.7
  2536. variableMeasured:
  2537. - schemaKey: PropertyValue
  2538. value: ElectrodeGroup
  2539. - schemaKey: PropertyValue
  2540. value: Units
  2541. - schemaKey: PropertyValue
  2542. value: SpatialSeries
  2543. - schemaKey: PropertyValue
  2544. value: ProcessingModule
  2545. wasAttributedTo:
  2546. - age:
  2547. schemaKey: PropertyValue
  2548. unitText: ISO-8601 duration
  2549. value: P05Y
  2550. valueReference:
  2551. schemaKey: PropertyValue
  2552. value: dandi:BirthReference
  2553. identifier: mahler
  2554. schemaKey: Participant
  2555. sex:
  2556. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2557. name: Male
  2558. schemaKey: SexType
  2559. species:
  2560. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2561. name: Macaca mulatta - Rhesus monkey
  2562. schemaKey: SpeciesType
  2563. wasGeneratedBy:
  2564. - description: Data from macaque performing mental navigation task. Subject is presented
  2565. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  2566. a screen. After a delay, the subject is then cued with a go signal to navigate
  2567. from start to target landmark with a joystick. Subject should respond by deflecting
  2568. the joystick in the right direction and holding it until the subject thinks it
  2569. has arrived at the target landmark. The visual drift or intervening landmarks
  2570. are all occluded from view making the task a purely mental navigation.
  2571. identifier: '05072021'
  2572. name: '05072021'
  2573. schemaKey: Session
  2574. startDate: '2021-05-07T00:00:00-04:00'
  2575. - description: Metadata generated by DANDI cli
  2576. endDate: '2024-04-25T10:09:52.458469-04:00'
  2577. id: urn:uuid:44bb4932-face-41bd-b4d0-ba64cc5ef29b
  2578. name: Metadata generation
  2579. schemaKey: Activity
  2580. startDate: '2024-04-25T10:09:45.237090-04:00'
  2581. wasAssociatedWith:
  2582. - identifier: RRID:SCR_019009
  2583. name: DANDI Command Line Interface
  2584. schemaKey: Software
  2585. url: https://github.com/dandi/dandi-cli
  2586. version: 0.61.2
  2587. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2588. access:
  2589. - schemaKey: AccessRequirements
  2590. status: dandi:OpenAccess
  2591. approach:
  2592. - name: electrophysiological approach
  2593. schemaKey: ApproachType
  2594. blobDateModified: '2024-04-25T09:30:13.384122-04:00'
  2595. contentSize: 28496831405
  2596. contentUrl:
  2597. - https://api.dandiarchive.org/api/assets/ae9e9a84-36da-4652-8b8e-95f0cdc6352a/download/
  2598. - https://dandiarchive.s3.amazonaws.com/blobs/28e/621/28e62128-4169-4962-a815-3b70f7aa5063
  2599. dateModified: '2024-04-25T10:12:03.802391-04:00'
  2600. datePublished: '2024-06-05T17:10:34.129561+00:00'
  2601. digest:
  2602. dandi:dandi-etag: 2ac1d9c448e33ccd22850f1e95358bde-425
  2603. dandi:sha2-256: 47081483db521bf375583da884d0f315505a4be5a5ad244e01fc48d49c3217de
  2604. encodingFormat: application/x-nwb
  2605. id: dandiasset:ae9e9a84-36da-4652-8b8e-95f0cdc6352a
  2606. identifier: ae9e9a84-36da-4652-8b8e-95f0cdc6352a
  2607. measurementTechnique:
  2608. - name: multi electrode extracellular electrophysiology recording technique
  2609. schemaKey: MeasurementTechniqueType
  2610. - name: surgical technique
  2611. schemaKey: MeasurementTechniqueType
  2612. path: sub-mahler/sub-mahler_ses-05062021_ecephys.nwb
  2613. publishedBy:
  2614. endDate: '2024-06-05T17:10:34.129561+00:00'
  2615. id: urn:uuid:a842bf93-ac7d-4234-bbb0-093d257f93f9
  2616. name: DANDI publish
  2617. schemaKey: PublishActivity
  2618. startDate: '2024-06-05T17:10:34.129561+00:00'
  2619. wasAssociatedWith:
  2620. - id: urn:uuid:608539d9-148d-4928-a0bc-234ac1b5617e
  2621. identifier: RRID:SCR_017571
  2622. name: DANDI API
  2623. schemaKey: Software
  2624. version: 0.1.0
  2625. schemaKey: Asset
  2626. schemaVersion: 0.6.7
  2627. variableMeasured:
  2628. - schemaKey: PropertyValue
  2629. value: ElectrodeGroup
  2630. - schemaKey: PropertyValue
  2631. value: ElectricalSeries
  2632. wasAttributedTo:
  2633. - age:
  2634. schemaKey: PropertyValue
  2635. unitText: ISO-8601 duration
  2636. value: P05Y
  2637. valueReference:
  2638. schemaKey: PropertyValue
  2639. value: dandi:BirthReference
  2640. identifier: mahler
  2641. schemaKey: Participant
  2642. sex:
  2643. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2644. name: Male
  2645. schemaKey: SexType
  2646. species:
  2647. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2648. name: Macaca mulatta - Rhesus monkey
  2649. schemaKey: SpeciesType
  2650. wasGeneratedBy:
  2651. - description: Data from macaque performing mental navigation task. Subject is presented
  2652. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  2653. a screen. After a delay, the subject is then cued with a go signal to navigate
  2654. from start to target landmark with a joystick. Subject should respond by deflecting
  2655. the joystick in the right direction and holding it until the subject thinks it
  2656. has arrived at the target landmark. The visual drift or intervening landmarks
  2657. are all occluded from view making the task a purely mental navigation.
  2658. identifier: '05062021'
  2659. name: '05062021'
  2660. schemaKey: Session
  2661. startDate: '2021-05-06T00:00:00-04:00'
  2662. - description: Metadata generated by DANDI cli
  2663. endDate: '2024-04-25T10:12:03.802359-04:00'
  2664. id: urn:uuid:3f651c3c-03fc-4be1-8be8-d065991b8690
  2665. name: Metadata generation
  2666. schemaKey: Activity
  2667. startDate: '2024-04-25T10:12:00.622917-04:00'
  2668. wasAssociatedWith:
  2669. - identifier: RRID:SCR_019009
  2670. name: DANDI Command Line Interface
  2671. schemaKey: Software
  2672. url: https://github.com/dandi/dandi-cli
  2673. version: 0.61.2
  2674. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2675. access:
  2676. - schemaKey: AccessRequirements
  2677. status: dandi:OpenAccess
  2678. approach:
  2679. - name: electrophysiological approach
  2680. schemaKey: ApproachType
  2681. blobDateModified: '2024-04-25T09:49:31.168782-04:00'
  2682. contentSize: 31625700087
  2683. contentUrl:
  2684. - https://api.dandiarchive.org/api/assets/f90914b4-b149-4193-a0e3-2e1dadc4ad12/download/
  2685. - https://dandiarchive.s3.amazonaws.com/blobs/94a/633/94a63328-a946-4099-9dbe-33c6a86e3d03
  2686. dateModified: '2024-04-25T10:12:24.991083-04:00'
  2687. datePublished: '2024-06-05T17:10:34.136318+00:00'
  2688. digest:
  2689. dandi:dandi-etag: 2180ab49ae212a40b113cba4557c78b0-472
  2690. dandi:sha2-256: 11d02b4c76c7df174915e121bae89e451142c8c51e1099058cd154107fe9fef9
  2691. encodingFormat: application/x-nwb
  2692. id: dandiasset:f90914b4-b149-4193-a0e3-2e1dadc4ad12
  2693. identifier: f90914b4-b149-4193-a0e3-2e1dadc4ad12
  2694. measurementTechnique:
  2695. - name: multi electrode extracellular electrophysiology recording technique
  2696. schemaKey: MeasurementTechniqueType
  2697. - name: surgical technique
  2698. schemaKey: MeasurementTechniqueType
  2699. path: sub-mahler/sub-mahler_ses-05072021_ecephys.nwb
  2700. publishedBy:
  2701. endDate: '2024-06-05T17:10:34.136318+00:00'
  2702. id: urn:uuid:9d62689e-3738-466b-99c0-15060dde0c2b
  2703. name: DANDI publish
  2704. schemaKey: PublishActivity
  2705. startDate: '2024-06-05T17:10:34.136318+00:00'
  2706. wasAssociatedWith:
  2707. - id: urn:uuid:c5ccc857-5102-44de-8d49-dd92e8246bf7
  2708. identifier: RRID:SCR_017571
  2709. name: DANDI API
  2710. schemaKey: Software
  2711. version: 0.1.0
  2712. schemaKey: Asset
  2713. schemaVersion: 0.6.7
  2714. variableMeasured:
  2715. - schemaKey: PropertyValue
  2716. value: ElectrodeGroup
  2717. - schemaKey: PropertyValue
  2718. value: ElectricalSeries
  2719. wasAttributedTo:
  2720. - age:
  2721. schemaKey: PropertyValue
  2722. unitText: ISO-8601 duration
  2723. value: P05Y
  2724. valueReference:
  2725. schemaKey: PropertyValue
  2726. value: dandi:BirthReference
  2727. identifier: mahler
  2728. schemaKey: Participant
  2729. sex:
  2730. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2731. name: Male
  2732. schemaKey: SexType
  2733. species:
  2734. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  2735. name: Macaca mulatta - Rhesus monkey
  2736. schemaKey: SpeciesType
  2737. wasGeneratedBy:
  2738. - description: Data from macaque performing mental navigation task. Subject is presented
  2739. with a start and a target landmark, sampled from a linear map of 6 landmarks on
  2740. a screen. After a delay, the subject is then cued with a go signal to navigate
  2741. from start to target landmark with a joystick. Subject should respond by deflecting
  2742. the joystick in the right direction and holding it until the subject thinks it
  2743. has arrived at the target landmark. The visual drift or intervening landmarks
  2744. are all occluded from view making the task a purely mental navigation.
  2745. identifier: '05072021'
  2746. name: '05072021'
  2747. schemaKey: Session
  2748. startDate: '2021-05-07T00:00:00-04:00'
  2749. - description: Metadata generated by DANDI cli
  2750. endDate: '2024-04-25T10:12:24.991037-04:00'
  2751. id: urn:uuid:afab129b-065c-4fff-afea-f043785419e1
  2752. name: Metadata generation
  2753. schemaKey: Activity
  2754. startDate: '2024-04-25T10:12:20.352741-04:00'
  2755. wasAssociatedWith:
  2756. - identifier: RRID:SCR_019009
  2757. name: DANDI Command Line Interface
  2758. schemaKey: Software
  2759. url: https://github.com/dandi/dandi-cli
  2760. version: 0.61.2
Tip!

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

Comments

Loading...