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

assets.yaml 97 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach: []
  6. blobDateModified: '2024-03-27T09:56:40.676820-04:00'
  7. contentSize: 58897380
  8. contentUrl:
  9. - https://api.dandiarchive.org/api/assets/68d4d5d3-f5f7-4da4-8eed-0f6a973199fc/download/
  10. - https://dandiarchive.s3.amazonaws.com/blobs/bd9/b01/bd9b01f0-ccfc-4e4d-8ae6-fc5c0a59a20b
  11. dateModified: '2024-04-01T13:12:22.879999-04:00'
  12. digest:
  13. dandi:dandi-etag: 02882aac5987300133122858546b12a9-1
  14. dandi:sha2-256: e4ea3aad4d5996457acbbb226aab646d801d425284bde7743912db716cf7d55a
  15. encodingFormat: application/x-nwb
  16. id: dandiasset:68d4d5d3-f5f7-4da4-8eed-0f6a973199fc
  17. identifier: 68d4d5d3-f5f7-4da4-8eed-0f6a973199fc
  18. measurementTechnique: []
  19. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220603.nwb
  20. schemaKey: Asset
  21. schemaVersion: 0.6.7
  22. variableMeasured: []
  23. wasAttributedTo:
  24. - age:
  25. schemaKey: PropertyValue
  26. unitText: ISO-8601 duration
  27. value: P69Y
  28. valueReference:
  29. schemaKey: PropertyValue
  30. value: dandi:BirthReference
  31. identifier: T5_held_in_calib
  32. schemaKey: Participant
  33. sex:
  34. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  35. name: Male
  36. schemaKey: SexType
  37. species:
  38. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  39. name: Homo sapiens - Human
  40. schemaKey: SpeciesType
  41. wasGeneratedBy:
  42. - description: human BCI participant performing attempted handwriting task
  43. name: Acquisition session
  44. schemaKey: Session
  45. startDate: '2022-06-03T00:00:00-05:00'
  46. - description: Metadata generated by DANDI cli
  47. endDate: '2024-04-01T13:12:22.879965-04:00'
  48. id: urn:uuid:b48f891c-e1f7-4188-87c1-fdeb690514ff
  49. name: Metadata generation
  50. schemaKey: Activity
  51. startDate: '2024-04-01T13:12:22.631931-04:00'
  52. wasAssociatedWith:
  53. - identifier: RRID:SCR_019009
  54. name: DANDI Command Line Interface
  55. schemaKey: Software
  56. url: https://github.com/dandi/dandi-cli
  57. version: 0.61.1
  58. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  59. access:
  60. - schemaKey: AccessRequirements
  61. status: dandi:OpenAccess
  62. approach: []
  63. blobDateModified: '2024-03-27T09:56:22.497070-04:00'
  64. contentSize: 49922021
  65. contentUrl:
  66. - https://api.dandiarchive.org/api/assets/755f691d-34ba-4272-ad53-9fbbc7f0c175/download/
  67. - https://dandiarchive.s3.amazonaws.com/blobs/126/d0f/126d0fdd-fe8c-4cd0-82ac-f5a8ea2dc3a9
  68. dateModified: '2024-04-01T13:12:22.878220-04:00'
  69. digest:
  70. dandi:dandi-etag: 8facaf10ca0a9e3bfb1a2d07ed8b48c2-1
  71. dandi:sha2-256: c9346c5e31de1fd48e6fb9997ac898481d2845ca11ecef1a51a9f897b0891b4f
  72. encodingFormat: application/x-nwb
  73. id: dandiasset:755f691d-34ba-4272-ad53-9fbbc7f0c175
  74. identifier: 755f691d-34ba-4272-ad53-9fbbc7f0c175
  75. measurementTechnique: []
  76. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220518.nwb
  77. schemaKey: Asset
  78. schemaVersion: 0.6.7
  79. variableMeasured: []
  80. wasAttributedTo:
  81. - age:
  82. schemaKey: PropertyValue
  83. unitText: ISO-8601 duration
  84. value: P69Y
  85. valueReference:
  86. schemaKey: PropertyValue
  87. value: dandi:BirthReference
  88. identifier: T5_held_in_calib
  89. schemaKey: Participant
  90. sex:
  91. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  92. name: Male
  93. schemaKey: SexType
  94. species:
  95. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  96. name: Homo sapiens - Human
  97. schemaKey: SpeciesType
  98. wasGeneratedBy:
  99. - description: human BCI participant performing attempted handwriting task
  100. name: Acquisition session
  101. schemaKey: Session
  102. startDate: '2022-05-18T00:00:00-05:00'
  103. - description: Metadata generated by DANDI cli
  104. endDate: '2024-04-01T13:12:22.878167-04:00'
  105. id: urn:uuid:0a1a9e4f-3195-461d-af3d-07cec2e2b0fc
  106. name: Metadata generation
  107. schemaKey: Activity
  108. startDate: '2024-04-01T13:12:22.430601-04:00'
  109. wasAssociatedWith:
  110. - identifier: RRID:SCR_019009
  111. name: DANDI Command Line Interface
  112. schemaKey: Software
  113. url: https://github.com/dandi/dandi-cli
  114. version: 0.61.1
  115. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  116. access:
  117. - schemaKey: AccessRequirements
  118. status: dandi:OpenAccess
  119. approach: []
  120. blobDateModified: '2024-03-27T09:56:31.600945-04:00'
  121. contentSize: 91034941
  122. contentUrl:
  123. - https://api.dandiarchive.org/api/assets/a80527a6-7d54-45b9-b13f-30358d1b51b2/download/
  124. - https://dandiarchive.s3.amazonaws.com/blobs/a01/511/a0151195-58c1-4f62-a9d2-bb1a00ad9c41
  125. dateModified: '2024-04-01T13:12:25.357649-04:00'
  126. digest:
  127. dandi:dandi-etag: 298d98cd3b0bc04291e0b85a64263ce9-2
  128. dandi:sha2-256: 4129284c4e688f8013cf9345bc5b49f9a6d62dfccd301c047bd33e4fa729086f
  129. encodingFormat: application/x-nwb
  130. id: dandiasset:a80527a6-7d54-45b9-b13f-30358d1b51b2
  131. identifier: a80527a6-7d54-45b9-b13f-30358d1b51b2
  132. measurementTechnique: []
  133. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220525.nwb
  134. schemaKey: Asset
  135. schemaVersion: 0.6.7
  136. variableMeasured: []
  137. wasAttributedTo:
  138. - age:
  139. schemaKey: PropertyValue
  140. unitText: ISO-8601 duration
  141. value: P69Y
  142. valueReference:
  143. schemaKey: PropertyValue
  144. value: dandi:BirthReference
  145. identifier: T5_held_in_calib
  146. schemaKey: Participant
  147. sex:
  148. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  149. name: Male
  150. schemaKey: SexType
  151. species:
  152. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  153. name: Homo sapiens - Human
  154. schemaKey: SpeciesType
  155. wasGeneratedBy:
  156. - description: human BCI participant performing attempted handwriting task
  157. name: Acquisition session
  158. schemaKey: Session
  159. startDate: '2022-05-25T00:00:00-05:00'
  160. - description: Metadata generated by DANDI cli
  161. endDate: '2024-04-01T13:12:25.357603-04:00'
  162. id: urn:uuid:5c3ebe1d-a288-4ba8-9edc-65e02cd14390
  163. name: Metadata generation
  164. schemaKey: Activity
  165. startDate: '2024-04-01T13:12:25.236891-04:00'
  166. wasAssociatedWith:
  167. - identifier: RRID:SCR_019009
  168. name: DANDI Command Line Interface
  169. schemaKey: Software
  170. url: https://github.com/dandi/dandi-cli
  171. version: 0.61.1
  172. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  173. access:
  174. - schemaKey: AccessRequirements
  175. status: dandi:OpenAccess
  176. approach: []
  177. blobDateModified: '2024-03-27T09:56:36.182882-04:00'
  178. contentSize: 85840150
  179. contentUrl:
  180. - https://api.dandiarchive.org/api/assets/4c8d7a86-343e-49a9-9400-c6ab9e513891/download/
  181. - https://dandiarchive.s3.amazonaws.com/blobs/672/dfc/672dfc2d-e037-4750-b45b-c3bc1ebb43cc
  182. dateModified: '2024-04-01T13:12:25.370469-04:00'
  183. digest:
  184. dandi:dandi-etag: 76c886f70a39756beb93660d686f21dd-2
  185. dandi:sha2-256: 9ba0539fdb7f0c3a9a0ba97ea83a4933e192f61d2da80802f14365ac7fcce336
  186. encodingFormat: application/x-nwb
  187. id: dandiasset:4c8d7a86-343e-49a9-9400-c6ab9e513891
  188. identifier: 4c8d7a86-343e-49a9-9400-c6ab9e513891
  189. measurementTechnique: []
  190. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220601.nwb
  191. schemaKey: Asset
  192. schemaVersion: 0.6.7
  193. variableMeasured: []
  194. wasAttributedTo:
  195. - age:
  196. schemaKey: PropertyValue
  197. unitText: ISO-8601 duration
  198. value: P69Y
  199. valueReference:
  200. schemaKey: PropertyValue
  201. value: dandi:BirthReference
  202. identifier: T5_held_in_calib
  203. schemaKey: Participant
  204. sex:
  205. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  206. name: Male
  207. schemaKey: SexType
  208. species:
  209. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  210. name: Homo sapiens - Human
  211. schemaKey: SpeciesType
  212. wasGeneratedBy:
  213. - description: human BCI participant performing attempted handwriting task
  214. name: Acquisition session
  215. schemaKey: Session
  216. startDate: '2022-06-01T00:00:00-05:00'
  217. - description: Metadata generated by DANDI cli
  218. endDate: '2024-04-01T13:12:25.370443-04:00'
  219. id: urn:uuid:201f8a95-c2d4-4960-8beb-5e003d14b90f
  220. name: Metadata generation
  221. schemaKey: Activity
  222. startDate: '2024-04-01T13:12:25.160057-04:00'
  223. wasAssociatedWith:
  224. - identifier: RRID:SCR_019009
  225. name: DANDI Command Line Interface
  226. schemaKey: Software
  227. url: https://github.com/dandi/dandi-cli
  228. version: 0.61.1
  229. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  230. access:
  231. - schemaKey: AccessRequirements
  232. status: dandi:OpenAccess
  233. approach: []
  234. blobDateModified: '2024-03-27T09:56:27.013008-04:00'
  235. contentSize: 84807875
  236. contentUrl:
  237. - https://api.dandiarchive.org/api/assets/523d5192-a866-476b-81e9-631b09a62ec3/download/
  238. - https://dandiarchive.s3.amazonaws.com/blobs/0f3/30e/0f330e3c-5229-40f8-a3a9-c4a1119d8c0d
  239. dateModified: '2024-04-01T13:12:25.356378-04:00'
  240. digest:
  241. dandi:dandi-etag: a6ca1a75181451bdab6fc568626aba86-2
  242. dandi:sha2-256: de5846396e51ed369a67f202c28c78691010460d2a6ccf9413bff057c88fa254
  243. encodingFormat: application/x-nwb
  244. id: dandiasset:523d5192-a866-476b-81e9-631b09a62ec3
  245. identifier: 523d5192-a866-476b-81e9-631b09a62ec3
  246. measurementTechnique: []
  247. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220523.nwb
  248. schemaKey: Asset
  249. schemaVersion: 0.6.7
  250. variableMeasured: []
  251. wasAttributedTo:
  252. - age:
  253. schemaKey: PropertyValue
  254. unitText: ISO-8601 duration
  255. value: P69Y
  256. valueReference:
  257. schemaKey: PropertyValue
  258. value: dandi:BirthReference
  259. identifier: T5_held_in_calib
  260. schemaKey: Participant
  261. sex:
  262. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  263. name: Male
  264. schemaKey: SexType
  265. species:
  266. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  267. name: Homo sapiens - Human
  268. schemaKey: SpeciesType
  269. wasGeneratedBy:
  270. - description: human BCI participant performing attempted handwriting task
  271. name: Acquisition session
  272. schemaKey: Session
  273. startDate: '2022-05-23T00:00:00-05:00'
  274. - description: Metadata generated by DANDI cli
  275. endDate: '2024-04-01T13:12:25.356337-04:00'
  276. id: urn:uuid:354fbab0-9c9f-4992-89a5-dd958d013b99
  277. name: Metadata generation
  278. schemaKey: Activity
  279. startDate: '2024-04-01T13:12:25.203028-04:00'
  280. wasAssociatedWith:
  281. - identifier: RRID:SCR_019009
  282. name: DANDI Command Line Interface
  283. schemaKey: Software
  284. url: https://github.com/dandi/dandi-cli
  285. version: 0.61.1
  286. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  287. access:
  288. - schemaKey: AccessRequirements
  289. status: dandi:OpenAccess
  290. approach: []
  291. blobDateModified: '2024-03-27T09:56:49.982692-04:00'
  292. contentSize: 66344109
  293. contentUrl:
  294. - https://api.dandiarchive.org/api/assets/1e20d88b-1935-44cf-8c66-a3930dca9169/download/
  295. - https://dandiarchive.s3.amazonaws.com/blobs/e80/734/e8073431-253d-43a0-b45f-6ef11bc90e81
  296. dateModified: '2024-04-01T13:12:39.142357-04:00'
  297. digest:
  298. dandi:dandi-etag: 4075b9d600fe29aa452ead92a0f6fed8-1
  299. dandi:sha2-256: b8cf69260facc7789ad75a16b8034824ac0824fbb57435568dbcbdb5dc1aa60e
  300. encodingFormat: application/x-nwb
  301. id: dandiasset:1e20d88b-1935-44cf-8c66-a3930dca9169
  302. identifier: 1e20d88b-1935-44cf-8c66-a3930dca9169
  303. measurementTechnique: []
  304. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220608.nwb
  305. schemaKey: Asset
  306. schemaVersion: 0.6.7
  307. variableMeasured: []
  308. wasAttributedTo:
  309. - age:
  310. schemaKey: PropertyValue
  311. unitText: ISO-8601 duration
  312. value: P69Y
  313. valueReference:
  314. schemaKey: PropertyValue
  315. value: dandi:BirthReference
  316. identifier: T5_held_in_calib
  317. schemaKey: Participant
  318. sex:
  319. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  320. name: Male
  321. schemaKey: SexType
  322. species:
  323. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  324. name: Homo sapiens - Human
  325. schemaKey: SpeciesType
  326. wasGeneratedBy:
  327. - description: human BCI participant performing attempted handwriting task
  328. name: Acquisition session
  329. schemaKey: Session
  330. startDate: '2022-06-08T00:00:00-05:00'
  331. - description: Metadata generated by DANDI cli
  332. endDate: '2024-04-01T13:12:39.142263-04:00'
  333. id: urn:uuid:6a84e7a3-4341-4563-9479-626f339a44e9
  334. name: Metadata generation
  335. schemaKey: Activity
  336. startDate: '2024-04-01T13:12:38.819225-04:00'
  337. wasAssociatedWith:
  338. - identifier: RRID:SCR_019009
  339. name: DANDI Command Line Interface
  340. schemaKey: Software
  341. url: https://github.com/dandi/dandi-cli
  342. version: 0.61.1
  343. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  344. access:
  345. - schemaKey: AccessRequirements
  346. status: dandi:OpenAccess
  347. approach: []
  348. blobDateModified: '2024-03-27T09:56:45.491754-04:00'
  349. contentSize: 105989592
  350. contentUrl:
  351. - https://api.dandiarchive.org/api/assets/bbeebfd6-15bc-4f01-8b31-32ce0f3bfd8a/download/
  352. - https://dandiarchive.s3.amazonaws.com/blobs/780/6a6/7806a6a6-6bf4-43cb-b881-14f2da36fb94
  353. dateModified: '2024-04-01T13:12:40.588108-04:00'
  354. digest:
  355. dandi:dandi-etag: 88adba841febcf188c3d7093d2f5ed02-2
  356. dandi:sha2-256: 591676e3a0eee3ea18e700fd895f1ba01b7edf16f59af1e945adf9873406c80b
  357. encodingFormat: application/x-nwb
  358. id: dandiasset:bbeebfd6-15bc-4f01-8b31-32ce0f3bfd8a
  359. identifier: bbeebfd6-15bc-4f01-8b31-32ce0f3bfd8a
  360. measurementTechnique: []
  361. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220606.nwb
  362. schemaKey: Asset
  363. schemaVersion: 0.6.7
  364. variableMeasured: []
  365. wasAttributedTo:
  366. - age:
  367. schemaKey: PropertyValue
  368. unitText: ISO-8601 duration
  369. value: P69Y
  370. valueReference:
  371. schemaKey: PropertyValue
  372. value: dandi:BirthReference
  373. identifier: T5_held_in_calib
  374. schemaKey: Participant
  375. sex:
  376. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  377. name: Male
  378. schemaKey: SexType
  379. species:
  380. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  381. name: Homo sapiens - Human
  382. schemaKey: SpeciesType
  383. wasGeneratedBy:
  384. - description: human BCI participant performing attempted handwriting task
  385. name: Acquisition session
  386. schemaKey: Session
  387. startDate: '2022-06-06T00:00:00-05:00'
  388. - description: Metadata generated by DANDI cli
  389. endDate: '2024-04-01T13:12:40.588072-04:00'
  390. id: urn:uuid:c6fbe5c2-4d70-4be9-a66f-8661795aaa95
  391. name: Metadata generation
  392. schemaKey: Activity
  393. startDate: '2024-04-01T13:12:40.330896-04:00'
  394. wasAssociatedWith:
  395. - identifier: RRID:SCR_019009
  396. name: DANDI Command Line Interface
  397. schemaKey: Software
  398. url: https://github.com/dandi/dandi-cli
  399. version: 0.61.1
  400. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  401. access:
  402. - schemaKey: AccessRequirements
  403. status: dandi:OpenAccess
  404. approach: []
  405. blobDateModified: '2024-03-27T09:56:59.145566-04:00'
  406. contentSize: 65648065
  407. contentUrl:
  408. - https://api.dandiarchive.org/api/assets/730a333c-a701-4eb2-80e2-d37fcc778650/download/
  409. - https://dandiarchive.s3.amazonaws.com/blobs/378/118/3781181a-98f3-46f0-b958-58b14ddfea3b
  410. dateModified: '2024-04-01T13:12:45.347093-04:00'
  411. digest:
  412. dandi:dandi-etag: c640249b1c5a8aa6dea6dc60a186ccdb-1
  413. dandi:sha2-256: 5a88c6b12ea5e39453d46dde42d1b1ad746c4f477e6b8425ca941c07fa5afb84
  414. encodingFormat: application/x-nwb
  415. id: dandiasset:730a333c-a701-4eb2-80e2-d37fcc778650
  416. identifier: 730a333c-a701-4eb2-80e2-d37fcc778650
  417. measurementTechnique: []
  418. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220615.nwb
  419. schemaKey: Asset
  420. schemaVersion: 0.6.7
  421. variableMeasured: []
  422. wasAttributedTo:
  423. - age:
  424. schemaKey: PropertyValue
  425. unitText: ISO-8601 duration
  426. value: P69Y
  427. valueReference:
  428. schemaKey: PropertyValue
  429. value: dandi:BirthReference
  430. identifier: T5_held_in_calib
  431. schemaKey: Participant
  432. sex:
  433. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  434. name: Male
  435. schemaKey: SexType
  436. species:
  437. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  438. name: Homo sapiens - Human
  439. schemaKey: SpeciesType
  440. wasGeneratedBy:
  441. - description: human BCI participant performing attempted handwriting task
  442. name: Acquisition session
  443. schemaKey: Session
  444. startDate: '2022-06-15T00:00:00-05:00'
  445. - description: Metadata generated by DANDI cli
  446. endDate: '2024-04-01T13:12:45.347013-04:00'
  447. id: urn:uuid:31c40b3d-c3a0-4634-9308-f5d204ae1ac1
  448. name: Metadata generation
  449. schemaKey: Activity
  450. startDate: '2024-04-01T13:12:45.031041-04:00'
  451. wasAssociatedWith:
  452. - identifier: RRID:SCR_019009
  453. name: DANDI Command Line Interface
  454. schemaKey: Software
  455. url: https://github.com/dandi/dandi-cli
  456. version: 0.61.1
  457. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  458. access:
  459. - schemaKey: AccessRequirements
  460. status: dandi:OpenAccess
  461. approach: []
  462. blobDateModified: '2024-03-27T09:56:54.506630-04:00'
  463. contentSize: 84965145
  464. contentUrl:
  465. - https://api.dandiarchive.org/api/assets/c9a4dd65-bf73-4ea2-b87c-337f676fb47c/download/
  466. - https://dandiarchive.s3.amazonaws.com/blobs/3c9/278/3c9278f6-cf24-44d0-b3dc-a9d7d2e370cf
  467. dateModified: '2024-04-01T13:12:46.711150-04:00'
  468. digest:
  469. dandi:dandi-etag: 7355c89a579d590f4102eddb5d4349db-2
  470. dandi:sha2-256: be2931d49d1ac17bd9ad226405b4fbddf47f1162c2830954b0ca171d6b6c81e5
  471. encodingFormat: application/x-nwb
  472. id: dandiasset:c9a4dd65-bf73-4ea2-b87c-337f676fb47c
  473. identifier: c9a4dd65-bf73-4ea2-b87c-337f676fb47c
  474. measurementTechnique: []
  475. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220613.nwb
  476. schemaKey: Asset
  477. schemaVersion: 0.6.7
  478. variableMeasured: []
  479. wasAttributedTo:
  480. - age:
  481. schemaKey: PropertyValue
  482. unitText: ISO-8601 duration
  483. value: P69Y
  484. valueReference:
  485. schemaKey: PropertyValue
  486. value: dandi:BirthReference
  487. identifier: T5_held_in_calib
  488. schemaKey: Participant
  489. sex:
  490. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  491. name: Male
  492. schemaKey: SexType
  493. species:
  494. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  495. name: Homo sapiens - Human
  496. schemaKey: SpeciesType
  497. wasGeneratedBy:
  498. - description: human BCI participant performing attempted handwriting task
  499. name: Acquisition session
  500. schemaKey: Session
  501. startDate: '2022-06-13T00:00:00-05:00'
  502. - description: Metadata generated by DANDI cli
  503. endDate: '2024-04-01T13:12:46.711098-04:00'
  504. id: urn:uuid:355fb6c5-7ef3-438f-9978-07cbc25a26ee
  505. name: Metadata generation
  506. schemaKey: Activity
  507. startDate: '2024-04-01T13:12:46.549023-04:00'
  508. wasAssociatedWith:
  509. - identifier: RRID:SCR_019009
  510. name: DANDI Command Line Interface
  511. schemaKey: Software
  512. url: https://github.com/dandi/dandi-cli
  513. version: 0.61.1
  514. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  515. access:
  516. - schemaKey: AccessRequirements
  517. status: dandi:OpenAccess
  518. approach: []
  519. blobDateModified: '2024-03-27T09:57:08.043444-04:00'
  520. contentSize: 43713344
  521. contentUrl:
  522. - https://api.dandiarchive.org/api/assets/6dfe726f-92db-4cfb-b614-00ab1de60adc/download/
  523. - https://dandiarchive.s3.amazonaws.com/blobs/054/61b/05461b78-4e5b-4640-9bf9-54074318645a
  524. dateModified: '2024-04-01T13:12:48.641115-04:00'
  525. digest:
  526. dandi:dandi-etag: 2cc052d0aa18066de353e916dc4c89ae-1
  527. dandi:sha2-256: cf6e150a3e641af00f4054467b1b02f17e35bc999cf5c5d403f645ee11c8ba42
  528. encodingFormat: application/x-nwb
  529. id: dandiasset:6dfe726f-92db-4cfb-b614-00ab1de60adc
  530. identifier: 6dfe726f-92db-4cfb-b614-00ab1de60adc
  531. measurementTechnique: []
  532. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220901.nwb
  533. schemaKey: Asset
  534. schemaVersion: 0.6.7
  535. variableMeasured: []
  536. wasAttributedTo:
  537. - age:
  538. schemaKey: PropertyValue
  539. unitText: ISO-8601 duration
  540. value: P69Y
  541. valueReference:
  542. schemaKey: PropertyValue
  543. value: dandi:BirthReference
  544. identifier: T5_held_in_calib
  545. schemaKey: Participant
  546. sex:
  547. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  548. name: Male
  549. schemaKey: SexType
  550. species:
  551. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  552. name: Homo sapiens - Human
  553. schemaKey: SpeciesType
  554. wasGeneratedBy:
  555. - description: human BCI participant performing attempted handwriting task
  556. name: Acquisition session
  557. schemaKey: Session
  558. startDate: '2022-09-01T00:00:00-05:00'
  559. - description: Metadata generated by DANDI cli
  560. endDate: '2024-04-01T13:12:48.641074-04:00'
  561. id: urn:uuid:56bea9e1-055b-4f1e-987e-d216b32556cb
  562. name: Metadata generation
  563. schemaKey: Activity
  564. startDate: '2024-04-01T13:12:48.462682-04:00'
  565. wasAssociatedWith:
  566. - identifier: RRID:SCR_019009
  567. name: DANDI Command Line Interface
  568. schemaKey: Software
  569. url: https://github.com/dandi/dandi-cli
  570. version: 0.61.1
  571. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  572. access:
  573. - schemaKey: AccessRequirements
  574. status: dandi:OpenAccess
  575. approach: []
  576. blobDateModified: '2024-03-27T09:55:18.806946-04:00'
  577. contentSize: 39452476
  578. contentUrl:
  579. - https://api.dandiarchive.org/api/assets/93172c10-dc88-4b6f-9301-222d869fdbc1/download/
  580. - https://dandiarchive.s3.amazonaws.com/blobs/aa2/816/aa281666-1ebe-4074-8afc-ffb0174a3a6d
  581. dateModified: '2024-04-01T13:12:49.124585-04:00'
  582. digest:
  583. dandi:dandi-etag: dad6a46963bbc931bcaececac4d55def-1
  584. dandi:sha2-256: 5ecc24bbccfbaccf2212ca7521b1ada0bb9c1605b5fddeb335dfe973ce153665
  585. encodingFormat: application/x-nwb
  586. id: dandiasset:93172c10-dc88-4b6f-9301-222d869fdbc1
  587. identifier: 93172c10-dc88-4b6f-9301-222d869fdbc1
  588. measurementTechnique: []
  589. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220929.nwb
  590. schemaKey: Asset
  591. schemaVersion: 0.6.7
  592. variableMeasured: []
  593. wasAttributedTo:
  594. - age:
  595. schemaKey: PropertyValue
  596. unitText: ISO-8601 duration
  597. value: P69Y
  598. valueReference:
  599. schemaKey: PropertyValue
  600. value: dandi:BirthReference
  601. identifier: T5_held_in_calib
  602. schemaKey: Participant
  603. sex:
  604. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  605. name: Male
  606. schemaKey: SexType
  607. species:
  608. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  609. name: Homo sapiens - Human
  610. schemaKey: SpeciesType
  611. wasGeneratedBy:
  612. - description: human BCI participant performing attempted handwriting task
  613. name: Acquisition session
  614. schemaKey: Session
  615. startDate: '2022-09-29T00:00:00-05:00'
  616. - description: Metadata generated by DANDI cli
  617. endDate: '2024-04-01T13:12:49.124539-04:00'
  618. id: urn:uuid:9373ec61-b288-41af-8509-3f560d26acbd
  619. name: Metadata generation
  620. schemaKey: Activity
  621. startDate: '2024-04-01T13:12:48.896681-04:00'
  622. wasAssociatedWith:
  623. - identifier: RRID:SCR_019009
  624. name: DANDI Command Line Interface
  625. schemaKey: Software
  626. url: https://github.com/dandi/dandi-cli
  627. version: 0.61.1
  628. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  629. access:
  630. - schemaKey: AccessRequirements
  631. status: dandi:OpenAccess
  632. approach: []
  633. blobDateModified: '2024-03-27T09:57:03.684504-04:00'
  634. contentSize: 73296905
  635. contentUrl:
  636. - https://api.dandiarchive.org/api/assets/258f4eb7-5502-47dd-b315-ba688edac762/download/
  637. - https://dandiarchive.s3.amazonaws.com/blobs/403/be4/403be4a7-2464-439a-939f-820ed5944365
  638. dateModified: '2024-04-01T13:12:45.880501-04:00'
  639. digest:
  640. dandi:dandi-etag: f116da624a03a38dd90d4aeea94b8400-2
  641. dandi:sha2-256: 1ac337f1faeb9790f6baa0f236cb533f1576c612577cfd6c8b2bbfbc5c816ee7
  642. encodingFormat: application/x-nwb
  643. id: dandiasset:258f4eb7-5502-47dd-b315-ba688edac762
  644. identifier: 258f4eb7-5502-47dd-b315-ba688edac762
  645. measurementTechnique: []
  646. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20220622.nwb
  647. schemaKey: Asset
  648. schemaVersion: 0.6.7
  649. variableMeasured: []
  650. wasAttributedTo:
  651. - age:
  652. schemaKey: PropertyValue
  653. unitText: ISO-8601 duration
  654. value: P69Y
  655. valueReference:
  656. schemaKey: PropertyValue
  657. value: dandi:BirthReference
  658. identifier: T5_held_in_calib
  659. schemaKey: Participant
  660. sex:
  661. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  662. name: Male
  663. schemaKey: SexType
  664. species:
  665. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  666. name: Homo sapiens - Human
  667. schemaKey: SpeciesType
  668. wasGeneratedBy:
  669. - description: human BCI participant performing attempted handwriting task
  670. name: Acquisition session
  671. schemaKey: Session
  672. startDate: '2022-06-22T00:00:00-05:00'
  673. - description: Metadata generated by DANDI cli
  674. endDate: '2024-04-01T13:12:45.880473-04:00'
  675. id: urn:uuid:6a46c85d-76b0-4b07-93f7-99a65b91dc9b
  676. name: Metadata generation
  677. schemaKey: Activity
  678. startDate: '2024-04-01T13:12:45.625518-04:00'
  679. wasAssociatedWith:
  680. - identifier: RRID:SCR_019009
  681. name: DANDI Command Line Interface
  682. schemaKey: Software
  683. url: https://github.com/dandi/dandi-cli
  684. version: 0.61.1
  685. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  686. access:
  687. - schemaKey: AccessRequirements
  688. status: dandi:OpenAccess
  689. approach: []
  690. blobDateModified: '2024-03-27T09:55:23.293884-04:00'
  691. contentSize: 38858231
  692. contentUrl:
  693. - https://api.dandiarchive.org/api/assets/356e722a-c96c-4fdf-9e51-7c7613d31e3d/download/
  694. - https://dandiarchive.s3.amazonaws.com/blobs/1e4/0cf/1e40cf43-d1bf-47f2-9727-86f847467635
  695. dateModified: '2024-04-01T13:12:55.302137-04:00'
  696. digest:
  697. dandi:dandi-etag: 3783fd27b8eebf56591657ac3073e388-1
  698. dandi:sha2-256: fdf164808426e41771acff9830fb3c298c05c40e5e3425a5226bb8397eefd620
  699. encodingFormat: application/x-nwb
  700. id: dandiasset:356e722a-c96c-4fdf-9e51-7c7613d31e3d
  701. identifier: 356e722a-c96c-4fdf-9e51-7c7613d31e3d
  702. measurementTechnique: []
  703. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221006.nwb
  704. schemaKey: Asset
  705. schemaVersion: 0.6.7
  706. variableMeasured: []
  707. wasAttributedTo:
  708. - age:
  709. schemaKey: PropertyValue
  710. unitText: ISO-8601 duration
  711. value: P69Y
  712. valueReference:
  713. schemaKey: PropertyValue
  714. value: dandi:BirthReference
  715. identifier: T5_held_in_calib
  716. schemaKey: Participant
  717. sex:
  718. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  719. name: Male
  720. schemaKey: SexType
  721. species:
  722. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  723. name: Homo sapiens - Human
  724. schemaKey: SpeciesType
  725. wasGeneratedBy:
  726. - description: human BCI participant performing attempted handwriting task
  727. name: Acquisition session
  728. schemaKey: Session
  729. startDate: '2022-10-06T00:00:00-05:00'
  730. - description: Metadata generated by DANDI cli
  731. endDate: '2024-04-01T13:12:55.302088-04:00'
  732. id: urn:uuid:ac818078-c492-4e84-ab62-7e347fd3872f
  733. name: Metadata generation
  734. schemaKey: Activity
  735. startDate: '2024-04-01T13:12:55.043946-04:00'
  736. wasAssociatedWith:
  737. - identifier: RRID:SCR_019009
  738. name: DANDI Command Line Interface
  739. schemaKey: Software
  740. url: https://github.com/dandi/dandi-cli
  741. version: 0.61.1
  742. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  743. access:
  744. - schemaKey: AccessRequirements
  745. status: dandi:OpenAccess
  746. approach: []
  747. blobDateModified: '2024-03-27T09:55:27.671824-04:00'
  748. contentSize: 32711681
  749. contentUrl:
  750. - https://api.dandiarchive.org/api/assets/52336501-32ad-4fd4-903f-1a70e05425ab/download/
  751. - https://dandiarchive.s3.amazonaws.com/blobs/1b4/528/1b45281c-bb8d-4c03-81d1-e1951d28f662
  752. dateModified: '2024-04-01T13:12:55.347003-04:00'
  753. digest:
  754. dandi:dandi-etag: f1ee8dd7ad8c5b9edf3215158a281aeb-1
  755. dandi:sha2-256: d22def1f0b30ca6dd68b31ed1d3efe22e7e66ca28d35c5051419ed3ce521b02e
  756. encodingFormat: application/x-nwb
  757. id: dandiasset:52336501-32ad-4fd4-903f-1a70e05425ab
  758. identifier: 52336501-32ad-4fd4-903f-1a70e05425ab
  759. measurementTechnique: []
  760. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221018.nwb
  761. schemaKey: Asset
  762. schemaVersion: 0.6.7
  763. variableMeasured: []
  764. wasAttributedTo:
  765. - age:
  766. schemaKey: PropertyValue
  767. unitText: ISO-8601 duration
  768. value: P69Y
  769. valueReference:
  770. schemaKey: PropertyValue
  771. value: dandi:BirthReference
  772. identifier: T5_held_in_calib
  773. schemaKey: Participant
  774. sex:
  775. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  776. name: Male
  777. schemaKey: SexType
  778. species:
  779. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  780. name: Homo sapiens - Human
  781. schemaKey: SpeciesType
  782. wasGeneratedBy:
  783. - description: human BCI participant performing attempted handwriting task
  784. name: Acquisition session
  785. schemaKey: Session
  786. startDate: '2022-10-18T00:00:00-05:00'
  787. - description: Metadata generated by DANDI cli
  788. endDate: '2024-04-01T13:12:55.346975-04:00'
  789. id: urn:uuid:15dc180f-71b1-4c2d-9ab6-b3345c15f203
  790. name: Metadata generation
  791. schemaKey: Activity
  792. startDate: '2024-04-01T13:12:54.929860-04:00'
  793. wasAssociatedWith:
  794. - identifier: RRID:SCR_019009
  795. name: DANDI Command Line Interface
  796. schemaKey: Software
  797. url: https://github.com/dandi/dandi-cli
  798. version: 0.61.1
  799. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  800. access:
  801. - schemaKey: AccessRequirements
  802. status: dandi:OpenAccess
  803. approach: []
  804. blobDateModified: '2024-03-27T09:55:32.003764-04:00'
  805. contentSize: 29314201
  806. contentUrl:
  807. - https://api.dandiarchive.org/api/assets/37fd7ff0-5b00-49d5-a57d-744d9f0d21f2/download/
  808. - https://dandiarchive.s3.amazonaws.com/blobs/42c/022/42c02289-cb3b-4863-b8c1-c8b5204bf54d
  809. dateModified: '2024-04-01T13:12:59.609774-04:00'
  810. digest:
  811. dandi:dandi-etag: 2628ffe3977efc223a3001306a0855c8-1
  812. dandi:sha2-256: 945943015c1ec50ccd10c0960565470d6e2090c335b4c1cd348b63a7bad248f6
  813. encodingFormat: application/x-nwb
  814. id: dandiasset:37fd7ff0-5b00-49d5-a57d-744d9f0d21f2
  815. identifier: 37fd7ff0-5b00-49d5-a57d-744d9f0d21f2
  816. measurementTechnique: []
  817. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221025.nwb
  818. schemaKey: Asset
  819. schemaVersion: 0.6.7
  820. variableMeasured: []
  821. wasAttributedTo:
  822. - age:
  823. schemaKey: PropertyValue
  824. unitText: ISO-8601 duration
  825. value: P69Y
  826. valueReference:
  827. schemaKey: PropertyValue
  828. value: dandi:BirthReference
  829. identifier: T5_held_in_calib
  830. schemaKey: Participant
  831. sex:
  832. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  833. name: Male
  834. schemaKey: SexType
  835. species:
  836. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  837. name: Homo sapiens - Human
  838. schemaKey: SpeciesType
  839. wasGeneratedBy:
  840. - description: human BCI participant performing attempted handwriting task
  841. name: Acquisition session
  842. schemaKey: Session
  843. startDate: '2022-10-25T00:00:00-05:00'
  844. - description: Metadata generated by DANDI cli
  845. endDate: '2024-04-01T13:12:59.609735-04:00'
  846. id: urn:uuid:03fbc2f4-a2f0-4335-b639-2c317c3264b0
  847. name: Metadata generation
  848. schemaKey: Activity
  849. startDate: '2024-04-01T13:12:59.408136-04:00'
  850. wasAssociatedWith:
  851. - identifier: RRID:SCR_019009
  852. name: DANDI Command Line Interface
  853. schemaKey: Software
  854. url: https://github.com/dandi/dandi-cli
  855. version: 0.61.1
  856. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  857. access:
  858. - schemaKey: AccessRequirements
  859. status: dandi:OpenAccess
  860. approach: []
  861. blobDateModified: '2024-03-27T09:55:36.127707-04:00'
  862. contentSize: 29486116
  863. contentUrl:
  864. - https://api.dandiarchive.org/api/assets/6dfe1925-0f81-47c3-ab86-f55f39289b3f/download/
  865. - https://dandiarchive.s3.amazonaws.com/blobs/657/bc8/657bc8e9-8013-4679-ae89-d4613602fb4e
  866. dateModified: '2024-04-01T13:13:00.508183-04:00'
  867. digest:
  868. dandi:dandi-etag: d2dcbbfd167b819450ade04fe9d1ac41-1
  869. dandi:sha2-256: 2c9bc0f8cc293f8784e8fff3e02be1c1e9e4052822554303ba0bdc830e02910a
  870. encodingFormat: application/x-nwb
  871. id: dandiasset:6dfe1925-0f81-47c3-ab86-f55f39289b3f
  872. identifier: 6dfe1925-0f81-47c3-ab86-f55f39289b3f
  873. measurementTechnique: []
  874. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221027.nwb
  875. schemaKey: Asset
  876. schemaVersion: 0.6.7
  877. variableMeasured: []
  878. wasAttributedTo:
  879. - age:
  880. schemaKey: PropertyValue
  881. unitText: ISO-8601 duration
  882. value: P69Y
  883. valueReference:
  884. schemaKey: PropertyValue
  885. value: dandi:BirthReference
  886. identifier: T5_held_in_calib
  887. schemaKey: Participant
  888. sex:
  889. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  890. name: Male
  891. schemaKey: SexType
  892. species:
  893. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  894. name: Homo sapiens - Human
  895. schemaKey: SpeciesType
  896. wasGeneratedBy:
  897. - description: human BCI participant performing attempted handwriting task
  898. name: Acquisition session
  899. schemaKey: Session
  900. startDate: '2022-10-27T00:00:00-05:00'
  901. - description: Metadata generated by DANDI cli
  902. endDate: '2024-04-01T13:13:00.508160-04:00'
  903. id: urn:uuid:93ec5e35-88c9-4095-a646-3a7b2ca164c4
  904. name: Metadata generation
  905. schemaKey: Activity
  906. startDate: '2024-04-01T13:13:00.246428-04:00'
  907. wasAssociatedWith:
  908. - identifier: RRID:SCR_019009
  909. name: DANDI Command Line Interface
  910. schemaKey: Software
  911. url: https://github.com/dandi/dandi-cli
  912. version: 0.61.1
  913. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  914. access:
  915. - schemaKey: AccessRequirements
  916. status: dandi:OpenAccess
  917. approach: []
  918. blobDateModified: '2024-03-27T09:55:40.296650-04:00'
  919. contentSize: 31772036
  920. contentUrl:
  921. - https://api.dandiarchive.org/api/assets/50158689-23a5-4767-bbac-fa5aa9c60d03/download/
  922. - https://dandiarchive.s3.amazonaws.com/blobs/99a/767/99a7670d-53ed-4fde-90a6-1f495e3157bd
  923. dateModified: '2024-04-01T13:13:00.754885-04:00'
  924. digest:
  925. dandi:dandi-etag: 154eab3ba395aac861afbc32c16b5874-1
  926. dandi:sha2-256: 365154fe9e000186c857e4e592b05db1c7cff082e1b5dd487e8ada92a0e86107
  927. encodingFormat: application/x-nwb
  928. id: dandiasset:50158689-23a5-4767-bbac-fa5aa9c60d03
  929. identifier: 50158689-23a5-4767-bbac-fa5aa9c60d03
  930. measurementTechnique: []
  931. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221101.nwb
  932. schemaKey: Asset
  933. schemaVersion: 0.6.7
  934. variableMeasured: []
  935. wasAttributedTo:
  936. - age:
  937. schemaKey: PropertyValue
  938. unitText: ISO-8601 duration
  939. value: P69Y
  940. valueReference:
  941. schemaKey: PropertyValue
  942. value: dandi:BirthReference
  943. identifier: T5_held_in_calib
  944. schemaKey: Participant
  945. sex:
  946. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  947. name: Male
  948. schemaKey: SexType
  949. species:
  950. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  951. name: Homo sapiens - Human
  952. schemaKey: SpeciesType
  953. wasGeneratedBy:
  954. - description: human BCI participant performing attempted handwriting task
  955. name: Acquisition session
  956. schemaKey: Session
  957. startDate: '2022-11-01T00:00:00-05:00'
  958. - description: Metadata generated by DANDI cli
  959. endDate: '2024-04-01T13:13:00.754855-04:00'
  960. id: urn:uuid:77f4ba80-dcb6-4365-8b25-e54c5abdef5b
  961. name: Metadata generation
  962. schemaKey: Activity
  963. startDate: '2024-04-01T13:13:00.483229-04:00'
  964. wasAssociatedWith:
  965. - identifier: RRID:SCR_019009
  966. name: DANDI Command Line Interface
  967. schemaKey: Software
  968. url: https://github.com/dandi/dandi-cli
  969. version: 0.61.1
  970. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  971. access:
  972. - schemaKey: AccessRequirements
  973. status: dandi:OpenAccess
  974. approach: []
  975. blobDateModified: '2024-03-27T09:55:48.867532-04:00'
  976. contentSize: 36141346
  977. contentUrl:
  978. - https://api.dandiarchive.org/api/assets/3144248f-a543-4ef5-877b-c30eed8e38ea/download/
  979. - https://dandiarchive.s3.amazonaws.com/blobs/447/8eb/4478eb88-608a-4e3e-ad3b-c39839fcc039
  980. dateModified: '2024-04-01T13:13:05.665054-04:00'
  981. digest:
  982. dandi:dandi-etag: 31d32d158c99edc91c4dc226bf40065a-1
  983. dandi:sha2-256: fa1dfc8dd869ad5a75df5d79105d5dadc3268afd22bc2fb30c143544a3f259ec
  984. encodingFormat: application/x-nwb
  985. id: dandiasset:3144248f-a543-4ef5-877b-c30eed8e38ea
  986. identifier: 3144248f-a543-4ef5-877b-c30eed8e38ea
  987. measurementTechnique: []
  988. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221208.nwb
  989. schemaKey: Asset
  990. schemaVersion: 0.6.7
  991. variableMeasured: []
  992. wasAttributedTo:
  993. - age:
  994. schemaKey: PropertyValue
  995. unitText: ISO-8601 duration
  996. value: P69Y
  997. valueReference:
  998. schemaKey: PropertyValue
  999. value: dandi:BirthReference
  1000. identifier: T5_held_in_calib
  1001. schemaKey: Participant
  1002. sex:
  1003. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1004. name: Male
  1005. schemaKey: SexType
  1006. species:
  1007. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1008. name: Homo sapiens - Human
  1009. schemaKey: SpeciesType
  1010. wasGeneratedBy:
  1011. - description: human BCI participant performing attempted handwriting task
  1012. name: Acquisition session
  1013. schemaKey: Session
  1014. startDate: '2022-12-08T00:00:00-06:00'
  1015. - description: Metadata generated by DANDI cli
  1016. endDate: '2024-04-01T13:13:05.665033-04:00'
  1017. id: urn:uuid:c77d7ee1-44e0-436a-a297-2135be972632
  1018. name: Metadata generation
  1019. schemaKey: Activity
  1020. startDate: '2024-04-01T13:13:05.473374-04:00'
  1021. wasAssociatedWith:
  1022. - identifier: RRID:SCR_019009
  1023. name: DANDI Command Line Interface
  1024. schemaKey: Software
  1025. url: https://github.com/dandi/dandi-cli
  1026. version: 0.61.1
  1027. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1028. access:
  1029. - schemaKey: AccessRequirements
  1030. status: dandi:OpenAccess
  1031. approach: []
  1032. blobDateModified: '2024-03-27T09:55:52.965476-04:00'
  1033. contentSize: 17448705
  1034. contentUrl:
  1035. - https://api.dandiarchive.org/api/assets/98778751-0b42-41f0-b82a-42ed48f7795d/download/
  1036. - https://dandiarchive.s3.amazonaws.com/blobs/c5f/fb3/c5ffb3b1-27ad-4aa7-930e-ae8ab81efab1
  1037. dateModified: '2024-04-01T13:13:05.665600-04:00'
  1038. digest:
  1039. dandi:dandi-etag: 86e7aadb42056ac801195a55e699870f-1
  1040. dandi:sha2-256: 24d0507c1fcd9451d502a6a883f80ed9be66834029e5e485b3921f2d40f39323
  1041. encodingFormat: application/x-nwb
  1042. id: dandiasset:98778751-0b42-41f0-b82a-42ed48f7795d
  1043. identifier: 98778751-0b42-41f0-b82a-42ed48f7795d
  1044. measurementTechnique: []
  1045. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221215.nwb
  1046. schemaKey: Asset
  1047. schemaVersion: 0.6.7
  1048. variableMeasured: []
  1049. wasAttributedTo:
  1050. - age:
  1051. schemaKey: PropertyValue
  1052. unitText: ISO-8601 duration
  1053. value: P69Y
  1054. valueReference:
  1055. schemaKey: PropertyValue
  1056. value: dandi:BirthReference
  1057. identifier: T5_held_in_calib
  1058. schemaKey: Participant
  1059. sex:
  1060. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1061. name: Male
  1062. schemaKey: SexType
  1063. species:
  1064. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1065. name: Homo sapiens - Human
  1066. schemaKey: SpeciesType
  1067. wasGeneratedBy:
  1068. - description: human BCI participant performing attempted handwriting task
  1069. name: Acquisition session
  1070. schemaKey: Session
  1071. startDate: '2022-12-15T00:00:00-06:00'
  1072. - description: Metadata generated by DANDI cli
  1073. endDate: '2024-04-01T13:13:05.665578-04:00'
  1074. id: urn:uuid:73e06b5e-38c7-455c-bbc2-2cc82301db8d
  1075. name: Metadata generation
  1076. schemaKey: Activity
  1077. startDate: '2024-04-01T13:13:05.414327-04:00'
  1078. wasAssociatedWith:
  1079. - identifier: RRID:SCR_019009
  1080. name: DANDI Command Line Interface
  1081. schemaKey: Software
  1082. url: https://github.com/dandi/dandi-cli
  1083. version: 0.61.1
  1084. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1085. access:
  1086. - schemaKey: AccessRequirements
  1087. status: dandi:OpenAccess
  1088. approach: []
  1089. blobDateModified: '2024-03-27T09:56:23.804052-04:00'
  1090. contentSize: 4296815
  1091. contentUrl:
  1092. - https://api.dandiarchive.org/api/assets/36fdb0cb-86aa-4181-b258-3262178fdfb4/download/
  1093. - https://dandiarchive.s3.amazonaws.com/blobs/fc8/598/fc85987c-73a5-4b99-9a78-be89848eea12
  1094. dateModified: '2024-04-01T13:13:08.495174-04:00'
  1095. digest:
  1096. dandi:dandi-etag: d3d34cf61b15a27d7c698cc43b8dd965-1
  1097. dandi:sha2-256: d0f7b60e60c7d35432e85e2c726d103ad595418adeff8487c778c3e45359edba
  1098. encodingFormat: application/x-nwb
  1099. id: dandiasset:36fdb0cb-86aa-4181-b258-3262178fdfb4
  1100. identifier: 36fdb0cb-86aa-4181-b258-3262178fdfb4
  1101. measurementTechnique: []
  1102. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220518.nwb
  1103. schemaKey: Asset
  1104. schemaVersion: 0.6.7
  1105. variableMeasured: []
  1106. wasAttributedTo:
  1107. - age:
  1108. schemaKey: PropertyValue
  1109. unitText: ISO-8601 duration
  1110. value: P69Y
  1111. valueReference:
  1112. schemaKey: PropertyValue
  1113. value: dandi:BirthReference
  1114. identifier: T5_held_in_minival
  1115. schemaKey: Participant
  1116. sex:
  1117. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1118. name: Male
  1119. schemaKey: SexType
  1120. species:
  1121. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1122. name: Homo sapiens - Human
  1123. schemaKey: SpeciesType
  1124. wasGeneratedBy:
  1125. - description: human BCI participant performing attempted handwriting task
  1126. name: Acquisition session
  1127. schemaKey: Session
  1128. startDate: '2022-05-18T00:00:00-05:00'
  1129. - description: Metadata generated by DANDI cli
  1130. endDate: '2024-04-01T13:13:08.495144-04:00'
  1131. id: urn:uuid:1bd25c3e-d937-41f3-adfe-6c72a3c3b58a
  1132. name: Metadata generation
  1133. schemaKey: Activity
  1134. startDate: '2024-04-01T13:13:08.333195-04:00'
  1135. wasAssociatedWith:
  1136. - identifier: RRID:SCR_019009
  1137. name: DANDI Command Line Interface
  1138. schemaKey: Software
  1139. url: https://github.com/dandi/dandi-cli
  1140. version: 0.61.1
  1141. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1142. access:
  1143. - schemaKey: AccessRequirements
  1144. status: dandi:OpenAccess
  1145. approach: []
  1146. blobDateModified: '2024-03-27T09:55:57.273417-04:00'
  1147. contentSize: 34683601
  1148. contentUrl:
  1149. - https://api.dandiarchive.org/api/assets/09a76d0f-7396-4b1a-b1f6-fa64d145df0a/download/
  1150. - https://dandiarchive.s3.amazonaws.com/blobs/241/e8a/241e8a33-f5a1-448c-b15d-b22683e15e63
  1151. dateModified: '2024-04-01T13:13:09.287227-04:00'
  1152. digest:
  1153. dandi:dandi-etag: d41dbb46e1b1c21e3f1f36dab1491d5a-1
  1154. dandi:sha2-256: 9e66432c8e9b26dc2ae5d43e329b6ffff0296a8bb243699da16fb23df6c367f7
  1155. encodingFormat: application/x-nwb
  1156. id: dandiasset:09a76d0f-7396-4b1a-b1f6-fa64d145df0a
  1157. identifier: 09a76d0f-7396-4b1a-b1f6-fa64d145df0a
  1158. measurementTechnique: []
  1159. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20230228.nwb
  1160. schemaKey: Asset
  1161. schemaVersion: 0.6.7
  1162. variableMeasured: []
  1163. wasAttributedTo:
  1164. - age:
  1165. schemaKey: PropertyValue
  1166. unitText: ISO-8601 duration
  1167. value: P69Y
  1168. valueReference:
  1169. schemaKey: PropertyValue
  1170. value: dandi:BirthReference
  1171. identifier: T5_held_in_calib
  1172. schemaKey: Participant
  1173. sex:
  1174. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1175. name: Male
  1176. schemaKey: SexType
  1177. species:
  1178. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1179. name: Homo sapiens - Human
  1180. schemaKey: SpeciesType
  1181. wasGeneratedBy:
  1182. - description: human BCI participant performing attempted handwriting task
  1183. name: Acquisition session
  1184. schemaKey: Session
  1185. startDate: '2023-02-28T00:00:00-06:00'
  1186. - description: Metadata generated by DANDI cli
  1187. endDate: '2024-04-01T13:13:09.287181-04:00'
  1188. id: urn:uuid:ff4d40cf-32a2-4a76-9bea-113e171fc646
  1189. name: Metadata generation
  1190. schemaKey: Activity
  1191. startDate: '2024-04-01T13:13:09.185287-04:00'
  1192. wasAssociatedWith:
  1193. - identifier: RRID:SCR_019009
  1194. name: DANDI Command Line Interface
  1195. schemaKey: Software
  1196. url: https://github.com/dandi/dandi-cli
  1197. version: 0.61.1
  1198. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1199. access:
  1200. - schemaKey: AccessRequirements
  1201. status: dandi:OpenAccess
  1202. approach: []
  1203. blobDateModified: '2024-03-27T09:56:28.388989-04:00'
  1204. contentSize: 1226680
  1205. contentUrl:
  1206. - https://api.dandiarchive.org/api/assets/19f3d5d4-4ba2-43d6-bcd1-8705006d43bd/download/
  1207. - https://dandiarchive.s3.amazonaws.com/blobs/91f/0ae/91f0ae63-b7b1-4f1d-99ad-d9f6740efd3f
  1208. dateModified: '2024-04-01T13:13:13.603623-04:00'
  1209. digest:
  1210. dandi:dandi-etag: 6decd793c58b433cbb2791b7125b1753-1
  1211. dandi:sha2-256: ee4c05afdf27aac047c09930dc8e4ffb4169eafaf4aa221090cfab76f14389d7
  1212. encodingFormat: application/x-nwb
  1213. id: dandiasset:19f3d5d4-4ba2-43d6-bcd1-8705006d43bd
  1214. identifier: 19f3d5d4-4ba2-43d6-bcd1-8705006d43bd
  1215. measurementTechnique: []
  1216. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220523.nwb
  1217. schemaKey: Asset
  1218. schemaVersion: 0.6.7
  1219. variableMeasured: []
  1220. wasAttributedTo:
  1221. - age:
  1222. schemaKey: PropertyValue
  1223. unitText: ISO-8601 duration
  1224. value: P69Y
  1225. valueReference:
  1226. schemaKey: PropertyValue
  1227. value: dandi:BirthReference
  1228. identifier: T5_held_in_minival
  1229. schemaKey: Participant
  1230. sex:
  1231. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1232. name: Male
  1233. schemaKey: SexType
  1234. species:
  1235. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1236. name: Homo sapiens - Human
  1237. schemaKey: SpeciesType
  1238. wasGeneratedBy:
  1239. - description: human BCI participant performing attempted handwriting task
  1240. name: Acquisition session
  1241. schemaKey: Session
  1242. startDate: '2022-05-23T00:00:00-05:00'
  1243. - description: Metadata generated by DANDI cli
  1244. endDate: '2024-04-01T13:13:13.603584-04:00'
  1245. id: urn:uuid:8a7a498b-19f1-440c-bb48-8aec8e323030
  1246. name: Metadata generation
  1247. schemaKey: Activity
  1248. startDate: '2024-04-01T13:13:13.278301-04:00'
  1249. wasAssociatedWith:
  1250. - identifier: RRID:SCR_019009
  1251. name: DANDI Command Line Interface
  1252. schemaKey: Software
  1253. url: https://github.com/dandi/dandi-cli
  1254. version: 0.61.1
  1255. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1256. access:
  1257. - schemaKey: AccessRequirements
  1258. status: dandi:OpenAccess
  1259. approach: []
  1260. blobDateModified: '2024-03-27T09:56:37.565863-04:00'
  1261. contentSize: 2580020
  1262. contentUrl:
  1263. - https://api.dandiarchive.org/api/assets/68df84e0-3fe4-4bfc-90b4-3d55f88342e9/download/
  1264. - https://dandiarchive.s3.amazonaws.com/blobs/6df/f48/6dff4883-64b3-4ca0-9caf-8630d2ba557c
  1265. dateModified: '2024-04-01T13:13:14.962418-04:00'
  1266. digest:
  1267. dandi:dandi-etag: 3ac7d8f2157523ce368403c68d0c36ae-1
  1268. dandi:sha2-256: 8710e117b559c3888ce439cf1b3fd27026fee926d41092da199eb3be3e5ba0ed
  1269. encodingFormat: application/x-nwb
  1270. id: dandiasset:68df84e0-3fe4-4bfc-90b4-3d55f88342e9
  1271. identifier: 68df84e0-3fe4-4bfc-90b4-3d55f88342e9
  1272. measurementTechnique: []
  1273. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220601.nwb
  1274. schemaKey: Asset
  1275. schemaVersion: 0.6.7
  1276. variableMeasured: []
  1277. wasAttributedTo:
  1278. - age:
  1279. schemaKey: PropertyValue
  1280. unitText: ISO-8601 duration
  1281. value: P69Y
  1282. valueReference:
  1283. schemaKey: PropertyValue
  1284. value: dandi:BirthReference
  1285. identifier: T5_held_in_minival
  1286. schemaKey: Participant
  1287. sex:
  1288. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1289. name: Male
  1290. schemaKey: SexType
  1291. species:
  1292. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1293. name: Homo sapiens - Human
  1294. schemaKey: SpeciesType
  1295. wasGeneratedBy:
  1296. - description: human BCI participant performing attempted handwriting task
  1297. name: Acquisition session
  1298. schemaKey: Session
  1299. startDate: '2022-06-01T00:00:00-05:00'
  1300. - description: Metadata generated by DANDI cli
  1301. endDate: '2024-04-01T13:13:14.962391-04:00'
  1302. id: urn:uuid:9b980bef-5921-4f99-8c8a-999c9a73955f
  1303. name: Metadata generation
  1304. schemaKey: Activity
  1305. startDate: '2024-04-01T13:13:14.625995-04:00'
  1306. wasAssociatedWith:
  1307. - identifier: RRID:SCR_019009
  1308. name: DANDI Command Line Interface
  1309. schemaKey: Software
  1310. url: https://github.com/dandi/dandi-cli
  1311. version: 0.61.1
  1312. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1313. access:
  1314. - schemaKey: AccessRequirements
  1315. status: dandi:OpenAccess
  1316. approach: []
  1317. blobDateModified: '2024-03-27T09:56:32.961926-04:00'
  1318. contentSize: 3552635
  1319. contentUrl:
  1320. - https://api.dandiarchive.org/api/assets/bcb7c5b8-e4d4-434f-9593-643a348c5cf3/download/
  1321. - https://dandiarchive.s3.amazonaws.com/blobs/eae/112/eae1126d-2dd0-44e8-87aa-262183248642
  1322. dateModified: '2024-04-01T13:13:14.981576-04:00'
  1323. digest:
  1324. dandi:dandi-etag: a1202953540cafd0eac84349cc316a3e-1
  1325. dandi:sha2-256: a2eab830cf01b0e49aa96ea98de09050a7d6f43528d20b636f29abd2c847c308
  1326. encodingFormat: application/x-nwb
  1327. id: dandiasset:bcb7c5b8-e4d4-434f-9593-643a348c5cf3
  1328. identifier: bcb7c5b8-e4d4-434f-9593-643a348c5cf3
  1329. measurementTechnique: []
  1330. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220525.nwb
  1331. schemaKey: Asset
  1332. schemaVersion: 0.6.7
  1333. variableMeasured: []
  1334. wasAttributedTo:
  1335. - age:
  1336. schemaKey: PropertyValue
  1337. unitText: ISO-8601 duration
  1338. value: P69Y
  1339. valueReference:
  1340. schemaKey: PropertyValue
  1341. value: dandi:BirthReference
  1342. identifier: T5_held_in_minival
  1343. schemaKey: Participant
  1344. sex:
  1345. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1346. name: Male
  1347. schemaKey: SexType
  1348. species:
  1349. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1350. name: Homo sapiens - Human
  1351. schemaKey: SpeciesType
  1352. wasGeneratedBy:
  1353. - description: human BCI participant performing attempted handwriting task
  1354. name: Acquisition session
  1355. schemaKey: Session
  1356. startDate: '2022-05-25T00:00:00-05:00'
  1357. - description: Metadata generated by DANDI cli
  1358. endDate: '2024-04-01T13:13:14.981553-04:00'
  1359. id: urn:uuid:aee970e2-b19c-4cf3-9230-920b4dff6800
  1360. name: Metadata generation
  1361. schemaKey: Activity
  1362. startDate: '2024-04-01T13:13:14.680853-04:00'
  1363. wasAssociatedWith:
  1364. - identifier: RRID:SCR_019009
  1365. name: DANDI Command Line Interface
  1366. schemaKey: Software
  1367. url: https://github.com/dandi/dandi-cli
  1368. version: 0.61.1
  1369. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1370. access:
  1371. - schemaKey: AccessRequirements
  1372. status: dandi:OpenAccess
  1373. approach: []
  1374. blobDateModified: '2024-03-27T09:55:44.603591-04:00'
  1375. contentSize: 35419931
  1376. contentUrl:
  1377. - https://api.dandiarchive.org/api/assets/2a7480fd-5332-4efb-b104-358951951962/download/
  1378. - https://dandiarchive.s3.amazonaws.com/blobs/f9e/e30/f9ee30e7-c90c-4fb4-80e8-1479c89a6c3d
  1379. dateModified: '2024-04-01T13:13:05.627297-04:00'
  1380. digest:
  1381. dandi:dandi-etag: 7dee07c2b3f6364ac090e25be1876774-1
  1382. dandi:sha2-256: 84e3befcae291617ea0fcba9e4b95a03c4385e38398755688c8ae0f214342a3c
  1383. encodingFormat: application/x-nwb
  1384. id: dandiasset:2a7480fd-5332-4efb-b104-358951951962
  1385. identifier: 2a7480fd-5332-4efb-b104-358951951962
  1386. measurementTechnique: []
  1387. path: sub-T5-held-in-calib/sub-T5-held-in-calib_ses-20221103.nwb
  1388. schemaKey: Asset
  1389. schemaVersion: 0.6.7
  1390. variableMeasured: []
  1391. wasAttributedTo:
  1392. - age:
  1393. schemaKey: PropertyValue
  1394. unitText: ISO-8601 duration
  1395. value: P69Y
  1396. valueReference:
  1397. schemaKey: PropertyValue
  1398. value: dandi:BirthReference
  1399. identifier: T5_held_in_calib
  1400. schemaKey: Participant
  1401. sex:
  1402. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1403. name: Male
  1404. schemaKey: SexType
  1405. species:
  1406. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1407. name: Homo sapiens - Human
  1408. schemaKey: SpeciesType
  1409. wasGeneratedBy:
  1410. - description: human BCI participant performing attempted handwriting task
  1411. name: Acquisition session
  1412. schemaKey: Session
  1413. startDate: '2022-11-03T00:00:00-05:00'
  1414. - description: Metadata generated by DANDI cli
  1415. endDate: '2024-04-01T13:13:05.627249-04:00'
  1416. id: urn:uuid:fc58d9be-b626-4ff4-ac83-e094a12870f9
  1417. name: Metadata generation
  1418. schemaKey: Activity
  1419. startDate: '2024-04-01T13:13:05.336972-04:00'
  1420. wasAssociatedWith:
  1421. - identifier: RRID:SCR_019009
  1422. name: DANDI Command Line Interface
  1423. schemaKey: Software
  1424. url: https://github.com/dandi/dandi-cli
  1425. version: 0.61.1
  1426. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1427. access:
  1428. - schemaKey: AccessRequirements
  1429. status: dandi:OpenAccess
  1430. approach: []
  1431. blobDateModified: '2024-03-27T09:56:42.001802-04:00'
  1432. contentSize: 2997640
  1433. contentUrl:
  1434. - https://api.dandiarchive.org/api/assets/2a880993-9ffc-4e87-bd2c-d6826045484b/download/
  1435. - https://dandiarchive.s3.amazonaws.com/blobs/930/c06/930c0684-eeef-4806-9814-4061275cf314
  1436. dateModified: '2024-04-01T13:13:15.138436-04:00'
  1437. digest:
  1438. dandi:dandi-etag: 16bfd4432a42146643f0ce28676c54dd-1
  1439. dandi:sha2-256: 58b53bb6975df32d1a686f7f8a9c13c0acad0fde299c27fbd601f9843322d66e
  1440. encodingFormat: application/x-nwb
  1441. id: dandiasset:2a880993-9ffc-4e87-bd2c-d6826045484b
  1442. identifier: 2a880993-9ffc-4e87-bd2c-d6826045484b
  1443. measurementTechnique: []
  1444. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220603.nwb
  1445. schemaKey: Asset
  1446. schemaVersion: 0.6.7
  1447. variableMeasured: []
  1448. wasAttributedTo:
  1449. - age:
  1450. schemaKey: PropertyValue
  1451. unitText: ISO-8601 duration
  1452. value: P69Y
  1453. valueReference:
  1454. schemaKey: PropertyValue
  1455. value: dandi:BirthReference
  1456. identifier: T5_held_in_minival
  1457. schemaKey: Participant
  1458. sex:
  1459. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1460. name: Male
  1461. schemaKey: SexType
  1462. species:
  1463. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1464. name: Homo sapiens - Human
  1465. schemaKey: SpeciesType
  1466. wasGeneratedBy:
  1467. - description: human BCI participant performing attempted handwriting task
  1468. name: Acquisition session
  1469. schemaKey: Session
  1470. startDate: '2022-06-03T00:00:00-05:00'
  1471. - description: Metadata generated by DANDI cli
  1472. endDate: '2024-04-01T13:13:15.138402-04:00'
  1473. id: urn:uuid:f2953d56-d2aa-4c3f-abd4-39892b9829ba
  1474. name: Metadata generation
  1475. schemaKey: Activity
  1476. startDate: '2024-04-01T13:13:14.915727-04:00'
  1477. wasAssociatedWith:
  1478. - identifier: RRID:SCR_019009
  1479. name: DANDI Command Line Interface
  1480. schemaKey: Software
  1481. url: https://github.com/dandi/dandi-cli
  1482. version: 0.61.1
  1483. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1484. access:
  1485. - schemaKey: AccessRequirements
  1486. status: dandi:OpenAccess
  1487. approach: []
  1488. blobDateModified: '2024-03-27T09:56:46.912735-04:00'
  1489. contentSize: 4295245
  1490. contentUrl:
  1491. - https://api.dandiarchive.org/api/assets/ed3e9bb0-427a-464d-bffa-fa93d5a36061/download/
  1492. - https://dandiarchive.s3.amazonaws.com/blobs/61b/802/61b80206-efab-487f-8bd4-cb291803411d
  1493. dateModified: '2024-04-01T13:13:18.527749-04:00'
  1494. digest:
  1495. dandi:dandi-etag: 542b91c2dcb11fe67a92d92ad863751f-1
  1496. dandi:sha2-256: 49e5ea86833c1ab9e0fd6271af67a8ba2554a5c6bd939b78626664ac2fd7e201
  1497. encodingFormat: application/x-nwb
  1498. id: dandiasset:ed3e9bb0-427a-464d-bffa-fa93d5a36061
  1499. identifier: ed3e9bb0-427a-464d-bffa-fa93d5a36061
  1500. measurementTechnique: []
  1501. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220606.nwb
  1502. schemaKey: Asset
  1503. schemaVersion: 0.6.7
  1504. variableMeasured: []
  1505. wasAttributedTo:
  1506. - age:
  1507. schemaKey: PropertyValue
  1508. unitText: ISO-8601 duration
  1509. value: P69Y
  1510. valueReference:
  1511. schemaKey: PropertyValue
  1512. value: dandi:BirthReference
  1513. identifier: T5_held_in_minival
  1514. schemaKey: Participant
  1515. sex:
  1516. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1517. name: Male
  1518. schemaKey: SexType
  1519. species:
  1520. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1521. name: Homo sapiens - Human
  1522. schemaKey: SpeciesType
  1523. wasGeneratedBy:
  1524. - description: human BCI participant performing attempted handwriting task
  1525. name: Acquisition session
  1526. schemaKey: Session
  1527. startDate: '2022-06-06T00:00:00-05:00'
  1528. - description: Metadata generated by DANDI cli
  1529. endDate: '2024-04-01T13:13:18.527700-04:00'
  1530. id: urn:uuid:83fe62ff-174a-4414-ba4b-8160f73da5e3
  1531. name: Metadata generation
  1532. schemaKey: Activity
  1533. startDate: '2024-04-01T13:13:18.221765-04:00'
  1534. wasAssociatedWith:
  1535. - identifier: RRID:SCR_019009
  1536. name: DANDI Command Line Interface
  1537. schemaKey: Software
  1538. url: https://github.com/dandi/dandi-cli
  1539. version: 0.61.1
  1540. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1541. access:
  1542. - schemaKey: AccessRequirements
  1543. status: dandi:OpenAccess
  1544. approach: []
  1545. blobDateModified: '2024-03-27T09:56:51.312674-04:00'
  1546. contentSize: 6060710
  1547. contentUrl:
  1548. - https://api.dandiarchive.org/api/assets/f4c676c8-0808-4aed-b5b2-c054fce48ea0/download/
  1549. - https://dandiarchive.s3.amazonaws.com/blobs/d3e/770/d3e7700e-9258-4a43-9b5c-c8a010616b14
  1550. dateModified: '2024-04-01T13:13:22.379149-04:00'
  1551. digest:
  1552. dandi:dandi-etag: 0fc4ee099af2ac5a5500b85546da82b7-1
  1553. dandi:sha2-256: 917feaf8a163db1119bd688a61239101ce0242f0004e0e720d4d72f8da15f470
  1554. encodingFormat: application/x-nwb
  1555. id: dandiasset:f4c676c8-0808-4aed-b5b2-c054fce48ea0
  1556. identifier: f4c676c8-0808-4aed-b5b2-c054fce48ea0
  1557. measurementTechnique: []
  1558. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220608.nwb
  1559. schemaKey: Asset
  1560. schemaVersion: 0.6.7
  1561. variableMeasured: []
  1562. wasAttributedTo:
  1563. - age:
  1564. schemaKey: PropertyValue
  1565. unitText: ISO-8601 duration
  1566. value: P69Y
  1567. valueReference:
  1568. schemaKey: PropertyValue
  1569. value: dandi:BirthReference
  1570. identifier: T5_held_in_minival
  1571. schemaKey: Participant
  1572. sex:
  1573. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1574. name: Male
  1575. schemaKey: SexType
  1576. species:
  1577. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1578. name: Homo sapiens - Human
  1579. schemaKey: SpeciesType
  1580. wasGeneratedBy:
  1581. - description: human BCI participant performing attempted handwriting task
  1582. name: Acquisition session
  1583. schemaKey: Session
  1584. startDate: '2022-06-08T00:00:00-05:00'
  1585. - description: Metadata generated by DANDI cli
  1586. endDate: '2024-04-01T13:13:22.379111-04:00'
  1587. id: urn:uuid:475e747b-456c-4d93-8717-77773adbca8d
  1588. name: Metadata generation
  1589. schemaKey: Activity
  1590. startDate: '2024-04-01T13:13:22.064622-04:00'
  1591. wasAssociatedWith:
  1592. - identifier: RRID:SCR_019009
  1593. name: DANDI Command Line Interface
  1594. schemaKey: Software
  1595. url: https://github.com/dandi/dandi-cli
  1596. version: 0.61.1
  1597. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1598. access:
  1599. - schemaKey: AccessRequirements
  1600. status: dandi:OpenAccess
  1601. approach: []
  1602. blobDateModified: '2024-03-27T09:57:00.482548-04:00'
  1603. contentSize: 4131180
  1604. contentUrl:
  1605. - https://api.dandiarchive.org/api/assets/ab59d565-2179-4db0-9f36-5f0591888a2e/download/
  1606. - https://dandiarchive.s3.amazonaws.com/blobs/f39/93f/f3993f74-6141-4fcb-9e98-a44a8e3a2a89
  1607. dateModified: '2024-04-01T13:13:22.782117-04:00'
  1608. digest:
  1609. dandi:dandi-etag: c4012155acde43153051b72b8efce68c-1
  1610. dandi:sha2-256: 978baab8d489c37c86836d2ca6f99878b449a46b2b7c9ffb142fad1215a0da35
  1611. encodingFormat: application/x-nwb
  1612. id: dandiasset:ab59d565-2179-4db0-9f36-5f0591888a2e
  1613. identifier: ab59d565-2179-4db0-9f36-5f0591888a2e
  1614. measurementTechnique: []
  1615. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220615.nwb
  1616. schemaKey: Asset
  1617. schemaVersion: 0.6.7
  1618. variableMeasured: []
  1619. wasAttributedTo:
  1620. - age:
  1621. schemaKey: PropertyValue
  1622. unitText: ISO-8601 duration
  1623. value: P69Y
  1624. valueReference:
  1625. schemaKey: PropertyValue
  1626. value: dandi:BirthReference
  1627. identifier: T5_held_in_minival
  1628. schemaKey: Participant
  1629. sex:
  1630. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1631. name: Male
  1632. schemaKey: SexType
  1633. species:
  1634. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1635. name: Homo sapiens - Human
  1636. schemaKey: SpeciesType
  1637. wasGeneratedBy:
  1638. - description: human BCI participant performing attempted handwriting task
  1639. name: Acquisition session
  1640. schemaKey: Session
  1641. startDate: '2022-06-15T00:00:00-05:00'
  1642. - description: Metadata generated by DANDI cli
  1643. endDate: '2024-04-01T13:13:22.782079-04:00'
  1644. id: urn:uuid:cc4f3eb0-41ef-4adb-a591-881b01070d3b
  1645. name: Metadata generation
  1646. schemaKey: Activity
  1647. startDate: '2024-04-01T13:13:22.404019-04:00'
  1648. wasAssociatedWith:
  1649. - identifier: RRID:SCR_019009
  1650. name: DANDI Command Line Interface
  1651. schemaKey: Software
  1652. url: https://github.com/dandi/dandi-cli
  1653. version: 0.61.1
  1654. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1655. access:
  1656. - schemaKey: AccessRequirements
  1657. status: dandi:OpenAccess
  1658. approach: []
  1659. blobDateModified: '2024-03-27T09:56:55.904611-04:00'
  1660. contentSize: 4168860
  1661. contentUrl:
  1662. - https://api.dandiarchive.org/api/assets/4cdccc2e-46e9-4a0b-94ba-de8e412f45a3/download/
  1663. - https://dandiarchive.s3.amazonaws.com/blobs/f3d/1ed/f3d1ed37-a894-42ed-b26a-8b2181553c87
  1664. dateModified: '2024-04-01T13:13:22.969790-04:00'
  1665. digest:
  1666. dandi:dandi-etag: 3b74220c2bf8c0d0b1e0a1bf1ed37e45-1
  1667. dandi:sha2-256: aae60018d0b6fef818a40fab3a99df9b2e0dfd9259754d362e54105cd3822e9e
  1668. encodingFormat: application/x-nwb
  1669. id: dandiasset:4cdccc2e-46e9-4a0b-94ba-de8e412f45a3
  1670. identifier: 4cdccc2e-46e9-4a0b-94ba-de8e412f45a3
  1671. measurementTechnique: []
  1672. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220613.nwb
  1673. schemaKey: Asset
  1674. schemaVersion: 0.6.7
  1675. variableMeasured: []
  1676. wasAttributedTo:
  1677. - age:
  1678. schemaKey: PropertyValue
  1679. unitText: ISO-8601 duration
  1680. value: P69Y
  1681. valueReference:
  1682. schemaKey: PropertyValue
  1683. value: dandi:BirthReference
  1684. identifier: T5_held_in_minival
  1685. schemaKey: Participant
  1686. sex:
  1687. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1688. name: Male
  1689. schemaKey: SexType
  1690. species:
  1691. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1692. name: Homo sapiens - Human
  1693. schemaKey: SpeciesType
  1694. wasGeneratedBy:
  1695. - description: human BCI participant performing attempted handwriting task
  1696. name: Acquisition session
  1697. schemaKey: Session
  1698. startDate: '2022-06-13T00:00:00-05:00'
  1699. - description: Metadata generated by DANDI cli
  1700. endDate: '2024-04-01T13:13:22.969745-04:00'
  1701. id: urn:uuid:f2989ca9-6ea8-40b0-8825-52fb72fca6e4
  1702. name: Metadata generation
  1703. schemaKey: Activity
  1704. startDate: '2024-04-01T13:13:22.771282-04:00'
  1705. wasAssociatedWith:
  1706. - identifier: RRID:SCR_019009
  1707. name: DANDI Command Line Interface
  1708. schemaKey: Software
  1709. url: https://github.com/dandi/dandi-cli
  1710. version: 0.61.1
  1711. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1712. access:
  1713. - schemaKey: AccessRequirements
  1714. status: dandi:OpenAccess
  1715. approach: []
  1716. blobDateModified: '2024-03-27T09:57:09.323426-04:00'
  1717. contentSize: 3014910
  1718. contentUrl:
  1719. - https://api.dandiarchive.org/api/assets/80346cc3-2b1d-460a-af27-a5a1daae7a55/download/
  1720. - https://dandiarchive.s3.amazonaws.com/blobs/f9c/ae4/f9cae4ed-0c8a-48dd-ae67-c71593351879
  1721. dateModified: '2024-04-01T13:13:23.534458-04:00'
  1722. digest:
  1723. dandi:dandi-etag: 98316e41aa59d9f2f3ac642513bc5a91-1
  1724. dandi:sha2-256: 48ec9c3de77fb0cfa2c1fbf589ed7dd5531d6ea13a9042402cf22e23db84d8a8
  1725. encodingFormat: application/x-nwb
  1726. id: dandiasset:80346cc3-2b1d-460a-af27-a5a1daae7a55
  1727. identifier: 80346cc3-2b1d-460a-af27-a5a1daae7a55
  1728. measurementTechnique: []
  1729. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220901.nwb
  1730. schemaKey: Asset
  1731. schemaVersion: 0.6.7
  1732. variableMeasured: []
  1733. wasAttributedTo:
  1734. - age:
  1735. schemaKey: PropertyValue
  1736. unitText: ISO-8601 duration
  1737. value: P69Y
  1738. valueReference:
  1739. schemaKey: PropertyValue
  1740. value: dandi:BirthReference
  1741. identifier: T5_held_in_minival
  1742. schemaKey: Participant
  1743. sex:
  1744. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1745. name: Male
  1746. schemaKey: SexType
  1747. species:
  1748. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1749. name: Homo sapiens - Human
  1750. schemaKey: SpeciesType
  1751. wasGeneratedBy:
  1752. - description: human BCI participant performing attempted handwriting task
  1753. name: Acquisition session
  1754. schemaKey: Session
  1755. startDate: '2022-09-01T00:00:00-05:00'
  1756. - description: Metadata generated by DANDI cli
  1757. endDate: '2024-04-01T13:13:23.534412-04:00'
  1758. id: urn:uuid:8c33e6e6-b6cc-4b5d-98df-f6dc2dd59e03
  1759. name: Metadata generation
  1760. schemaKey: Activity
  1761. startDate: '2024-04-01T13:13:23.316254-04:00'
  1762. wasAssociatedWith:
  1763. - identifier: RRID:SCR_019009
  1764. name: DANDI Command Line Interface
  1765. schemaKey: Software
  1766. url: https://github.com/dandi/dandi-cli
  1767. version: 0.61.1
  1768. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1769. access:
  1770. - schemaKey: AccessRequirements
  1771. status: dandi:OpenAccess
  1772. approach: []
  1773. blobDateModified: '2024-03-27T09:57:05.051485-04:00'
  1774. contentSize: 2959960
  1775. contentUrl:
  1776. - https://api.dandiarchive.org/api/assets/142e8bcb-d8e1-4846-bab0-9a464a36616d/download/
  1777. - https://dandiarchive.s3.amazonaws.com/blobs/aee/c31/aeec318f-9a1a-49cc-9a9a-c2f8974e7a5c
  1778. dateModified: '2024-04-01T13:13:22.924455-04:00'
  1779. digest:
  1780. dandi:dandi-etag: ef4d911687d449fe9611122a50908fd4-1
  1781. dandi:sha2-256: fca7b02cdd848a2df6dd3956c5742e5bbeb579273ea50418c8b56903185c333f
  1782. encodingFormat: application/x-nwb
  1783. id: dandiasset:142e8bcb-d8e1-4846-bab0-9a464a36616d
  1784. identifier: 142e8bcb-d8e1-4846-bab0-9a464a36616d
  1785. measurementTechnique: []
  1786. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220622.nwb
  1787. schemaKey: Asset
  1788. schemaVersion: 0.6.7
  1789. variableMeasured: []
  1790. wasAttributedTo:
  1791. - age:
  1792. schemaKey: PropertyValue
  1793. unitText: ISO-8601 duration
  1794. value: P69Y
  1795. valueReference:
  1796. schemaKey: PropertyValue
  1797. value: dandi:BirthReference
  1798. identifier: T5_held_in_minival
  1799. schemaKey: Participant
  1800. sex:
  1801. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1802. name: Male
  1803. schemaKey: SexType
  1804. species:
  1805. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1806. name: Homo sapiens - Human
  1807. schemaKey: SpeciesType
  1808. wasGeneratedBy:
  1809. - description: human BCI participant performing attempted handwriting task
  1810. name: Acquisition session
  1811. schemaKey: Session
  1812. startDate: '2022-06-22T00:00:00-05:00'
  1813. - description: Metadata generated by DANDI cli
  1814. endDate: '2024-04-01T13:13:22.924429-04:00'
  1815. id: urn:uuid:ecf14c71-2fd0-48a0-a025-679628d86b37
  1816. name: Metadata generation
  1817. schemaKey: Activity
  1818. startDate: '2024-04-01T13:13:22.658881-04:00'
  1819. wasAssociatedWith:
  1820. - identifier: RRID:SCR_019009
  1821. name: DANDI Command Line Interface
  1822. schemaKey: Software
  1823. url: https://github.com/dandi/dandi-cli
  1824. version: 0.61.1
  1825. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1826. access:
  1827. - schemaKey: AccessRequirements
  1828. status: dandi:OpenAccess
  1829. approach: []
  1830. blobDateModified: '2024-03-27T09:55:20.098928-04:00'
  1831. contentSize: 3982815
  1832. contentUrl:
  1833. - https://api.dandiarchive.org/api/assets/1738ac2f-13e8-48d2-a929-b246fcb59e3e/download/
  1834. - https://dandiarchive.s3.amazonaws.com/blobs/37c/ffd/37cffdf2-d332-48f6-8c4d-63ffc05b3102
  1835. dateModified: '2024-04-01T13:13:29.234049-04:00'
  1836. digest:
  1837. dandi:dandi-etag: aa629e1ba390b0414e12bc349e879161-1
  1838. dandi:sha2-256: 830d807afdd2d8b7bd2aa1b725c0cbf96872140126778a47d9a99812c7f1b38f
  1839. encodingFormat: application/x-nwb
  1840. id: dandiasset:1738ac2f-13e8-48d2-a929-b246fcb59e3e
  1841. identifier: 1738ac2f-13e8-48d2-a929-b246fcb59e3e
  1842. measurementTechnique: []
  1843. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20220929.nwb
  1844. schemaKey: Asset
  1845. schemaVersion: 0.6.7
  1846. variableMeasured: []
  1847. wasAttributedTo:
  1848. - age:
  1849. schemaKey: PropertyValue
  1850. unitText: ISO-8601 duration
  1851. value: P69Y
  1852. valueReference:
  1853. schemaKey: PropertyValue
  1854. value: dandi:BirthReference
  1855. identifier: T5_held_in_minival
  1856. schemaKey: Participant
  1857. sex:
  1858. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1859. name: Male
  1860. schemaKey: SexType
  1861. species:
  1862. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1863. name: Homo sapiens - Human
  1864. schemaKey: SpeciesType
  1865. wasGeneratedBy:
  1866. - description: human BCI participant performing attempted handwriting task
  1867. name: Acquisition session
  1868. schemaKey: Session
  1869. startDate: '2022-09-29T00:00:00-05:00'
  1870. - description: Metadata generated by DANDI cli
  1871. endDate: '2024-04-01T13:13:29.233980-04:00'
  1872. id: urn:uuid:e3c67327-7a67-4778-8f7b-31a2de300b7d
  1873. name: Metadata generation
  1874. schemaKey: Activity
  1875. startDate: '2024-04-01T13:13:29.111240-04:00'
  1876. wasAssociatedWith:
  1877. - identifier: RRID:SCR_019009
  1878. name: DANDI Command Line Interface
  1879. schemaKey: Software
  1880. url: https://github.com/dandi/dandi-cli
  1881. version: 0.61.1
  1882. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1883. access:
  1884. - schemaKey: AccessRequirements
  1885. status: dandi:OpenAccess
  1886. approach: []
  1887. blobDateModified: '2024-03-27T09:55:24.610866-04:00'
  1888. contentSize: 2600430
  1889. contentUrl:
  1890. - https://api.dandiarchive.org/api/assets/1a398a45-1d4c-4e26-8c42-6492d5227fdd/download/
  1891. - https://dandiarchive.s3.amazonaws.com/blobs/4ed/708/4ed70823-bc0b-468e-862d-b25bf88f3bb0
  1892. dateModified: '2024-04-01T13:13:30.442048-04:00'
  1893. digest:
  1894. dandi:dandi-etag: 02d157459e315326507bfcaccff14089-1
  1895. dandi:sha2-256: 9c795104f1b0de9ec4d632d299f80a913bcf930ebd0524f0b282a6178c70b187
  1896. encodingFormat: application/x-nwb
  1897. id: dandiasset:1a398a45-1d4c-4e26-8c42-6492d5227fdd
  1898. identifier: 1a398a45-1d4c-4e26-8c42-6492d5227fdd
  1899. measurementTechnique: []
  1900. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221006.nwb
  1901. schemaKey: Asset
  1902. schemaVersion: 0.6.7
  1903. variableMeasured: []
  1904. wasAttributedTo:
  1905. - age:
  1906. schemaKey: PropertyValue
  1907. unitText: ISO-8601 duration
  1908. value: P69Y
  1909. valueReference:
  1910. schemaKey: PropertyValue
  1911. value: dandi:BirthReference
  1912. identifier: T5_held_in_minival
  1913. schemaKey: Participant
  1914. sex:
  1915. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1916. name: Male
  1917. schemaKey: SexType
  1918. species:
  1919. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1920. name: Homo sapiens - Human
  1921. schemaKey: SpeciesType
  1922. wasGeneratedBy:
  1923. - description: human BCI participant performing attempted handwriting task
  1924. name: Acquisition session
  1925. schemaKey: Session
  1926. startDate: '2022-10-06T00:00:00-05:00'
  1927. - description: Metadata generated by DANDI cli
  1928. endDate: '2024-04-01T13:13:30.442016-04:00'
  1929. id: urn:uuid:29cd9eae-62d9-454c-a548-53db3ff8b3ae
  1930. name: Metadata generation
  1931. schemaKey: Activity
  1932. startDate: '2024-04-01T13:13:30.281208-04:00'
  1933. wasAssociatedWith:
  1934. - identifier: RRID:SCR_019009
  1935. name: DANDI Command Line Interface
  1936. schemaKey: Software
  1937. url: https://github.com/dandi/dandi-cli
  1938. version: 0.61.1
  1939. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1940. access:
  1941. - schemaKey: AccessRequirements
  1942. status: dandi:OpenAccess
  1943. approach: []
  1944. blobDateModified: '2024-03-27T09:55:28.971806-04:00'
  1945. contentSize: 2762925
  1946. contentUrl:
  1947. - https://api.dandiarchive.org/api/assets/6cf3c2c7-fb57-4058-8924-4d674443dc07/download/
  1948. - https://dandiarchive.s3.amazonaws.com/blobs/9a4/cf6/9a4cf618-8f52-4dc3-a6f7-e2c43f185b49
  1949. dateModified: '2024-04-01T13:13:30.683486-04:00'
  1950. digest:
  1951. dandi:dandi-etag: 65f0c9d23889b4f9855cf7fb4c6df10e-1
  1952. dandi:sha2-256: 3814d938a464dc1739bc5dfdbd9be264e50b817b606b290afa73e2706f667bc1
  1953. encodingFormat: application/x-nwb
  1954. id: dandiasset:6cf3c2c7-fb57-4058-8924-4d674443dc07
  1955. identifier: 6cf3c2c7-fb57-4058-8924-4d674443dc07
  1956. measurementTechnique: []
  1957. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221018.nwb
  1958. schemaKey: Asset
  1959. schemaVersion: 0.6.7
  1960. variableMeasured: []
  1961. wasAttributedTo:
  1962. - age:
  1963. schemaKey: PropertyValue
  1964. unitText: ISO-8601 duration
  1965. value: P69Y
  1966. valueReference:
  1967. schemaKey: PropertyValue
  1968. value: dandi:BirthReference
  1969. identifier: T5_held_in_minival
  1970. schemaKey: Participant
  1971. sex:
  1972. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1973. name: Male
  1974. schemaKey: SexType
  1975. species:
  1976. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1977. name: Homo sapiens - Human
  1978. schemaKey: SpeciesType
  1979. wasGeneratedBy:
  1980. - description: human BCI participant performing attempted handwriting task
  1981. name: Acquisition session
  1982. schemaKey: Session
  1983. startDate: '2022-10-18T00:00:00-05:00'
  1984. - description: Metadata generated by DANDI cli
  1985. endDate: '2024-04-01T13:13:30.683441-04:00'
  1986. id: urn:uuid:affc22ea-bb8d-49e0-9edc-6cc8179649b8
  1987. name: Metadata generation
  1988. schemaKey: Activity
  1989. startDate: '2024-04-01T13:13:30.362558-04:00'
  1990. wasAssociatedWith:
  1991. - identifier: RRID:SCR_019009
  1992. name: DANDI Command Line Interface
  1993. schemaKey: Software
  1994. url: https://github.com/dandi/dandi-cli
  1995. version: 0.61.1
  1996. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1997. access:
  1998. - schemaKey: AccessRequirements
  1999. status: dandi:OpenAccess
  2000. approach: []
  2001. blobDateModified: '2024-03-27T09:55:33.302747-04:00'
  2002. contentSize: 2751150
  2003. contentUrl:
  2004. - https://api.dandiarchive.org/api/assets/9eac47ba-8a7b-4095-acbf-3b3e3daebc22/download/
  2005. - https://dandiarchive.s3.amazonaws.com/blobs/074/ba1/074ba1ad-768f-41a8-8d68-626120e0b38b
  2006. dateModified: '2024-04-01T13:13:30.756560-04:00'
  2007. digest:
  2008. dandi:dandi-etag: 45d051d0232cf5742feab8336478d51e-1
  2009. dandi:sha2-256: a3f9f7af27062b34b88f8641f98dcd164a81a10781cc2b1cc5fd2e47d835f92f
  2010. encodingFormat: application/x-nwb
  2011. id: dandiasset:9eac47ba-8a7b-4095-acbf-3b3e3daebc22
  2012. identifier: 9eac47ba-8a7b-4095-acbf-3b3e3daebc22
  2013. measurementTechnique: []
  2014. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221025.nwb
  2015. schemaKey: Asset
  2016. schemaVersion: 0.6.7
  2017. variableMeasured: []
  2018. wasAttributedTo:
  2019. - age:
  2020. schemaKey: PropertyValue
  2021. unitText: ISO-8601 duration
  2022. value: P69Y
  2023. valueReference:
  2024. schemaKey: PropertyValue
  2025. value: dandi:BirthReference
  2026. identifier: T5_held_in_minival
  2027. schemaKey: Participant
  2028. sex:
  2029. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2030. name: Male
  2031. schemaKey: SexType
  2032. species:
  2033. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2034. name: Homo sapiens - Human
  2035. schemaKey: SpeciesType
  2036. wasGeneratedBy:
  2037. - description: human BCI participant performing attempted handwriting task
  2038. name: Acquisition session
  2039. schemaKey: Session
  2040. startDate: '2022-10-25T00:00:00-05:00'
  2041. - description: Metadata generated by DANDI cli
  2042. endDate: '2024-04-01T13:13:30.756534-04:00'
  2043. id: urn:uuid:1d60ede8-3dd6-418f-bc21-30936a6986c0
  2044. name: Metadata generation
  2045. schemaKey: Activity
  2046. startDate: '2024-04-01T13:13:30.465855-04:00'
  2047. wasAssociatedWith:
  2048. - identifier: RRID:SCR_019009
  2049. name: DANDI Command Line Interface
  2050. schemaKey: Software
  2051. url: https://github.com/dandi/dandi-cli
  2052. version: 0.61.1
  2053. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2054. access:
  2055. - schemaKey: AccessRequirements
  2056. status: dandi:OpenAccess
  2057. approach: []
  2058. blobDateModified: '2024-03-27T09:55:37.393690-04:00'
  2059. contentSize: 2842995
  2060. contentUrl:
  2061. - https://api.dandiarchive.org/api/assets/0f29fff8-6de0-4e19-84b8-0be17504775e/download/
  2062. - https://dandiarchive.s3.amazonaws.com/blobs/cf1/7a8/cf17a86b-f021-4d68-b09c-fa6601a41bc5
  2063. dateModified: '2024-04-01T13:13:30.757684-04:00'
  2064. digest:
  2065. dandi:dandi-etag: 63a9d3ccce14a9c106a4fcdc0fd2dcb5-1
  2066. dandi:sha2-256: 6d96da646a6a190c79c34f3ec24bfb81418b196667ca92b06c05ba1432a0e630
  2067. encodingFormat: application/x-nwb
  2068. id: dandiasset:0f29fff8-6de0-4e19-84b8-0be17504775e
  2069. identifier: 0f29fff8-6de0-4e19-84b8-0be17504775e
  2070. measurementTechnique: []
  2071. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221027.nwb
  2072. schemaKey: Asset
  2073. schemaVersion: 0.6.7
  2074. variableMeasured: []
  2075. wasAttributedTo:
  2076. - age:
  2077. schemaKey: PropertyValue
  2078. unitText: ISO-8601 duration
  2079. value: P69Y
  2080. valueReference:
  2081. schemaKey: PropertyValue
  2082. value: dandi:BirthReference
  2083. identifier: T5_held_in_minival
  2084. schemaKey: Participant
  2085. sex:
  2086. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2087. name: Male
  2088. schemaKey: SexType
  2089. species:
  2090. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2091. name: Homo sapiens - Human
  2092. schemaKey: SpeciesType
  2093. wasGeneratedBy:
  2094. - description: human BCI participant performing attempted handwriting task
  2095. name: Acquisition session
  2096. schemaKey: Session
  2097. startDate: '2022-10-27T00:00:00-05:00'
  2098. - description: Metadata generated by DANDI cli
  2099. endDate: '2024-04-01T13:13:30.757641-04:00'
  2100. id: urn:uuid:0dcacf17-6482-4009-88c6-68d45fcdf2c3
  2101. name: Metadata generation
  2102. schemaKey: Activity
  2103. startDate: '2024-04-01T13:13:30.420370-04:00'
  2104. wasAssociatedWith:
  2105. - identifier: RRID:SCR_019009
  2106. name: DANDI Command Line Interface
  2107. schemaKey: Software
  2108. url: https://github.com/dandi/dandi-cli
  2109. version: 0.61.1
  2110. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2111. access:
  2112. - schemaKey: AccessRequirements
  2113. status: dandi:OpenAccess
  2114. approach: []
  2115. blobDateModified: '2024-03-27T09:55:41.556633-04:00'
  2116. contentSize: 2848490
  2117. contentUrl:
  2118. - https://api.dandiarchive.org/api/assets/97fdc4dd-ea99-4374-b11d-e000572a041d/download/
  2119. - https://dandiarchive.s3.amazonaws.com/blobs/fa7/47a/fa747ace-b2d0-4d16-a4ba-03f143109266
  2120. dateModified: '2024-04-01T13:13:36.048381-04:00'
  2121. digest:
  2122. dandi:dandi-etag: ad949eb39625c13a07cf0e59be7a8631-1
  2123. dandi:sha2-256: 9542354408d73beac653b92da6598fd734d79e19d914364c9fbe1fe5a5864cfb
  2124. encodingFormat: application/x-nwb
  2125. id: dandiasset:97fdc4dd-ea99-4374-b11d-e000572a041d
  2126. identifier: 97fdc4dd-ea99-4374-b11d-e000572a041d
  2127. measurementTechnique: []
  2128. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221101.nwb
  2129. schemaKey: Asset
  2130. schemaVersion: 0.6.7
  2131. variableMeasured: []
  2132. wasAttributedTo:
  2133. - age:
  2134. schemaKey: PropertyValue
  2135. unitText: ISO-8601 duration
  2136. value: P69Y
  2137. valueReference:
  2138. schemaKey: PropertyValue
  2139. value: dandi:BirthReference
  2140. identifier: T5_held_in_minival
  2141. schemaKey: Participant
  2142. sex:
  2143. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2144. name: Male
  2145. schemaKey: SexType
  2146. species:
  2147. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2148. name: Homo sapiens - Human
  2149. schemaKey: SpeciesType
  2150. wasGeneratedBy:
  2151. - description: human BCI participant performing attempted handwriting task
  2152. name: Acquisition session
  2153. schemaKey: Session
  2154. startDate: '2022-11-01T00:00:00-05:00'
  2155. - description: Metadata generated by DANDI cli
  2156. endDate: '2024-04-01T13:13:36.048315-04:00'
  2157. id: urn:uuid:cb3cbf93-1ffd-44e2-8838-c93613369ada
  2158. name: Metadata generation
  2159. schemaKey: Activity
  2160. startDate: '2024-04-01T13:13:35.592036-04:00'
  2161. wasAssociatedWith:
  2162. - identifier: RRID:SCR_019009
  2163. name: DANDI Command Line Interface
  2164. schemaKey: Software
  2165. url: https://github.com/dandi/dandi-cli
  2166. version: 0.61.1
  2167. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2168. access:
  2169. - schemaKey: AccessRequirements
  2170. status: dandi:OpenAccess
  2171. approach: []
  2172. blobDateModified: '2024-03-27T09:55:45.892573-04:00'
  2173. contentSize: 2317045
  2174. contentUrl:
  2175. - https://api.dandiarchive.org/api/assets/901191f1-2968-4b5f-81a7-17bd061452fb/download/
  2176. - https://dandiarchive.s3.amazonaws.com/blobs/1d5/0b4/1d50b4f2-a50e-4573-be6e-bbb40ed62064
  2177. dateModified: '2024-04-01T13:13:37.136773-04:00'
  2178. digest:
  2179. dandi:dandi-etag: 04de369184077fee7ebb7e0d9d6d7221-1
  2180. dandi:sha2-256: b58506c4ca372476de70f620f30ca660e8a66c831a7f8f019a8dfc8285248c68
  2181. encodingFormat: application/x-nwb
  2182. id: dandiasset:901191f1-2968-4b5f-81a7-17bd061452fb
  2183. identifier: 901191f1-2968-4b5f-81a7-17bd061452fb
  2184. measurementTechnique: []
  2185. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221103.nwb
  2186. schemaKey: Asset
  2187. schemaVersion: 0.6.7
  2188. variableMeasured: []
  2189. wasAttributedTo:
  2190. - age:
  2191. schemaKey: PropertyValue
  2192. unitText: ISO-8601 duration
  2193. value: P69Y
  2194. valueReference:
  2195. schemaKey: PropertyValue
  2196. value: dandi:BirthReference
  2197. identifier: T5_held_in_minival
  2198. schemaKey: Participant
  2199. sex:
  2200. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2201. name: Male
  2202. schemaKey: SexType
  2203. species:
  2204. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2205. name: Homo sapiens - Human
  2206. schemaKey: SpeciesType
  2207. wasGeneratedBy:
  2208. - description: human BCI participant performing attempted handwriting task
  2209. name: Acquisition session
  2210. schemaKey: Session
  2211. startDate: '2022-11-03T00:00:00-05:00'
  2212. - description: Metadata generated by DANDI cli
  2213. endDate: '2024-04-01T13:13:37.136743-04:00'
  2214. id: urn:uuid:689f78d3-44f1-435a-93ff-53e13267ce1e
  2215. name: Metadata generation
  2216. schemaKey: Activity
  2217. startDate: '2024-04-01T13:13:36.699139-04:00'
  2218. wasAssociatedWith:
  2219. - identifier: RRID:SCR_019009
  2220. name: DANDI Command Line Interface
  2221. schemaKey: Software
  2222. url: https://github.com/dandi/dandi-cli
  2223. version: 0.61.1
  2224. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2225. access:
  2226. - schemaKey: AccessRequirements
  2227. status: dandi:OpenAccess
  2228. approach: []
  2229. blobDateModified: '2024-03-27T09:55:50.166515-04:00'
  2230. contentSize: 3760660
  2231. contentUrl:
  2232. - https://api.dandiarchive.org/api/assets/c1b5104f-3c1e-4fb2-bb53-163a87490bae/download/
  2233. - https://dandiarchive.s3.amazonaws.com/blobs/731/8d9/7318d90a-8db9-471f-a357-9bb38405085c
  2234. dateModified: '2024-04-01T13:13:38.510935-04:00'
  2235. digest:
  2236. dandi:dandi-etag: 77afa00e022951da53f967351bb4db5d-1
  2237. dandi:sha2-256: 40eefe1dbf435215bcc887b6c98d2668620c84b128b309185cd7cf67c148d8ea
  2238. encodingFormat: application/x-nwb
  2239. id: dandiasset:c1b5104f-3c1e-4fb2-bb53-163a87490bae
  2240. identifier: c1b5104f-3c1e-4fb2-bb53-163a87490bae
  2241. measurementTechnique: []
  2242. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221208.nwb
  2243. schemaKey: Asset
  2244. schemaVersion: 0.6.7
  2245. variableMeasured: []
  2246. wasAttributedTo:
  2247. - age:
  2248. schemaKey: PropertyValue
  2249. unitText: ISO-8601 duration
  2250. value: P69Y
  2251. valueReference:
  2252. schemaKey: PropertyValue
  2253. value: dandi:BirthReference
  2254. identifier: T5_held_in_minival
  2255. schemaKey: Participant
  2256. sex:
  2257. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2258. name: Male
  2259. schemaKey: SexType
  2260. species:
  2261. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2262. name: Homo sapiens - Human
  2263. schemaKey: SpeciesType
  2264. wasGeneratedBy:
  2265. - description: human BCI participant performing attempted handwriting task
  2266. name: Acquisition session
  2267. schemaKey: Session
  2268. startDate: '2022-12-08T00:00:00-06:00'
  2269. - description: Metadata generated by DANDI cli
  2270. endDate: '2024-04-01T13:13:38.510900-04:00'
  2271. id: urn:uuid:97c56840-97a5-41bb-a762-cfdadfcee7d9
  2272. name: Metadata generation
  2273. schemaKey: Activity
  2274. startDate: '2024-04-01T13:13:38.323594-04:00'
  2275. wasAssociatedWith:
  2276. - identifier: RRID:SCR_019009
  2277. name: DANDI Command Line Interface
  2278. schemaKey: Software
  2279. url: https://github.com/dandi/dandi-cli
  2280. version: 0.61.1
  2281. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2282. access:
  2283. - schemaKey: AccessRequirements
  2284. status: dandi:OpenAccess
  2285. approach: []
  2286. blobDateModified: '2024-03-27T09:55:54.230459-04:00'
  2287. contentSize: 2993715
  2288. contentUrl:
  2289. - https://api.dandiarchive.org/api/assets/74b97376-7d9a-4642-9b9a-cd16cde85903/download/
  2290. - https://dandiarchive.s3.amazonaws.com/blobs/d99/1db/d991db21-3005-40d3-9a11-755e0abfaa18
  2291. dateModified: '2024-04-01T13:13:39.570036-04:00'
  2292. digest:
  2293. dandi:dandi-etag: 5c7bf7650ed8d680a7472926c0e689f8-1
  2294. dandi:sha2-256: f7401df801c8ee4bebad1251c51b29292bfe6af2f377e2dddff74f9c24018912
  2295. encodingFormat: application/x-nwb
  2296. id: dandiasset:74b97376-7d9a-4642-9b9a-cd16cde85903
  2297. identifier: 74b97376-7d9a-4642-9b9a-cd16cde85903
  2298. measurementTechnique: []
  2299. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20221215.nwb
  2300. schemaKey: Asset
  2301. schemaVersion: 0.6.7
  2302. variableMeasured: []
  2303. wasAttributedTo:
  2304. - age:
  2305. schemaKey: PropertyValue
  2306. unitText: ISO-8601 duration
  2307. value: P69Y
  2308. valueReference:
  2309. schemaKey: PropertyValue
  2310. value: dandi:BirthReference
  2311. identifier: T5_held_in_minival
  2312. schemaKey: Participant
  2313. sex:
  2314. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2315. name: Male
  2316. schemaKey: SexType
  2317. species:
  2318. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2319. name: Homo sapiens - Human
  2320. schemaKey: SpeciesType
  2321. wasGeneratedBy:
  2322. - description: human BCI participant performing attempted handwriting task
  2323. name: Acquisition session
  2324. schemaKey: Session
  2325. startDate: '2022-12-15T00:00:00-06:00'
  2326. - description: Metadata generated by DANDI cli
  2327. endDate: '2024-04-01T13:13:39.570010-04:00'
  2328. id: urn:uuid:edae929a-ab98-4e10-be3b-2022ee1ee497
  2329. name: Metadata generation
  2330. schemaKey: Activity
  2331. startDate: '2024-04-01T13:13:39.168095-04:00'
  2332. wasAssociatedWith:
  2333. - identifier: RRID:SCR_019009
  2334. name: DANDI Command Line Interface
  2335. schemaKey: Software
  2336. url: https://github.com/dandi/dandi-cli
  2337. version: 0.61.1
  2338. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2339. access:
  2340. - schemaKey: AccessRequirements
  2341. status: dandi:OpenAccess
  2342. approach: []
  2343. blobDateModified: '2024-03-27T09:55:58.534400-04:00'
  2344. contentSize: 4251285
  2345. contentUrl:
  2346. - https://api.dandiarchive.org/api/assets/360d7e11-6f26-40af-b1e3-947405ba9786/download/
  2347. - https://dandiarchive.s3.amazonaws.com/blobs/053/493/0534931a-a056-4bea-b073-9d28a32ab220
  2348. dateModified: '2024-04-01T13:13:39.794716-04:00'
  2349. digest:
  2350. dandi:dandi-etag: b5e9dc99dbd3b0d51fae9cff770d75c3-1
  2351. dandi:sha2-256: 30f195dd7fba2a0eff2a9b34afe9ba6213bcc68d48a757b0d51c0b5109601490
  2352. encodingFormat: application/x-nwb
  2353. id: dandiasset:360d7e11-6f26-40af-b1e3-947405ba9786
  2354. identifier: 360d7e11-6f26-40af-b1e3-947405ba9786
  2355. measurementTechnique: []
  2356. path: sub-T5-held-in-minival/sub-T5-held-in-minival_ses-20230228.nwb
  2357. schemaKey: Asset
  2358. schemaVersion: 0.6.7
  2359. variableMeasured: []
  2360. wasAttributedTo:
  2361. - age:
  2362. schemaKey: PropertyValue
  2363. unitText: ISO-8601 duration
  2364. value: P69Y
  2365. valueReference:
  2366. schemaKey: PropertyValue
  2367. value: dandi:BirthReference
  2368. identifier: T5_held_in_minival
  2369. schemaKey: Participant
  2370. sex:
  2371. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2372. name: Male
  2373. schemaKey: SexType
  2374. species:
  2375. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2376. name: Homo sapiens - Human
  2377. schemaKey: SpeciesType
  2378. wasGeneratedBy:
  2379. - description: human BCI participant performing attempted handwriting task
  2380. name: Acquisition session
  2381. schemaKey: Session
  2382. startDate: '2023-02-28T00:00:00-06:00'
  2383. - description: Metadata generated by DANDI cli
  2384. endDate: '2024-04-01T13:13:39.794692-04:00'
  2385. id: urn:uuid:dc6abf3c-67ab-499a-99e2-8f392631f47b
  2386. name: Metadata generation
  2387. schemaKey: Activity
  2388. startDate: '2024-04-01T13:13:39.349972-04:00'
  2389. wasAssociatedWith:
  2390. - identifier: RRID:SCR_019009
  2391. name: DANDI Command Line Interface
  2392. schemaKey: Software
  2393. url: https://github.com/dandi/dandi-cli
  2394. version: 0.61.1
  2395. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2396. access:
  2397. - schemaKey: AccessRequirements
  2398. status: dandi:OpenAccess
  2399. approach: []
  2400. blobDateModified: '2024-03-27T09:56:01.517359-04:00'
  2401. contentSize: 3312425
  2402. contentUrl:
  2403. - https://api.dandiarchive.org/api/assets/e114bc42-dcb5-4c02-b663-545b49d04664/download/
  2404. - https://dandiarchive.s3.amazonaws.com/blobs/b1e/d16/b1ed1693-b53e-430f-a9a2-cb8bf219a599
  2405. dateModified: '2024-04-01T13:13:42.634783-04:00'
  2406. digest:
  2407. dandi:dandi-etag: 6ca0918fb523cb8172a997f1b0117142-1
  2408. dandi:sha2-256: 0de25c2b32e2ea02b571c0c649d6d692546bb766d2425893662b2b8201cc9b19
  2409. encodingFormat: application/x-nwb
  2410. id: dandiasset:e114bc42-dcb5-4c02-b663-545b49d04664
  2411. identifier: e114bc42-dcb5-4c02-b663-545b49d04664
  2412. measurementTechnique: []
  2413. path: sub-T5-held-out-calib/sub-T5-held-out-calib_ses-20230417.nwb
  2414. schemaKey: Asset
  2415. schemaVersion: 0.6.7
  2416. variableMeasured: []
  2417. wasAttributedTo:
  2418. - age:
  2419. schemaKey: PropertyValue
  2420. unitText: ISO-8601 duration
  2421. value: P69Y
  2422. valueReference:
  2423. schemaKey: PropertyValue
  2424. value: dandi:BirthReference
  2425. identifier: T5_held_out_calib
  2426. schemaKey: Participant
  2427. sex:
  2428. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2429. name: Male
  2430. schemaKey: SexType
  2431. species:
  2432. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2433. name: Homo sapiens - Human
  2434. schemaKey: SpeciesType
  2435. wasGeneratedBy:
  2436. - description: human BCI participant performing attempted handwriting task
  2437. name: Acquisition session
  2438. schemaKey: Session
  2439. startDate: '2023-04-17T00:00:00-05:00'
  2440. - description: Metadata generated by DANDI cli
  2441. endDate: '2024-04-01T13:13:42.634757-04:00'
  2442. id: urn:uuid:133e5f4e-b557-42b0-b2b5-938848439d81
  2443. name: Metadata generation
  2444. schemaKey: Activity
  2445. startDate: '2024-04-01T13:13:42.238860-04:00'
  2446. wasAssociatedWith:
  2447. - identifier: RRID:SCR_019009
  2448. name: DANDI Command Line Interface
  2449. schemaKey: Software
  2450. url: https://github.com/dandi/dandi-cli
  2451. version: 0.61.1
  2452. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2453. access:
  2454. - schemaKey: AccessRequirements
  2455. status: dandi:OpenAccess
  2456. approach: []
  2457. blobDateModified: '2024-03-27T09:56:05.750300-04:00'
  2458. contentSize: 3499255
  2459. contentUrl:
  2460. - https://api.dandiarchive.org/api/assets/5ecea150-9e44-4038-abd3-88db032c3f9a/download/
  2461. - https://dandiarchive.s3.amazonaws.com/blobs/fda/1a9/fda1a956-8f87-4e7b-a5c1-3ecf5043dbb9
  2462. dateModified: '2024-04-01T13:13:42.634110-04:00'
  2463. digest:
  2464. dandi:dandi-etag: 7faf3477142d2f7bb9115ee69eab11df-1
  2465. dandi:sha2-256: bc604bbbad9e1cbe733a8585af08b54912f98801e76de48dce6d09cbae8dfc58
  2466. encodingFormat: application/x-nwb
  2467. id: dandiasset:5ecea150-9e44-4038-abd3-88db032c3f9a
  2468. identifier: 5ecea150-9e44-4038-abd3-88db032c3f9a
  2469. measurementTechnique: []
  2470. path: sub-T5-held-out-calib/sub-T5-held-out-calib_ses-20230531.nwb
  2471. schemaKey: Asset
  2472. schemaVersion: 0.6.7
  2473. variableMeasured: []
  2474. wasAttributedTo:
  2475. - age:
  2476. schemaKey: PropertyValue
  2477. unitText: ISO-8601 duration
  2478. value: P69Y
  2479. valueReference:
  2480. schemaKey: PropertyValue
  2481. value: dandi:BirthReference
  2482. identifier: T5_held_out_calib
  2483. schemaKey: Participant
  2484. sex:
  2485. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2486. name: Male
  2487. schemaKey: SexType
  2488. species:
  2489. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2490. name: Homo sapiens - Human
  2491. schemaKey: SpeciesType
  2492. wasGeneratedBy:
  2493. - description: human BCI participant performing attempted handwriting task
  2494. name: Acquisition session
  2495. schemaKey: Session
  2496. startDate: '2023-05-31T00:00:00-05:00'
  2497. - description: Metadata generated by DANDI cli
  2498. endDate: '2024-04-01T13:13:42.634068-04:00'
  2499. id: urn:uuid:ab7f02b9-cd02-4a73-904b-ea7f5aac355b
  2500. name: Metadata generation
  2501. schemaKey: Activity
  2502. startDate: '2024-04-01T13:13:42.297462-04:00'
  2503. wasAssociatedWith:
  2504. - identifier: RRID:SCR_019009
  2505. name: DANDI Command Line Interface
  2506. schemaKey: Software
  2507. url: https://github.com/dandi/dandi-cli
  2508. version: 0.61.1
  2509. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2510. access:
  2511. - schemaKey: AccessRequirements
  2512. status: dandi:OpenAccess
  2513. approach: []
  2514. blobDateModified: '2024-03-27T09:56:18.195129-04:00'
  2515. contentSize: 4790580
  2516. contentUrl:
  2517. - https://api.dandiarchive.org/api/assets/f0491291-0d91-44a9-8037-3fc2aec1be85/download/
  2518. - https://dandiarchive.s3.amazonaws.com/blobs/562/4a8/5624a801-e3c0-4b1c-aa9a-3ce5a504664e
  2519. dateModified: '2024-04-01T13:13:45.836301-04:00'
  2520. digest:
  2521. dandi:dandi-etag: 9c1f591547a58bd21ac2aab51523ccd6-1
  2522. dandi:sha2-256: 3d0c469b2d716922056b644923281911b9d721691524ca794098ab9a613f54c4
  2523. encodingFormat: application/x-nwb
  2524. id: dandiasset:f0491291-0d91-44a9-8037-3fc2aec1be85
  2525. identifier: f0491291-0d91-44a9-8037-3fc2aec1be85
  2526. measurementTechnique: []
  2527. path: sub-T5-held-out-calib/sub-T5-held-out-calib_ses-20231009.nwb
  2528. schemaKey: Asset
  2529. schemaVersion: 0.6.7
  2530. variableMeasured: []
  2531. wasAttributedTo:
  2532. - age:
  2533. schemaKey: PropertyValue
  2534. unitText: ISO-8601 duration
  2535. value: P69Y
  2536. valueReference:
  2537. schemaKey: PropertyValue
  2538. value: dandi:BirthReference
  2539. identifier: T5_held_out_calib
  2540. schemaKey: Participant
  2541. sex:
  2542. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2543. name: Male
  2544. schemaKey: SexType
  2545. species:
  2546. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2547. name: Homo sapiens - Human
  2548. schemaKey: SpeciesType
  2549. wasGeneratedBy:
  2550. - description: human BCI participant performing attempted handwriting task
  2551. name: Acquisition session
  2552. schemaKey: Session
  2553. startDate: '2023-10-09T00:00:00-05:00'
  2554. - description: Metadata generated by DANDI cli
  2555. endDate: '2024-04-01T13:13:45.836250-04:00'
  2556. id: urn:uuid:fce6a3dd-1253-4a27-95e6-8d7a63120219
  2557. name: Metadata generation
  2558. schemaKey: Activity
  2559. startDate: '2024-04-01T13:13:45.703622-04:00'
  2560. wasAssociatedWith:
  2561. - identifier: RRID:SCR_019009
  2562. name: DANDI Command Line Interface
  2563. schemaKey: Software
  2564. url: https://github.com/dandi/dandi-cli
  2565. version: 0.61.1
  2566. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2567. access:
  2568. - schemaKey: AccessRequirements
  2569. status: dandi:OpenAccess
  2570. approach: []
  2571. blobDateModified: '2024-03-27T09:56:09.974242-04:00'
  2572. contentSize: 3684515
  2573. contentUrl:
  2574. - https://api.dandiarchive.org/api/assets/8977a08d-e80d-4b20-854b-8a3858543a7f/download/
  2575. - https://dandiarchive.s3.amazonaws.com/blobs/c15/671/c156716f-0466-4303-aa80-6b22a7eab6c7
  2576. dateModified: '2024-04-01T13:13:44.510753-04:00'
  2577. digest:
  2578. dandi:dandi-etag: cd816c960d70b4e3a53cee370b2cd92e-1
  2579. dandi:sha2-256: 5bce73e437eb74c6dcaf0d1aa94b97be3dd0f405bfd6a5b98f40a429b6855df6
  2580. encodingFormat: application/x-nwb
  2581. id: dandiasset:8977a08d-e80d-4b20-854b-8a3858543a7f
  2582. identifier: 8977a08d-e80d-4b20-854b-8a3858543a7f
  2583. measurementTechnique: []
  2584. path: sub-T5-held-out-calib/sub-T5-held-out-calib_ses-20230628.nwb
  2585. schemaKey: Asset
  2586. schemaVersion: 0.6.7
  2587. variableMeasured: []
  2588. wasAttributedTo:
  2589. - age:
  2590. schemaKey: PropertyValue
  2591. unitText: ISO-8601 duration
  2592. value: P69Y
  2593. valueReference:
  2594. schemaKey: PropertyValue
  2595. value: dandi:BirthReference
  2596. identifier: T5_held_out_calib
  2597. schemaKey: Participant
  2598. sex:
  2599. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2600. name: Male
  2601. schemaKey: SexType
  2602. species:
  2603. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2604. name: Homo sapiens - Human
  2605. schemaKey: SpeciesType
  2606. wasGeneratedBy:
  2607. - description: human BCI participant performing attempted handwriting task
  2608. name: Acquisition session
  2609. schemaKey: Session
  2610. startDate: '2023-06-28T00:00:00-05:00'
  2611. - description: Metadata generated by DANDI cli
  2612. endDate: '2024-04-01T13:13:44.510720-04:00'
  2613. id: urn:uuid:a000e941-0ab5-461b-9f9d-919774c5f2aa
  2614. name: Metadata generation
  2615. schemaKey: Activity
  2616. startDate: '2024-04-01T13:13:44.308868-04:00'
  2617. wasAssociatedWith:
  2618. - identifier: RRID:SCR_019009
  2619. name: DANDI Command Line Interface
  2620. schemaKey: Software
  2621. url: https://github.com/dandi/dandi-cli
  2622. version: 0.61.1
  2623. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2624. access:
  2625. - schemaKey: AccessRequirements
  2626. status: dandi:OpenAccess
  2627. approach: []
  2628. blobDateModified: '2024-03-27T09:56:14.092186-04:00'
  2629. contentSize: 3525945
  2630. contentUrl:
  2631. - https://api.dandiarchive.org/api/assets/93ae2e77-0f81-4cd0-8e21-940e37c3dbea/download/
  2632. - https://dandiarchive.s3.amazonaws.com/blobs/ae3/603/ae36034b-73fa-4da8-8d00-7db0ec99a99e
  2633. dateModified: '2024-04-01T13:13:45.878005-04:00'
  2634. digest:
  2635. dandi:dandi-etag: 16c4ddaf4f9813da96f552363bcf60a8-1
  2636. dandi:sha2-256: b5518f4f90e1327ff5adc8803df57ebfbb99b898475be1121bcd8b230576f294
  2637. encodingFormat: application/x-nwb
  2638. id: dandiasset:93ae2e77-0f81-4cd0-8e21-940e37c3dbea
  2639. identifier: 93ae2e77-0f81-4cd0-8e21-940e37c3dbea
  2640. measurementTechnique: []
  2641. path: sub-T5-held-out-calib/sub-T5-held-out-calib_ses-20230816.nwb
  2642. schemaKey: Asset
  2643. schemaVersion: 0.6.7
  2644. variableMeasured: []
  2645. wasAttributedTo:
  2646. - age:
  2647. schemaKey: PropertyValue
  2648. unitText: ISO-8601 duration
  2649. value: P69Y
  2650. valueReference:
  2651. schemaKey: PropertyValue
  2652. value: dandi:BirthReference
  2653. identifier: T5_held_out_calib
  2654. schemaKey: Participant
  2655. sex:
  2656. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2657. name: Male
  2658. schemaKey: SexType
  2659. species:
  2660. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2661. name: Homo sapiens - Human
  2662. schemaKey: SpeciesType
  2663. wasGeneratedBy:
  2664. - description: human BCI participant performing attempted handwriting task
  2665. name: Acquisition session
  2666. schemaKey: Session
  2667. startDate: '2023-08-16T00:00:00-05:00'
  2668. - description: Metadata generated by DANDI cli
  2669. endDate: '2024-04-01T13:13:45.877966-04:00'
  2670. id: urn:uuid:de6cb199-4ac9-46e6-a079-cbb92db0ec4d
  2671. name: Metadata generation
  2672. schemaKey: Activity
  2673. startDate: '2024-04-01T13:13:45.747552-04:00'
  2674. wasAssociatedWith:
  2675. - identifier: RRID:SCR_019009
  2676. name: DANDI Command Line Interface
  2677. schemaKey: Software
  2678. url: https://github.com/dandi/dandi-cli
  2679. version: 0.61.1
Tip!

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

Comments

Loading...