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 84 KB
Raw

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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: electrophysiological approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2023-12-23T00:30:23.200000-08:00'
  9. contentSize: 324360
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/c879482c-63e6-48da-9799-4dc3b20e1424/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/d70/551/d7055193-8bdc-457c-9335-b23cc5e00169
  13. dateModified: '2023-12-23T00:52:53.105551-08:00'
  14. digest:
  15. dandi:dandi-etag: f75fb733ed91d23e88bf4fc55cdba67d-1
  16. dandi:sha2-256: 3a3591b16420f27704122545060082e53b0c3482bcab2f0dba2357efe22b93ce
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:c879482c-63e6-48da-9799-4dc3b20e1424
  19. identifier: c879482c-63e6-48da-9799-4dc3b20e1424
  20. keywords:
  21. - extracellular
  22. - ephys
  23. - maxwell
  24. measurementTechnique:
  25. - name: spike sorting technique
  26. schemaKey: MeasurementTechniqueType
  27. path: sub-U/sub-U_ses-001_obj-1ckep1j.nwb
  28. schemaKey: Asset
  29. schemaVersion: 0.6.4
  30. variableMeasured:
  31. - schemaKey: PropertyValue
  32. value: Units
  33. wasAttributedTo:
  34. - age:
  35. schemaKey: PropertyValue
  36. unitText: ISO-8601 duration
  37. value: P1D/P100Y
  38. valueReference:
  39. schemaKey: PropertyValue
  40. value: dandi:BirthReference
  41. identifier: U
  42. schemaKey: Participant
  43. sex:
  44. name: Unknown
  45. schemaKey: SexType
  46. species:
  47. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  48. name: Homo sapiens - Human
  49. schemaKey: SpeciesType
  50. wasGeneratedBy:
  51. - description: Intrinsic activity in human brain organoid slice (7month_2950_Or2_7m.mat
  52. kilosort2 output).
  53. identifier: '001'
  54. name: '001'
  55. schemaKey: Session
  56. startDate: '2023-11-27T16:09:25.189649-08:00'
  57. - description: Metadata generated by DANDI cli
  58. endDate: '2023-12-23T00:52:53.105529-08:00'
  59. id: urn:uuid:77356ec0-0e2f-4e8f-8980-7635bcc190c4
  60. name: Metadata generation
  61. schemaKey: Activity
  62. startDate: '2023-12-23T00:52:52.214386-08:00'
  63. wasAssociatedWith:
  64. - identifier: RRID:SCR_019009
  65. name: DANDI Command Line Interface
  66. schemaKey: Software
  67. url: https://github.com/dandi/dandi-cli
  68. version: 0.56.0
  69. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  70. access:
  71. - schemaKey: AccessRequirements
  72. status: dandi:OpenAccess
  73. approach:
  74. - name: electrophysiological approach
  75. schemaKey: ApproachType
  76. blobDateModified: '2023-12-23T00:30:42.280000-08:00'
  77. contentSize: 285768
  78. contentUrl:
  79. - https://api.dandiarchive.org/api/assets/c551aeb9-4b51-44c3-853d-c619abd32f12/download/
  80. - https://dandiarchive.s3.amazonaws.com/blobs/b48/fbf/b48fbf7e-e9ce-44bd-a008-505fa7833fa0
  81. dateModified: '2023-12-23T00:52:52.645033-08:00'
  82. digest:
  83. dandi:dandi-etag: 76aae45101c53d3287684d563d6f3a7f-1
  84. dandi:sha2-256: 968e659947f748f25ae9ff5f9be187ad8f18b76ec4b991c1bd3f157541e63997
  85. encodingFormat: application/x-nwb
  86. id: dandiasset:c551aeb9-4b51-44c3-853d-c619abd32f12
  87. identifier: c551aeb9-4b51-44c3-853d-c619abd32f12
  88. keywords:
  89. - extracellular
  90. - ephys
  91. - maxwell
  92. measurementTechnique:
  93. - name: spike sorting technique
  94. schemaKey: MeasurementTechniqueType
  95. path: sub-U/sub-U_ses-001_obj-1ivyiyb.nwb
  96. schemaKey: Asset
  97. schemaVersion: 0.6.4
  98. variableMeasured:
  99. - schemaKey: PropertyValue
  100. value: Units
  101. wasAttributedTo:
  102. - age:
  103. schemaKey: PropertyValue
  104. unitText: ISO-8601 duration
  105. value: P1D/P100Y
  106. valueReference:
  107. schemaKey: PropertyValue
  108. value: dandi:BirthReference
  109. identifier: U
  110. schemaKey: Participant
  111. sex:
  112. name: Unknown
  113. schemaKey: SexType
  114. species:
  115. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  116. name: Homo sapiens - Human
  117. schemaKey: SpeciesType
  118. wasGeneratedBy:
  119. - description: Intrinsic activity in human brain organoid slice (Or2_6m_sorted.mat
  120. kilosort2 output).
  121. identifier: '001'
  122. name: '001'
  123. schemaKey: Session
  124. startDate: '2023-11-27T16:09:49.644403-08:00'
  125. - description: Metadata generated by DANDI cli
  126. endDate: '2023-12-23T00:52:52.645010-08:00'
  127. id: urn:uuid:27d9f004-1eea-47fe-b29e-05339d4e5983
  128. name: Metadata generation
  129. schemaKey: Activity
  130. startDate: '2023-12-23T00:52:52.073491-08:00'
  131. wasAssociatedWith:
  132. - identifier: RRID:SCR_019009
  133. name: DANDI Command Line Interface
  134. schemaKey: Software
  135. url: https://github.com/dandi/dandi-cli
  136. version: 0.56.0
  137. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  138. access:
  139. - schemaKey: AccessRequirements
  140. status: dandi:OpenAccess
  141. approach:
  142. - name: electrophysiological approach
  143. schemaKey: ApproachType
  144. blobDateModified: '2023-12-23T00:34:49.210000-08:00'
  145. contentSize: 989344
  146. contentUrl:
  147. - https://api.dandiarchive.org/api/assets/c0cc688a-bb8c-4c40-8f35-c66c48971b85/download/
  148. - https://dandiarchive.s3.amazonaws.com/blobs/8ee/a96/8eea9607-9f6f-49d4-9038-a1dc1f1e8607
  149. dateModified: '2023-12-23T00:52:52.476460-08:00'
  150. digest:
  151. dandi:dandi-etag: 10e6c4bfddbb6194c46b866c910a382e-1
  152. dandi:sha2-256: 429653a5791acecd200c1f2fbbd6e4c773c3c2f350c0798635009c52f678556d
  153. encodingFormat: application/x-nwb
  154. id: dandiasset:c0cc688a-bb8c-4c40-8f35-c66c48971b85
  155. identifier: c0cc688a-bb8c-4c40-8f35-c66c48971b85
  156. keywords:
  157. - extracellular
  158. - ephys
  159. - maxwell
  160. measurementTechnique:
  161. - name: spike sorting technique
  162. schemaKey: MeasurementTechniqueType
  163. path: sub-U/sub-U_ses-001_obj-15pbd0g.nwb
  164. schemaKey: Asset
  165. schemaVersion: 0.6.4
  166. variableMeasured:
  167. - schemaKey: PropertyValue
  168. value: Units
  169. wasAttributedTo:
  170. - age:
  171. schemaKey: PropertyValue
  172. unitText: ISO-8601 duration
  173. value: P1D/P100Y
  174. valueReference:
  175. schemaKey: PropertyValue
  176. value: dandi:BirthReference
  177. identifier: U
  178. schemaKey: Participant
  179. sex:
  180. name: Unknown
  181. schemaKey: SexType
  182. species:
  183. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  184. name: Homo sapiens - Human
  185. schemaKey: SpeciesType
  186. wasGeneratedBy:
  187. - description: Intrinsic activity in human brain organoid slice (M3S2_sorted.mat kilosort2
  188. output).
  189. identifier: '001'
  190. name: '001'
  191. schemaKey: Session
  192. startDate: '2023-11-27T16:09:47.720151-08:00'
  193. - description: Metadata generated by DANDI cli
  194. endDate: '2023-12-23T00:52:52.476426-08:00'
  195. id: urn:uuid:435431b2-a0b2-4ef8-8219-c7034069e905
  196. name: Metadata generation
  197. schemaKey: Activity
  198. startDate: '2023-12-23T00:52:51.454483-08:00'
  199. wasAssociatedWith:
  200. - identifier: RRID:SCR_019009
  201. name: DANDI Command Line Interface
  202. schemaKey: Software
  203. url: https://github.com/dandi/dandi-cli
  204. version: 0.56.0
  205. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  206. access:
  207. - schemaKey: AccessRequirements
  208. status: dandi:OpenAccess
  209. approach:
  210. - name: electrophysiological approach
  211. schemaKey: ApproachType
  212. blobDateModified: '2023-12-23T00:30:53.170000-08:00'
  213. contentSize: 235800
  214. contentUrl:
  215. - https://api.dandiarchive.org/api/assets/ac632a6f-17d2-45e0-ab58-d56837290b85/download/
  216. - https://dandiarchive.s3.amazonaws.com/blobs/abe/eb5/abeeb5af-3b5f-4a91-b699-1df771013e92
  217. dateModified: '2023-12-23T00:52:52.962958-08:00'
  218. digest:
  219. dandi:dandi-etag: 5adbddac66b0be3bd540568b0b302490-1
  220. dandi:sha2-256: e485ae161b7f2367730a7e811d7d28438d13d229ddc5701badb511181d67f271
  221. encodingFormat: application/x-nwb
  222. id: dandiasset:ac632a6f-17d2-45e0-ab58-d56837290b85
  223. identifier: ac632a6f-17d2-45e0-ab58-d56837290b85
  224. keywords:
  225. - extracellular
  226. - ephys
  227. - maxwell
  228. measurementTechnique:
  229. - name: spike sorting technique
  230. schemaKey: MeasurementTechniqueType
  231. path: sub-U/sub-U_ses-001_obj-1c83gxr.nwb
  232. schemaKey: Asset
  233. schemaVersion: 0.6.4
  234. variableMeasured:
  235. - schemaKey: PropertyValue
  236. value: Units
  237. wasAttributedTo:
  238. - age:
  239. schemaKey: PropertyValue
  240. unitText: ISO-8601 duration
  241. value: P1D/P100Y
  242. valueReference:
  243. schemaKey: PropertyValue
  244. value: dandi:BirthReference
  245. identifier: U
  246. schemaKey: Participant
  247. sex:
  248. name: Unknown
  249. schemaKey: SexType
  250. species:
  251. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  252. name: Homo sapiens - Human
  253. schemaKey: SpeciesType
  254. wasGeneratedBy:
  255. - description: Intrinsic activity in human brain organoid slice (Or3_6m_sorted.mat
  256. kilosort2 output).
  257. identifier: '001'
  258. name: '001'
  259. schemaKey: Session
  260. startDate: '2023-11-27T16:09:50.459282-08:00'
  261. - description: Metadata generated by DANDI cli
  262. endDate: '2023-12-23T00:52:52.962936-08:00'
  263. id: urn:uuid:64bcd56f-7295-4585-9211-a3225ea4b898
  264. name: Metadata generation
  265. schemaKey: Activity
  266. startDate: '2023-12-23T00:52:52.168602-08:00'
  267. wasAssociatedWith:
  268. - identifier: RRID:SCR_019009
  269. name: DANDI Command Line Interface
  270. schemaKey: Software
  271. url: https://github.com/dandi/dandi-cli
  272. version: 0.56.0
  273. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  274. access:
  275. - schemaKey: AccessRequirements
  276. status: dandi:OpenAccess
  277. approach:
  278. - name: electrophysiological approach
  279. schemaKey: ApproachType
  280. blobDateModified: '2023-12-23T00:32:22.060000-08:00'
  281. contentSize: 6475920
  282. contentUrl:
  283. - https://api.dandiarchive.org/api/assets/015cd48c-9dfd-4486-972c-cbf8da87c041/download/
  284. - https://dandiarchive.s3.amazonaws.com/blobs/068/d43/068d4385-de6f-4f44-86e3-dfdc2388df9e
  285. dateModified: '2023-12-23T00:52:52.795852-08:00'
  286. digest:
  287. dandi:dandi-etag: 95f47ceb36de650dcd21cded0125decd-1
  288. dandi:sha2-256: 244f878a846f81365304293b51d70d13be72d781958ca7e2755b4d5cff4e9a33
  289. encodingFormat: application/x-nwb
  290. id: dandiasset:015cd48c-9dfd-4486-972c-cbf8da87c041
  291. identifier: 015cd48c-9dfd-4486-972c-cbf8da87c041
  292. keywords:
  293. - extracellular
  294. - ephys
  295. - maxwell
  296. measurementTechnique:
  297. - name: spike sorting technique
  298. schemaKey: MeasurementTechniqueType
  299. path: sub-U/sub-U_ses-001_obj-18rqaiu.nwb
  300. schemaKey: Asset
  301. schemaVersion: 0.6.4
  302. variableMeasured:
  303. - schemaKey: PropertyValue
  304. value: Units
  305. wasAttributedTo:
  306. - age:
  307. schemaKey: PropertyValue
  308. unitText: ISO-8601 duration
  309. value: P1D/P100Y
  310. valueReference:
  311. schemaKey: PropertyValue
  312. value: dandi:BirthReference
  313. identifier: U
  314. schemaKey: Participant
  315. sex:
  316. name: Unknown
  317. schemaKey: SexType
  318. species:
  319. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  320. name: Homo sapiens - Human
  321. schemaKey: SpeciesType
  322. wasGeneratedBy:
  323. - description: Intrinsic activity in human brain organoid slice (M2S2_sorted.mat kilosort2
  324. output).
  325. identifier: '001'
  326. name: '001'
  327. schemaKey: Session
  328. startDate: '2023-11-27T16:09:33.358131-08:00'
  329. - description: Metadata generated by DANDI cli
  330. endDate: '2023-12-23T00:52:52.795831-08:00'
  331. id: urn:uuid:1b0d89b8-0952-4573-9fe2-e544f563e588
  332. name: Metadata generation
  333. schemaKey: Activity
  334. startDate: '2023-12-23T00:52:51.853126-08:00'
  335. wasAssociatedWith:
  336. - identifier: RRID:SCR_019009
  337. name: DANDI Command Line Interface
  338. schemaKey: Software
  339. url: https://github.com/dandi/dandi-cli
  340. version: 0.56.0
  341. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  342. access:
  343. - schemaKey: AccessRequirements
  344. status: dandi:OpenAccess
  345. approach:
  346. - name: electrophysiological approach
  347. schemaKey: ApproachType
  348. blobDateModified: '2023-12-23T00:36:16.200000-08:00'
  349. contentSize: 353808
  350. contentUrl:
  351. - https://api.dandiarchive.org/api/assets/4f85b277-5c16-4ce2-83ac-f48884320bef/download/
  352. - https://dandiarchive.s3.amazonaws.com/blobs/bfe/ebd/bfeebdfa-a290-4448-8601-f08f17fed5f9
  353. dateModified: '2023-12-23T00:52:58.231245-08:00'
  354. digest:
  355. dandi:dandi-etag: cac8df11a524f343021303068cfe9e78-1
  356. dandi:sha2-256: 9100c0333fa222968b429c996b5c1e08da92983804be7c974f44d9dcaeeaae56
  357. encodingFormat: application/x-nwb
  358. id: dandiasset:4f85b277-5c16-4ce2-83ac-f48884320bef
  359. identifier: 4f85b277-5c16-4ce2-83ac-f48884320bef
  360. keywords:
  361. - extracellular
  362. - ephys
  363. - maxwell
  364. measurementTechnique:
  365. - name: spike sorting technique
  366. schemaKey: MeasurementTechniqueType
  367. path: sub-U/sub-U_ses-001_obj-1u8n1k8.nwb
  368. schemaKey: Asset
  369. schemaVersion: 0.6.4
  370. variableMeasured:
  371. - schemaKey: PropertyValue
  372. value: Units
  373. wasAttributedTo:
  374. - age:
  375. schemaKey: PropertyValue
  376. unitText: ISO-8601 duration
  377. value: P1D/P100Y
  378. valueReference:
  379. schemaKey: PropertyValue
  380. value: dandi:BirthReference
  381. identifier: U
  382. schemaKey: Participant
  383. sex:
  384. name: Unknown
  385. schemaKey: SexType
  386. species:
  387. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  388. name: Homo sapiens - Human
  389. schemaKey: SpeciesType
  390. wasGeneratedBy:
  391. - description: Intrinsic activity in human brain organoid slice (Development_2953_8month_Or1_8m.mat
  392. kilosort2 output).
  393. identifier: '001'
  394. name: '001'
  395. schemaKey: Session
  396. startDate: '2023-11-27T16:09:29.094293-08:00'
  397. - description: Metadata generated by DANDI cli
  398. endDate: '2023-12-23T00:52:58.231224-08:00'
  399. id: urn:uuid:f4c07e55-f93c-47fb-85b7-3a48aae996f7
  400. name: Metadata generation
  401. schemaKey: Activity
  402. startDate: '2023-12-23T00:52:57.323343-08:00'
  403. wasAssociatedWith:
  404. - identifier: RRID:SCR_019009
  405. name: DANDI Command Line Interface
  406. schemaKey: Software
  407. url: https://github.com/dandi/dandi-cli
  408. version: 0.56.0
  409. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  410. access:
  411. - schemaKey: AccessRequirements
  412. status: dandi:OpenAccess
  413. approach:
  414. - name: electrophysiological approach
  415. schemaKey: ApproachType
  416. blobDateModified: '2023-12-23T00:36:16.190000-08:00'
  417. contentSize: 292992
  418. contentUrl:
  419. - https://api.dandiarchive.org/api/assets/eebf46d7-ac41-4d5c-99fe-300c14c08f32/download/
  420. - https://dandiarchive.s3.amazonaws.com/blobs/243/eaf/243eaf61-af39-4b27-bca9-b7bd8adf682b
  421. dateModified: '2023-12-23T00:52:58.555648-08:00'
  422. digest:
  423. dandi:dandi-etag: be6a46261b115deb15b5240d79d56942-1
  424. dandi:sha2-256: a04f1300869929fb55fb1b8eab0ed3d528d662f5de4a2933c31a3b6a20c481dd
  425. encodingFormat: application/x-nwb
  426. id: dandiasset:eebf46d7-ac41-4d5c-99fe-300c14c08f32
  427. identifier: eebf46d7-ac41-4d5c-99fe-300c14c08f32
  428. keywords:
  429. - extracellular
  430. - ephys
  431. - maxwell
  432. measurementTechnique:
  433. - name: spike sorting technique
  434. schemaKey: MeasurementTechniqueType
  435. path: sub-U/sub-U_ses-001_obj-1m4ijjf.nwb
  436. schemaKey: Asset
  437. schemaVersion: 0.6.4
  438. variableMeasured:
  439. - schemaKey: PropertyValue
  440. value: Units
  441. wasAttributedTo:
  442. - age:
  443. schemaKey: PropertyValue
  444. unitText: ISO-8601 duration
  445. value: P1D/P100Y
  446. valueReference:
  447. schemaKey: PropertyValue
  448. value: dandi:BirthReference
  449. identifier: U
  450. schemaKey: Participant
  451. sex:
  452. name: Unknown
  453. schemaKey: SexType
  454. species:
  455. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  456. name: Homo sapiens - Human
  457. schemaKey: SpeciesType
  458. wasGeneratedBy:
  459. - description: Intrinsic activity in human brain organoid slice (Development_2953_7month_Or1_7m.mat
  460. kilosort2 output).
  461. identifier: '001'
  462. name: '001'
  463. schemaKey: Session
  464. startDate: '2023-11-27T16:09:28.342153-08:00'
  465. - description: Metadata generated by DANDI cli
  466. endDate: '2023-12-23T00:52:58.555626-08:00'
  467. id: urn:uuid:1ca36690-59ba-4747-8335-9561f9e40603
  468. name: Metadata generation
  469. schemaKey: Activity
  470. startDate: '2023-12-23T00:52:57.972961-08:00'
  471. wasAssociatedWith:
  472. - identifier: RRID:SCR_019009
  473. name: DANDI Command Line Interface
  474. schemaKey: Software
  475. url: https://github.com/dandi/dandi-cli
  476. version: 0.56.0
  477. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  478. access:
  479. - schemaKey: AccessRequirements
  480. status: dandi:OpenAccess
  481. approach:
  482. - name: electrophysiological approach
  483. schemaKey: ApproachType
  484. blobDateModified: '2023-12-23T00:30:23.230000-08:00'
  485. contentSize: 304320
  486. contentUrl:
  487. - https://api.dandiarchive.org/api/assets/996b37d7-0c0e-4d03-8849-6aec55ebca31/download/
  488. - https://dandiarchive.s3.amazonaws.com/blobs/d4e/2b5/d4e2b53b-825e-408a-ad49-2f49ba20cbf8
  489. dateModified: '2023-12-23T00:52:59.096515-08:00'
  490. digest:
  491. dandi:dandi-etag: 00ab056f73c8b947b4debd3b6865249e-1
  492. dandi:sha2-256: e05bf635a631a2a5274d741b48b4c4b0c8f6900c67990551ccff50768157de1a
  493. encodingFormat: application/x-nwb
  494. id: dandiasset:996b37d7-0c0e-4d03-8849-6aec55ebca31
  495. identifier: 996b37d7-0c0e-4d03-8849-6aec55ebca31
  496. keywords:
  497. - extracellular
  498. - ephys
  499. - maxwell
  500. measurementTechnique:
  501. - name: spike sorting technique
  502. schemaKey: MeasurementTechniqueType
  503. path: sub-U/sub-U_ses-001_obj-2pivir.nwb
  504. schemaKey: Asset
  505. schemaVersion: 0.6.4
  506. variableMeasured:
  507. - schemaKey: PropertyValue
  508. value: Units
  509. wasAttributedTo:
  510. - age:
  511. schemaKey: PropertyValue
  512. unitText: ISO-8601 duration
  513. value: P1D/P100Y
  514. valueReference:
  515. schemaKey: PropertyValue
  516. value: dandi:BirthReference
  517. identifier: U
  518. schemaKey: Participant
  519. sex:
  520. name: Unknown
  521. schemaKey: SexType
  522. species:
  523. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  524. name: Homo sapiens - Human
  525. schemaKey: SpeciesType
  526. wasGeneratedBy:
  527. - description: Intrinsic activity in human brain organoid slice (7month_5116_Or4_7m.mat
  528. kilosort2 output).
  529. identifier: '001'
  530. name: '001'
  531. schemaKey: Session
  532. startDate: '2023-11-27T16:09:26.891604-08:00'
  533. - description: Metadata generated by DANDI cli
  534. endDate: '2023-12-23T00:52:59.096492-08:00'
  535. id: urn:uuid:5710cf4d-4450-4b9c-a1ae-2c71fe6c1643
  536. name: Metadata generation
  537. schemaKey: Activity
  538. startDate: '2023-12-23T00:52:58.144855-08:00'
  539. wasAssociatedWith:
  540. - identifier: RRID:SCR_019009
  541. name: DANDI Command Line Interface
  542. schemaKey: Software
  543. url: https://github.com/dandi/dandi-cli
  544. version: 0.56.0
  545. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  546. access:
  547. - schemaKey: AccessRequirements
  548. status: dandi:OpenAccess
  549. approach:
  550. - name: electrophysiological approach
  551. schemaKey: ApproachType
  552. blobDateModified: '2023-12-23T00:36:16.210000-08:00'
  553. contentSize: 440720
  554. contentUrl:
  555. - https://api.dandiarchive.org/api/assets/b98f22b9-1cf2-4f07-a3fe-228eec7c5cb0/download/
  556. - https://dandiarchive.s3.amazonaws.com/blobs/a6d/8c0/a6d8c066-d7fb-40b8-86b8-81853434a85a
  557. dateModified: '2023-12-23T00:52:59.318650-08:00'
  558. digest:
  559. dandi:dandi-etag: 42e5139f3ade90dd21290d854058bf9c-1
  560. dandi:sha2-256: 4a8ee3899c43611fbeb3cb00f6d30d00690e23abad14a32cdca622413d097e75
  561. encodingFormat: application/x-nwb
  562. id: dandiasset:b98f22b9-1cf2-4f07-a3fe-228eec7c5cb0
  563. identifier: b98f22b9-1cf2-4f07-a3fe-228eec7c5cb0
  564. keywords:
  565. - extracellular
  566. - ephys
  567. - maxwell
  568. measurementTechnique:
  569. - name: spike sorting technique
  570. schemaKey: MeasurementTechniqueType
  571. path: sub-U/sub-U_ses-001_obj-702tte.nwb
  572. schemaKey: Asset
  573. schemaVersion: 0.6.4
  574. variableMeasured:
  575. - schemaKey: PropertyValue
  576. value: Units
  577. wasAttributedTo:
  578. - age:
  579. schemaKey: PropertyValue
  580. unitText: ISO-8601 duration
  581. value: P1D/P100Y
  582. valueReference:
  583. schemaKey: PropertyValue
  584. value: dandi:BirthReference
  585. identifier: U
  586. schemaKey: Participant
  587. sex:
  588. name: Unknown
  589. schemaKey: SexType
  590. species:
  591. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  592. name: Homo sapiens - Human
  593. schemaKey: SpeciesType
  594. wasGeneratedBy:
  595. - description: Intrinsic activity in human brain organoid slice (Drug_control_2953_Or1.mat
  596. kilosort2 output).
  597. identifier: '001'
  598. name: '001'
  599. schemaKey: Session
  600. startDate: '2023-11-27T16:09:29.983936-08:00'
  601. - description: Metadata generated by DANDI cli
  602. endDate: '2023-12-23T00:52:59.318628-08:00'
  603. id: urn:uuid:f4f51579-fd86-454f-814e-de85238a41c0
  604. name: Metadata generation
  605. schemaKey: Activity
  606. startDate: '2023-12-23T00:52:58.199687-08:00'
  607. wasAssociatedWith:
  608. - identifier: RRID:SCR_019009
  609. name: DANDI Command Line Interface
  610. schemaKey: Software
  611. url: https://github.com/dandi/dandi-cli
  612. version: 0.56.0
  613. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  614. access:
  615. - schemaKey: AccessRequirements
  616. status: dandi:OpenAccess
  617. approach:
  618. - name: electrophysiological approach
  619. schemaKey: ApproachType
  620. blobDateModified: '2023-12-23T00:30:23.220000-08:00'
  621. contentSize: 281280
  622. contentUrl:
  623. - https://api.dandiarchive.org/api/assets/e46da05c-611f-4074-9f75-fc0a44d1e6be/download/
  624. - https://dandiarchive.s3.amazonaws.com/blobs/8ed/c89/8edc8925-c256-4ea9-9e10-71c8a47a87e6
  625. dateModified: '2023-12-23T00:53:00.188417-08:00'
  626. digest:
  627. dandi:dandi-etag: 6f74554fb16b32684f32af574efe67ad-1
  628. dandi:sha2-256: 126ceb04671c40707ba406cb766dc3c325acd7c2679e2ec3966744db0257f131
  629. encodingFormat: application/x-nwb
  630. id: dandiasset:e46da05c-611f-4074-9f75-fc0a44d1e6be
  631. identifier: e46da05c-611f-4074-9f75-fc0a44d1e6be
  632. keywords:
  633. - extracellular
  634. - ephys
  635. - maxwell
  636. measurementTechnique:
  637. - name: spike sorting technique
  638. schemaKey: MeasurementTechniqueType
  639. path: sub-U/sub-U_ses-001_obj-90vd33.nwb
  640. schemaKey: Asset
  641. schemaVersion: 0.6.4
  642. variableMeasured:
  643. - schemaKey: PropertyValue
  644. value: Units
  645. wasAttributedTo:
  646. - age:
  647. schemaKey: PropertyValue
  648. unitText: ISO-8601 duration
  649. value: P1D/P100Y
  650. valueReference:
  651. schemaKey: PropertyValue
  652. value: dandi:BirthReference
  653. identifier: U
  654. schemaKey: Participant
  655. sex:
  656. name: Unknown
  657. schemaKey: SexType
  658. species:
  659. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  660. name: Homo sapiens - Human
  661. schemaKey: SpeciesType
  662. wasGeneratedBy:
  663. - description: Intrinsic activity in human brain organoid slice (7month_2957_Or3_7m.mat
  664. kilosort2 output).
  665. identifier: '001'
  666. name: '001'
  667. schemaKey: Session
  668. startDate: '2023-11-27T16:09:26.086414-08:00'
  669. - description: Metadata generated by DANDI cli
  670. endDate: '2023-12-23T00:53:00.188394-08:00'
  671. id: urn:uuid:c973b07a-7aee-4ab1-9f89-ebe18bcc78af
  672. name: Metadata generation
  673. schemaKey: Activity
  674. startDate: '2023-12-23T00:53:00.110083-08:00'
  675. wasAssociatedWith:
  676. - identifier: RRID:SCR_019009
  677. name: DANDI Command Line Interface
  678. schemaKey: Software
  679. url: https://github.com/dandi/dandi-cli
  680. version: 0.56.0
  681. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  682. access:
  683. - schemaKey: AccessRequirements
  684. status: dandi:OpenAccess
  685. approach:
  686. - name: electrophysiological approach
  687. schemaKey: ApproachType
  688. blobDateModified: '2023-12-23T00:33:18.680000-08:00'
  689. contentSize: 2179984
  690. contentUrl:
  691. - https://api.dandiarchive.org/api/assets/294a21c7-1d11-4f6e-a14e-ef4d8ec027c8/download/
  692. - https://dandiarchive.s3.amazonaws.com/blobs/216/a79/216a7943-cd01-4b5f-aac6-de3b552c160c
  693. dateModified: '2023-12-23T00:53:04.056324-08:00'
  694. digest:
  695. dandi:dandi-etag: 34e95d087159ad442ff32313d915cb7c-1
  696. dandi:sha2-256: 1b6475ce42acf61dc9878d39e5b79101c4655b3f5ba0504d826f1877b5d1d6cc
  697. encodingFormat: application/x-nwb
  698. id: dandiasset:294a21c7-1d11-4f6e-a14e-ef4d8ec027c8
  699. identifier: 294a21c7-1d11-4f6e-a14e-ef4d8ec027c8
  700. keywords:
  701. - extracellular
  702. - ephys
  703. - maxwell
  704. measurementTechnique:
  705. - name: spike sorting technique
  706. schemaKey: MeasurementTechniqueType
  707. path: sub-U/sub-U_ses-001_obj-w5m5b3.nwb
  708. schemaKey: Asset
  709. schemaVersion: 0.6.4
  710. variableMeasured:
  711. - schemaKey: PropertyValue
  712. value: Units
  713. wasAttributedTo:
  714. - age:
  715. schemaKey: PropertyValue
  716. unitText: ISO-8601 duration
  717. value: P1D/P100Y
  718. valueReference:
  719. schemaKey: PropertyValue
  720. value: dandi:BirthReference
  721. identifier: U
  722. schemaKey: Participant
  723. sex:
  724. name: Unknown
  725. schemaKey: SexType
  726. species:
  727. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  728. name: Homo sapiens - Human
  729. schemaKey: SpeciesType
  730. wasGeneratedBy:
  731. - description: Intrinsic activity in human brain organoid slice (M3S1_sorted.mat kilosort2
  732. output).
  733. identifier: '001'
  734. name: '001'
  735. schemaKey: Session
  736. startDate: '2023-11-27T16:09:43.763917-08:00'
  737. - description: Metadata generated by DANDI cli
  738. endDate: '2023-12-23T00:53:04.056279-08:00'
  739. id: urn:uuid:93d6499c-a13e-4f67-bcaf-174c87319b2a
  740. name: Metadata generation
  741. schemaKey: Activity
  742. startDate: '2023-12-23T00:53:01.914062-08:00'
  743. wasAssociatedWith:
  744. - identifier: RRID:SCR_019009
  745. name: DANDI Command Line Interface
  746. schemaKey: Software
  747. url: https://github.com/dandi/dandi-cli
  748. version: 0.56.0
  749. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  750. access:
  751. - schemaKey: AccessRequirements
  752. status: dandi:OpenAccess
  753. approach:
  754. - name: electrophysiological approach
  755. schemaKey: ApproachType
  756. blobDateModified: '2023-12-23T00:36:06.250000-08:00'
  757. contentSize: 226584
  758. contentUrl:
  759. - https://api.dandiarchive.org/api/assets/1df9451b-80fb-449c-af23-7216c193bbae/download/
  760. - https://dandiarchive.s3.amazonaws.com/blobs/e21/811/e2181186-2672-4d26-8f09-ad6d7b5fb5ef
  761. dateModified: '2023-12-23T00:53:04.811706-08:00'
  762. digest:
  763. dandi:dandi-etag: 86288a0220f1503ea3c28d17f8ef58a0-1
  764. dandi:sha2-256: 9b1d84eeb3f3c01f7720ce2c7905325a0f66c1d048a3cf0e1beb1c49fca1561d
  765. encodingFormat: application/x-nwb
  766. id: dandiasset:1df9451b-80fb-449c-af23-7216c193bbae
  767. identifier: 1df9451b-80fb-449c-af23-7216c193bbae
  768. keywords:
  769. - extracellular
  770. - ephys
  771. - maxwell
  772. measurementTechnique:
  773. - name: spike sorting technique
  774. schemaKey: MeasurementTechniqueType
  775. path: sub-U/sub-U_ses-001_obj-ze8ua9.nwb
  776. schemaKey: Asset
  777. schemaVersion: 0.6.4
  778. variableMeasured:
  779. - schemaKey: PropertyValue
  780. value: Units
  781. wasAttributedTo:
  782. - age:
  783. schemaKey: PropertyValue
  784. unitText: ISO-8601 duration
  785. value: P1D/P100Y
  786. valueReference:
  787. schemaKey: PropertyValue
  788. value: dandi:BirthReference
  789. identifier: U
  790. schemaKey: Participant
  791. sex:
  792. name: Unknown
  793. schemaKey: SexType
  794. species:
  795. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  796. name: Homo sapiens - Human
  797. schemaKey: SpeciesType
  798. wasGeneratedBy:
  799. - description: Intrinsic activity in human brain organoid slice (Development_2953_6month_Or1_6m.mat
  800. kilosort2 output).
  801. identifier: '001'
  802. name: '001'
  803. schemaKey: Session
  804. startDate: '2023-11-27T16:09:27.698400-08:00'
  805. - description: Metadata generated by DANDI cli
  806. endDate: '2023-12-23T00:53:04.811680-08:00'
  807. id: urn:uuid:179048f4-7673-446e-9371-63946b746466
  808. name: Metadata generation
  809. schemaKey: Activity
  810. startDate: '2023-12-23T00:53:03.789257-08:00'
  811. wasAssociatedWith:
  812. - identifier: RRID:SCR_019009
  813. name: DANDI Command Line Interface
  814. schemaKey: Software
  815. url: https://github.com/dandi/dandi-cli
  816. version: 0.56.0
  817. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  818. access:
  819. - schemaKey: AccessRequirements
  820. status: dandi:OpenAccess
  821. approach:
  822. - name: electrophysiological approach
  823. schemaKey: ApproachType
  824. blobDateModified: '2023-12-23T00:35:44.350000-08:00'
  825. contentSize: 713344
  826. contentUrl:
  827. - https://api.dandiarchive.org/api/assets/30303be3-32be-4691-911c-487db2766db4/download/
  828. - https://dandiarchive.s3.amazonaws.com/blobs/5f5/362/5f536213-9c2e-4381-9c52-4802f5340c11
  829. dateModified: '2023-12-23T00:53:05.066152-08:00'
  830. digest:
  831. dandi:dandi-etag: e56ce4cbaf0e3d25537942287bb4c8b4-1
  832. dandi:sha2-256: e16a7fb87800f47dd7d26938eee03b059496f324a3adb8c7dee1c658839cd988
  833. encodingFormat: application/x-nwb
  834. id: dandiasset:30303be3-32be-4691-911c-487db2766db4
  835. identifier: 30303be3-32be-4691-911c-487db2766db4
  836. keywords:
  837. - extracellular
  838. - ephys
  839. - maxwell
  840. measurementTechnique:
  841. - name: spike sorting technique
  842. schemaKey: MeasurementTechniqueType
  843. path: sub-U/sub-U_ses-001_obj-zm6has.nwb
  844. schemaKey: Asset
  845. schemaVersion: 0.6.4
  846. variableMeasured:
  847. - schemaKey: PropertyValue
  848. value: Units
  849. wasAttributedTo:
  850. - age:
  851. schemaKey: PropertyValue
  852. unitText: ISO-8601 duration
  853. value: P1D/P100Y
  854. valueReference:
  855. schemaKey: PropertyValue
  856. value: dandi:BirthReference
  857. identifier: U
  858. schemaKey: Participant
  859. sex:
  860. name: Unknown
  861. schemaKey: SexType
  862. species:
  863. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  864. name: Homo sapiens - Human
  865. schemaKey: SpeciesType
  866. wasGeneratedBy:
  867. - description: Intrinsic activity in human brain organoid slice (M1S1_sorted.mat kilosort2
  868. output).
  869. identifier: '001'
  870. name: '001'
  871. schemaKey: Session
  872. startDate: '2023-11-27T16:09:30.941786-08:00'
  873. - description: Metadata generated by DANDI cli
  874. endDate: '2023-12-23T00:53:05.066129-08:00'
  875. id: urn:uuid:78178d17-b273-4c27-be35-d00bc0de2839
  876. name: Metadata generation
  877. schemaKey: Activity
  878. startDate: '2023-12-23T00:53:04.012970-08:00'
  879. wasAssociatedWith:
  880. - identifier: RRID:SCR_019009
  881. name: DANDI Command Line Interface
  882. schemaKey: Software
  883. url: https://github.com/dandi/dandi-cli
  884. version: 0.56.0
  885. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  886. access:
  887. - schemaKey: AccessRequirements
  888. status: dandi:OpenAccess
  889. approach:
  890. - name: electrophysiological approach
  891. schemaKey: ApproachType
  892. blobDateModified: '2023-12-23T00:36:06.240000-08:00'
  893. contentSize: 503528
  894. contentUrl:
  895. - https://api.dandiarchive.org/api/assets/87173d6a-cfe8-422b-b8e1-7207173f7f50/download/
  896. - https://dandiarchive.s3.amazonaws.com/blobs/297/190/297190a0-1eed-4ad7-9be6-608885ca8b88
  897. dateModified: '2023-12-23T00:53:04.583426-08:00'
  898. digest:
  899. dandi:dandi-etag: 105b7bd9ef32628afe66defe4bb18ceb-1
  900. dandi:sha2-256: 9747ecb8443c2afa37ffe89f7662bc5442ed16990b18abab1b669ae5b73a9e78
  901. encodingFormat: application/x-nwb
  902. id: dandiasset:87173d6a-cfe8-422b-b8e1-7207173f7f50
  903. identifier: 87173d6a-cfe8-422b-b8e1-7207173f7f50
  904. keywords:
  905. - extracellular
  906. - ephys
  907. - maxwell
  908. measurementTechnique:
  909. - name: spike sorting technique
  910. schemaKey: MeasurementTechniqueType
  911. path: sub-U/sub-U_ses-001_obj-wrl2d3.nwb
  912. schemaKey: Asset
  913. schemaVersion: 0.6.4
  914. variableMeasured:
  915. - schemaKey: PropertyValue
  916. value: Units
  917. wasAttributedTo:
  918. - age:
  919. schemaKey: PropertyValue
  920. unitText: ISO-8601 duration
  921. value: P1D/P100Y
  922. valueReference:
  923. schemaKey: PropertyValue
  924. value: dandi:BirthReference
  925. identifier: U
  926. schemaKey: Participant
  927. sex:
  928. name: Unknown
  929. schemaKey: SexType
  930. species:
  931. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  932. name: Homo sapiens - Human
  933. schemaKey: SpeciesType
  934. wasGeneratedBy:
  935. - description: Intrinsic activity in human brain organoid slice (M1S2_sorted.mat kilosort2
  936. output).
  937. identifier: '001'
  938. name: '001'
  939. schemaKey: Session
  940. startDate: '2023-11-27T16:09:32.301944-08:00'
  941. - description: Metadata generated by DANDI cli
  942. endDate: '2023-12-23T00:53:04.583402-08:00'
  943. id: urn:uuid:21d4f9ab-37c5-4299-b22e-9c497e008cb9
  944. name: Metadata generation
  945. schemaKey: Activity
  946. startDate: '2023-12-23T00:53:03.475089-08:00'
  947. wasAssociatedWith:
  948. - identifier: RRID:SCR_019009
  949. name: DANDI Command Line Interface
  950. schemaKey: Software
  951. url: https://github.com/dandi/dandi-cli
  952. version: 0.56.0
  953. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  954. access:
  955. - schemaKey: AccessRequirements
  956. status: dandi:OpenAccess
  957. approach:
  958. - name: electrophysiological approach
  959. schemaKey: ApproachType
  960. blobDateModified: '2023-12-23T00:36:48.960000-08:00'
  961. contentSize: 1899530676
  962. contentUrl:
  963. - https://api.dandiarchive.org/api/assets/99fe7873-f6e1-4c04-b6a5-f99849ddb5d1/download/
  964. - https://dandiarchive.s3.amazonaws.com/blobs/e6a/e29/e6ae29d7-66ea-49fd-a8c7-e9f3e2bf4740
  965. dateModified: '2023-12-23T00:53:18.604016-08:00'
  966. digest:
  967. dandi:dandi-etag: 1951bf77dda994cc3e0a12ff97044908-29
  968. dandi:sha2-256: 89274309d692a5870db80541df55fb6a635e2a42021a807f0ce2eafa93a691b4
  969. encodingFormat: application/x-nwb
  970. id: dandiasset:99fe7873-f6e1-4c04-b6a5-f99849ddb5d1
  971. identifier: 99fe7873-f6e1-4c04-b6a5-f99849ddb5d1
  972. keywords:
  973. - extracellular
  974. - ephys
  975. - maxwell
  976. measurementTechnique:
  977. - name: surgical technique
  978. schemaKey: MeasurementTechniqueType
  979. - name: multi electrode extracellular electrophysiology recording technique
  980. schemaKey: MeasurementTechniqueType
  981. path: sub-U/sub-U_ses-20231119T113000_obj-10ij0mg_ecephys.nwb
  982. schemaKey: Asset
  983. schemaVersion: 0.6.4
  984. variableMeasured:
  985. - schemaKey: PropertyValue
  986. value: ElectrodeGroup
  987. - schemaKey: PropertyValue
  988. value: ElectricalSeries
  989. wasAttributedTo:
  990. - age:
  991. schemaKey: PropertyValue
  992. unitText: ISO-8601 duration
  993. value: P1D/P100Y
  994. valueReference:
  995. schemaKey: PropertyValue
  996. value: dandi:BirthReference
  997. identifier: U
  998. schemaKey: Participant
  999. sex:
  1000. name: Unknown
  1001. schemaKey: SexType
  1002. species:
  1003. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1004. name: Homo sapiens - Human
  1005. schemaKey: SpeciesType
  1006. wasGeneratedBy:
  1007. - description: Auto-generated by neuroconv
  1008. name: Acquisition session
  1009. schemaKey: Session
  1010. startDate: '2023-11-19T11:30:00-08:00'
  1011. - description: Metadata generated by DANDI cli
  1012. endDate: '2023-12-23T00:53:18.603991-08:00'
  1013. id: urn:uuid:1f2ce7f4-66a6-4a18-9d37-77f396a4cf05
  1014. name: Metadata generation
  1015. schemaKey: Activity
  1016. startDate: '2023-12-23T00:53:18.495239-08:00'
  1017. wasAssociatedWith:
  1018. - identifier: RRID:SCR_019009
  1019. name: DANDI Command Line Interface
  1020. schemaKey: Software
  1021. url: https://github.com/dandi/dandi-cli
  1022. version: 0.56.0
  1023. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1024. access:
  1025. - schemaKey: AccessRequirements
  1026. status: dandi:OpenAccess
  1027. approach:
  1028. - name: electrophysiological approach
  1029. schemaKey: ApproachType
  1030. blobDateModified: '2023-12-23T00:30:42.270000-08:00'
  1031. contentSize: 1992039521
  1032. contentUrl:
  1033. - https://api.dandiarchive.org/api/assets/75b799a7-6839-4a11-8e9a-93afc9feb6d1/download/
  1034. - https://dandiarchive.s3.amazonaws.com/blobs/fb5/cfd/fb5cfd75-1a0b-4fbb-be63-b0c81de6442e
  1035. dateModified: '2023-12-23T00:53:28.807388-08:00'
  1036. digest:
  1037. dandi:dandi-etag: d8e3ea926c8c104a3b488cd65588f9bf-30
  1038. dandi:sha2-256: 3d2ab9f8bd6dd89a0fb308a14ba5f7f402bf7ae89e6ba2f8be95a2b3ec62ddb5
  1039. encodingFormat: application/x-nwb
  1040. id: dandiasset:75b799a7-6839-4a11-8e9a-93afc9feb6d1
  1041. identifier: 75b799a7-6839-4a11-8e9a-93afc9feb6d1
  1042. keywords:
  1043. - extracellular
  1044. - ephys
  1045. - maxwell
  1046. measurementTechnique:
  1047. - name: surgical technique
  1048. schemaKey: MeasurementTechniqueType
  1049. - name: multi electrode extracellular electrophysiology recording technique
  1050. schemaKey: MeasurementTechniqueType
  1051. path: sub-U/sub-U_ses-20231119T113000_obj-195c1dk_ecephys.nwb
  1052. schemaKey: Asset
  1053. schemaVersion: 0.6.4
  1054. variableMeasured:
  1055. - schemaKey: PropertyValue
  1056. value: ElectrodeGroup
  1057. - schemaKey: PropertyValue
  1058. value: ElectricalSeries
  1059. wasAttributedTo:
  1060. - age:
  1061. schemaKey: PropertyValue
  1062. unitText: ISO-8601 duration
  1063. value: P1D/P100Y
  1064. valueReference:
  1065. schemaKey: PropertyValue
  1066. value: dandi:BirthReference
  1067. identifier: U
  1068. schemaKey: Participant
  1069. sex:
  1070. name: Unknown
  1071. schemaKey: SexType
  1072. species:
  1073. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1074. name: Homo sapiens - Human
  1075. schemaKey: SpeciesType
  1076. wasGeneratedBy:
  1077. - description: Auto-generated by neuroconv
  1078. name: Acquisition session
  1079. schemaKey: Session
  1080. startDate: '2023-11-19T11:30:00-08:00'
  1081. - description: Metadata generated by DANDI cli
  1082. endDate: '2023-12-23T00:53:28.807363-08:00'
  1083. id: urn:uuid:b1b0e095-2dcf-47da-b566-e7cfb844abb5
  1084. name: Metadata generation
  1085. schemaKey: Activity
  1086. startDate: '2023-12-23T00:53:28.436218-08:00'
  1087. wasAssociatedWith:
  1088. - identifier: RRID:SCR_019009
  1089. name: DANDI Command Line Interface
  1090. schemaKey: Software
  1091. url: https://github.com/dandi/dandi-cli
  1092. version: 0.56.0
  1093. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1094. access:
  1095. - schemaKey: AccessRequirements
  1096. status: dandi:OpenAccess
  1097. approach:
  1098. - name: electrophysiological approach
  1099. schemaKey: ApproachType
  1100. blobDateModified: '2023-12-23T00:37:19.720000-08:00'
  1101. contentSize: 2052342901
  1102. contentUrl:
  1103. - https://api.dandiarchive.org/api/assets/7f23ced9-2a65-43b5-8cc1-2c1eb6cfdfd4/download/
  1104. - https://dandiarchive.s3.amazonaws.com/blobs/715/eef/715eefc8-79b9-4436-bd3a-1ab951a0c460
  1105. dateModified: '2023-12-23T00:53:28.264028-08:00'
  1106. digest:
  1107. dandi:dandi-etag: 8bc2460a236984d5ccf9f82ca5a09f84-31
  1108. dandi:sha2-256: 8c4c246070c759afd2dac2d42caf3116b5eb858ba7e88e6c398dac6523fa0fe9
  1109. encodingFormat: application/x-nwb
  1110. id: dandiasset:7f23ced9-2a65-43b5-8cc1-2c1eb6cfdfd4
  1111. identifier: 7f23ced9-2a65-43b5-8cc1-2c1eb6cfdfd4
  1112. keywords:
  1113. - extracellular
  1114. - ephys
  1115. - maxwell
  1116. measurementTechnique:
  1117. - name: surgical technique
  1118. schemaKey: MeasurementTechniqueType
  1119. - name: multi electrode extracellular electrophysiology recording technique
  1120. schemaKey: MeasurementTechniqueType
  1121. path: sub-U/sub-U_ses-20231119T113000_obj-13gb78s_ecephys.nwb
  1122. schemaKey: Asset
  1123. schemaVersion: 0.6.4
  1124. variableMeasured:
  1125. - schemaKey: PropertyValue
  1126. value: ElectrodeGroup
  1127. - schemaKey: PropertyValue
  1128. value: ElectricalSeries
  1129. wasAttributedTo:
  1130. - age:
  1131. schemaKey: PropertyValue
  1132. unitText: ISO-8601 duration
  1133. value: P1D/P100Y
  1134. valueReference:
  1135. schemaKey: PropertyValue
  1136. value: dandi:BirthReference
  1137. identifier: U
  1138. schemaKey: Participant
  1139. sex:
  1140. name: Unknown
  1141. schemaKey: SexType
  1142. species:
  1143. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1144. name: Homo sapiens - Human
  1145. schemaKey: SpeciesType
  1146. wasGeneratedBy:
  1147. - description: Auto-generated by neuroconv
  1148. name: Acquisition session
  1149. schemaKey: Session
  1150. startDate: '2023-11-19T11:30:00-08:00'
  1151. - description: Metadata generated by DANDI cli
  1152. endDate: '2023-12-23T00:53:28.264005-08:00'
  1153. id: urn:uuid:0ee3054d-7a65-4358-8c4a-7b158bb6f16c
  1154. name: Metadata generation
  1155. schemaKey: Activity
  1156. startDate: '2023-12-23T00:53:28.130143-08:00'
  1157. wasAssociatedWith:
  1158. - identifier: RRID:SCR_019009
  1159. name: DANDI Command Line Interface
  1160. schemaKey: Software
  1161. url: https://github.com/dandi/dandi-cli
  1162. version: 0.56.0
  1163. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1164. access:
  1165. - schemaKey: AccessRequirements
  1166. status: dandi:OpenAccess
  1167. approach:
  1168. - name: electrophysiological approach
  1169. schemaKey: ApproachType
  1170. blobDateModified: '2023-12-23T00:30:23.180000-08:00'
  1171. contentSize: 2077946050
  1172. contentUrl:
  1173. - https://api.dandiarchive.org/api/assets/2ffb702a-773e-4ab5-bb02-b9dc9e108799/download/
  1174. - https://dandiarchive.s3.amazonaws.com/blobs/752/759/7527594a-39bf-424c-87ef-786f0e8f31e3
  1175. dateModified: '2023-12-23T00:53:29.152736-08:00'
  1176. digest:
  1177. dandi:dandi-etag: 29af2be861f08e07aa72cf4e5a9a5d58-31
  1178. dandi:sha2-256: 814c6949a511fdb5bc77ba2109c0e1d8f83492ce184c039d387f83049e0a6210
  1179. encodingFormat: application/x-nwb
  1180. id: dandiasset:2ffb702a-773e-4ab5-bb02-b9dc9e108799
  1181. identifier: 2ffb702a-773e-4ab5-bb02-b9dc9e108799
  1182. keywords:
  1183. - extracellular
  1184. - ephys
  1185. - maxwell
  1186. measurementTechnique:
  1187. - name: surgical technique
  1188. schemaKey: MeasurementTechniqueType
  1189. - name: multi electrode extracellular electrophysiology recording technique
  1190. schemaKey: MeasurementTechniqueType
  1191. path: sub-U/sub-U_ses-20231119T113000_obj-1cs0t8m_ecephys.nwb
  1192. schemaKey: Asset
  1193. schemaVersion: 0.6.4
  1194. variableMeasured:
  1195. - schemaKey: PropertyValue
  1196. value: ElectrodeGroup
  1197. - schemaKey: PropertyValue
  1198. value: ElectricalSeries
  1199. wasAttributedTo:
  1200. - age:
  1201. schemaKey: PropertyValue
  1202. unitText: ISO-8601 duration
  1203. value: P1D/P100Y
  1204. valueReference:
  1205. schemaKey: PropertyValue
  1206. value: dandi:BirthReference
  1207. identifier: U
  1208. schemaKey: Participant
  1209. sex:
  1210. name: Unknown
  1211. schemaKey: SexType
  1212. species:
  1213. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1214. name: Homo sapiens - Human
  1215. schemaKey: SpeciesType
  1216. wasGeneratedBy:
  1217. - description: Auto-generated by neuroconv
  1218. name: Acquisition session
  1219. schemaKey: Session
  1220. startDate: '2023-11-19T11:30:00-08:00'
  1221. - description: Metadata generated by DANDI cli
  1222. endDate: '2023-12-23T00:53:29.152712-08:00'
  1223. id: urn:uuid:47682298-9bd0-494a-83c6-125cf8c9dacc
  1224. name: Metadata generation
  1225. schemaKey: Activity
  1226. startDate: '2023-12-23T00:53:28.770721-08:00'
  1227. wasAssociatedWith:
  1228. - identifier: RRID:SCR_019009
  1229. name: DANDI Command Line Interface
  1230. schemaKey: Software
  1231. url: https://github.com/dandi/dandi-cli
  1232. version: 0.56.0
  1233. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1234. access:
  1235. - schemaKey: AccessRequirements
  1236. status: dandi:OpenAccess
  1237. approach:
  1238. - name: electrophysiological approach
  1239. schemaKey: ApproachType
  1240. blobDateModified: '2023-12-23T00:38:02.010000-08:00'
  1241. contentSize: 1918951487
  1242. contentUrl:
  1243. - https://api.dandiarchive.org/api/assets/431513f6-ae87-4190-8e67-9552607e91ab/download/
  1244. - https://dandiarchive.s3.amazonaws.com/blobs/dde/9af/dde9afe8-abe6-455a-b5cf-ed575e63c742
  1245. dateModified: '2023-12-23T01:24:55.184303-08:00'
  1246. digest:
  1247. dandi:dandi-etag: 276fa3aa872ed9a03400966062b9c018-29
  1248. dandi:sha2-256: 9d6fcede31c7b3cf7dc9c4699e5b514b4c2d6daefe324cf736093303250e9032
  1249. encodingFormat: application/x-nwb
  1250. id: dandiasset:431513f6-ae87-4190-8e67-9552607e91ab
  1251. identifier: 431513f6-ae87-4190-8e67-9552607e91ab
  1252. keywords:
  1253. - extracellular
  1254. - ephys
  1255. - maxwell
  1256. measurementTechnique:
  1257. - name: surgical technique
  1258. schemaKey: MeasurementTechniqueType
  1259. - name: multi electrode extracellular electrophysiology recording technique
  1260. schemaKey: MeasurementTechniqueType
  1261. path: sub-U/sub-U_ses-20231119T113000_obj-1e5gdym_ecephys.nwb
  1262. schemaKey: Asset
  1263. schemaVersion: 0.6.4
  1264. variableMeasured:
  1265. - schemaKey: PropertyValue
  1266. value: ElectrodeGroup
  1267. - schemaKey: PropertyValue
  1268. value: ElectricalSeries
  1269. wasAttributedTo:
  1270. - age:
  1271. schemaKey: PropertyValue
  1272. unitText: ISO-8601 duration
  1273. value: P1D/P100Y
  1274. valueReference:
  1275. schemaKey: PropertyValue
  1276. value: dandi:BirthReference
  1277. identifier: U
  1278. schemaKey: Participant
  1279. sex:
  1280. name: Unknown
  1281. schemaKey: SexType
  1282. species:
  1283. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1284. name: Homo sapiens - Human
  1285. schemaKey: SpeciesType
  1286. wasGeneratedBy:
  1287. - description: Auto-generated by neuroconv
  1288. name: Acquisition session
  1289. schemaKey: Session
  1290. startDate: '2023-11-19T11:30:00-08:00'
  1291. - description: Metadata generated by DANDI cli
  1292. endDate: '2023-12-23T01:24:55.184253-08:00'
  1293. id: urn:uuid:5c867215-254d-4d9c-8baa-ea792fb00d1e
  1294. name: Metadata generation
  1295. schemaKey: Activity
  1296. startDate: '2023-12-23T01:24:55.042308-08:00'
  1297. wasAssociatedWith:
  1298. - identifier: RRID:SCR_019009
  1299. name: DANDI Command Line Interface
  1300. schemaKey: Software
  1301. url: https://github.com/dandi/dandi-cli
  1302. version: 0.56.0
  1303. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1304. access:
  1305. - schemaKey: AccessRequirements
  1306. status: dandi:OpenAccess
  1307. approach:
  1308. - name: electrophysiological approach
  1309. schemaKey: ApproachType
  1310. blobDateModified: '2023-12-23T00:30:13.420000-08:00'
  1311. contentSize: 2001701300
  1312. contentUrl:
  1313. - https://api.dandiarchive.org/api/assets/39a94bc5-faef-4721-9ec7-10739dc88f63/download/
  1314. - https://dandiarchive.s3.amazonaws.com/blobs/e93/546/e935460d-a9db-4509-afda-1ede1715843b
  1315. dateModified: '2023-12-23T01:26:22.210791-08:00'
  1316. digest:
  1317. dandi:dandi-etag: 28e6ae762684807f99607903bb951583-30
  1318. dandi:sha2-256: 9917816d488e39b54502d6404c008e3dd912310e5013b146d8acfb579cdd2a3f
  1319. encodingFormat: application/x-nwb
  1320. id: dandiasset:39a94bc5-faef-4721-9ec7-10739dc88f63
  1321. identifier: 39a94bc5-faef-4721-9ec7-10739dc88f63
  1322. keywords:
  1323. - extracellular
  1324. - ephys
  1325. - maxwell
  1326. measurementTechnique:
  1327. - name: surgical technique
  1328. schemaKey: MeasurementTechniqueType
  1329. - name: multi electrode extracellular electrophysiology recording technique
  1330. schemaKey: MeasurementTechniqueType
  1331. path: sub-U/sub-U_ses-20231119T113000_obj-1q4jnyp_ecephys.nwb
  1332. schemaKey: Asset
  1333. schemaVersion: 0.6.4
  1334. variableMeasured:
  1335. - schemaKey: PropertyValue
  1336. value: ElectrodeGroup
  1337. - schemaKey: PropertyValue
  1338. value: ElectricalSeries
  1339. wasAttributedTo:
  1340. - age:
  1341. schemaKey: PropertyValue
  1342. unitText: ISO-8601 duration
  1343. value: P1D/P100Y
  1344. valueReference:
  1345. schemaKey: PropertyValue
  1346. value: dandi:BirthReference
  1347. identifier: U
  1348. schemaKey: Participant
  1349. sex:
  1350. name: Unknown
  1351. schemaKey: SexType
  1352. species:
  1353. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1354. name: Homo sapiens - Human
  1355. schemaKey: SpeciesType
  1356. wasGeneratedBy:
  1357. - description: Auto-generated by neuroconv
  1358. name: Acquisition session
  1359. schemaKey: Session
  1360. startDate: '2023-11-19T11:30:00-08:00'
  1361. - description: Metadata generated by DANDI cli
  1362. endDate: '2023-12-23T01:26:22.210764-08:00'
  1363. id: urn:uuid:a9ef5a4e-3d84-4bd7-856e-dbd7b4f22488
  1364. name: Metadata generation
  1365. schemaKey: Activity
  1366. startDate: '2023-12-23T01:26:21.949239-08:00'
  1367. wasAssociatedWith:
  1368. - identifier: RRID:SCR_019009
  1369. name: DANDI Command Line Interface
  1370. schemaKey: Software
  1371. url: https://github.com/dandi/dandi-cli
  1372. version: 0.56.0
  1373. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1374. access:
  1375. - schemaKey: AccessRequirements
  1376. status: dandi:OpenAccess
  1377. approach:
  1378. - name: electrophysiological approach
  1379. schemaKey: ApproachType
  1380. blobDateModified: '2023-12-23T00:36:26.180000-08:00'
  1381. contentSize: 1883111557
  1382. contentUrl:
  1383. - https://api.dandiarchive.org/api/assets/01d8d47c-a215-4d8b-b47e-21e23ce643a1/download/
  1384. - https://dandiarchive.s3.amazonaws.com/blobs/c72/f8e/c72f8e7c-3fc8-4c58-9ae8-ddb343efa69c
  1385. dateModified: '2023-12-23T01:55:15.363569-08:00'
  1386. digest:
  1387. dandi:dandi-etag: f80974d80e0a14af0564a0d71a8a0b3a-29
  1388. dandi:sha2-256: 81372fd5db48526370724b8c273687f06e81be89fa09cd9eedebaa97d6796eba
  1389. encodingFormat: application/x-nwb
  1390. id: dandiasset:01d8d47c-a215-4d8b-b47e-21e23ce643a1
  1391. identifier: 01d8d47c-a215-4d8b-b47e-21e23ce643a1
  1392. keywords:
  1393. - extracellular
  1394. - ephys
  1395. - maxwell
  1396. measurementTechnique:
  1397. - name: surgical technique
  1398. schemaKey: MeasurementTechniqueType
  1399. - name: multi electrode extracellular electrophysiology recording technique
  1400. schemaKey: MeasurementTechniqueType
  1401. path: sub-U/sub-U_ses-20231119T113000_obj-1yigkds_ecephys.nwb
  1402. schemaKey: Asset
  1403. schemaVersion: 0.6.4
  1404. variableMeasured:
  1405. - schemaKey: PropertyValue
  1406. value: ElectrodeGroup
  1407. - schemaKey: PropertyValue
  1408. value: ElectricalSeries
  1409. wasAttributedTo:
  1410. - age:
  1411. schemaKey: PropertyValue
  1412. unitText: ISO-8601 duration
  1413. value: P1D/P100Y
  1414. valueReference:
  1415. schemaKey: PropertyValue
  1416. value: dandi:BirthReference
  1417. identifier: U
  1418. schemaKey: Participant
  1419. sex:
  1420. name: Unknown
  1421. schemaKey: SexType
  1422. species:
  1423. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1424. name: Homo sapiens - Human
  1425. schemaKey: SpeciesType
  1426. wasGeneratedBy:
  1427. - description: Auto-generated by neuroconv
  1428. name: Acquisition session
  1429. schemaKey: Session
  1430. startDate: '2023-11-19T11:30:00-08:00'
  1431. - description: Metadata generated by DANDI cli
  1432. endDate: '2023-12-23T01:55:15.363547-08:00'
  1433. id: urn:uuid:05737657-8a7b-4cd0-80b9-e5820e35bcc7
  1434. name: Metadata generation
  1435. schemaKey: Activity
  1436. startDate: '2023-12-23T01:55:15.263878-08:00'
  1437. wasAssociatedWith:
  1438. - identifier: RRID:SCR_019009
  1439. name: DANDI Command Line Interface
  1440. schemaKey: Software
  1441. url: https://github.com/dandi/dandi-cli
  1442. version: 0.56.0
  1443. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1444. access:
  1445. - schemaKey: AccessRequirements
  1446. status: dandi:OpenAccess
  1447. approach:
  1448. - name: electrophysiological approach
  1449. schemaKey: ApproachType
  1450. blobDateModified: '2023-12-23T00:30:32.120000-08:00'
  1451. contentSize: 1918951487
  1452. contentUrl:
  1453. - https://api.dandiarchive.org/api/assets/583168f1-6e9c-4b31-8a80-db4ff6d4f8b6/download/
  1454. - https://dandiarchive.s3.amazonaws.com/blobs/120/9b2/1209b2b4-a1fe-48fa-b469-a846062b3d01
  1455. dateModified: '2023-12-23T02:30:31.211851-08:00'
  1456. digest:
  1457. dandi:dandi-etag: d2b36af59d6594ead6e0347ac0a142db-29
  1458. dandi:sha2-256: 1db7e9b2f15b66214dd18a57c38ef0a689074236d1d02f8f58cae4a08fa4ebca
  1459. encodingFormat: application/x-nwb
  1460. id: dandiasset:583168f1-6e9c-4b31-8a80-db4ff6d4f8b6
  1461. identifier: 583168f1-6e9c-4b31-8a80-db4ff6d4f8b6
  1462. keywords:
  1463. - extracellular
  1464. - ephys
  1465. - maxwell
  1466. measurementTechnique:
  1467. - name: surgical technique
  1468. schemaKey: MeasurementTechniqueType
  1469. - name: multi electrode extracellular electrophysiology recording technique
  1470. schemaKey: MeasurementTechniqueType
  1471. path: sub-U/sub-U_ses-20231119T113000_obj-7c50zw_ecephys.nwb
  1472. schemaKey: Asset
  1473. schemaVersion: 0.6.4
  1474. variableMeasured:
  1475. - schemaKey: PropertyValue
  1476. value: ElectrodeGroup
  1477. - schemaKey: PropertyValue
  1478. value: ElectricalSeries
  1479. wasAttributedTo:
  1480. - age:
  1481. schemaKey: PropertyValue
  1482. unitText: ISO-8601 duration
  1483. value: P1D/P100Y
  1484. valueReference:
  1485. schemaKey: PropertyValue
  1486. value: dandi:BirthReference
  1487. identifier: U
  1488. schemaKey: Participant
  1489. sex:
  1490. name: Unknown
  1491. schemaKey: SexType
  1492. species:
  1493. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1494. name: Homo sapiens - Human
  1495. schemaKey: SpeciesType
  1496. wasGeneratedBy:
  1497. - description: Auto-generated by neuroconv
  1498. name: Acquisition session
  1499. schemaKey: Session
  1500. startDate: '2023-11-19T11:30:00-08:00'
  1501. - description: Metadata generated by DANDI cli
  1502. endDate: '2023-12-23T02:30:31.211829-08:00'
  1503. id: urn:uuid:5c452f78-9ba6-4e0b-bd5c-6cdcc00813de
  1504. name: Metadata generation
  1505. schemaKey: Activity
  1506. startDate: '2023-12-23T02:30:31.108384-08:00'
  1507. wasAssociatedWith:
  1508. - identifier: RRID:SCR_019009
  1509. name: DANDI Command Line Interface
  1510. schemaKey: Software
  1511. url: https://github.com/dandi/dandi-cli
  1512. version: 0.56.0
  1513. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1514. access:
  1515. - schemaKey: AccessRequirements
  1516. status: dandi:OpenAccess
  1517. approach:
  1518. - name: electrophysiological approach
  1519. schemaKey: ApproachType
  1520. blobDateModified: '2023-12-23T00:36:06.220000-08:00'
  1521. contentSize: 4186303737
  1522. contentUrl:
  1523. - https://api.dandiarchive.org/api/assets/3e0e4d6d-393f-4a17-993e-aa97ed332940/download/
  1524. - https://dandiarchive.s3.amazonaws.com/blobs/c36/a7c/c36a7cd5-c8e1-4f1d-bfaf-396361b33d32
  1525. dateModified: '2023-12-23T01:58:41.408238-08:00'
  1526. digest:
  1527. dandi:dandi-etag: eedc9c7ccc797c4cc1c790185db7e410-63
  1528. dandi:sha2-256: 08b5dbe1929aefcc21c5ac602ed851ee0130ef25c2c24cf7996315eacb29f053
  1529. encodingFormat: application/x-nwb
  1530. id: dandiasset:3e0e4d6d-393f-4a17-993e-aa97ed332940
  1531. identifier: 3e0e4d6d-393f-4a17-993e-aa97ed332940
  1532. keywords:
  1533. - extracellular
  1534. - ephys
  1535. - maxwell
  1536. measurementTechnique:
  1537. - name: surgical technique
  1538. schemaKey: MeasurementTechniqueType
  1539. - name: multi electrode extracellular electrophysiology recording technique
  1540. schemaKey: MeasurementTechniqueType
  1541. path: sub-U/sub-U_ses-20231119T113000_obj-1ywxnj8_ecephys.nwb
  1542. schemaKey: Asset
  1543. schemaVersion: 0.6.4
  1544. variableMeasured:
  1545. - schemaKey: PropertyValue
  1546. value: ElectrodeGroup
  1547. - schemaKey: PropertyValue
  1548. value: ElectricalSeries
  1549. wasAttributedTo:
  1550. - age:
  1551. schemaKey: PropertyValue
  1552. unitText: ISO-8601 duration
  1553. value: P1D/P100Y
  1554. valueReference:
  1555. schemaKey: PropertyValue
  1556. value: dandi:BirthReference
  1557. identifier: U
  1558. schemaKey: Participant
  1559. sex:
  1560. name: Unknown
  1561. schemaKey: SexType
  1562. species:
  1563. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1564. name: Homo sapiens - Human
  1565. schemaKey: SpeciesType
  1566. wasGeneratedBy:
  1567. - description: Auto-generated by neuroconv
  1568. name: Acquisition session
  1569. schemaKey: Session
  1570. startDate: '2023-11-19T11:30:00-08:00'
  1571. - description: Metadata generated by DANDI cli
  1572. endDate: '2023-12-23T01:58:41.408213-08:00'
  1573. id: urn:uuid:8a9177a0-8463-4e0c-9689-504c8646fdff
  1574. name: Metadata generation
  1575. schemaKey: Activity
  1576. startDate: '2023-12-23T01:58:41.309210-08:00'
  1577. wasAssociatedWith:
  1578. - identifier: RRID:SCR_019009
  1579. name: DANDI Command Line Interface
  1580. schemaKey: Software
  1581. url: https://github.com/dandi/dandi-cli
  1582. version: 0.56.0
  1583. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1584. access:
  1585. - schemaKey: AccessRequirements
  1586. status: dandi:OpenAccess
  1587. approach:
  1588. - name: electrophysiological approach
  1589. schemaKey: ApproachType
  1590. blobDateModified: '2023-12-23T00:37:52-08:00'
  1591. contentSize: 2077946050
  1592. contentUrl:
  1593. - https://api.dandiarchive.org/api/assets/956ddb28-d220-49b8-8ea0-1b90be44ae2b/download/
  1594. - https://dandiarchive.s3.amazonaws.com/blobs/abf/286/abf2866d-8082-4986-af1e-247693a5a082
  1595. dateModified: '2023-12-23T03:05:57.449576-08:00'
  1596. digest:
  1597. dandi:dandi-etag: 37e1da9922b14163f8fce19910332751-31
  1598. dandi:sha2-256: 7953dcf9ed82438f5241e3e9db503bf9c757e614e2c17574545084fdf0670227
  1599. encodingFormat: application/x-nwb
  1600. id: dandiasset:956ddb28-d220-49b8-8ea0-1b90be44ae2b
  1601. identifier: 956ddb28-d220-49b8-8ea0-1b90be44ae2b
  1602. keywords:
  1603. - extracellular
  1604. - ephys
  1605. - maxwell
  1606. measurementTechnique:
  1607. - name: surgical technique
  1608. schemaKey: MeasurementTechniqueType
  1609. - name: multi electrode extracellular electrophysiology recording technique
  1610. schemaKey: MeasurementTechniqueType
  1611. path: sub-U/sub-U_ses-20231119T113000_obj-at6hmv_ecephys.nwb
  1612. schemaKey: Asset
  1613. schemaVersion: 0.6.4
  1614. variableMeasured:
  1615. - schemaKey: PropertyValue
  1616. value: ElectrodeGroup
  1617. - schemaKey: PropertyValue
  1618. value: ElectricalSeries
  1619. wasAttributedTo:
  1620. - age:
  1621. schemaKey: PropertyValue
  1622. unitText: ISO-8601 duration
  1623. value: P1D/P100Y
  1624. valueReference:
  1625. schemaKey: PropertyValue
  1626. value: dandi:BirthReference
  1627. identifier: U
  1628. schemaKey: Participant
  1629. sex:
  1630. name: Unknown
  1631. schemaKey: SexType
  1632. species:
  1633. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1634. name: Homo sapiens - Human
  1635. schemaKey: SpeciesType
  1636. wasGeneratedBy:
  1637. - description: Auto-generated by neuroconv
  1638. name: Acquisition session
  1639. schemaKey: Session
  1640. startDate: '2023-11-19T11:30:00-08:00'
  1641. - description: Metadata generated by DANDI cli
  1642. endDate: '2023-12-23T03:05:57.449553-08:00'
  1643. id: urn:uuid:4199205c-a529-4314-9806-c8e03ecbb34b
  1644. name: Metadata generation
  1645. schemaKey: Activity
  1646. startDate: '2023-12-23T03:05:57.348000-08:00'
  1647. wasAssociatedWith:
  1648. - identifier: RRID:SCR_019009
  1649. name: DANDI Command Line Interface
  1650. schemaKey: Software
  1651. url: https://github.com/dandi/dandi-cli
  1652. version: 0.56.0
  1653. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1654. access:
  1655. - schemaKey: AccessRequirements
  1656. status: dandi:OpenAccess
  1657. approach:
  1658. - name: electrophysiological approach
  1659. schemaKey: ApproachType
  1660. blobDateModified: '2023-12-23T00:35:44.320000-08:00'
  1661. contentSize: 10508501887
  1662. contentUrl:
  1663. - https://api.dandiarchive.org/api/assets/a9dc4b61-d71c-4506-8cfd-34732f6be5ad/download/
  1664. - https://dandiarchive.s3.amazonaws.com/blobs/de4/320/de4320f9-39e5-4de4-b24f-4f16b926cb19
  1665. dateModified: '2023-12-23T00:54:05.013035-08:00'
  1666. digest:
  1667. dandi:dandi-etag: 38358e214f4ec308296ae3804d506dc1-157
  1668. dandi:sha2-256: 8dbd4d944691282ec14f9e6e9ce51857a27d017a6d5086281678e96d28e01c75
  1669. encodingFormat: application/x-nwb
  1670. id: dandiasset:a9dc4b61-d71c-4506-8cfd-34732f6be5ad
  1671. identifier: a9dc4b61-d71c-4506-8cfd-34732f6be5ad
  1672. keywords:
  1673. - extracellular
  1674. - ephys
  1675. - maxwell
  1676. measurementTechnique:
  1677. - name: surgical technique
  1678. schemaKey: MeasurementTechniqueType
  1679. - name: multi electrode extracellular electrophysiology recording technique
  1680. schemaKey: MeasurementTechniqueType
  1681. path: sub-U/sub-U_ses-20231119T113000_obj-15bpqpa_ecephys.nwb
  1682. schemaKey: Asset
  1683. schemaVersion: 0.6.4
  1684. variableMeasured:
  1685. - schemaKey: PropertyValue
  1686. value: ElectrodeGroup
  1687. - schemaKey: PropertyValue
  1688. value: ElectricalSeries
  1689. wasAttributedTo:
  1690. - age:
  1691. schemaKey: PropertyValue
  1692. unitText: ISO-8601 duration
  1693. value: P1D/P100Y
  1694. valueReference:
  1695. schemaKey: PropertyValue
  1696. value: dandi:BirthReference
  1697. identifier: U
  1698. schemaKey: Participant
  1699. sex:
  1700. name: Unknown
  1701. schemaKey: SexType
  1702. species:
  1703. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1704. name: Homo sapiens - Human
  1705. schemaKey: SpeciesType
  1706. wasGeneratedBy:
  1707. - description: Auto-generated by neuroconv
  1708. name: Acquisition session
  1709. schemaKey: Session
  1710. startDate: '2023-11-19T11:30:00-08:00'
  1711. - description: Metadata generated by DANDI cli
  1712. endDate: '2023-12-23T00:54:05.013013-08:00'
  1713. id: urn:uuid:5ade2d8f-e3b7-4516-a4b0-12a57ff63222
  1714. name: Metadata generation
  1715. schemaKey: Activity
  1716. startDate: '2023-12-23T00:54:04.898087-08:00'
  1717. wasAssociatedWith:
  1718. - identifier: RRID:SCR_019009
  1719. name: DANDI Command Line Interface
  1720. schemaKey: Software
  1721. url: https://github.com/dandi/dandi-cli
  1722. version: 0.56.0
  1723. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1724. access:
  1725. - schemaKey: AccessRequirements
  1726. status: dandi:OpenAccess
  1727. approach:
  1728. - name: electrophysiological approach
  1729. schemaKey: ApproachType
  1730. blobDateModified: '2023-12-23T00:37:30.530000-08:00'
  1731. contentSize: 2063385171
  1732. contentUrl:
  1733. - https://api.dandiarchive.org/api/assets/142ba7c3-c2b3-4691-89b7-43c01f3c6e1d/download/
  1734. - https://dandiarchive.s3.amazonaws.com/blobs/253/bcc/253bcc13-667a-449d-bcc1-e27031e2e360
  1735. dateModified: '2023-12-23T03:14:05.633799-08:00'
  1736. digest:
  1737. dandi:dandi-etag: 0402429c9079faf4857bd0442d351563-31
  1738. dandi:sha2-256: f99680b96ad8d6afbc9b41d301bf741d6eaf6ed6557d8ec14e1368090a7a93bc
  1739. encodingFormat: application/x-nwb
  1740. id: dandiasset:142ba7c3-c2b3-4691-89b7-43c01f3c6e1d
  1741. identifier: 142ba7c3-c2b3-4691-89b7-43c01f3c6e1d
  1742. keywords:
  1743. - extracellular
  1744. - ephys
  1745. - maxwell
  1746. measurementTechnique:
  1747. - name: surgical technique
  1748. schemaKey: MeasurementTechniqueType
  1749. - name: multi electrode extracellular electrophysiology recording technique
  1750. schemaKey: MeasurementTechniqueType
  1751. path: sub-U/sub-U_ses-20231119T113000_obj-cjtijx_ecephys.nwb
  1752. schemaKey: Asset
  1753. schemaVersion: 0.6.4
  1754. variableMeasured:
  1755. - schemaKey: PropertyValue
  1756. value: ElectrodeGroup
  1757. - schemaKey: PropertyValue
  1758. value: ElectricalSeries
  1759. wasAttributedTo:
  1760. - age:
  1761. schemaKey: PropertyValue
  1762. unitText: ISO-8601 duration
  1763. value: P1D/P100Y
  1764. valueReference:
  1765. schemaKey: PropertyValue
  1766. value: dandi:BirthReference
  1767. identifier: U
  1768. schemaKey: Participant
  1769. sex:
  1770. name: Unknown
  1771. schemaKey: SexType
  1772. species:
  1773. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1774. name: Homo sapiens - Human
  1775. schemaKey: SpeciesType
  1776. wasGeneratedBy:
  1777. - description: Auto-generated by neuroconv
  1778. name: Acquisition session
  1779. schemaKey: Session
  1780. startDate: '2023-11-19T11:30:00-08:00'
  1781. - description: Metadata generated by DANDI cli
  1782. endDate: '2023-12-23T03:14:05.633778-08:00'
  1783. id: urn:uuid:7ea92455-36c7-45d1-a1eb-c340db2cd3e7
  1784. name: Metadata generation
  1785. schemaKey: Activity
  1786. startDate: '2023-12-23T03:14:05.532733-08:00'
  1787. wasAssociatedWith:
  1788. - identifier: RRID:SCR_019009
  1789. name: DANDI Command Line Interface
  1790. schemaKey: Software
  1791. url: https://github.com/dandi/dandi-cli
  1792. version: 0.56.0
  1793. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1794. access:
  1795. - schemaKey: AccessRequirements
  1796. status: dandi:OpenAccess
  1797. approach:
  1798. - name: electrophysiological approach
  1799. schemaKey: ApproachType
  1800. blobDateModified: '2023-12-23T00:37:41-08:00'
  1801. contentSize: 2001701300
  1802. contentUrl:
  1803. - https://api.dandiarchive.org/api/assets/57cbde01-c57b-4440-970f-058d9d5b9e56/download/
  1804. - https://dandiarchive.s3.amazonaws.com/blobs/1ba/f50/1baf50b7-de10-441f-a276-c3861fdbee52
  1805. dateModified: '2023-12-23T03:43:10.645523-08:00'
  1806. digest:
  1807. dandi:dandi-etag: f76c12b17223513a1479608ef4ac751f-30
  1808. dandi:sha2-256: 0688cbc6979b185a74efcbb3cb4070807884ad7604f04934ceda6f0c25adad3d
  1809. encodingFormat: application/x-nwb
  1810. id: dandiasset:57cbde01-c57b-4440-970f-058d9d5b9e56
  1811. identifier: 57cbde01-c57b-4440-970f-058d9d5b9e56
  1812. keywords:
  1813. - extracellular
  1814. - ephys
  1815. - maxwell
  1816. measurementTechnique:
  1817. - name: surgical technique
  1818. schemaKey: MeasurementTechniqueType
  1819. - name: multi electrode extracellular electrophysiology recording technique
  1820. schemaKey: MeasurementTechniqueType
  1821. path: sub-U/sub-U_ses-20231119T113000_obj-en3uzn_ecephys.nwb
  1822. schemaKey: Asset
  1823. schemaVersion: 0.6.4
  1824. variableMeasured:
  1825. - schemaKey: PropertyValue
  1826. value: ElectrodeGroup
  1827. - schemaKey: PropertyValue
  1828. value: ElectricalSeries
  1829. wasAttributedTo:
  1830. - age:
  1831. schemaKey: PropertyValue
  1832. unitText: ISO-8601 duration
  1833. value: P1D/P100Y
  1834. valueReference:
  1835. schemaKey: PropertyValue
  1836. value: dandi:BirthReference
  1837. identifier: U
  1838. schemaKey: Participant
  1839. sex:
  1840. name: Unknown
  1841. schemaKey: SexType
  1842. species:
  1843. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1844. name: Homo sapiens - Human
  1845. schemaKey: SpeciesType
  1846. wasGeneratedBy:
  1847. - description: Auto-generated by neuroconv
  1848. name: Acquisition session
  1849. schemaKey: Session
  1850. startDate: '2023-11-19T11:30:00-08:00'
  1851. - description: Metadata generated by DANDI cli
  1852. endDate: '2023-12-23T03:43:10.645501-08:00'
  1853. id: urn:uuid:532058fa-3a87-41dd-b608-a0ed0caa45da
  1854. name: Metadata generation
  1855. schemaKey: Activity
  1856. startDate: '2023-12-23T03:43:10.532369-08:00'
  1857. wasAssociatedWith:
  1858. - identifier: RRID:SCR_019009
  1859. name: DANDI Command Line Interface
  1860. schemaKey: Software
  1861. url: https://github.com/dandi/dandi-cli
  1862. version: 0.56.0
  1863. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1864. access:
  1865. - schemaKey: AccessRequirements
  1866. status: dandi:OpenAccess
  1867. approach:
  1868. - name: electrophysiological approach
  1869. schemaKey: ApproachType
  1870. blobDateModified: '2023-12-23T00:37:08.970000-08:00'
  1871. contentSize: 1905070308
  1872. contentUrl:
  1873. - https://api.dandiarchive.org/api/assets/6a9e4623-b397-4be8-a61b-327d463b8e72/download/
  1874. - https://dandiarchive.s3.amazonaws.com/blobs/5eb/abc/5ebabc1e-78a5-4aaa-94db-f583961ce094
  1875. dateModified: '2023-12-23T03:46:43.149425-08:00'
  1876. digest:
  1877. dandi:dandi-etag: 1da879077904ba74ee032a0eca49a73c-29
  1878. dandi:sha2-256: 9dde0286d69f6cec6a0b20390d7891f7ca71d23b5fedaf5bfa1adb62e6615ea9
  1879. encodingFormat: application/x-nwb
  1880. id: dandiasset:6a9e4623-b397-4be8-a61b-327d463b8e72
  1881. identifier: 6a9e4623-b397-4be8-a61b-327d463b8e72
  1882. keywords:
  1883. - extracellular
  1884. - ephys
  1885. - maxwell
  1886. measurementTechnique:
  1887. - name: surgical technique
  1888. schemaKey: MeasurementTechniqueType
  1889. - name: multi electrode extracellular electrophysiology recording technique
  1890. schemaKey: MeasurementTechniqueType
  1891. path: sub-U/sub-U_ses-20231119T113000_obj-fvpkkt_ecephys.nwb
  1892. schemaKey: Asset
  1893. schemaVersion: 0.6.4
  1894. variableMeasured:
  1895. - schemaKey: PropertyValue
  1896. value: ElectrodeGroup
  1897. - schemaKey: PropertyValue
  1898. value: ElectricalSeries
  1899. wasAttributedTo:
  1900. - age:
  1901. schemaKey: PropertyValue
  1902. unitText: ISO-8601 duration
  1903. value: P1D/P100Y
  1904. valueReference:
  1905. schemaKey: PropertyValue
  1906. value: dandi:BirthReference
  1907. identifier: U
  1908. schemaKey: Participant
  1909. sex:
  1910. name: Unknown
  1911. schemaKey: SexType
  1912. species:
  1913. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1914. name: Homo sapiens - Human
  1915. schemaKey: SpeciesType
  1916. wasGeneratedBy:
  1917. - description: Auto-generated by neuroconv
  1918. name: Acquisition session
  1919. schemaKey: Session
  1920. startDate: '2023-11-19T11:30:00-08:00'
  1921. - description: Metadata generated by DANDI cli
  1922. endDate: '2023-12-23T03:46:43.149403-08:00'
  1923. id: urn:uuid:5e9df6dd-5f77-4bcd-967f-92ecb05d32ad
  1924. name: Metadata generation
  1925. schemaKey: Activity
  1926. startDate: '2023-12-23T03:46:43.048348-08:00'
  1927. wasAssociatedWith:
  1928. - identifier: RRID:SCR_019009
  1929. name: DANDI Command Line Interface
  1930. schemaKey: Software
  1931. url: https://github.com/dandi/dandi-cli
  1932. version: 0.56.0
  1933. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1934. access:
  1935. - schemaKey: AccessRequirements
  1936. status: dandi:OpenAccess
  1937. approach:
  1938. - name: electrophysiological approach
  1939. schemaKey: ApproachType
  1940. blobDateModified: '2023-12-23T00:30:53.140000-08:00'
  1941. contentSize: 2086297303
  1942. contentUrl:
  1943. - https://api.dandiarchive.org/api/assets/fdc32930-fd65-4d7d-a4dd-67342db5ad2c/download/
  1944. - https://dandiarchive.s3.amazonaws.com/blobs/3b0/3ba/3b03ba42-c774-4935-9e8b-76ddc8972914
  1945. dateModified: '2023-12-23T03:49:12.599440-08:00'
  1946. digest:
  1947. dandi:dandi-etag: 6a24fd11015508d60a31aaab858c01b2-32
  1948. dandi:sha2-256: f69f5b9d7c6eccdaca896c6eb5dc79ba7bc9a8a14339bf908115fb37347f55c7
  1949. encodingFormat: application/x-nwb
  1950. id: dandiasset:fdc32930-fd65-4d7d-a4dd-67342db5ad2c
  1951. identifier: fdc32930-fd65-4d7d-a4dd-67342db5ad2c
  1952. keywords:
  1953. - extracellular
  1954. - ephys
  1955. - maxwell
  1956. measurementTechnique:
  1957. - name: surgical technique
  1958. schemaKey: MeasurementTechniqueType
  1959. - name: multi electrode extracellular electrophysiology recording technique
  1960. schemaKey: MeasurementTechniqueType
  1961. path: sub-U/sub-U_ses-20231119T113000_obj-hom2cn_ecephys.nwb
  1962. schemaKey: Asset
  1963. schemaVersion: 0.6.4
  1964. variableMeasured:
  1965. - schemaKey: PropertyValue
  1966. value: ElectrodeGroup
  1967. - schemaKey: PropertyValue
  1968. value: ElectricalSeries
  1969. wasAttributedTo:
  1970. - age:
  1971. schemaKey: PropertyValue
  1972. unitText: ISO-8601 duration
  1973. value: P1D/P100Y
  1974. valueReference:
  1975. schemaKey: PropertyValue
  1976. value: dandi:BirthReference
  1977. identifier: U
  1978. schemaKey: Participant
  1979. sex:
  1980. name: Unknown
  1981. schemaKey: SexType
  1982. species:
  1983. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1984. name: Homo sapiens - Human
  1985. schemaKey: SpeciesType
  1986. wasGeneratedBy:
  1987. - description: Auto-generated by neuroconv
  1988. name: Acquisition session
  1989. schemaKey: Session
  1990. startDate: '2023-11-19T11:30:00-08:00'
  1991. - description: Metadata generated by DANDI cli
  1992. endDate: '2023-12-23T03:49:12.599418-08:00'
  1993. id: urn:uuid:7a3f1db3-5df3-4761-b326-efefcc1bada5
  1994. name: Metadata generation
  1995. schemaKey: Activity
  1996. startDate: '2023-12-23T03:49:12.491439-08:00'
  1997. wasAssociatedWith:
  1998. - identifier: RRID:SCR_019009
  1999. name: DANDI Command Line Interface
  2000. schemaKey: Software
  2001. url: https://github.com/dandi/dandi-cli
  2002. version: 0.56.0
  2003. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2004. access:
  2005. - schemaKey: AccessRequirements
  2006. status: dandi:OpenAccess
  2007. approach:
  2008. - name: electrophysiological approach
  2009. schemaKey: ApproachType
  2010. blobDateModified: '2023-12-23T00:36:16.180000-08:00'
  2011. contentSize: 1902722371
  2012. contentUrl:
  2013. - https://api.dandiarchive.org/api/assets/6e2c48ba-8881-44f3-a23d-4560c2a178fe/download/
  2014. - https://dandiarchive.s3.amazonaws.com/blobs/b95/0bc/b950bc13-4134-45bb-b623-287ce63f41be
  2015. dateModified: '2023-12-23T04:18:18.748066-08:00'
  2016. digest:
  2017. dandi:dandi-etag: 203b3bb19c9b8339dc5a725e21add1f1-29
  2018. dandi:sha2-256: e6788a8ac22099c7b818b6758ca440d2fedcdeff38a8135915aabc34552a74d4
  2019. encodingFormat: application/x-nwb
  2020. id: dandiasset:6e2c48ba-8881-44f3-a23d-4560c2a178fe
  2021. identifier: 6e2c48ba-8881-44f3-a23d-4560c2a178fe
  2022. keywords:
  2023. - extracellular
  2024. - ephys
  2025. - maxwell
  2026. measurementTechnique:
  2027. - name: surgical technique
  2028. schemaKey: MeasurementTechniqueType
  2029. - name: multi electrode extracellular electrophysiology recording technique
  2030. schemaKey: MeasurementTechniqueType
  2031. path: sub-U/sub-U_ses-20231119T113000_obj-oqeor8_ecephys.nwb
  2032. schemaKey: Asset
  2033. schemaVersion: 0.6.4
  2034. variableMeasured:
  2035. - schemaKey: PropertyValue
  2036. value: ElectrodeGroup
  2037. - schemaKey: PropertyValue
  2038. value: ElectricalSeries
  2039. wasAttributedTo:
  2040. - age:
  2041. schemaKey: PropertyValue
  2042. unitText: ISO-8601 duration
  2043. value: P1D/P100Y
  2044. valueReference:
  2045. schemaKey: PropertyValue
  2046. value: dandi:BirthReference
  2047. identifier: U
  2048. schemaKey: Participant
  2049. sex:
  2050. name: Unknown
  2051. schemaKey: SexType
  2052. species:
  2053. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2054. name: Homo sapiens - Human
  2055. schemaKey: SpeciesType
  2056. wasGeneratedBy:
  2057. - description: Auto-generated by neuroconv
  2058. name: Acquisition session
  2059. schemaKey: Session
  2060. startDate: '2023-11-19T11:30:00-08:00'
  2061. - description: Metadata generated by DANDI cli
  2062. endDate: '2023-12-23T04:18:18.748039-08:00'
  2063. id: urn:uuid:69ab1298-6fe8-4b55-a017-a18161c1e193
  2064. name: Metadata generation
  2065. schemaKey: Activity
  2066. startDate: '2023-12-23T04:18:18.639971-08:00'
  2067. wasAssociatedWith:
  2068. - identifier: RRID:SCR_019009
  2069. name: DANDI Command Line Interface
  2070. schemaKey: Software
  2071. url: https://github.com/dandi/dandi-cli
  2072. version: 0.56.0
  2073. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2074. access:
  2075. - schemaKey: AccessRequirements
  2076. status: dandi:OpenAccess
  2077. approach:
  2078. - name: electrophysiological approach
  2079. schemaKey: ApproachType
  2080. blobDateModified: '2023-12-23T00:36:58.990000-08:00'
  2081. contentSize: 1910675103
  2082. contentUrl:
  2083. - https://api.dandiarchive.org/api/assets/fa317b31-aeeb-459a-a12c-6fafad0e72ee/download/
  2084. - https://dandiarchive.s3.amazonaws.com/blobs/37e/b44/37eb4480-0ca5-4b3f-aab1-a071a8b04d98
  2085. dateModified: '2023-12-23T04:49:46.639388-08:00'
  2086. digest:
  2087. dandi:dandi-etag: 2ede90d75829e2f64f2b84017207cfe3-29
  2088. dandi:sha2-256: 029a5af7dd0b7ed67fc836a0037a4ab70a4d1f99d43de81567c03f18ee2f802a
  2089. encodingFormat: application/x-nwb
  2090. id: dandiasset:fa317b31-aeeb-459a-a12c-6fafad0e72ee
  2091. identifier: fa317b31-aeeb-459a-a12c-6fafad0e72ee
  2092. keywords:
  2093. - extracellular
  2094. - ephys
  2095. - maxwell
  2096. measurementTechnique:
  2097. - name: surgical technique
  2098. schemaKey: MeasurementTechniqueType
  2099. - name: multi electrode extracellular electrophysiology recording technique
  2100. schemaKey: MeasurementTechniqueType
  2101. path: sub-U/sub-U_ses-20231119T113000_obj-skejyf_ecephys.nwb
  2102. schemaKey: Asset
  2103. schemaVersion: 0.6.4
  2104. variableMeasured:
  2105. - schemaKey: PropertyValue
  2106. value: ElectrodeGroup
  2107. - schemaKey: PropertyValue
  2108. value: ElectricalSeries
  2109. wasAttributedTo:
  2110. - age:
  2111. schemaKey: PropertyValue
  2112. unitText: ISO-8601 duration
  2113. value: P1D/P100Y
  2114. valueReference:
  2115. schemaKey: PropertyValue
  2116. value: dandi:BirthReference
  2117. identifier: U
  2118. schemaKey: Participant
  2119. sex:
  2120. name: Unknown
  2121. schemaKey: SexType
  2122. species:
  2123. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2124. name: Homo sapiens - Human
  2125. schemaKey: SpeciesType
  2126. wasGeneratedBy:
  2127. - description: Auto-generated by neuroconv
  2128. name: Acquisition session
  2129. schemaKey: Session
  2130. startDate: '2023-11-19T11:30:00-08:00'
  2131. - description: Metadata generated by DANDI cli
  2132. endDate: '2023-12-23T04:49:46.639366-08:00'
  2133. id: urn:uuid:1920488b-0608-4aa6-93f2-03d710bb3246
  2134. name: Metadata generation
  2135. schemaKey: Activity
  2136. startDate: '2023-12-23T04:49:46.531068-08:00'
  2137. wasAssociatedWith:
  2138. - identifier: RRID:SCR_019009
  2139. name: DANDI Command Line Interface
  2140. schemaKey: Software
  2141. url: https://github.com/dandi/dandi-cli
  2142. version: 0.56.0
  2143. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2144. access:
  2145. - schemaKey: AccessRequirements
  2146. status: dandi:OpenAccess
  2147. approach:
  2148. - name: electrophysiological approach
  2149. schemaKey: ApproachType
  2150. blobDateModified: '2023-12-23T00:36:38.960000-08:00'
  2151. contentSize: 2433881300
  2152. contentUrl:
  2153. - https://api.dandiarchive.org/api/assets/a152ea8c-f828-4ea9-8b58-5edbb93f20a8/download/
  2154. - https://dandiarchive.s3.amazonaws.com/blobs/c4d/2e4/c4d2e4bb-e08b-4e35-847f-97e9f14751f5
  2155. dateModified: '2023-12-23T05:22:08.871451-08:00'
  2156. digest:
  2157. dandi:dandi-etag: 967eb5615e84c84ddb97870bbe9dc101-37
  2158. dandi:sha2-256: f6c9bc9d686dacdf71719de307c3cc6e2bc9164290f56bba3a39c76aee13f215
  2159. encodingFormat: application/x-nwb
  2160. id: dandiasset:a152ea8c-f828-4ea9-8b58-5edbb93f20a8
  2161. identifier: a152ea8c-f828-4ea9-8b58-5edbb93f20a8
  2162. keywords:
  2163. - extracellular
  2164. - ephys
  2165. - maxwell
  2166. measurementTechnique:
  2167. - name: surgical technique
  2168. schemaKey: MeasurementTechniqueType
  2169. - name: multi electrode extracellular electrophysiology recording technique
  2170. schemaKey: MeasurementTechniqueType
  2171. path: sub-U/sub-U_ses-20231119T113000_obj-zvgjcc_ecephys.nwb
  2172. schemaKey: Asset
  2173. schemaVersion: 0.6.4
  2174. variableMeasured:
  2175. - schemaKey: PropertyValue
  2176. value: ElectrodeGroup
  2177. - schemaKey: PropertyValue
  2178. value: ElectricalSeries
  2179. wasAttributedTo:
  2180. - age:
  2181. schemaKey: PropertyValue
  2182. unitText: ISO-8601 duration
  2183. value: P1D/P100Y
  2184. valueReference:
  2185. schemaKey: PropertyValue
  2186. value: dandi:BirthReference
  2187. identifier: U
  2188. schemaKey: Participant
  2189. sex:
  2190. name: Unknown
  2191. schemaKey: SexType
  2192. species:
  2193. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2194. name: Homo sapiens - Human
  2195. schemaKey: SpeciesType
  2196. wasGeneratedBy:
  2197. - description: Auto-generated by neuroconv
  2198. name: Acquisition session
  2199. schemaKey: Session
  2200. startDate: '2023-11-19T11:30:00-08:00'
  2201. - description: Metadata generated by DANDI cli
  2202. endDate: '2023-12-23T05:22:08.871429-08:00'
  2203. id: urn:uuid:041ff43a-31c0-4e6d-937d-2d66f6668ed2
  2204. name: Metadata generation
  2205. schemaKey: Activity
  2206. startDate: '2023-12-23T05:22:08.768570-08:00'
  2207. wasAssociatedWith:
  2208. - identifier: RRID:SCR_019009
  2209. name: DANDI Command Line Interface
  2210. schemaKey: Software
  2211. url: https://github.com/dandi/dandi-cli
  2212. version: 0.56.0
  2213. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2214. access:
  2215. - schemaKey: AccessRequirements
  2216. status: dandi:OpenAccess
  2217. approach:
  2218. - name: electrophysiological approach
  2219. schemaKey: ApproachType
  2220. blobDateModified: '2023-12-23T00:34:49.210000-08:00'
  2221. contentSize: 17246205000
  2222. contentUrl:
  2223. - https://api.dandiarchive.org/api/assets/209fccc1-79d3-4981-9123-b85444bece8c/download/
  2224. - https://dandiarchive.s3.amazonaws.com/blobs/cb5/dd4/cb5dd4a2-9cf2-4965-8e60-ce55d6a79f9a
  2225. dateModified: '2023-12-23T01:26:37.010873-08:00'
  2226. digest:
  2227. dandi:dandi-etag: 3b938e6e8b2c015220f5b94a3cddbe30-257
  2228. dandi:sha2-256: d18e9b3f603fb08c490707a8d8ca45a5c71bf71fc95543aad76c9d09f1d8e6f3
  2229. encodingFormat: application/x-nwb
  2230. id: dandiasset:209fccc1-79d3-4981-9123-b85444bece8c
  2231. identifier: 209fccc1-79d3-4981-9123-b85444bece8c
  2232. keywords:
  2233. - extracellular
  2234. - ephys
  2235. - maxwell
  2236. measurementTechnique:
  2237. - name: surgical technique
  2238. schemaKey: MeasurementTechniqueType
  2239. - name: multi electrode extracellular electrophysiology recording technique
  2240. schemaKey: MeasurementTechniqueType
  2241. path: sub-U/sub-U_ses-20231119T113000_obj-1kcinv8_ecephys.nwb
  2242. schemaKey: Asset
  2243. schemaVersion: 0.6.4
  2244. variableMeasured:
  2245. - schemaKey: PropertyValue
  2246. value: ElectrodeGroup
  2247. - schemaKey: PropertyValue
  2248. value: ElectricalSeries
  2249. wasAttributedTo:
  2250. - age:
  2251. schemaKey: PropertyValue
  2252. unitText: ISO-8601 duration
  2253. value: P1D/P100Y
  2254. valueReference:
  2255. schemaKey: PropertyValue
  2256. value: dandi:BirthReference
  2257. identifier: U
  2258. schemaKey: Participant
  2259. sex:
  2260. name: Unknown
  2261. schemaKey: SexType
  2262. species:
  2263. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2264. name: Homo sapiens - Human
  2265. schemaKey: SpeciesType
  2266. wasGeneratedBy:
  2267. - description: Auto-generated by neuroconv
  2268. name: Acquisition session
  2269. schemaKey: Session
  2270. startDate: '2023-11-19T11:30:00-08:00'
  2271. - description: Metadata generated by DANDI cli
  2272. endDate: '2023-12-23T01:26:37.010846-08:00'
  2273. id: urn:uuid:1acb60a0-1011-48d7-881a-e2e471322b4b
  2274. name: Metadata generation
  2275. schemaKey: Activity
  2276. startDate: '2023-12-23T01:26:36.846301-08:00'
  2277. wasAssociatedWith:
  2278. - identifier: RRID:SCR_019009
  2279. name: DANDI Command Line Interface
  2280. schemaKey: Software
  2281. url: https://github.com/dandi/dandi-cli
  2282. version: 0.56.0
  2283. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2284. access:
  2285. - schemaKey: AccessRequirements
  2286. status: dandi:OpenAccess
  2287. approach:
  2288. - name: electrophysiological approach
  2289. schemaKey: ApproachType
  2290. blobDateModified: '2023-12-23T00:33:18.660000-08:00'
  2291. contentSize: 10821851570
  2292. contentUrl:
  2293. - https://api.dandiarchive.org/api/assets/552ee8bb-1801-44f4-b2f3-fa39ae27c2c1/download/
  2294. - https://dandiarchive.s3.amazonaws.com/blobs/5fc/9ba/5fc9ba4d-48fd-4d9a-9c66-f369bcfd6e42
  2295. dateModified: '2023-12-23T04:15:03.518195-08:00'
  2296. digest:
  2297. dandi:dandi-etag: a1c74a4efb68488095f4fb5825cc1495-162
  2298. dandi:sha2-256: 653296c968f1d6ae6a0261510991989f7ec6c131fcb6d33de547087fcfa522f0
  2299. encodingFormat: application/x-nwb
  2300. id: dandiasset:552ee8bb-1801-44f4-b2f3-fa39ae27c2c1
  2301. identifier: 552ee8bb-1801-44f4-b2f3-fa39ae27c2c1
  2302. keywords:
  2303. - extracellular
  2304. - ephys
  2305. - maxwell
  2306. measurementTechnique:
  2307. - name: surgical technique
  2308. schemaKey: MeasurementTechniqueType
  2309. - name: multi electrode extracellular electrophysiology recording technique
  2310. schemaKey: MeasurementTechniqueType
  2311. path: sub-U/sub-U_ses-20231119T113000_obj-m6lpfz_ecephys.nwb
  2312. schemaKey: Asset
  2313. schemaVersion: 0.6.4
  2314. variableMeasured:
  2315. - schemaKey: PropertyValue
  2316. value: ElectrodeGroup
  2317. - schemaKey: PropertyValue
  2318. value: ElectricalSeries
  2319. wasAttributedTo:
  2320. - age:
  2321. schemaKey: PropertyValue
  2322. unitText: ISO-8601 duration
  2323. value: P1D/P100Y
  2324. valueReference:
  2325. schemaKey: PropertyValue
  2326. value: dandi:BirthReference
  2327. identifier: U
  2328. schemaKey: Participant
  2329. sex:
  2330. name: Unknown
  2331. schemaKey: SexType
  2332. species:
  2333. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2334. name: Homo sapiens - Human
  2335. schemaKey: SpeciesType
  2336. wasGeneratedBy:
  2337. - description: Auto-generated by neuroconv
  2338. name: Acquisition session
  2339. schemaKey: Session
  2340. startDate: '2023-11-19T11:30:00-08:00'
  2341. - description: Metadata generated by DANDI cli
  2342. endDate: '2023-12-23T04:15:03.518173-08:00'
  2343. id: urn:uuid:ab3026c3-218b-4a96-831a-51032451b221
  2344. name: Metadata generation
  2345. schemaKey: Activity
  2346. startDate: '2023-12-23T04:15:03.411743-08:00'
  2347. wasAssociatedWith:
  2348. - identifier: RRID:SCR_019009
  2349. name: DANDI Command Line Interface
  2350. schemaKey: Software
  2351. url: https://github.com/dandi/dandi-cli
  2352. version: 0.56.0
  2353. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2354. access:
  2355. - schemaKey: AccessRequirements
  2356. status: dandi:OpenAccess
  2357. approach:
  2358. - name: electrophysiological approach
  2359. schemaKey: ApproachType
  2360. blobDateModified: '2023-12-23T00:39:52.420000-08:00'
  2361. contentSize: 21014152609
  2362. contentUrl:
  2363. - https://api.dandiarchive.org/api/assets/04b89d5d-d03e-4038-b75e-ba2dc5e2610d/download/
  2364. - https://dandiarchive.s3.amazonaws.com/blobs/368/28d/36828d92-1207-4686-99b1-2ac4117db98e
  2365. dateModified: '2023-12-23T01:29:26.653625-08:00'
  2366. digest:
  2367. dandi:dandi-etag: e80d3ed8a56fe16bb561f7d1b85e171f-314
  2368. dandi:sha2-256: 4ce8ad79ad7bc95be570b2b093ff0ed8b212bca7b14777cc4ac3214f61f3b1e5
  2369. encodingFormat: application/x-nwb
  2370. id: dandiasset:04b89d5d-d03e-4038-b75e-ba2dc5e2610d
  2371. identifier: 04b89d5d-d03e-4038-b75e-ba2dc5e2610d
  2372. keywords:
  2373. - extracellular
  2374. - ephys
  2375. - maxwell
  2376. measurementTechnique:
  2377. - name: surgical technique
  2378. schemaKey: MeasurementTechniqueType
  2379. - name: multi electrode extracellular electrophysiology recording technique
  2380. schemaKey: MeasurementTechniqueType
  2381. path: sub-U/sub-U_ses-20231119T113000_obj-1wcxx1y_ecephys.nwb
  2382. schemaKey: Asset
  2383. schemaVersion: 0.6.4
  2384. variableMeasured:
  2385. - schemaKey: PropertyValue
  2386. value: ElectrodeGroup
  2387. - schemaKey: PropertyValue
  2388. value: ElectricalSeries
  2389. wasAttributedTo:
  2390. - age:
  2391. schemaKey: PropertyValue
  2392. unitText: ISO-8601 duration
  2393. value: P1D/P100Y
  2394. valueReference:
  2395. schemaKey: PropertyValue
  2396. value: dandi:BirthReference
  2397. identifier: U
  2398. schemaKey: Participant
  2399. sex:
  2400. name: Unknown
  2401. schemaKey: SexType
  2402. species:
  2403. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2404. name: Homo sapiens - Human
  2405. schemaKey: SpeciesType
  2406. wasGeneratedBy:
  2407. - description: Auto-generated by neuroconv
  2408. name: Acquisition session
  2409. schemaKey: Session
  2410. startDate: '2023-11-19T11:30:00-08:00'
  2411. - description: Metadata generated by DANDI cli
  2412. endDate: '2023-12-23T01:29:26.653602-08:00'
  2413. id: urn:uuid:7a61ebd4-b5db-4c4b-bbcc-4e7a05aa1066
  2414. name: Metadata generation
  2415. schemaKey: Activity
  2416. startDate: '2023-12-23T01:29:26.548980-08:00'
  2417. wasAssociatedWith:
  2418. - identifier: RRID:SCR_019009
  2419. name: DANDI Command Line Interface
  2420. schemaKey: Software
  2421. url: https://github.com/dandi/dandi-cli
  2422. version: 0.56.0
  2423. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2424. access:
  2425. - schemaKey: AccessRequirements
  2426. status: dandi:OpenAccess
  2427. approach:
  2428. - name: electrophysiological approach
  2429. schemaKey: ApproachType
  2430. blobDateModified: '2023-12-23T00:32:22.020000-08:00'
  2431. contentSize: 16894892756
  2432. contentUrl:
  2433. - https://api.dandiarchive.org/api/assets/b96b962d-fd6f-4249-b075-d87d2f67728c/download/
  2434. - https://dandiarchive.s3.amazonaws.com/blobs/a86/d3f/a86d3fc5-3bf4-4234-97d5-4609ddc45b42
  2435. dateModified: '2023-12-23T04:25:32.041404-08:00'
  2436. digest:
  2437. dandi:dandi-etag: 86aea6e25ce5500abb29d317f4606da9-252
  2438. dandi:sha2-256: 10514538f2b6e7a3a609eebb2930e2ab74003d3e34690656f00f2f265c191df9
  2439. encodingFormat: application/x-nwb
  2440. id: dandiasset:b96b962d-fd6f-4249-b075-d87d2f67728c
  2441. identifier: b96b962d-fd6f-4249-b075-d87d2f67728c
  2442. keywords:
  2443. - extracellular
  2444. - ephys
  2445. - maxwell
  2446. measurementTechnique:
  2447. - name: surgical technique
  2448. schemaKey: MeasurementTechniqueType
  2449. - name: multi electrode extracellular electrophysiology recording technique
  2450. schemaKey: MeasurementTechniqueType
  2451. path: sub-U/sub-U_ses-20231119T113000_obj-paunmv_ecephys.nwb
  2452. schemaKey: Asset
  2453. schemaVersion: 0.6.4
  2454. variableMeasured:
  2455. - schemaKey: PropertyValue
  2456. value: ElectrodeGroup
  2457. - schemaKey: PropertyValue
  2458. value: ElectricalSeries
  2459. wasAttributedTo:
  2460. - age:
  2461. schemaKey: PropertyValue
  2462. unitText: ISO-8601 duration
  2463. value: P1D/P100Y
  2464. valueReference:
  2465. schemaKey: PropertyValue
  2466. value: dandi:BirthReference
  2467. identifier: U
  2468. schemaKey: Participant
  2469. sex:
  2470. name: Unknown
  2471. schemaKey: SexType
  2472. species:
  2473. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2474. name: Homo sapiens - Human
  2475. schemaKey: SpeciesType
  2476. wasGeneratedBy:
  2477. - description: Auto-generated by neuroconv
  2478. name: Acquisition session
  2479. schemaKey: Session
  2480. startDate: '2023-11-19T11:30:00-08:00'
  2481. - description: Metadata generated by DANDI cli
  2482. endDate: '2023-12-23T04:25:32.041381-08:00'
  2483. id: urn:uuid:5917d9d8-843f-44ce-9f66-fcaceb72fb2d
  2484. name: Metadata generation
  2485. schemaKey: Activity
  2486. startDate: '2023-12-23T04:25:31.910361-08:00'
  2487. wasAssociatedWith:
  2488. - identifier: RRID:SCR_019009
  2489. name: DANDI Command Line Interface
  2490. schemaKey: Software
  2491. url: https://github.com/dandi/dandi-cli
  2492. version: 0.56.0
Tip!

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

Comments

Loading...