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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:40.676820-04:00'
contentSize: 58897380
contentUrl:
- https://api.dandiarchive.org/api/assets/68d4d5d3-f5f7-4da4-8eed-0f6a973199fc/download/
- https://dandiarchive.s3.amazonaws.com/blobs/bd9/b01/bd9b01f0-ccfc-4e4d-8ae6-fc5c0a59a20b
dateModified: '2024-04-01T13:12:22.879999-04:00'
digest:
dandi:dandi-etag: 02882aac5987300133122858546b12a9-1
dandi:sha2-256: e4ea3aad4d5996457acbbb226aab646d801d425284bde7743912db716cf7d55a
encodingFormat: application/x-nwb
id: dandiasset:68d4d5d3-f5f7-4da4-8eed-0f6a973199fc
identifier: 68d4d5d3-f5f7-4da4-8eed-0f6a973199fc
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220603.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-03T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:22.879965-04:00'
id: urn:uuid:b48f891c-e1f7-4188-87c1-fdeb690514ff
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:22.631931-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:22.497070-04:00'
contentSize: 49922021
contentUrl:
- https://api.dandiarchive.org/api/assets/755f691d-34ba-4272-ad53-9fbbc7f0c175/download/
- https://dandiarchive.s3.amazonaws.com/blobs/126/d0f/126d0fdd-fe8c-4cd0-82ac-f5a8ea2dc3a9
dateModified: '2024-04-01T13:12:22.878220-04:00'
digest:
dandi:dandi-etag: 8facaf10ca0a9e3bfb1a2d07ed8b48c2-1
dandi:sha2-256: c9346c5e31de1fd48e6fb9997ac898481d2845ca11ecef1a51a9f897b0891b4f
encodingFormat: application/x-nwb
id: dandiasset:755f691d-34ba-4272-ad53-9fbbc7f0c175
identifier: 755f691d-34ba-4272-ad53-9fbbc7f0c175
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220518.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-05-18T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:22.878167-04:00'
id: urn:uuid:0a1a9e4f-3195-461d-af3d-07cec2e2b0fc
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:22.430601-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:31.600945-04:00'
contentSize: 91034941
contentUrl:
- https://api.dandiarchive.org/api/assets/a80527a6-7d54-45b9-b13f-30358d1b51b2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a01/511/a0151195-58c1-4f62-a9d2-bb1a00ad9c41
dateModified: '2024-04-01T13:12:25.357649-04:00'
digest:
dandi:dandi-etag: 298d98cd3b0bc04291e0b85a64263ce9-2
dandi:sha2-256: 4129284c4e688f8013cf9345bc5b49f9a6d62dfccd301c047bd33e4fa729086f
encodingFormat: application/x-nwb
id: dandiasset:a80527a6-7d54-45b9-b13f-30358d1b51b2
identifier: a80527a6-7d54-45b9-b13f-30358d1b51b2
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220525.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-05-25T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:25.357603-04:00'
id: urn:uuid:5c3ebe1d-a288-4ba8-9edc-65e02cd14390
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:25.236891-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:36.182882-04:00'
contentSize: 85840150
contentUrl:
- https://api.dandiarchive.org/api/assets/4c8d7a86-343e-49a9-9400-c6ab9e513891/download/
- https://dandiarchive.s3.amazonaws.com/blobs/672/dfc/672dfc2d-e037-4750-b45b-c3bc1ebb43cc
dateModified: '2024-04-01T13:12:25.370469-04:00'
digest:
dandi:dandi-etag: 76c886f70a39756beb93660d686f21dd-2
dandi:sha2-256: 9ba0539fdb7f0c3a9a0ba97ea83a4933e192f61d2da80802f14365ac7fcce336
encodingFormat: application/x-nwb
id: dandiasset:4c8d7a86-343e-49a9-9400-c6ab9e513891
identifier: 4c8d7a86-343e-49a9-9400-c6ab9e513891
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220601.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-01T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:25.370443-04:00'
id: urn:uuid:201f8a95-c2d4-4960-8beb-5e003d14b90f
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:25.160057-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:27.013008-04:00'
contentSize: 84807875
contentUrl:
- https://api.dandiarchive.org/api/assets/523d5192-a866-476b-81e9-631b09a62ec3/download/
- https://dandiarchive.s3.amazonaws.com/blobs/0f3/30e/0f330e3c-5229-40f8-a3a9-c4a1119d8c0d
dateModified: '2024-04-01T13:12:25.356378-04:00'
digest:
dandi:dandi-etag: a6ca1a75181451bdab6fc568626aba86-2
dandi:sha2-256: de5846396e51ed369a67f202c28c78691010460d2a6ccf9413bff057c88fa254
encodingFormat: application/x-nwb
id: dandiasset:523d5192-a866-476b-81e9-631b09a62ec3
identifier: 523d5192-a866-476b-81e9-631b09a62ec3
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220523.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-05-23T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:25.356337-04:00'
id: urn:uuid:354fbab0-9c9f-4992-89a5-dd958d013b99
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:25.203028-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:49.982692-04:00'
contentSize: 66344109
contentUrl:
- https://api.dandiarchive.org/api/assets/1e20d88b-1935-44cf-8c66-a3930dca9169/download/
- https://dandiarchive.s3.amazonaws.com/blobs/e80/734/e8073431-253d-43a0-b45f-6ef11bc90e81
dateModified: '2024-04-01T13:12:39.142357-04:00'
digest:
dandi:dandi-etag: 4075b9d600fe29aa452ead92a0f6fed8-1
dandi:sha2-256: b8cf69260facc7789ad75a16b8034824ac0824fbb57435568dbcbdb5dc1aa60e
encodingFormat: application/x-nwb
id: dandiasset:1e20d88b-1935-44cf-8c66-a3930dca9169
identifier: 1e20d88b-1935-44cf-8c66-a3930dca9169
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220608.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-08T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:39.142263-04:00'
id: urn:uuid:6a84e7a3-4341-4563-9479-626f339a44e9
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:38.819225-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:45.491754-04:00'
contentSize: 105989592
contentUrl:
- https://api.dandiarchive.org/api/assets/bbeebfd6-15bc-4f01-8b31-32ce0f3bfd8a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/780/6a6/7806a6a6-6bf4-43cb-b881-14f2da36fb94
dateModified: '2024-04-01T13:12:40.588108-04:00'
digest:
dandi:dandi-etag: 88adba841febcf188c3d7093d2f5ed02-2
dandi:sha2-256: 591676e3a0eee3ea18e700fd895f1ba01b7edf16f59af1e945adf9873406c80b
encodingFormat: application/x-nwb
id: dandiasset:bbeebfd6-15bc-4f01-8b31-32ce0f3bfd8a
identifier: bbeebfd6-15bc-4f01-8b31-32ce0f3bfd8a
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220606.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-06T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:40.588072-04:00'
id: urn:uuid:c6fbe5c2-4d70-4be9-a66f-8661795aaa95
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:40.330896-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:59.145566-04:00'
contentSize: 65648065
contentUrl:
- https://api.dandiarchive.org/api/assets/730a333c-a701-4eb2-80e2-d37fcc778650/download/
- https://dandiarchive.s3.amazonaws.com/blobs/378/118/3781181a-98f3-46f0-b958-58b14ddfea3b
dateModified: '2024-04-01T13:12:45.347093-04:00'
digest:
dandi:dandi-etag: c640249b1c5a8aa6dea6dc60a186ccdb-1
dandi:sha2-256: 5a88c6b12ea5e39453d46dde42d1b1ad746c4f477e6b8425ca941c07fa5afb84
encodingFormat: application/x-nwb
id: dandiasset:730a333c-a701-4eb2-80e2-d37fcc778650
identifier: 730a333c-a701-4eb2-80e2-d37fcc778650
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220615.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-15T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:45.347013-04:00'
id: urn:uuid:31c40b3d-c3a0-4634-9308-f5d204ae1ac1
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:45.031041-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:54.506630-04:00'
contentSize: 84965145
contentUrl:
- https://api.dandiarchive.org/api/assets/c9a4dd65-bf73-4ea2-b87c-337f676fb47c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/3c9/278/3c9278f6-cf24-44d0-b3dc-a9d7d2e370cf
dateModified: '2024-04-01T13:12:46.711150-04:00'
digest:
dandi:dandi-etag: 7355c89a579d590f4102eddb5d4349db-2
dandi:sha2-256: be2931d49d1ac17bd9ad226405b4fbddf47f1162c2830954b0ca171d6b6c81e5
encodingFormat: application/x-nwb
id: dandiasset:c9a4dd65-bf73-4ea2-b87c-337f676fb47c
identifier: c9a4dd65-bf73-4ea2-b87c-337f676fb47c
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220613.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-13T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:46.711098-04:00'
id: urn:uuid:355fb6c5-7ef3-438f-9978-07cbc25a26ee
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:46.549023-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:57:08.043444-04:00'
contentSize: 43713344
contentUrl:
- https://api.dandiarchive.org/api/assets/6dfe726f-92db-4cfb-b614-00ab1de60adc/download/
- https://dandiarchive.s3.amazonaws.com/blobs/054/61b/05461b78-4e5b-4640-9bf9-54074318645a
dateModified: '2024-04-01T13:12:48.641115-04:00'
digest:
dandi:dandi-etag: 2cc052d0aa18066de353e916dc4c89ae-1
dandi:sha2-256: cf6e150a3e641af00f4054467b1b02f17e35bc999cf5c5d403f645ee11c8ba42
encodingFormat: application/x-nwb
id: dandiasset:6dfe726f-92db-4cfb-b614-00ab1de60adc
identifier: 6dfe726f-92db-4cfb-b614-00ab1de60adc
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220901.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-09-01T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:48.641074-04:00'
id: urn:uuid:56bea9e1-055b-4f1e-987e-d216b32556cb
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:48.462682-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:18.806946-04:00'
contentSize: 39452476
contentUrl:
- https://api.dandiarchive.org/api/assets/93172c10-dc88-4b6f-9301-222d869fdbc1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/aa2/816/aa281666-1ebe-4074-8afc-ffb0174a3a6d
dateModified: '2024-04-01T13:12:49.124585-04:00'
digest:
dandi:dandi-etag: dad6a46963bbc931bcaececac4d55def-1
dandi:sha2-256: 5ecc24bbccfbaccf2212ca7521b1ada0bb9c1605b5fddeb335dfe973ce153665
encodingFormat: application/x-nwb
id: dandiasset:93172c10-dc88-4b6f-9301-222d869fdbc1
identifier: 93172c10-dc88-4b6f-9301-222d869fdbc1
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220929.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-09-29T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:49.124539-04:00'
id: urn:uuid:9373ec61-b288-41af-8509-3f560d26acbd
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:48.896681-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:57:03.684504-04:00'
contentSize: 73296905
contentUrl:
- https://api.dandiarchive.org/api/assets/258f4eb7-5502-47dd-b315-ba688edac762/download/
- https://dandiarchive.s3.amazonaws.com/blobs/403/be4/403be4a7-2464-439a-939f-820ed5944365
dateModified: '2024-04-01T13:12:45.880501-04:00'
digest:
dandi:dandi-etag: f116da624a03a38dd90d4aeea94b8400-2
dandi:sha2-256: 1ac337f1faeb9790f6baa0f236cb533f1576c612577cfd6c8b2bbfbc5c816ee7
encodingFormat: application/x-nwb
id: dandiasset:258f4eb7-5502-47dd-b315-ba688edac762
identifier: 258f4eb7-5502-47dd-b315-ba688edac762
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220622.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-22T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:45.880473-04:00'
id: urn:uuid:6a46c85d-76b0-4b07-93f7-99a65b91dc9b
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:45.625518-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:23.293884-04:00'
contentSize: 38858231
contentUrl:
- https://api.dandiarchive.org/api/assets/356e722a-c96c-4fdf-9e51-7c7613d31e3d/download/
- https://dandiarchive.s3.amazonaws.com/blobs/1e4/0cf/1e40cf43-d1bf-47f2-9727-86f847467635
dateModified: '2024-04-01T13:12:55.302137-04:00'
digest:
dandi:dandi-etag: 3783fd27b8eebf56591657ac3073e388-1
dandi:sha2-256: fdf164808426e41771acff9830fb3c298c05c40e5e3425a5226bb8397eefd620
encodingFormat: application/x-nwb
id: dandiasset:356e722a-c96c-4fdf-9e51-7c7613d31e3d
identifier: 356e722a-c96c-4fdf-9e51-7c7613d31e3d
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221006.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-10-06T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:55.302088-04:00'
id: urn:uuid:ac818078-c492-4e84-ab62-7e347fd3872f
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:55.043946-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:27.671824-04:00'
contentSize: 32711681
contentUrl:
- https://api.dandiarchive.org/api/assets/52336501-32ad-4fd4-903f-1a70e05425ab/download/
- https://dandiarchive.s3.amazonaws.com/blobs/1b4/528/1b45281c-bb8d-4c03-81d1-e1951d28f662
dateModified: '2024-04-01T13:12:55.347003-04:00'
digest:
dandi:dandi-etag: f1ee8dd7ad8c5b9edf3215158a281aeb-1
dandi:sha2-256: d22def1f0b30ca6dd68b31ed1d3efe22e7e66ca28d35c5051419ed3ce521b02e
encodingFormat: application/x-nwb
id: dandiasset:52336501-32ad-4fd4-903f-1a70e05425ab
identifier: 52336501-32ad-4fd4-903f-1a70e05425ab
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221018.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-10-18T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:55.346975-04:00'
id: urn:uuid:15dc180f-71b1-4c2d-9ab6-b3345c15f203
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:54.929860-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:32.003764-04:00'
contentSize: 29314201
contentUrl:
- https://api.dandiarchive.org/api/assets/37fd7ff0-5b00-49d5-a57d-744d9f0d21f2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/42c/022/42c02289-cb3b-4863-b8c1-c8b5204bf54d
dateModified: '2024-04-01T13:12:59.609774-04:00'
digest:
dandi:dandi-etag: 2628ffe3977efc223a3001306a0855c8-1
dandi:sha2-256: 945943015c1ec50ccd10c0960565470d6e2090c335b4c1cd348b63a7bad248f6
encodingFormat: application/x-nwb
id: dandiasset:37fd7ff0-5b00-49d5-a57d-744d9f0d21f2
identifier: 37fd7ff0-5b00-49d5-a57d-744d9f0d21f2
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221025.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-10-25T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:12:59.609735-04:00'
id: urn:uuid:03fbc2f4-a2f0-4335-b639-2c317c3264b0
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:12:59.408136-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:36.127707-04:00'
contentSize: 29486116
contentUrl:
- https://api.dandiarchive.org/api/assets/6dfe1925-0f81-47c3-ab86-f55f39289b3f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/657/bc8/657bc8e9-8013-4679-ae89-d4613602fb4e
dateModified: '2024-04-01T13:13:00.508183-04:00'
digest:
dandi:dandi-etag: d2dcbbfd167b819450ade04fe9d1ac41-1
dandi:sha2-256: 2c9bc0f8cc293f8784e8fff3e02be1c1e9e4052822554303ba0bdc830e02910a
encodingFormat: application/x-nwb
id: dandiasset:6dfe1925-0f81-47c3-ab86-f55f39289b3f
identifier: 6dfe1925-0f81-47c3-ab86-f55f39289b3f
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221027.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-10-27T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:00.508160-04:00'
id: urn:uuid:93ec5e35-88c9-4095-a646-3a7b2ca164c4
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:00.246428-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:40.296650-04:00'
contentSize: 31772036
contentUrl:
- https://api.dandiarchive.org/api/assets/50158689-23a5-4767-bbac-fa5aa9c60d03/download/
- https://dandiarchive.s3.amazonaws.com/blobs/99a/767/99a7670d-53ed-4fde-90a6-1f495e3157bd
dateModified: '2024-04-01T13:13:00.754885-04:00'
digest:
dandi:dandi-etag: 154eab3ba395aac861afbc32c16b5874-1
dandi:sha2-256: 365154fe9e000186c857e4e592b05db1c7cff082e1b5dd487e8ada92a0e86107
encodingFormat: application/x-nwb
id: dandiasset:50158689-23a5-4767-bbac-fa5aa9c60d03
identifier: 50158689-23a5-4767-bbac-fa5aa9c60d03
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221101.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-11-01T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:00.754855-04:00'
id: urn:uuid:77f4ba80-dcb6-4365-8b25-e54c5abdef5b
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:00.483229-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:48.867532-04:00'
contentSize: 36141346
contentUrl:
- https://api.dandiarchive.org/api/assets/3144248f-a543-4ef5-877b-c30eed8e38ea/download/
- https://dandiarchive.s3.amazonaws.com/blobs/447/8eb/4478eb88-608a-4e3e-ad3b-c39839fcc039
dateModified: '2024-04-01T13:13:05.665054-04:00'
digest:
dandi:dandi-etag: 31d32d158c99edc91c4dc226bf40065a-1
dandi:sha2-256: fa1dfc8dd869ad5a75df5d79105d5dadc3268afd22bc2fb30c143544a3f259ec
encodingFormat: application/x-nwb
id: dandiasset:3144248f-a543-4ef5-877b-c30eed8e38ea
identifier: 3144248f-a543-4ef5-877b-c30eed8e38ea
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221208.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-12-08T00:00:00-06:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:05.665033-04:00'
id: urn:uuid:c77d7ee1-44e0-436a-a297-2135be972632
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:05.473374-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:52.965476-04:00'
contentSize: 17448705
contentUrl:
- https://api.dandiarchive.org/api/assets/98778751-0b42-41f0-b82a-42ed48f7795d/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c5f/fb3/c5ffb3b1-27ad-4aa7-930e-ae8ab81efab1
dateModified: '2024-04-01T13:13:05.665600-04:00'
digest:
dandi:dandi-etag: 86e7aadb42056ac801195a55e699870f-1
dandi:sha2-256: 24d0507c1fcd9451d502a6a883f80ed9be66834029e5e485b3921f2d40f39323
encodingFormat: application/x-nwb
id: dandiasset:98778751-0b42-41f0-b82a-42ed48f7795d
identifier: 98778751-0b42-41f0-b82a-42ed48f7795d
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221215.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-12-15T00:00:00-06:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:05.665578-04:00'
id: urn:uuid:73e06b5e-38c7-455c-bbc2-2cc82301db8d
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:05.414327-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:23.804052-04:00'
contentSize: 4296815
contentUrl:
- https://api.dandiarchive.org/api/assets/36fdb0cb-86aa-4181-b258-3262178fdfb4/download/
- https://dandiarchive.s3.amazonaws.com/blobs/fc8/598/fc85987c-73a5-4b99-9a78-be89848eea12
dateModified: '2024-04-01T13:13:08.495174-04:00'
digest:
dandi:dandi-etag: d3d34cf61b15a27d7c698cc43b8dd965-1
dandi:sha2-256: d0f7b60e60c7d35432e85e2c726d103ad595418adeff8487c778c3e45359edba
encodingFormat: application/x-nwb
id: dandiasset:36fdb0cb-86aa-4181-b258-3262178fdfb4
identifier: 36fdb0cb-86aa-4181-b258-3262178fdfb4
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220518.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-05-18T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:08.495144-04:00'
id: urn:uuid:1bd25c3e-d937-41f3-adfe-6c72a3c3b58a
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:08.333195-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:57.273417-04:00'
contentSize: 34683601
contentUrl:
- https://api.dandiarchive.org/api/assets/09a76d0f-7396-4b1a-b1f6-fa64d145df0a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/241/e8a/241e8a33-f5a1-448c-b15d-b22683e15e63
dateModified: '2024-04-01T13:13:09.287227-04:00'
digest:
dandi:dandi-etag: d41dbb46e1b1c21e3f1f36dab1491d5a-1
dandi:sha2-256: 9e66432c8e9b26dc2ae5d43e329b6ffff0296a8bb243699da16fb23df6c367f7
encodingFormat: application/x-nwb
id: dandiasset:09a76d0f-7396-4b1a-b1f6-fa64d145df0a
identifier: 09a76d0f-7396-4b1a-b1f6-fa64d145df0a
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20230228.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2023-02-28T00:00:00-06:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:09.287181-04:00'
id: urn:uuid:ff4d40cf-32a2-4a76-9bea-113e171fc646
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:09.185287-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:28.388989-04:00'
contentSize: 1226680
contentUrl:
- https://api.dandiarchive.org/api/assets/19f3d5d4-4ba2-43d6-bcd1-8705006d43bd/download/
- https://dandiarchive.s3.amazonaws.com/blobs/91f/0ae/91f0ae63-b7b1-4f1d-99ad-d9f6740efd3f
dateModified: '2024-04-01T13:13:13.603623-04:00'
digest:
dandi:dandi-etag: 6decd793c58b433cbb2791b7125b1753-1
dandi:sha2-256: ee4c05afdf27aac047c09930dc8e4ffb4169eafaf4aa221090cfab76f14389d7
encodingFormat: application/x-nwb
id: dandiasset:19f3d5d4-4ba2-43d6-bcd1-8705006d43bd
identifier: 19f3d5d4-4ba2-43d6-bcd1-8705006d43bd
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220523.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-05-23T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:13.603584-04:00'
id: urn:uuid:8a7a498b-19f1-440c-bb48-8aec8e323030
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:13.278301-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:37.565863-04:00'
contentSize: 2580020
contentUrl:
- https://api.dandiarchive.org/api/assets/68df84e0-3fe4-4bfc-90b4-3d55f88342e9/download/
- https://dandiarchive.s3.amazonaws.com/blobs/6df/f48/6dff4883-64b3-4ca0-9caf-8630d2ba557c
dateModified: '2024-04-01T13:13:14.962418-04:00'
digest:
dandi:dandi-etag: 3ac7d8f2157523ce368403c68d0c36ae-1
dandi:sha2-256: 8710e117b559c3888ce439cf1b3fd27026fee926d41092da199eb3be3e5ba0ed
encodingFormat: application/x-nwb
id: dandiasset:68df84e0-3fe4-4bfc-90b4-3d55f88342e9
identifier: 68df84e0-3fe4-4bfc-90b4-3d55f88342e9
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220601.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-01T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:14.962391-04:00'
id: urn:uuid:9b980bef-5921-4f99-8c8a-999c9a73955f
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:14.625995-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:32.961926-04:00'
contentSize: 3552635
contentUrl:
- https://api.dandiarchive.org/api/assets/bcb7c5b8-e4d4-434f-9593-643a348c5cf3/download/
- https://dandiarchive.s3.amazonaws.com/blobs/eae/112/eae1126d-2dd0-44e8-87aa-262183248642
dateModified: '2024-04-01T13:13:14.981576-04:00'
digest:
dandi:dandi-etag: a1202953540cafd0eac84349cc316a3e-1
dandi:sha2-256: a2eab830cf01b0e49aa96ea98de09050a7d6f43528d20b636f29abd2c847c308
encodingFormat: application/x-nwb
id: dandiasset:bcb7c5b8-e4d4-434f-9593-643a348c5cf3
identifier: bcb7c5b8-e4d4-434f-9593-643a348c5cf3
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220525.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-05-25T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:14.981553-04:00'
id: urn:uuid:aee970e2-b19c-4cf3-9230-920b4dff6800
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:14.680853-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:44.603591-04:00'
contentSize: 35419931
contentUrl:
- https://api.dandiarchive.org/api/assets/2a7480fd-5332-4efb-b104-358951951962/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f9e/e30/f9ee30e7-c90c-4fb4-80e8-1479c89a6c3d
dateModified: '2024-04-01T13:13:05.627297-04:00'
digest:
dandi:dandi-etag: 7dee07c2b3f6364ac090e25be1876774-1
dandi:sha2-256: 84e3befcae291617ea0fcba9e4b95a03c4385e38398755688c8ae0f214342a3c
encodingFormat: application/x-nwb
id: dandiasset:2a7480fd-5332-4efb-b104-358951951962
identifier: 2a7480fd-5332-4efb-b104-358951951962
measurementTechnique: []
path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221103.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-11-03T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:05.627249-04:00'
id: urn:uuid:fc58d9be-b626-4ff4-ac83-e094a12870f9
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:05.336972-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:42.001802-04:00'
contentSize: 2997640
contentUrl:
- https://api.dandiarchive.org/api/assets/2a880993-9ffc-4e87-bd2c-d6826045484b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/930/c06/930c0684-eeef-4806-9814-4061275cf314
dateModified: '2024-04-01T13:13:15.138436-04:00'
digest:
dandi:dandi-etag: 16bfd4432a42146643f0ce28676c54dd-1
dandi:sha2-256: 58b53bb6975df32d1a686f7f8a9c13c0acad0fde299c27fbd601f9843322d66e
encodingFormat: application/x-nwb
id: dandiasset:2a880993-9ffc-4e87-bd2c-d6826045484b
identifier: 2a880993-9ffc-4e87-bd2c-d6826045484b
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220603.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-03T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:15.138402-04:00'
id: urn:uuid:f2953d56-d2aa-4c3f-abd4-39892b9829ba
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:14.915727-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:46.912735-04:00'
contentSize: 4295245
contentUrl:
- https://api.dandiarchive.org/api/assets/ed3e9bb0-427a-464d-bffa-fa93d5a36061/download/
- https://dandiarchive.s3.amazonaws.com/blobs/61b/802/61b80206-efab-487f-8bd4-cb291803411d
dateModified: '2024-04-01T13:13:18.527749-04:00'
digest:
dandi:dandi-etag: 542b91c2dcb11fe67a92d92ad863751f-1
dandi:sha2-256: 49e5ea86833c1ab9e0fd6271af67a8ba2554a5c6bd939b78626664ac2fd7e201
encodingFormat: application/x-nwb
id: dandiasset:ed3e9bb0-427a-464d-bffa-fa93d5a36061
identifier: ed3e9bb0-427a-464d-bffa-fa93d5a36061
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220606.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-06T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:18.527700-04:00'
id: urn:uuid:83fe62ff-174a-4414-ba4b-8160f73da5e3
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:18.221765-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:51.312674-04:00'
contentSize: 6060710
contentUrl:
- https://api.dandiarchive.org/api/assets/f4c676c8-0808-4aed-b5b2-c054fce48ea0/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d3e/770/d3e7700e-9258-4a43-9b5c-c8a010616b14
dateModified: '2024-04-01T13:13:22.379149-04:00'
digest:
dandi:dandi-etag: 0fc4ee099af2ac5a5500b85546da82b7-1
dandi:sha2-256: 917feaf8a163db1119bd688a61239101ce0242f0004e0e720d4d72f8da15f470
encodingFormat: application/x-nwb
id: dandiasset:f4c676c8-0808-4aed-b5b2-c054fce48ea0
identifier: f4c676c8-0808-4aed-b5b2-c054fce48ea0
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220608.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-08T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:22.379111-04:00'
id: urn:uuid:475e747b-456c-4d93-8717-77773adbca8d
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:22.064622-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:57:00.482548-04:00'
contentSize: 4131180
contentUrl:
- https://api.dandiarchive.org/api/assets/ab59d565-2179-4db0-9f36-5f0591888a2e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f39/93f/f3993f74-6141-4fcb-9e98-a44a8e3a2a89
dateModified: '2024-04-01T13:13:22.782117-04:00'
digest:
dandi:dandi-etag: c4012155acde43153051b72b8efce68c-1
dandi:sha2-256: 978baab8d489c37c86836d2ca6f99878b449a46b2b7c9ffb142fad1215a0da35
encodingFormat: application/x-nwb
id: dandiasset:ab59d565-2179-4db0-9f36-5f0591888a2e
identifier: ab59d565-2179-4db0-9f36-5f0591888a2e
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220615.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-15T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:22.782079-04:00'
id: urn:uuid:cc4f3eb0-41ef-4adb-a591-881b01070d3b
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:22.404019-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:55.904611-04:00'
contentSize: 4168860
contentUrl:
- https://api.dandiarchive.org/api/assets/4cdccc2e-46e9-4a0b-94ba-de8e412f45a3/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f3d/1ed/f3d1ed37-a894-42ed-b26a-8b2181553c87
dateModified: '2024-04-01T13:13:22.969790-04:00'
digest:
dandi:dandi-etag: 3b74220c2bf8c0d0b1e0a1bf1ed37e45-1
dandi:sha2-256: aae60018d0b6fef818a40fab3a99df9b2e0dfd9259754d362e54105cd3822e9e
encodingFormat: application/x-nwb
id: dandiasset:4cdccc2e-46e9-4a0b-94ba-de8e412f45a3
identifier: 4cdccc2e-46e9-4a0b-94ba-de8e412f45a3
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220613.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-13T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:22.969745-04:00'
id: urn:uuid:f2989ca9-6ea8-40b0-8825-52fb72fca6e4
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:22.771282-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:57:09.323426-04:00'
contentSize: 3014910
contentUrl:
- https://api.dandiarchive.org/api/assets/80346cc3-2b1d-460a-af27-a5a1daae7a55/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f9c/ae4/f9cae4ed-0c8a-48dd-ae67-c71593351879
dateModified: '2024-04-01T13:13:23.534458-04:00'
digest:
dandi:dandi-etag: 98316e41aa59d9f2f3ac642513bc5a91-1
dandi:sha2-256: 48ec9c3de77fb0cfa2c1fbf589ed7dd5531d6ea13a9042402cf22e23db84d8a8
encodingFormat: application/x-nwb
id: dandiasset:80346cc3-2b1d-460a-af27-a5a1daae7a55
identifier: 80346cc3-2b1d-460a-af27-a5a1daae7a55
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220901.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-09-01T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:23.534412-04:00'
id: urn:uuid:8c33e6e6-b6cc-4b5d-98df-f6dc2dd59e03
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:23.316254-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:57:05.051485-04:00'
contentSize: 2959960
contentUrl:
- https://api.dandiarchive.org/api/assets/142e8bcb-d8e1-4846-bab0-9a464a36616d/download/
- https://dandiarchive.s3.amazonaws.com/blobs/aee/c31/aeec318f-9a1a-49cc-9a9a-c2f8974e7a5c
dateModified: '2024-04-01T13:13:22.924455-04:00'
digest:
dandi:dandi-etag: ef4d911687d449fe9611122a50908fd4-1
dandi:sha2-256: fca7b02cdd848a2df6dd3956c5742e5bbeb579273ea50418c8b56903185c333f
encodingFormat: application/x-nwb
id: dandiasset:142e8bcb-d8e1-4846-bab0-9a464a36616d
identifier: 142e8bcb-d8e1-4846-bab0-9a464a36616d
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220622.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-06-22T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:22.924429-04:00'
id: urn:uuid:ecf14c71-2fd0-48a0-a025-679628d86b37
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:22.658881-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:20.098928-04:00'
contentSize: 3982815
contentUrl:
- https://api.dandiarchive.org/api/assets/1738ac2f-13e8-48d2-a929-b246fcb59e3e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/37c/ffd/37cffdf2-d332-48f6-8c4d-63ffc05b3102
dateModified: '2024-04-01T13:13:29.234049-04:00'
digest:
dandi:dandi-etag: aa629e1ba390b0414e12bc349e879161-1
dandi:sha2-256: 830d807afdd2d8b7bd2aa1b725c0cbf96872140126778a47d9a99812c7f1b38f
encodingFormat: application/x-nwb
id: dandiasset:1738ac2f-13e8-48d2-a929-b246fcb59e3e
identifier: 1738ac2f-13e8-48d2-a929-b246fcb59e3e
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220929.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-09-29T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:29.233980-04:00'
id: urn:uuid:e3c67327-7a67-4778-8f7b-31a2de300b7d
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:29.111240-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:24.610866-04:00'
contentSize: 2600430
contentUrl:
- https://api.dandiarchive.org/api/assets/1a398a45-1d4c-4e26-8c42-6492d5227fdd/download/
- https://dandiarchive.s3.amazonaws.com/blobs/4ed/708/4ed70823-bc0b-468e-862d-b25bf88f3bb0
dateModified: '2024-04-01T13:13:30.442048-04:00'
digest:
dandi:dandi-etag: 02d157459e315326507bfcaccff14089-1
dandi:sha2-256: 9c795104f1b0de9ec4d632d299f80a913bcf930ebd0524f0b282a6178c70b187
encodingFormat: application/x-nwb
id: dandiasset:1a398a45-1d4c-4e26-8c42-6492d5227fdd
identifier: 1a398a45-1d4c-4e26-8c42-6492d5227fdd
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221006.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-10-06T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:30.442016-04:00'
id: urn:uuid:29cd9eae-62d9-454c-a548-53db3ff8b3ae
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:30.281208-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:28.971806-04:00'
contentSize: 2762925
contentUrl:
- https://api.dandiarchive.org/api/assets/6cf3c2c7-fb57-4058-8924-4d674443dc07/download/
- https://dandiarchive.s3.amazonaws.com/blobs/9a4/cf6/9a4cf618-8f52-4dc3-a6f7-e2c43f185b49
dateModified: '2024-04-01T13:13:30.683486-04:00'
digest:
dandi:dandi-etag: 65f0c9d23889b4f9855cf7fb4c6df10e-1
dandi:sha2-256: 3814d938a464dc1739bc5dfdbd9be264e50b817b606b290afa73e2706f667bc1
encodingFormat: application/x-nwb
id: dandiasset:6cf3c2c7-fb57-4058-8924-4d674443dc07
identifier: 6cf3c2c7-fb57-4058-8924-4d674443dc07
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221018.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-10-18T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:30.683441-04:00'
id: urn:uuid:affc22ea-bb8d-49e0-9edc-6cc8179649b8
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:30.362558-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:33.302747-04:00'
contentSize: 2751150
contentUrl:
- https://api.dandiarchive.org/api/assets/9eac47ba-8a7b-4095-acbf-3b3e3daebc22/download/
- https://dandiarchive.s3.amazonaws.com/blobs/074/ba1/074ba1ad-768f-41a8-8d68-626120e0b38b
dateModified: '2024-04-01T13:13:30.756560-04:00'
digest:
dandi:dandi-etag: 45d051d0232cf5742feab8336478d51e-1
dandi:sha2-256: a3f9f7af27062b34b88f8641f98dcd164a81a10781cc2b1cc5fd2e47d835f92f
encodingFormat: application/x-nwb
id: dandiasset:9eac47ba-8a7b-4095-acbf-3b3e3daebc22
identifier: 9eac47ba-8a7b-4095-acbf-3b3e3daebc22
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221025.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-10-25T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:30.756534-04:00'
id: urn:uuid:1d60ede8-3dd6-418f-bc21-30936a6986c0
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:30.465855-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:37.393690-04:00'
contentSize: 2842995
contentUrl:
- https://api.dandiarchive.org/api/assets/0f29fff8-6de0-4e19-84b8-0be17504775e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/cf1/7a8/cf17a86b-f021-4d68-b09c-fa6601a41bc5
dateModified: '2024-04-01T13:13:30.757684-04:00'
digest:
dandi:dandi-etag: 63a9d3ccce14a9c106a4fcdc0fd2dcb5-1
dandi:sha2-256: 6d96da646a6a190c79c34f3ec24bfb81418b196667ca92b06c05ba1432a0e630
encodingFormat: application/x-nwb
id: dandiasset:0f29fff8-6de0-4e19-84b8-0be17504775e
identifier: 0f29fff8-6de0-4e19-84b8-0be17504775e
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221027.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-10-27T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:30.757641-04:00'
id: urn:uuid:0dcacf17-6482-4009-88c6-68d45fcdf2c3
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:30.420370-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:41.556633-04:00'
contentSize: 2848490
contentUrl:
- https://api.dandiarchive.org/api/assets/97fdc4dd-ea99-4374-b11d-e000572a041d/download/
- https://dandiarchive.s3.amazonaws.com/blobs/fa7/47a/fa747ace-b2d0-4d16-a4ba-03f143109266
dateModified: '2024-04-01T13:13:36.048381-04:00'
digest:
dandi:dandi-etag: ad949eb39625c13a07cf0e59be7a8631-1
dandi:sha2-256: 9542354408d73beac653b92da6598fd734d79e19d914364c9fbe1fe5a5864cfb
encodingFormat: application/x-nwb
id: dandiasset:97fdc4dd-ea99-4374-b11d-e000572a041d
identifier: 97fdc4dd-ea99-4374-b11d-e000572a041d
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221101.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-11-01T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:36.048315-04:00'
id: urn:uuid:cb3cbf93-1ffd-44e2-8838-c93613369ada
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:35.592036-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:45.892573-04:00'
contentSize: 2317045
contentUrl:
- https://api.dandiarchive.org/api/assets/901191f1-2968-4b5f-81a7-17bd061452fb/download/
- https://dandiarchive.s3.amazonaws.com/blobs/1d5/0b4/1d50b4f2-a50e-4573-be6e-bbb40ed62064
dateModified: '2024-04-01T13:13:37.136773-04:00'
digest:
dandi:dandi-etag: 04de369184077fee7ebb7e0d9d6d7221-1
dandi:sha2-256: b58506c4ca372476de70f620f30ca660e8a66c831a7f8f019a8dfc8285248c68
encodingFormat: application/x-nwb
id: dandiasset:901191f1-2968-4b5f-81a7-17bd061452fb
identifier: 901191f1-2968-4b5f-81a7-17bd061452fb
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221103.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-11-03T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:37.136743-04:00'
id: urn:uuid:689f78d3-44f1-435a-93ff-53e13267ce1e
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:36.699139-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:50.166515-04:00'
contentSize: 3760660
contentUrl:
- https://api.dandiarchive.org/api/assets/c1b5104f-3c1e-4fb2-bb53-163a87490bae/download/
- https://dandiarchive.s3.amazonaws.com/blobs/731/8d9/7318d90a-8db9-471f-a357-9bb38405085c
dateModified: '2024-04-01T13:13:38.510935-04:00'
digest:
dandi:dandi-etag: 77afa00e022951da53f967351bb4db5d-1
dandi:sha2-256: 40eefe1dbf435215bcc887b6c98d2668620c84b128b309185cd7cf67c148d8ea
encodingFormat: application/x-nwb
id: dandiasset:c1b5104f-3c1e-4fb2-bb53-163a87490bae
identifier: c1b5104f-3c1e-4fb2-bb53-163a87490bae
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221208.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-12-08T00:00:00-06:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:38.510900-04:00'
id: urn:uuid:97c56840-97a5-41bb-a762-cfdadfcee7d9
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:38.323594-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:54.230459-04:00'
contentSize: 2993715
contentUrl:
- https://api.dandiarchive.org/api/assets/74b97376-7d9a-4642-9b9a-cd16cde85903/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d99/1db/d991db21-3005-40d3-9a11-755e0abfaa18
dateModified: '2024-04-01T13:13:39.570036-04:00'
digest:
dandi:dandi-etag: 5c7bf7650ed8d680a7472926c0e689f8-1
dandi:sha2-256: f7401df801c8ee4bebad1251c51b29292bfe6af2f377e2dddff74f9c24018912
encodingFormat: application/x-nwb
id: dandiasset:74b97376-7d9a-4642-9b9a-cd16cde85903
identifier: 74b97376-7d9a-4642-9b9a-cd16cde85903
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221215.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2022-12-15T00:00:00-06:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:39.570010-04:00'
id: urn:uuid:edae929a-ab98-4e10-be3b-2022ee1ee497
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:39.168095-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:55:58.534400-04:00'
contentSize: 4251285
contentUrl:
- https://api.dandiarchive.org/api/assets/360d7e11-6f26-40af-b1e3-947405ba9786/download/
- https://dandiarchive.s3.amazonaws.com/blobs/053/493/0534931a-a056-4bea-b073-9d28a32ab220
dateModified: '2024-04-01T13:13:39.794716-04:00'
digest:
dandi:dandi-etag: b5e9dc99dbd3b0d51fae9cff770d75c3-1
dandi:sha2-256: 30f195dd7fba2a0eff2a9b34afe9ba6213bcc68d48a757b0d51c0b5109601490
encodingFormat: application/x-nwb
id: dandiasset:360d7e11-6f26-40af-b1e3-947405ba9786
identifier: 360d7e11-6f26-40af-b1e3-947405ba9786
measurementTechnique: []
path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20230228.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_in_minival
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2023-02-28T00:00:00-06:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:39.794692-04:00'
id: urn:uuid:dc6abf3c-67ab-499a-99e2-8f392631f47b
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:39.349972-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:01.517359-04:00'
contentSize: 3312425
contentUrl:
- https://api.dandiarchive.org/api/assets/e114bc42-dcb5-4c02-b663-545b49d04664/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b1e/d16/b1ed1693-b53e-430f-a9a2-cb8bf219a599
dateModified: '2024-04-01T13:13:42.634783-04:00'
digest:
dandi:dandi-etag: 6ca0918fb523cb8172a997f1b0117142-1
dandi:sha2-256: 0de25c2b32e2ea02b571c0c649d6d692546bb766d2425893662b2b8201cc9b19
encodingFormat: application/x-nwb
id: dandiasset:e114bc42-dcb5-4c02-b663-545b49d04664
identifier: e114bc42-dcb5-4c02-b663-545b49d04664
measurementTechnique: []
path: sub-T5-held-out-calib/sub-T5-held-out-calib_ses-20230417.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_out_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2023-04-17T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:42.634757-04:00'
id: urn:uuid:133e5f4e-b557-42b0-b2b5-938848439d81
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:42.238860-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:05.750300-04:00'
contentSize: 3499255
contentUrl:
- https://api.dandiarchive.org/api/assets/5ecea150-9e44-4038-abd3-88db032c3f9a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/fda/1a9/fda1a956-8f87-4e7b-a5c1-3ecf5043dbb9
dateModified: '2024-04-01T13:13:42.634110-04:00'
digest:
dandi:dandi-etag: 7faf3477142d2f7bb9115ee69eab11df-1
dandi:sha2-256: bc604bbbad9e1cbe733a8585af08b54912f98801e76de48dce6d09cbae8dfc58
encodingFormat: application/x-nwb
id: dandiasset:5ecea150-9e44-4038-abd3-88db032c3f9a
identifier: 5ecea150-9e44-4038-abd3-88db032c3f9a
measurementTechnique: []
path: sub-T5-held-out-calib/sub-T5-held-out-calib_ses-20230531.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_out_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2023-05-31T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:42.634068-04:00'
id: urn:uuid:ab7f02b9-cd02-4a73-904b-ea7f5aac355b
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:42.297462-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:18.195129-04:00'
contentSize: 4790580
contentUrl:
- https://api.dandiarchive.org/api/assets/f0491291-0d91-44a9-8037-3fc2aec1be85/download/
- https://dandiarchive.s3.amazonaws.com/blobs/562/4a8/5624a801-e3c0-4b1c-aa9a-3ce5a504664e
dateModified: '2024-04-01T13:13:45.836301-04:00'
digest:
dandi:dandi-etag: 9c1f591547a58bd21ac2aab51523ccd6-1
dandi:sha2-256: 3d0c469b2d716922056b644923281911b9d721691524ca794098ab9a613f54c4
encodingFormat: application/x-nwb
id: dandiasset:f0491291-0d91-44a9-8037-3fc2aec1be85
identifier: f0491291-0d91-44a9-8037-3fc2aec1be85
measurementTechnique: []
path: sub-T5-held-out-calib/sub-T5-held-out-calib_ses-20231009.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_out_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2023-10-09T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:45.836250-04:00'
id: urn:uuid:fce6a3dd-1253-4a27-95e6-8d7a63120219
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:45.703622-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:09.974242-04:00'
contentSize: 3684515
contentUrl:
- https://api.dandiarchive.org/api/assets/8977a08d-e80d-4b20-854b-8a3858543a7f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c15/671/c156716f-0466-4303-aa80-6b22a7eab6c7
dateModified: '2024-04-01T13:13:44.510753-04:00'
digest:
dandi:dandi-etag: cd816c960d70b4e3a53cee370b2cd92e-1
dandi:sha2-256: 5bce73e437eb74c6dcaf0d1aa94b97be3dd0f405bfd6a5b98f40a429b6855df6
encodingFormat: application/x-nwb
id: dandiasset:8977a08d-e80d-4b20-854b-8a3858543a7f
identifier: 8977a08d-e80d-4b20-854b-8a3858543a7f
measurementTechnique: []
path: sub-T5-held-out-calib/sub-T5-held-out-calib_ses-20230628.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_out_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2023-06-28T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:44.510720-04:00'
id: urn:uuid:a000e941-0ab5-461b-9f9d-919774c5f2aa
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:44.308868-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-03-27T09:56:14.092186-04:00'
contentSize: 3525945
contentUrl:
- https://api.dandiarchive.org/api/assets/93ae2e77-0f81-4cd0-8e21-940e37c3dbea/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ae3/603/ae36034b-73fa-4da8-8d00-7db0ec99a99e
dateModified: '2024-04-01T13:13:45.878005-04:00'
digest:
dandi:dandi-etag: 16c4ddaf4f9813da96f552363bcf60a8-1
dandi:sha2-256: b5518f4f90e1327ff5adc8803df57ebfbb99b898475be1121bcd8b230576f294
encodingFormat: application/x-nwb
id: dandiasset:93ae2e77-0f81-4cd0-8e21-940e37c3dbea
identifier: 93ae2e77-0f81-4cd0-8e21-940e37c3dbea
measurementTechnique: []
path: sub-T5-held-out-calib/sub-T5-held-out-calib_ses-20230816.nwb
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P69Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: T5_held_out_calib
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: human BCI participant performing attempted handwriting task
name: Acquisition session
schemaKey: Session
startDate: '2023-08-16T00:00:00-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-04-01T13:13:45.877966-04:00'
id: urn:uuid:de6cb199-4ac9-46e6-a079-cbb92db0ec4d
name: Metadata generation
schemaKey: Activity
startDate: '2024-04-01T13:13:45.747552-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.61.1
Tip!
Press p or to see the previous file or,
n or to see the next file