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 94 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
  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-05-19T23:23:00.994780+09:00'
  9. contentSize: 2873499930
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/0fe31be0-d8ea-4a50-b7ed-361d9135e86c/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/5c6/9ef/5c69ef1c-d11a-4077-a918-9b3b7b77a306
  13. dateModified: '2023-05-25T01:31:02.663508+09:00'
  14. digest:
  15. dandi:dandi-etag: 6bf6c11109d77859e42235c9f0834c36-43
  16. dandi:sha2-256: 1c32c936f600c50b08769290daf790e464061b809c5d6f9b1a878108525ced80
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:0fe31be0-d8ea-4a50-b7ed-361d9135e86c
  19. identifier: 0fe31be0-d8ea-4a50-b7ed-361d9135e86c
  20. measurementTechnique:
  21. - name: multi electrode extracellular electrophysiology recording technique
  22. schemaKey: MeasurementTechniqueType
  23. - name: surgical technique
  24. schemaKey: MeasurementTechniqueType
  25. path: sub-YBT-Rat1-ECoG1024/sub-YBT-Rat1-ECoG1024_ses-20200317T102302_ecephys.nwb
  26. schemaKey: Asset
  27. schemaVersion: 0.6.4
  28. variableMeasured:
  29. - schemaKey: PropertyValue
  30. value: ElectrodeGroup
  31. - schemaKey: PropertyValue
  32. value: ElectricalSeries
  33. wasAttributedTo:
  34. - age:
  35. schemaKey: PropertyValue
  36. unitText: ISO-8601 duration
  37. value: P90D
  38. valueReference:
  39. schemaKey: PropertyValue
  40. value: dandi:BirthReference
  41. identifier: YBT_Rat1_ECoG1024
  42. schemaKey: Participant
  43. sex:
  44. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  45. name: Male
  46. schemaKey: SexType
  47. species:
  48. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  49. name: Rattus norvegicus - Norway rat
  50. schemaKey: SpeciesType
  51. wasGeneratedBy:
  52. - description: Baseline recordings on the barrel cortex + Fine functional mapping
  53. of rat barrel cortex (right side) with micro-ECoG grids with 1024 channels, 150
  54. µm pitch, 30 µm diameter
  55. name: Acquisition session
  56. schemaKey: Session
  57. startDate: '2020-03-17T10:23:02+09:00'
  58. - description: Metadata generated by DANDI cli
  59. endDate: '2023-05-25T01:31:02.663508+09:00'
  60. id: urn:uuid:a0f0605f-e83e-43c5-8e4c-946d982e31c9
  61. name: Metadata generation
  62. schemaKey: Activity
  63. startDate: '2023-05-25T01:31:02.569349+09:00'
  64. wasAssociatedWith:
  65. - identifier: RRID:SCR_019009
  66. name: DANDI Command Line Interface
  67. schemaKey: Software
  68. url: https://github.com/dandi/dandi-cli
  69. version: 0.55.0
  70. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  71. access:
  72. - schemaKey: AccessRequirements
  73. status: dandi:OpenAccess
  74. approach:
  75. - name: electrophysiological approach
  76. schemaKey: ApproachType
  77. blobDateModified: '2023-05-20T00:33:31.705352+09:00'
  78. contentSize: 2993321802
  79. contentUrl:
  80. - https://api.dandiarchive.org/api/assets/69aab4ab-e025-43c3-a856-3083b518a41b/download/
  81. - https://dandiarchive.s3.amazonaws.com/blobs/4f7/a87/4f7a8767-6696-46e9-bc1c-85c5de993361
  82. dateModified: '2023-05-25T01:31:09.574607+09:00'
  83. digest:
  84. dandi:dandi-etag: 96873fed0253e5daa424b8b0bd3dd920-45
  85. dandi:sha2-256: 71ce6c529bc0658a137300af2597ad46a2f7e73c16966c14fd7d5886995db548
  86. encodingFormat: application/x-nwb
  87. id: dandiasset:69aab4ab-e025-43c3-a856-3083b518a41b
  88. identifier: 69aab4ab-e025-43c3-a856-3083b518a41b
  89. measurementTechnique:
  90. - name: multi electrode extracellular electrophysiology recording technique
  91. schemaKey: MeasurementTechniqueType
  92. - name: surgical technique
  93. schemaKey: MeasurementTechniqueType
  94. path: sub-YBT-Rat1-ECoG1024/sub-YBT-Rat1-ECoG1024_ses-20200317T105921_ecephys.nwb
  95. schemaKey: Asset
  96. schemaVersion: 0.6.4
  97. variableMeasured:
  98. - schemaKey: PropertyValue
  99. value: ElectrodeGroup
  100. - schemaKey: PropertyValue
  101. value: ElectricalSeries
  102. wasAttributedTo:
  103. - age:
  104. schemaKey: PropertyValue
  105. unitText: ISO-8601 duration
  106. value: P90D
  107. valueReference:
  108. schemaKey: PropertyValue
  109. value: dandi:BirthReference
  110. identifier: YBT_Rat1_ECoG1024
  111. schemaKey: Participant
  112. sex:
  113. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  114. name: Male
  115. schemaKey: SexType
  116. species:
  117. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  118. name: Rattus norvegicus - Norway rat
  119. schemaKey: SpeciesType
  120. wasGeneratedBy:
  121. - description: Sensory stimulation of contralateral E5 whisker with 20 psi air-puff
  122. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  123. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  124. name: Acquisition session
  125. schemaKey: Session
  126. startDate: '2020-03-17T10:59:21+09:00'
  127. - description: Metadata generated by DANDI cli
  128. endDate: '2023-05-25T01:31:09.574607+09:00'
  129. id: urn:uuid:0a8ab0d5-135e-441f-84a2-cc7e324ff8a5
  130. name: Metadata generation
  131. schemaKey: Activity
  132. startDate: '2023-05-25T01:31:09.484068+09:00'
  133. wasAssociatedWith:
  134. - identifier: RRID:SCR_019009
  135. name: DANDI Command Line Interface
  136. schemaKey: Software
  137. url: https://github.com/dandi/dandi-cli
  138. version: 0.55.0
  139. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  140. access:
  141. - schemaKey: AccessRequirements
  142. status: dandi:OpenAccess
  143. approach:
  144. - name: electrophysiological approach
  145. schemaKey: ApproachType
  146. blobDateModified: '2023-05-20T00:20:54.764710+09:00'
  147. contentSize: 3056700499
  148. contentUrl:
  149. - https://api.dandiarchive.org/api/assets/4bd0b4c2-0a78-4f73-ba4e-9a9c85327b39/download/
  150. - https://dandiarchive.s3.amazonaws.com/blobs/a5b/eaa/a5beaa13-9589-424f-97f8-2a11649be4b4
  151. dateModified: '2023-05-25T01:31:03.949848+09:00'
  152. digest:
  153. dandi:dandi-etag: d32a0d87d29c9e3fa4cda2f4305aa72c-46
  154. dandi:sha2-256: 81c46689a35763e62704955613203a5541fb8cc6b377d0194dadfd1777620f3c
  155. encodingFormat: application/x-nwb
  156. id: dandiasset:4bd0b4c2-0a78-4f73-ba4e-9a9c85327b39
  157. identifier: 4bd0b4c2-0a78-4f73-ba4e-9a9c85327b39
  158. measurementTechnique:
  159. - name: multi electrode extracellular electrophysiology recording technique
  160. schemaKey: MeasurementTechniqueType
  161. - name: surgical technique
  162. schemaKey: MeasurementTechniqueType
  163. path: sub-YBT-Rat1-ECoG1024/sub-YBT-Rat1-ECoG1024_ses-20200317T105715_ecephys.nwb
  164. schemaKey: Asset
  165. schemaVersion: 0.6.4
  166. variableMeasured:
  167. - schemaKey: PropertyValue
  168. value: ElectrodeGroup
  169. - schemaKey: PropertyValue
  170. value: ElectricalSeries
  171. wasAttributedTo:
  172. - age:
  173. schemaKey: PropertyValue
  174. unitText: ISO-8601 duration
  175. value: P90D
  176. valueReference:
  177. schemaKey: PropertyValue
  178. value: dandi:BirthReference
  179. identifier: YBT_Rat1_ECoG1024
  180. schemaKey: Participant
  181. sex:
  182. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  183. name: Male
  184. schemaKey: SexType
  185. species:
  186. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  187. name: Rattus norvegicus - Norway rat
  188. schemaKey: SpeciesType
  189. wasGeneratedBy:
  190. - description: Sensory stimulation of contralateral E4 whisker with 20 psi air-puff
  191. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  192. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  193. name: Acquisition session
  194. schemaKey: Session
  195. startDate: '2020-03-17T10:57:15+09:00'
  196. - description: Metadata generated by DANDI cli
  197. endDate: '2023-05-25T01:31:03.949848+09:00'
  198. id: urn:uuid:30a7403f-5b11-4044-b64e-06ffb717efcf
  199. name: Metadata generation
  200. schemaKey: Activity
  201. startDate: '2023-05-25T01:31:03.745679+09:00'
  202. wasAssociatedWith:
  203. - identifier: RRID:SCR_019009
  204. name: DANDI Command Line Interface
  205. schemaKey: Software
  206. url: https://github.com/dandi/dandi-cli
  207. version: 0.55.0
  208. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  209. access:
  210. - schemaKey: AccessRequirements
  211. status: dandi:OpenAccess
  212. approach:
  213. - name: electrophysiological approach
  214. schemaKey: ApproachType
  215. blobDateModified: '2023-05-20T00:10:40.674212+09:00'
  216. contentSize: 3152274647
  217. contentUrl:
  218. - https://api.dandiarchive.org/api/assets/05b5cdb1-ee32-4004-b3d4-b7388b547948/download/
  219. - https://dandiarchive.s3.amazonaws.com/blobs/f6a/f53/f6af531e-f5e0-4bc7-a53b-7da3ec53623d
  220. dateModified: '2023-05-25T01:31:04.577981+09:00'
  221. digest:
  222. dandi:dandi-etag: a4b27cc5853143ad2b24925f90db43e5-47
  223. dandi:sha2-256: ee09ca34ff84a274a63d63e46ceff1ff7882d4778015e0d127a3567427897eca
  224. encodingFormat: application/x-nwb
  225. id: dandiasset:05b5cdb1-ee32-4004-b3d4-b7388b547948
  226. identifier: 05b5cdb1-ee32-4004-b3d4-b7388b547948
  227. measurementTechnique:
  228. - name: multi electrode extracellular electrophysiology recording technique
  229. schemaKey: MeasurementTechniqueType
  230. - name: surgical technique
  231. schemaKey: MeasurementTechniqueType
  232. path: sub-YBT-Rat1-ECoG1024/sub-YBT-Rat1-ECoG1024_ses-20200317T105411_ecephys.nwb
  233. schemaKey: Asset
  234. schemaVersion: 0.6.4
  235. variableMeasured:
  236. - schemaKey: PropertyValue
  237. value: ElectrodeGroup
  238. - schemaKey: PropertyValue
  239. value: ElectricalSeries
  240. wasAttributedTo:
  241. - age:
  242. schemaKey: PropertyValue
  243. unitText: ISO-8601 duration
  244. value: P90D
  245. valueReference:
  246. schemaKey: PropertyValue
  247. value: dandi:BirthReference
  248. identifier: YBT_Rat1_ECoG1024
  249. schemaKey: Participant
  250. sex:
  251. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  252. name: Male
  253. schemaKey: SexType
  254. species:
  255. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  256. name: Rattus norvegicus - Norway rat
  257. schemaKey: SpeciesType
  258. wasGeneratedBy:
  259. - description: Sensory stimulation of contralateral E3 whisker with 20 psi air-puff
  260. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  261. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  262. name: Acquisition session
  263. schemaKey: Session
  264. startDate: '2020-03-17T10:54:11+09:00'
  265. - description: Metadata generated by DANDI cli
  266. endDate: '2023-05-25T01:31:04.577981+09:00'
  267. id: urn:uuid:1ccb8a83-ee80-4baa-8319-be6a65f788e3
  268. name: Metadata generation
  269. schemaKey: Activity
  270. startDate: '2023-05-25T01:31:04.264245+09:00'
  271. wasAssociatedWith:
  272. - identifier: RRID:SCR_019009
  273. name: DANDI Command Line Interface
  274. schemaKey: Software
  275. url: https://github.com/dandi/dandi-cli
  276. version: 0.55.0
  277. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  278. access:
  279. - schemaKey: AccessRequirements
  280. status: dandi:OpenAccess
  281. approach:
  282. - name: electrophysiological approach
  283. schemaKey: ApproachType
  284. blobDateModified: '2023-05-19T23:52:07.017957+09:00'
  285. contentSize: 3177113844
  286. contentUrl:
  287. - https://api.dandiarchive.org/api/assets/7d9c89b7-e189-4fa0-8315-326efe7014a1/download/
  288. - https://dandiarchive.s3.amazonaws.com/blobs/a7e/6a7/a7e6a7c9-19b9-4cbd-9d12-287be936fbe6
  289. dateModified: '2023-05-25T01:31:04.562364+09:00'
  290. digest:
  291. dandi:dandi-etag: e7d5a32f2e796f1fa2429e95c925e306-48
  292. dandi:sha2-256: afd53426eb1353762d3a5c7edee80f6bc2c1c0317fd629a7ee52e1daaf0a2739
  293. encodingFormat: application/x-nwb
  294. id: dandiasset:7d9c89b7-e189-4fa0-8315-326efe7014a1
  295. identifier: 7d9c89b7-e189-4fa0-8315-326efe7014a1
  296. measurementTechnique:
  297. - name: multi electrode extracellular electrophysiology recording technique
  298. schemaKey: MeasurementTechniqueType
  299. - name: surgical technique
  300. schemaKey: MeasurementTechniqueType
  301. path: sub-YBT-Rat1-ECoG1024/sub-YBT-Rat1-ECoG1024_ses-20200317T105013_ecephys.nwb
  302. schemaKey: Asset
  303. schemaVersion: 0.6.4
  304. variableMeasured:
  305. - schemaKey: PropertyValue
  306. value: ElectrodeGroup
  307. - schemaKey: PropertyValue
  308. value: ElectricalSeries
  309. wasAttributedTo:
  310. - age:
  311. schemaKey: PropertyValue
  312. unitText: ISO-8601 duration
  313. value: P90D
  314. valueReference:
  315. schemaKey: PropertyValue
  316. value: dandi:BirthReference
  317. identifier: YBT_Rat1_ECoG1024
  318. schemaKey: Participant
  319. sex:
  320. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  321. name: Male
  322. schemaKey: SexType
  323. species:
  324. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  325. name: Rattus norvegicus - Norway rat
  326. schemaKey: SpeciesType
  327. wasGeneratedBy:
  328. - description: Sensory stimulation of contralateral D3 whisker with 20 psi air-puff
  329. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  330. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  331. name: Acquisition session
  332. schemaKey: Session
  333. startDate: '2020-03-17T10:50:13+09:00'
  334. - description: Metadata generated by DANDI cli
  335. endDate: '2023-05-25T01:31:04.562364+09:00'
  336. id: urn:uuid:c3cb17bb-4a1c-4565-b7a2-e20dbe7a28ce
  337. name: Metadata generation
  338. schemaKey: Activity
  339. startDate: '2023-05-25T01:31:04.233382+09:00'
  340. wasAssociatedWith:
  341. - identifier: RRID:SCR_019009
  342. name: DANDI Command Line Interface
  343. schemaKey: Software
  344. url: https://github.com/dandi/dandi-cli
  345. version: 0.55.0
  346. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  347. access:
  348. - schemaKey: AccessRequirements
  349. status: dandi:OpenAccess
  350. approach:
  351. - name: electrophysiological approach
  352. schemaKey: ApproachType
  353. blobDateModified: '2023-05-20T00:49:14.190259+09:00'
  354. contentSize: 2334571887
  355. contentUrl:
  356. - https://api.dandiarchive.org/api/assets/db6acaf2-c2a7-4b18-a6a5-3653307e829e/download/
  357. - https://dandiarchive.s3.amazonaws.com/blobs/377/b6d/377b6da2-c561-480a-b2a1-d2c35e351163
  358. dateModified: '2023-05-25T02:19:00.172834+09:00'
  359. digest:
  360. dandi:dandi-etag: 4a2367ce184141f9ef8e8ed9c6079c78-35
  361. dandi:sha2-256: 0e3c466fd752aee06e8284cf9779e2f36e97fe7da366146c91df10c852298be4
  362. encodingFormat: application/x-nwb
  363. id: dandiasset:db6acaf2-c2a7-4b18-a6a5-3653307e829e
  364. identifier: db6acaf2-c2a7-4b18-a6a5-3653307e829e
  365. measurementTechnique:
  366. - name: multi electrode extracellular electrophysiology recording technique
  367. schemaKey: MeasurementTechniqueType
  368. - name: surgical technique
  369. schemaKey: MeasurementTechniqueType
  370. path: sub-YBT-Rat2-ECoG1024/sub-YBT-Rat2-ECoG1024_ses-20200317T144508_ecephys.nwb
  371. schemaKey: Asset
  372. schemaVersion: 0.6.4
  373. variableMeasured:
  374. - schemaKey: PropertyValue
  375. value: ElectrodeGroup
  376. - schemaKey: PropertyValue
  377. value: ElectricalSeries
  378. wasAttributedTo:
  379. - age:
  380. schemaKey: PropertyValue
  381. unitText: ISO-8601 duration
  382. value: P90D
  383. valueReference:
  384. schemaKey: PropertyValue
  385. value: dandi:BirthReference
  386. identifier: YBT_Rat2_ECoG1024
  387. schemaKey: Participant
  388. sex:
  389. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  390. name: Male
  391. schemaKey: SexType
  392. species:
  393. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  394. name: Rattus norvegicus - Norway rat
  395. schemaKey: SpeciesType
  396. wasGeneratedBy:
  397. - description: Sensory stimulation of contralateral E5 whisker with 20 psi air-puff
  398. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  399. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  400. name: Acquisition session
  401. schemaKey: Session
  402. startDate: '2020-03-17T14:45:08+09:00'
  403. - description: Metadata generated by DANDI cli
  404. endDate: '2023-05-25T02:19:00.172834+09:00'
  405. id: urn:uuid:da318123-7864-4298-b534-473743d10c51
  406. name: Metadata generation
  407. schemaKey: Activity
  408. startDate: '2023-05-25T02:19:00.078690+09:00'
  409. wasAssociatedWith:
  410. - identifier: RRID:SCR_019009
  411. name: DANDI Command Line Interface
  412. schemaKey: Software
  413. url: https://github.com/dandi/dandi-cli
  414. version: 0.55.0
  415. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  416. access:
  417. - schemaKey: AccessRequirements
  418. status: dandi:OpenAccess
  419. approach:
  420. - name: electrophysiological approach
  421. schemaKey: ApproachType
  422. blobDateModified: '2023-05-19T23:58:59.655762+09:00'
  423. contentSize: 3204970094
  424. contentUrl:
  425. - https://api.dandiarchive.org/api/assets/597b0c28-0e43-413c-a0c8-5e0e60a69088/download/
  426. - https://dandiarchive.s3.amazonaws.com/blobs/51d/46e/51d46e1e-80e0-4a56-8812-92efb488c0fb
  427. dateModified: '2023-05-25T01:31:04.279877+09:00'
  428. digest:
  429. dandi:dandi-etag: 04f77fae471a9ca8edc8c77e5ecc7c1e-48
  430. dandi:sha2-256: dc09586343ffd3c62e055cd74d617bd99dd78105dca8de090e7f2bd2d3f3424b
  431. encodingFormat: application/x-nwb
  432. id: dandiasset:597b0c28-0e43-413c-a0c8-5e0e60a69088
  433. identifier: 597b0c28-0e43-413c-a0c8-5e0e60a69088
  434. measurementTechnique:
  435. - name: multi electrode extracellular electrophysiology recording technique
  436. schemaKey: MeasurementTechniqueType
  437. - name: surgical technique
  438. schemaKey: MeasurementTechniqueType
  439. path: sub-YBT-Rat1-ECoG1024/sub-YBT-Rat1-ECoG1024_ses-20200317T104800_ecephys.nwb
  440. schemaKey: Asset
  441. schemaVersion: 0.6.4
  442. variableMeasured:
  443. - schemaKey: PropertyValue
  444. value: ElectrodeGroup
  445. - schemaKey: PropertyValue
  446. value: ElectricalSeries
  447. wasAttributedTo:
  448. - age:
  449. schemaKey: PropertyValue
  450. unitText: ISO-8601 duration
  451. value: P90D
  452. valueReference:
  453. schemaKey: PropertyValue
  454. value: dandi:BirthReference
  455. identifier: YBT_Rat1_ECoG1024
  456. schemaKey: Participant
  457. sex:
  458. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  459. name: Male
  460. schemaKey: SexType
  461. species:
  462. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  463. name: Rattus norvegicus - Norway rat
  464. schemaKey: SpeciesType
  465. wasGeneratedBy:
  466. - description: Sensory stimulation of contralateral D4 whisker with 20 psi air-puff
  467. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  468. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  469. name: Acquisition session
  470. schemaKey: Session
  471. startDate: '2020-03-17T10:48:00+09:00'
  472. - description: Metadata generated by DANDI cli
  473. endDate: '2023-05-25T01:31:04.279877+09:00'
  474. id: urn:uuid:79488fbc-821a-4bc6-9664-4ddf792d4458
  475. name: Metadata generation
  476. schemaKey: Activity
  477. startDate: '2023-05-25T01:31:04.059837+09:00'
  478. wasAssociatedWith:
  479. - identifier: RRID:SCR_019009
  480. name: DANDI Command Line Interface
  481. schemaKey: Software
  482. url: https://github.com/dandi/dandi-cli
  483. version: 0.55.0
  484. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  485. access:
  486. - schemaKey: AccessRequirements
  487. status: dandi:OpenAccess
  488. approach:
  489. - name: electrophysiological approach
  490. schemaKey: ApproachType
  491. blobDateModified: '2023-05-20T09:54:41.407914+09:00'
  492. contentSize: 2300266245
  493. contentUrl:
  494. - https://api.dandiarchive.org/api/assets/bbccd106-d3d6-41a8-b964-401aae7883a0/download/
  495. - https://dandiarchive.s3.amazonaws.com/blobs/77a/d83/77ad838d-8389-48cb-95a0-2b8dc19f13ea
  496. dateModified: '2023-05-25T02:15:26.429929+09:00'
  497. digest:
  498. dandi:dandi-etag: 4f1b438f3f4221e0b770a9b8e9a46e92-35
  499. dandi:sha2-256: 34e3c01b2278e4403efbec06efe3ce92eacc919bee49863f9cfae7cee997bb68
  500. encodingFormat: application/x-nwb
  501. id: dandiasset:bbccd106-d3d6-41a8-b964-401aae7883a0
  502. identifier: bbccd106-d3d6-41a8-b964-401aae7883a0
  503. measurementTechnique:
  504. - name: multi electrode extracellular electrophysiology recording technique
  505. schemaKey: MeasurementTechniqueType
  506. - name: surgical technique
  507. schemaKey: MeasurementTechniqueType
  508. path: sub-YBT-Rat2-ECoG1024/sub-YBT-Rat2-ECoG1024_ses-20200317T143959_ecephys.nwb
  509. schemaKey: Asset
  510. schemaVersion: 0.6.4
  511. variableMeasured:
  512. - schemaKey: PropertyValue
  513. value: ElectrodeGroup
  514. - schemaKey: PropertyValue
  515. value: ElectricalSeries
  516. wasAttributedTo:
  517. - age:
  518. schemaKey: PropertyValue
  519. unitText: ISO-8601 duration
  520. value: P90D
  521. valueReference:
  522. schemaKey: PropertyValue
  523. value: dandi:BirthReference
  524. identifier: YBT_Rat2_ECoG1024
  525. schemaKey: Participant
  526. sex:
  527. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  528. name: Male
  529. schemaKey: SexType
  530. species:
  531. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  532. name: Rattus norvegicus - Norway rat
  533. schemaKey: SpeciesType
  534. wasGeneratedBy:
  535. - description: Sensory stimulation of contralateral D3 whisker with 20 psi air-puff
  536. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  537. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  538. name: Acquisition session
  539. schemaKey: Session
  540. startDate: '2020-03-17T14:39:59+09:00'
  541. - description: Metadata generated by DANDI cli
  542. endDate: '2023-05-25T02:15:26.429929+09:00'
  543. id: urn:uuid:fd73c6a2-5f8a-4d16-b12a-e971baf8d623
  544. name: Metadata generation
  545. schemaKey: Activity
  546. startDate: '2023-05-25T02:15:26.351085+09:00'
  547. wasAssociatedWith:
  548. - identifier: RRID:SCR_019009
  549. name: DANDI Command Line Interface
  550. schemaKey: Software
  551. url: https://github.com/dandi/dandi-cli
  552. version: 0.55.0
  553. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  554. access:
  555. - schemaKey: AccessRequirements
  556. status: dandi:OpenAccess
  557. approach:
  558. - name: electrophysiological approach
  559. schemaKey: ApproachType
  560. blobDateModified: '2023-05-20T10:56:21.513530+09:00'
  561. contentSize: 2389848587
  562. contentUrl:
  563. - https://api.dandiarchive.org/api/assets/0c62f666-f3f8-4d0e-b159-9dc4d8ada99a/download/
  564. - https://dandiarchive.s3.amazonaws.com/blobs/e7f/482/e7f48254-6209-4eaa-8135-95d67382b8d2
  565. dateModified: '2023-05-25T02:13:53.589726+09:00'
  566. digest:
  567. dandi:dandi-etag: 819ccc9cbda5ff28a4fe24f16f50bade-36
  568. dandi:sha2-256: 1eb4491a35b5b11a329dcea737ae34c8cad7e9dc22bd2eb8e25a500832cdc4ef
  569. encodingFormat: application/x-nwb
  570. id: dandiasset:0c62f666-f3f8-4d0e-b159-9dc4d8ada99a
  571. identifier: 0c62f666-f3f8-4d0e-b159-9dc4d8ada99a
  572. measurementTechnique:
  573. - name: multi electrode extracellular electrophysiology recording technique
  574. schemaKey: MeasurementTechniqueType
  575. - name: surgical technique
  576. schemaKey: MeasurementTechniqueType
  577. path: sub-YBT-Rat2-ECoG1024/sub-YBT-Rat2-ECoG1024_ses-20200317T142248_ecephys.nwb
  578. schemaKey: Asset
  579. schemaVersion: 0.6.4
  580. variableMeasured:
  581. - schemaKey: PropertyValue
  582. value: ElectrodeGroup
  583. - schemaKey: PropertyValue
  584. value: ElectricalSeries
  585. wasAttributedTo:
  586. - age:
  587. schemaKey: PropertyValue
  588. unitText: ISO-8601 duration
  589. value: P90D
  590. valueReference:
  591. schemaKey: PropertyValue
  592. value: dandi:BirthReference
  593. identifier: YBT_Rat2_ECoG1024
  594. schemaKey: Participant
  595. sex:
  596. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  597. name: Male
  598. schemaKey: SexType
  599. species:
  600. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  601. name: Rattus norvegicus - Norway rat
  602. schemaKey: SpeciesType
  603. wasGeneratedBy:
  604. - description: Baseline recording of rat barrel cortex (right side) with micro-ECoG
  605. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  606. name: Acquisition session
  607. schemaKey: Session
  608. startDate: '2020-03-17T14:22:48+09:00'
  609. - description: Metadata generated by DANDI cli
  610. endDate: '2023-05-25T02:13:53.589726+09:00'
  611. id: urn:uuid:7782ea0a-e325-47e1-9522-3f6e783b2a4d
  612. name: Metadata generation
  613. schemaKey: Activity
  614. startDate: '2023-05-25T02:13:53.486916+09:00'
  615. wasAssociatedWith:
  616. - identifier: RRID:SCR_019009
  617. name: DANDI Command Line Interface
  618. schemaKey: Software
  619. url: https://github.com/dandi/dandi-cli
  620. version: 0.55.0
  621. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  622. access:
  623. - schemaKey: AccessRequirements
  624. status: dandi:OpenAccess
  625. approach:
  626. - name: electrophysiological approach
  627. schemaKey: ApproachType
  628. blobDateModified: '2023-05-20T10:03:30.214088+09:00'
  629. contentSize: 2306106231
  630. contentUrl:
  631. - https://api.dandiarchive.org/api/assets/3a9cf76b-fe77-4435-9a34-6f496591e0ba/download/
  632. - https://dandiarchive.s3.amazonaws.com/blobs/8bc/b5e/8bcb5e8c-78f8-40f6-9081-3caeacc0c0af
  633. dateModified: '2023-05-25T02:17:14.850518+09:00'
  634. digest:
  635. dandi:dandi-etag: 85bb320befbc61b252925947c27046e8-35
  636. dandi:sha2-256: a3b6133cf3a02354901d37a13eec55b68d7b92683b5021ac652f480b16ca7338
  637. encodingFormat: application/x-nwb
  638. id: dandiasset:3a9cf76b-fe77-4435-9a34-6f496591e0ba
  639. identifier: 3a9cf76b-fe77-4435-9a34-6f496591e0ba
  640. measurementTechnique:
  641. - name: multi electrode extracellular electrophysiology recording technique
  642. schemaKey: MeasurementTechniqueType
  643. - name: surgical technique
  644. schemaKey: MeasurementTechniqueType
  645. path: sub-YBT-Rat2-ECoG1024/sub-YBT-Rat2-ECoG1024_ses-20200317T144139_ecephys.nwb
  646. schemaKey: Asset
  647. schemaVersion: 0.6.4
  648. variableMeasured:
  649. - schemaKey: PropertyValue
  650. value: ElectrodeGroup
  651. - schemaKey: PropertyValue
  652. value: ElectricalSeries
  653. wasAttributedTo:
  654. - age:
  655. schemaKey: PropertyValue
  656. unitText: ISO-8601 duration
  657. value: P90D
  658. valueReference:
  659. schemaKey: PropertyValue
  660. value: dandi:BirthReference
  661. identifier: YBT_Rat2_ECoG1024
  662. schemaKey: Participant
  663. sex:
  664. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  665. name: Male
  666. schemaKey: SexType
  667. species:
  668. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  669. name: Rattus norvegicus - Norway rat
  670. schemaKey: SpeciesType
  671. wasGeneratedBy:
  672. - description: Sensory stimulation of contralateral D2 whisker with 20 psi air-puff
  673. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  674. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  675. name: Acquisition session
  676. schemaKey: Session
  677. startDate: '2020-03-17T14:41:39+09:00'
  678. - description: Metadata generated by DANDI cli
  679. endDate: '2023-05-25T02:17:14.850518+09:00'
  680. id: urn:uuid:bf029d41-0f0e-451c-8f84-cd351619b49e
  681. name: Metadata generation
  682. schemaKey: Activity
  683. startDate: '2023-05-25T02:17:14.763140+09:00'
  684. wasAssociatedWith:
  685. - identifier: RRID:SCR_019009
  686. name: DANDI Command Line Interface
  687. schemaKey: Software
  688. url: https://github.com/dandi/dandi-cli
  689. version: 0.55.0
  690. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  691. access:
  692. - schemaKey: AccessRequirements
  693. status: dandi:OpenAccess
  694. approach:
  695. - name: electrophysiological approach
  696. schemaKey: ApproachType
  697. blobDateModified: '2023-05-20T09:33:56.991661+09:00'
  698. contentSize: 2360320941
  699. contentUrl:
  700. - https://api.dandiarchive.org/api/assets/747cade5-ea8f-49fe-8cfd-25c28e242be1/download/
  701. - https://dandiarchive.s3.amazonaws.com/blobs/155/80c/15580c1c-c5c0-4eb7-b1fb-900f60745e13
  702. dateModified: '2023-05-25T02:19:06.753576+09:00'
  703. digest:
  704. dandi:dandi-etag: d19165c8f46668d60ea79f1459ccc164-36
  705. dandi:sha2-256: d90fc714e0729c08211fa03f5ad581d6240c90351be80e1b378b502d3aa3a851
  706. encodingFormat: application/x-nwb
  707. id: dandiasset:747cade5-ea8f-49fe-8cfd-25c28e242be1
  708. identifier: 747cade5-ea8f-49fe-8cfd-25c28e242be1
  709. measurementTechnique:
  710. - name: multi electrode extracellular electrophysiology recording technique
  711. schemaKey: MeasurementTechniqueType
  712. - name: surgical technique
  713. schemaKey: MeasurementTechniqueType
  714. path: sub-YBT-Rat2-ECoG1024/sub-YBT-Rat2-ECoG1024_ses-20200317T145821_ecephys.nwb
  715. schemaKey: Asset
  716. schemaVersion: 0.6.4
  717. variableMeasured:
  718. - schemaKey: PropertyValue
  719. value: ElectrodeGroup
  720. - schemaKey: PropertyValue
  721. value: ElectricalSeries
  722. wasAttributedTo:
  723. - age:
  724. schemaKey: PropertyValue
  725. unitText: ISO-8601 duration
  726. value: P90D
  727. valueReference:
  728. schemaKey: PropertyValue
  729. value: dandi:BirthReference
  730. identifier: YBT_Rat2_ECoG1024
  731. schemaKey: Participant
  732. sex:
  733. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  734. name: Male
  735. schemaKey: SexType
  736. species:
  737. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  738. name: Rattus norvegicus - Norway rat
  739. schemaKey: SpeciesType
  740. wasGeneratedBy:
  741. - description: Sensory stimulation of contralateral E4 whisker with 20 psi air-puff
  742. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  743. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  744. name: Acquisition session
  745. schemaKey: Session
  746. startDate: '2020-03-17T14:58:21+09:00'
  747. - description: Metadata generated by DANDI cli
  748. endDate: '2023-05-25T02:19:06.753576+09:00'
  749. id: urn:uuid:0f44b2b2-329c-437f-835d-9145ee97fa58
  750. name: Metadata generation
  751. schemaKey: Activity
  752. startDate: '2023-05-25T02:19:06.659527+09:00'
  753. wasAssociatedWith:
  754. - identifier: RRID:SCR_019009
  755. name: DANDI Command Line Interface
  756. schemaKey: Software
  757. url: https://github.com/dandi/dandi-cli
  758. version: 0.55.0
  759. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  760. access:
  761. - schemaKey: AccessRequirements
  762. status: dandi:OpenAccess
  763. approach:
  764. - name: electrophysiological approach
  765. schemaKey: ApproachType
  766. blobDateModified: '2023-05-20T09:45:15.829973+09:00'
  767. contentSize: 2361229962
  768. contentUrl:
  769. - https://api.dandiarchive.org/api/assets/2faf1070-6201-400b-943b-7a089047d5f0/download/
  770. - https://dandiarchive.s3.amazonaws.com/blobs/8ae/f9c/8aef9c7f-fdd0-4b5e-85a2-3f85a47f45e1
  771. dateModified: '2023-05-25T02:24:35.243805+09:00'
  772. digest:
  773. dandi:dandi-etag: 0ad220706b5e0e5781676434b3fd54fa-36
  774. dandi:sha2-256: 8d682efdcc778c1093a3798d170511a00ba2d5596abc2c659446445d3a176596
  775. encodingFormat: application/x-nwb
  776. id: dandiasset:2faf1070-6201-400b-943b-7a089047d5f0
  777. identifier: 2faf1070-6201-400b-943b-7a089047d5f0
  778. measurementTechnique:
  779. - name: multi electrode extracellular electrophysiology recording technique
  780. schemaKey: MeasurementTechniqueType
  781. - name: surgical technique
  782. schemaKey: MeasurementTechniqueType
  783. path: sub-YBT-Rat2-ECoG1024/sub-YBT-Rat2-ECoG1024_ses-20200317T150037_ecephys.nwb
  784. schemaKey: Asset
  785. schemaVersion: 0.6.4
  786. variableMeasured:
  787. - schemaKey: PropertyValue
  788. value: ElectrodeGroup
  789. - schemaKey: PropertyValue
  790. value: ElectricalSeries
  791. wasAttributedTo:
  792. - age:
  793. schemaKey: PropertyValue
  794. unitText: ISO-8601 duration
  795. value: P90D
  796. valueReference:
  797. schemaKey: PropertyValue
  798. value: dandi:BirthReference
  799. identifier: YBT_Rat2_ECoG1024
  800. schemaKey: Participant
  801. sex:
  802. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  803. name: Male
  804. schemaKey: SexType
  805. species:
  806. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  807. name: Rattus norvegicus - Norway rat
  808. schemaKey: SpeciesType
  809. wasGeneratedBy:
  810. - description: Sensory stimulation of contralateral E3 whisker with 20 psi air-puff
  811. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  812. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  813. name: Acquisition session
  814. schemaKey: Session
  815. startDate: '2020-03-17T15:00:37+09:00'
  816. - description: Metadata generated by DANDI cli
  817. endDate: '2023-05-25T02:24:35.243805+09:00'
  818. id: urn:uuid:00a2ea6b-5978-4c39-8c1b-55b920a1fd5a
  819. name: Metadata generation
  820. schemaKey: Activity
  821. startDate: '2023-05-25T02:24:35.133365+09:00'
  822. wasAssociatedWith:
  823. - identifier: RRID:SCR_019009
  824. name: DANDI Command Line Interface
  825. schemaKey: Software
  826. url: https://github.com/dandi/dandi-cli
  827. version: 0.55.0
  828. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  829. access:
  830. - schemaKey: AccessRequirements
  831. status: dandi:OpenAccess
  832. approach:
  833. - name: electrophysiological approach
  834. schemaKey: ApproachType
  835. blobDateModified: '2023-05-20T10:37:11.722145+09:00'
  836. contentSize: 2282758874
  837. contentUrl:
  838. - https://api.dandiarchive.org/api/assets/f4d1e0ee-c05c-4c03-9113-998a2979c925/download/
  839. - https://dandiarchive.s3.amazonaws.com/blobs/ba5/6f4/ba56f47e-adba-4da6-99fe-5986776d4da5
  840. dateModified: '2023-05-25T02:45:17.008801+09:00'
  841. digest:
  842. dandi:dandi-etag: b814b15bedcf4779a463852f65721f24-35
  843. dandi:sha2-256: 0c31e4d4deaf0e262700479d72a75e947e615983553bbdb5161e08a0d1f62033
  844. encodingFormat: application/x-nwb
  845. id: dandiasset:f4d1e0ee-c05c-4c03-9113-998a2979c925
  846. identifier: f4d1e0ee-c05c-4c03-9113-998a2979c925
  847. measurementTechnique:
  848. - name: multi electrode extracellular electrophysiology recording technique
  849. schemaKey: MeasurementTechniqueType
  850. - name: surgical technique
  851. schemaKey: MeasurementTechniqueType
  852. path: sub-YBT-Rat2-ECoG1024/sub-YBT-Rat2-ECoG1024_ses-20200317T151339_ecephys.nwb
  853. schemaKey: Asset
  854. schemaVersion: 0.6.4
  855. variableMeasured:
  856. - schemaKey: PropertyValue
  857. value: ElectrodeGroup
  858. - schemaKey: PropertyValue
  859. value: ElectricalSeries
  860. wasAttributedTo:
  861. - age:
  862. schemaKey: PropertyValue
  863. unitText: ISO-8601 duration
  864. value: P90D
  865. valueReference:
  866. schemaKey: PropertyValue
  867. value: dandi:BirthReference
  868. identifier: YBT_Rat2_ECoG1024
  869. schemaKey: Participant
  870. sex:
  871. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  872. name: Male
  873. schemaKey: SexType
  874. species:
  875. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  876. name: Rattus norvegicus - Norway rat
  877. schemaKey: SpeciesType
  878. wasGeneratedBy:
  879. - description: Sensory stimulation of left forelimb with 60 psi air-puff every 1 s
  880. + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG grids
  881. with 1024 channels, 150 µm pitch, 30 µm diameter
  882. name: Acquisition session
  883. schemaKey: Session
  884. startDate: '2020-03-17T15:13:39+09:00'
  885. - description: Metadata generated by DANDI cli
  886. endDate: '2023-05-25T02:45:17.008801+09:00'
  887. id: urn:uuid:412eed9a-fe94-4182-990e-0a2d69f6e8e3
  888. name: Metadata generation
  889. schemaKey: Activity
  890. startDate: '2023-05-25T02:45:16.914720+09:00'
  891. wasAssociatedWith:
  892. - identifier: RRID:SCR_019009
  893. name: DANDI Command Line Interface
  894. schemaKey: Software
  895. url: https://github.com/dandi/dandi-cli
  896. version: 0.55.0
  897. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  898. access:
  899. - schemaKey: AccessRequirements
  900. status: dandi:OpenAccess
  901. approach:
  902. - name: electrophysiological approach
  903. schemaKey: ApproachType
  904. blobDateModified: '2023-05-20T10:25:13.362486+09:00'
  905. contentSize: 2285352620
  906. contentUrl:
  907. - https://api.dandiarchive.org/api/assets/58385f05-000f-40ed-b3e9-5fb142b938a3/download/
  908. - https://dandiarchive.s3.amazonaws.com/blobs/a48/788/a487883d-ca40-4ede-92eb-99c09585a852
  909. dateModified: '2023-05-25T02:45:19.212606+09:00'
  910. digest:
  911. dandi:dandi-etag: 0e52bac17652e2f30d69f01b665edf68-35
  912. dandi:sha2-256: c25e885283e6acaa73a1e64d00a246e98b735704abcb33f8101bb1a05265077e
  913. encodingFormat: application/x-nwb
  914. id: dandiasset:58385f05-000f-40ed-b3e9-5fb142b938a3
  915. identifier: 58385f05-000f-40ed-b3e9-5fb142b938a3
  916. measurementTechnique:
  917. - name: multi electrode extracellular electrophysiology recording technique
  918. schemaKey: MeasurementTechniqueType
  919. - name: surgical technique
  920. schemaKey: MeasurementTechniqueType
  921. path: sub-YBT-Rat2-ECoG1024/sub-YBT-Rat2-ECoG1024_ses-20200317T151530_ecephys.nwb
  922. schemaKey: Asset
  923. schemaVersion: 0.6.4
  924. variableMeasured:
  925. - schemaKey: PropertyValue
  926. value: ElectrodeGroup
  927. - schemaKey: PropertyValue
  928. value: ElectricalSeries
  929. wasAttributedTo:
  930. - age:
  931. schemaKey: PropertyValue
  932. unitText: ISO-8601 duration
  933. value: P90D
  934. valueReference:
  935. schemaKey: PropertyValue
  936. value: dandi:BirthReference
  937. identifier: YBT_Rat2_ECoG1024
  938. schemaKey: Participant
  939. sex:
  940. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  941. name: Male
  942. schemaKey: SexType
  943. species:
  944. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  945. name: Rattus norvegicus - Norway rat
  946. schemaKey: SpeciesType
  947. wasGeneratedBy:
  948. - description: Sensory stimulation of left hindlimb with 60 psi air-puff every 1 s
  949. + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG grids
  950. with 1024 channels, 150 µm pitch, 30 µm diameter
  951. name: Acquisition session
  952. schemaKey: Session
  953. startDate: '2020-03-17T15:15:30+09:00'
  954. - description: Metadata generated by DANDI cli
  955. endDate: '2023-05-25T02:45:19.212606+09:00'
  956. id: urn:uuid:5efb8933-37fc-49bb-892d-790516b16612
  957. name: Metadata generation
  958. schemaKey: Activity
  959. startDate: '2023-05-25T02:45:19.118174+09:00'
  960. wasAssociatedWith:
  961. - identifier: RRID:SCR_019009
  962. name: DANDI Command Line Interface
  963. schemaKey: Software
  964. url: https://github.com/dandi/dandi-cli
  965. version: 0.55.0
  966. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  967. access:
  968. - schemaKey: AccessRequirements
  969. status: dandi:OpenAccess
  970. approach:
  971. - name: electrophysiological approach
  972. schemaKey: ApproachType
  973. blobDateModified: '2023-05-20T10:16:44.310304+09:00'
  974. contentSize: 2301401840
  975. contentUrl:
  976. - https://api.dandiarchive.org/api/assets/c66a0ed5-2892-4d18-9540-a9d4a760f2fa/download/
  977. - https://dandiarchive.s3.amazonaws.com/blobs/16b/3cd/16b3cd95-c35c-4a2d-b9b1-627720ed6285
  978. dateModified: '2023-05-25T02:48:04.763263+09:00'
  979. digest:
  980. dandi:dandi-etag: 884e88db7ee4388127b1df4a2b86a129-35
  981. dandi:sha2-256: 7d1f7a6f19eb94ccdde3ce607fb3e4d425f4e057eda486272aeffa8f3e7be227
  982. encodingFormat: application/x-nwb
  983. id: dandiasset:c66a0ed5-2892-4d18-9540-a9d4a760f2fa
  984. identifier: c66a0ed5-2892-4d18-9540-a9d4a760f2fa
  985. measurementTechnique:
  986. - name: multi electrode extracellular electrophysiology recording technique
  987. schemaKey: MeasurementTechniqueType
  988. - name: surgical technique
  989. schemaKey: MeasurementTechniqueType
  990. path: sub-YBT-Rat2-ECoG1024/sub-YBT-Rat2-ECoG1024_ses-20200317T152654_ecephys.nwb
  991. schemaKey: Asset
  992. schemaVersion: 0.6.4
  993. variableMeasured:
  994. - schemaKey: PropertyValue
  995. value: ElectrodeGroup
  996. - schemaKey: PropertyValue
  997. value: ElectricalSeries
  998. wasAttributedTo:
  999. - age:
  1000. schemaKey: PropertyValue
  1001. unitText: ISO-8601 duration
  1002. value: P90D
  1003. valueReference:
  1004. schemaKey: PropertyValue
  1005. value: dandi:BirthReference
  1006. identifier: YBT_Rat2_ECoG1024
  1007. schemaKey: Participant
  1008. sex:
  1009. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1010. name: Male
  1011. schemaKey: SexType
  1012. species:
  1013. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1014. name: Rattus norvegicus - Norway rat
  1015. schemaKey: SpeciesType
  1016. wasGeneratedBy:
  1017. - description: Sensory stimulation of left-side trunk with 60 psi air-puff every 1
  1018. s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1019. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1020. name: Acquisition session
  1021. schemaKey: Session
  1022. startDate: '2020-03-17T15:26:54+09:00'
  1023. - description: Metadata generated by DANDI cli
  1024. endDate: '2023-05-25T02:48:04.763263+09:00'
  1025. id: urn:uuid:3401d2ea-0d9e-431e-a0a3-fd7fc8119094
  1026. name: Metadata generation
  1027. schemaKey: Activity
  1028. startDate: '2023-05-25T02:48:04.652965+09:00'
  1029. wasAssociatedWith:
  1030. - identifier: RRID:SCR_019009
  1031. name: DANDI Command Line Interface
  1032. schemaKey: Software
  1033. url: https://github.com/dandi/dandi-cli
  1034. version: 0.55.0
  1035. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1036. access:
  1037. - schemaKey: AccessRequirements
  1038. status: dandi:OpenAccess
  1039. approach:
  1040. - name: electrophysiological approach
  1041. schemaKey: ApproachType
  1042. blobDateModified: '2023-05-20T10:47:07.056151+09:00'
  1043. contentSize: 2406332270
  1044. contentUrl:
  1045. - https://api.dandiarchive.org/api/assets/1ad5c3b0-2e14-4a62-a5bd-6425925488f6/download/
  1046. - https://dandiarchive.s3.amazonaws.com/blobs/a70/bfc/a70bfcde-83bf-486b-acf0-63c34b17682a
  1047. dateModified: '2023-05-25T02:52:43.883046+09:00'
  1048. digest:
  1049. dandi:dandi-etag: fba25e2162afbc5f691e2acdc742988a-36
  1050. dandi:sha2-256: effaa82ef9877e9540f96a1e2e69b63427bbd10fdd39ed114628eed61b6becbd
  1051. encodingFormat: application/x-nwb
  1052. id: dandiasset:1ad5c3b0-2e14-4a62-a5bd-6425925488f6
  1053. identifier: 1ad5c3b0-2e14-4a62-a5bd-6425925488f6
  1054. measurementTechnique:
  1055. - name: multi electrode extracellular electrophysiology recording technique
  1056. schemaKey: MeasurementTechniqueType
  1057. - name: surgical technique
  1058. schemaKey: MeasurementTechniqueType
  1059. path: sub-YBT-Rat2-ECoG1024/sub-YBT-Rat2-ECoG1024_ses-20200317T153051_ecephys.nwb
  1060. schemaKey: Asset
  1061. schemaVersion: 0.6.4
  1062. variableMeasured:
  1063. - schemaKey: PropertyValue
  1064. value: ElectrodeGroup
  1065. - schemaKey: PropertyValue
  1066. value: ElectricalSeries
  1067. wasAttributedTo:
  1068. - age:
  1069. schemaKey: PropertyValue
  1070. unitText: ISO-8601 duration
  1071. value: P90D
  1072. valueReference:
  1073. schemaKey: PropertyValue
  1074. value: dandi:BirthReference
  1075. identifier: YBT_Rat2_ECoG1024
  1076. schemaKey: Participant
  1077. sex:
  1078. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1079. name: Male
  1080. schemaKey: SexType
  1081. species:
  1082. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1083. name: Rattus norvegicus - Norway rat
  1084. schemaKey: SpeciesType
  1085. wasGeneratedBy:
  1086. - description: Sensory stimulation of left eye with 60 psi air-puff every 1 s + Fine
  1087. functional mapping of rat barrel cortex (right side) with micro-ECoG grids with
  1088. 1024 channels, 150 µm pitch, 30 µm diameter
  1089. name: Acquisition session
  1090. schemaKey: Session
  1091. startDate: '2020-03-17T15:30:51+09:00'
  1092. - description: Metadata generated by DANDI cli
  1093. endDate: '2023-05-25T02:52:43.883046+09:00'
  1094. id: urn:uuid:6f76e1c1-be8c-4381-ae9b-5414cadf7873
  1095. name: Metadata generation
  1096. schemaKey: Activity
  1097. startDate: '2023-05-25T02:52:43.785088+09:00'
  1098. wasAssociatedWith:
  1099. - identifier: RRID:SCR_019009
  1100. name: DANDI Command Line Interface
  1101. schemaKey: Software
  1102. url: https://github.com/dandi/dandi-cli
  1103. version: 0.55.0
  1104. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1105. access:
  1106. - schemaKey: AccessRequirements
  1107. status: dandi:OpenAccess
  1108. approach:
  1109. - name: electrophysiological approach
  1110. schemaKey: ApproachType
  1111. blobDateModified: '2023-05-27T16:48:20.829907+09:00'
  1112. contentSize: 4425272284
  1113. contentUrl:
  1114. - https://api.dandiarchive.org/api/assets/55d5b2df-306a-4450-808f-61867e3ad105/download/
  1115. - https://dandiarchive.s3.amazonaws.com/blobs/136/40b/13640bc1-6cef-4bb4-9285-b0fc069e2d74
  1116. dateModified: '2023-05-30T23:32:50.150695+09:00'
  1117. digest:
  1118. dandi:dandi-etag: 4637e66cee522dae993beafb16b9cd12-66
  1119. dandi:sha2-256: 6a3c2fc82f1de028264c4eeaa235b424aa0a92e31f96815bbfbdae6e638a7c3e
  1120. encodingFormat: application/x-nwb
  1121. id: dandiasset:55d5b2df-306a-4450-808f-61867e3ad105
  1122. identifier: 55d5b2df-306a-4450-808f-61867e3ad105
  1123. measurementTechnique:
  1124. - name: multi electrode extracellular electrophysiology recording technique
  1125. schemaKey: MeasurementTechniqueType
  1126. - name: surgical technique
  1127. schemaKey: MeasurementTechniqueType
  1128. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T135107_ecephys.nwb
  1129. schemaKey: Asset
  1130. schemaVersion: 0.6.4
  1131. variableMeasured:
  1132. - schemaKey: PropertyValue
  1133. value: ElectricalSeries
  1134. - schemaKey: PropertyValue
  1135. value: ElectrodeGroup
  1136. wasAttributedTo:
  1137. - age:
  1138. schemaKey: PropertyValue
  1139. unitText: ISO-8601 duration
  1140. value: P90D
  1141. valueReference:
  1142. schemaKey: PropertyValue
  1143. value: dandi:BirthReference
  1144. identifier: YBT_Rat4_ECoG1024
  1145. schemaKey: Participant
  1146. sex:
  1147. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1148. name: Male
  1149. schemaKey: SexType
  1150. species:
  1151. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1152. name: Rattus norvegicus - Norway rat
  1153. schemaKey: SpeciesType
  1154. wasGeneratedBy:
  1155. - description: Sensory stimulation of contralateral E2 whisker with 20 psi air-puff
  1156. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1157. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1158. name: Acquisition session
  1159. schemaKey: Session
  1160. startDate: '2020-10-30T13:51:07+09:00'
  1161. - description: Metadata generated by DANDI cli
  1162. endDate: '2023-05-30T23:32:50.150695+09:00'
  1163. id: urn:uuid:cafb853f-0f9d-40ad-8fa8-52a5f8121d9f
  1164. name: Metadata generation
  1165. schemaKey: Activity
  1166. startDate: '2023-05-30T23:32:49.752505+09:00'
  1167. wasAssociatedWith:
  1168. - identifier: RRID:SCR_019009
  1169. name: DANDI Command Line Interface
  1170. schemaKey: Software
  1171. url: https://github.com/dandi/dandi-cli
  1172. version: 0.55.0
  1173. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1174. access:
  1175. - schemaKey: AccessRequirements
  1176. status: dandi:OpenAccess
  1177. approach:
  1178. - name: electrophysiological approach
  1179. schemaKey: ApproachType
  1180. blobDateModified: '2023-05-27T22:39:06.475336+09:00'
  1181. contentSize: 4419535307
  1182. contentUrl:
  1183. - https://api.dandiarchive.org/api/assets/bbbcc2cb-ceef-4f4a-969b-ea418884a517/download/
  1184. - https://dandiarchive.s3.amazonaws.com/blobs/5e2/703/5e270359-fbab-4443-b52f-10aa6a52eed6
  1185. dateModified: '2023-05-30T23:32:49.909973+09:00'
  1186. digest:
  1187. dandi:dandi-etag: ec33263a42427da451a20d4308184a80-66
  1188. dandi:sha2-256: 33de052576e4e087bb2d30e6f385575513a700f0b816587d7d0eed437df6df7a
  1189. encodingFormat: application/x-nwb
  1190. id: dandiasset:bbbcc2cb-ceef-4f4a-969b-ea418884a517
  1191. identifier: bbbcc2cb-ceef-4f4a-969b-ea418884a517
  1192. measurementTechnique:
  1193. - name: multi electrode extracellular electrophysiology recording technique
  1194. schemaKey: MeasurementTechniqueType
  1195. - name: surgical technique
  1196. schemaKey: MeasurementTechniqueType
  1197. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T134931_ecephys.nwb
  1198. schemaKey: Asset
  1199. schemaVersion: 0.6.4
  1200. variableMeasured:
  1201. - schemaKey: PropertyValue
  1202. value: ElectricalSeries
  1203. - schemaKey: PropertyValue
  1204. value: ElectrodeGroup
  1205. wasAttributedTo:
  1206. - age:
  1207. schemaKey: PropertyValue
  1208. unitText: ISO-8601 duration
  1209. value: P90D
  1210. valueReference:
  1211. schemaKey: PropertyValue
  1212. value: dandi:BirthReference
  1213. identifier: YBT_Rat4_ECoG1024
  1214. schemaKey: Participant
  1215. sex:
  1216. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1217. name: Male
  1218. schemaKey: SexType
  1219. species:
  1220. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1221. name: Rattus norvegicus - Norway rat
  1222. schemaKey: SpeciesType
  1223. wasGeneratedBy:
  1224. - description: Sensory stimulation of contralateral E1 whisker with 20 psi air-puff
  1225. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1226. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1227. name: Acquisition session
  1228. schemaKey: Session
  1229. startDate: '2020-10-30T13:49:31+09:00'
  1230. - description: Metadata generated by DANDI cli
  1231. endDate: '2023-05-30T23:32:49.909973+09:00'
  1232. id: urn:uuid:b7dfe8d2-3dae-495f-ab37-78e5ef8e3969
  1233. name: Metadata generation
  1234. schemaKey: Activity
  1235. startDate: '2023-05-30T23:32:49.449241+09:00'
  1236. wasAssociatedWith:
  1237. - identifier: RRID:SCR_019009
  1238. name: DANDI Command Line Interface
  1239. schemaKey: Software
  1240. url: https://github.com/dandi/dandi-cli
  1241. version: 0.55.0
  1242. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1243. access:
  1244. - schemaKey: AccessRequirements
  1245. status: dandi:OpenAccess
  1246. approach:
  1247. - name: electrophysiological approach
  1248. schemaKey: ApproachType
  1249. blobDateModified: '2023-05-26T03:54:26.970749+09:00'
  1250. contentSize: 4545751176
  1251. contentUrl:
  1252. - https://api.dandiarchive.org/api/assets/6fb359a7-e2a1-4fd5-a30d-f3efb6c74e5c/download/
  1253. - https://dandiarchive.s3.amazonaws.com/blobs/efa/bee/efabeed7-41f7-4ceb-9502-5298c5a39454
  1254. dateModified: '2023-05-30T23:32:49.894105+09:00'
  1255. digest:
  1256. dandi:dandi-etag: bb2e62d5499d7da5031222a6fde48824-68
  1257. dandi:sha2-256: 4ec528830b631449f6edec143f7eea89e9429945f4e6a263a5aba5d0a0110fcc
  1258. encodingFormat: application/x-nwb
  1259. id: dandiasset:6fb359a7-e2a1-4fd5-a30d-f3efb6c74e5c
  1260. identifier: 6fb359a7-e2a1-4fd5-a30d-f3efb6c74e5c
  1261. measurementTechnique:
  1262. - name: multi electrode extracellular electrophysiology recording technique
  1263. schemaKey: MeasurementTechniqueType
  1264. - name: surgical technique
  1265. schemaKey: MeasurementTechniqueType
  1266. path: sub-YBT-Rat3-ECoG1024/sub-YBT-Rat3-ECoG1024_ses-20200604T161039_ecephys.nwb
  1267. schemaKey: Asset
  1268. schemaVersion: 0.6.4
  1269. variableMeasured:
  1270. - schemaKey: PropertyValue
  1271. value: ElectricalSeries
  1272. - schemaKey: PropertyValue
  1273. value: ElectrodeGroup
  1274. wasAttributedTo:
  1275. - age:
  1276. schemaKey: PropertyValue
  1277. unitText: ISO-8601 duration
  1278. value: P90D
  1279. valueReference:
  1280. schemaKey: PropertyValue
  1281. value: dandi:BirthReference
  1282. identifier: YBT_Rat3_ECoG1024
  1283. schemaKey: Participant
  1284. sex:
  1285. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1286. name: Male
  1287. schemaKey: SexType
  1288. species:
  1289. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1290. name: Rattus norvegicus - Norway rat
  1291. schemaKey: SpeciesType
  1292. wasGeneratedBy:
  1293. - description: Sensory stimulation of contralateral C4 whisker with 20 psi air-puff
  1294. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1295. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1296. name: Acquisition session
  1297. schemaKey: Session
  1298. startDate: '2020-06-04T16:10:39+09:00'
  1299. - description: Metadata generated by DANDI cli
  1300. endDate: '2023-05-30T23:32:49.894105+09:00'
  1301. id: urn:uuid:41a7ce77-4608-4bed-8085-f2aabecd1a1b
  1302. name: Metadata generation
  1303. schemaKey: Activity
  1304. startDate: '2023-05-30T23:32:49.465312+09:00'
  1305. wasAssociatedWith:
  1306. - identifier: RRID:SCR_019009
  1307. name: DANDI Command Line Interface
  1308. schemaKey: Software
  1309. url: https://github.com/dandi/dandi-cli
  1310. version: 0.55.0
  1311. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1312. access:
  1313. - schemaKey: AccessRequirements
  1314. status: dandi:OpenAccess
  1315. approach:
  1316. - name: electrophysiological approach
  1317. schemaKey: ApproachType
  1318. blobDateModified: '2023-05-25T19:21:52.105738+09:00'
  1319. contentSize: 4545279035
  1320. contentUrl:
  1321. - https://api.dandiarchive.org/api/assets/8f076f1c-532b-4ce7-9ce7-8d8e8338d761/download/
  1322. - https://dandiarchive.s3.amazonaws.com/blobs/a61/7b5/a617b590-fcea-43a0-8d3e-27cd629c298f
  1323. dateModified: '2023-05-30T23:32:49.720732+09:00'
  1324. digest:
  1325. dandi:dandi-etag: 2d56f26c7033ceee09237f41778846eb-68
  1326. dandi:sha2-256: 1a6759187c28ccb73046b405a752328cf8a04d3d0b280327ed3e2318cf361081
  1327. encodingFormat: application/x-nwb
  1328. id: dandiasset:8f076f1c-532b-4ce7-9ce7-8d8e8338d761
  1329. identifier: 8f076f1c-532b-4ce7-9ce7-8d8e8338d761
  1330. measurementTechnique:
  1331. - name: multi electrode extracellular electrophysiology recording technique
  1332. schemaKey: MeasurementTechniqueType
  1333. - name: surgical technique
  1334. schemaKey: MeasurementTechniqueType
  1335. path: sub-YBT-Rat3-ECoG1024/sub-YBT-Rat3-ECoG1024_ses-20200604T160906_ecephys.nwb
  1336. schemaKey: Asset
  1337. schemaVersion: 0.6.4
  1338. variableMeasured:
  1339. - schemaKey: PropertyValue
  1340. value: ElectricalSeries
  1341. - schemaKey: PropertyValue
  1342. value: ElectrodeGroup
  1343. wasAttributedTo:
  1344. - age:
  1345. schemaKey: PropertyValue
  1346. unitText: ISO-8601 duration
  1347. value: P90D
  1348. valueReference:
  1349. schemaKey: PropertyValue
  1350. value: dandi:BirthReference
  1351. identifier: YBT_Rat3_ECoG1024
  1352. schemaKey: Participant
  1353. sex:
  1354. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1355. name: Male
  1356. schemaKey: SexType
  1357. species:
  1358. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1359. name: Rattus norvegicus - Norway rat
  1360. schemaKey: SpeciesType
  1361. wasGeneratedBy:
  1362. - description: Sensory stimulation of contralateral C3 whisker with 20 psi air-puff
  1363. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1364. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1365. name: Acquisition session
  1366. schemaKey: Session
  1367. startDate: '2020-06-04T16:09:06+09:00'
  1368. - description: Metadata generated by DANDI cli
  1369. endDate: '2023-05-30T23:32:49.720732+09:00'
  1370. id: urn:uuid:3168d0f8-0e88-40b5-b415-1f6bc8f4c0b7
  1371. name: Metadata generation
  1372. schemaKey: Activity
  1373. startDate: '2023-05-30T23:32:49.417043+09:00'
  1374. wasAssociatedWith:
  1375. - identifier: RRID:SCR_019009
  1376. name: DANDI Command Line Interface
  1377. schemaKey: Software
  1378. url: https://github.com/dandi/dandi-cli
  1379. version: 0.55.0
  1380. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1381. access:
  1382. - schemaKey: AccessRequirements
  1383. status: dandi:OpenAccess
  1384. approach:
  1385. - name: electrophysiological approach
  1386. schemaKey: ApproachType
  1387. blobDateModified: '2023-05-25T16:39:12.193074+09:00'
  1388. contentSize: 5121283456
  1389. contentUrl:
  1390. - https://api.dandiarchive.org/api/assets/32b82fcd-0829-45b4-8326-ae285c94adb1/download/
  1391. - https://dandiarchive.s3.amazonaws.com/blobs/a7b/b15/a7bb15a1-3efa-4b09-bcf1-56636aeb68ad
  1392. dateModified: '2023-05-30T23:32:50.323210+09:00'
  1393. digest:
  1394. dandi:dandi-etag: c02e1d0b58b1208ae241e12769ebcc70-77
  1395. dandi:sha2-256: 88e1bbd714fd140cfcdd13ce907ab382e1a6f21c6386a437f0e386dc3c89a202
  1396. encodingFormat: application/x-nwb
  1397. id: dandiasset:32b82fcd-0829-45b4-8326-ae285c94adb1
  1398. identifier: 32b82fcd-0829-45b4-8326-ae285c94adb1
  1399. measurementTechnique:
  1400. - name: multi electrode extracellular electrophysiology recording technique
  1401. schemaKey: MeasurementTechniqueType
  1402. - name: surgical technique
  1403. schemaKey: MeasurementTechniqueType
  1404. path: sub-YBT-Rat3-ECoG1024/sub-YBT-Rat3-ECoG1024_ses-20200604T160742_ecephys.nwb
  1405. schemaKey: Asset
  1406. schemaVersion: 0.6.4
  1407. variableMeasured:
  1408. - schemaKey: PropertyValue
  1409. value: ElectricalSeries
  1410. - schemaKey: PropertyValue
  1411. value: ElectrodeGroup
  1412. wasAttributedTo:
  1413. - age:
  1414. schemaKey: PropertyValue
  1415. unitText: ISO-8601 duration
  1416. value: P90D
  1417. valueReference:
  1418. schemaKey: PropertyValue
  1419. value: dandi:BirthReference
  1420. identifier: YBT_Rat3_ECoG1024
  1421. schemaKey: Participant
  1422. sex:
  1423. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1424. name: Male
  1425. schemaKey: SexType
  1426. species:
  1427. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1428. name: Rattus norvegicus - Norway rat
  1429. schemaKey: SpeciesType
  1430. wasGeneratedBy:
  1431. - description: Sensory stimulation of contralateral C2 whisker with 20 psi air-puff
  1432. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1433. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1434. name: Acquisition session
  1435. schemaKey: Session
  1436. startDate: '2020-06-04T16:07:42+09:00'
  1437. - description: Metadata generated by DANDI cli
  1438. endDate: '2023-05-30T23:32:50.323210+09:00'
  1439. id: urn:uuid:e26ef525-ef96-44da-a013-50a84965bd3d
  1440. name: Metadata generation
  1441. schemaKey: Activity
  1442. startDate: '2023-05-30T23:32:50.207347+09:00'
  1443. wasAssociatedWith:
  1444. - identifier: RRID:SCR_019009
  1445. name: DANDI Command Line Interface
  1446. schemaKey: Software
  1447. url: https://github.com/dandi/dandi-cli
  1448. version: 0.55.0
  1449. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1450. access:
  1451. - schemaKey: AccessRequirements
  1452. status: dandi:OpenAccess
  1453. approach:
  1454. - name: electrophysiological approach
  1455. schemaKey: ApproachType
  1456. blobDateModified: '2023-05-28T21:12:06.925134+09:00'
  1457. contentSize: 4387142145
  1458. contentUrl:
  1459. - https://api.dandiarchive.org/api/assets/f6dc22fa-93b5-428a-ac20-ed53661daa99/download/
  1460. - https://dandiarchive.s3.amazonaws.com/blobs/3ce/524/3ce524ba-e8c1-445a-b12c-64b4a5152e15
  1461. dateModified: '2023-05-31T00:40:38.444780+09:00'
  1462. digest:
  1463. dandi:dandi-etag: 2873192b04011897ef0e24f1d878ab8f-66
  1464. dandi:sha2-256: 9ddf529da6398898ab8ca3d455556fda36fa78e510a8ddf0a34c3e65973dfe83
  1465. encodingFormat: application/x-nwb
  1466. id: dandiasset:f6dc22fa-93b5-428a-ac20-ed53661daa99
  1467. identifier: f6dc22fa-93b5-428a-ac20-ed53661daa99
  1468. measurementTechnique:
  1469. - name: multi electrode extracellular electrophysiology recording technique
  1470. schemaKey: MeasurementTechniqueType
  1471. - name: surgical technique
  1472. schemaKey: MeasurementTechniqueType
  1473. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T140226_ecephys.nwb
  1474. schemaKey: Asset
  1475. schemaVersion: 0.6.4
  1476. variableMeasured:
  1477. - schemaKey: PropertyValue
  1478. value: ElectricalSeries
  1479. - schemaKey: PropertyValue
  1480. value: ElectrodeGroup
  1481. wasAttributedTo:
  1482. - age:
  1483. schemaKey: PropertyValue
  1484. unitText: ISO-8601 duration
  1485. value: P90D
  1486. valueReference:
  1487. schemaKey: PropertyValue
  1488. value: dandi:BirthReference
  1489. identifier: YBT_Rat4_ECoG1024
  1490. schemaKey: Participant
  1491. sex:
  1492. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1493. name: Male
  1494. schemaKey: SexType
  1495. species:
  1496. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1497. name: Rattus norvegicus - Norway rat
  1498. schemaKey: SpeciesType
  1499. wasGeneratedBy:
  1500. - description: Sensory stimulation of contralateral D1 whisker with 20 psi air-puff
  1501. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1502. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1503. name: Acquisition session
  1504. schemaKey: Session
  1505. startDate: '2020-10-30T14:02:26+09:00'
  1506. - description: Metadata generated by DANDI cli
  1507. endDate: '2023-05-31T00:40:38.444780+09:00'
  1508. id: urn:uuid:23e64132-fecd-4791-a9a5-95b4d2d39479
  1509. name: Metadata generation
  1510. schemaKey: Activity
  1511. startDate: '2023-05-31T00:40:38.116646+09:00'
  1512. wasAssociatedWith:
  1513. - identifier: RRID:SCR_019009
  1514. name: DANDI Command Line Interface
  1515. schemaKey: Software
  1516. url: https://github.com/dandi/dandi-cli
  1517. version: 0.55.0
  1518. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1519. access:
  1520. - schemaKey: AccessRequirements
  1521. status: dandi:OpenAccess
  1522. approach:
  1523. - name: electrophysiological approach
  1524. schemaKey: ApproachType
  1525. blobDateModified: '2023-05-27T01:38:05.834593+09:00'
  1526. contentSize: 4368581619
  1527. contentUrl:
  1528. - https://api.dandiarchive.org/api/assets/d39cd847-7501-42eb-acef-5186644da706/download/
  1529. - https://dandiarchive.s3.amazonaws.com/blobs/9cf/334/9cf334d6-eefb-4cc4-9e16-a337b169d306
  1530. dateModified: '2023-05-31T00:39:04.974717+09:00'
  1531. digest:
  1532. dandi:dandi-etag: 06860a13e75bb56ed251f7255b2c5c3b-66
  1533. dandi:sha2-256: fd88d48ea3d8ffdc6ebd051f86e9086a9bb37aad21a9229f312a68bdcecbb8f8
  1534. encodingFormat: application/x-nwb
  1535. id: dandiasset:d39cd847-7501-42eb-acef-5186644da706
  1536. identifier: d39cd847-7501-42eb-acef-5186644da706
  1537. measurementTechnique:
  1538. - name: multi electrode extracellular electrophysiology recording technique
  1539. schemaKey: MeasurementTechniqueType
  1540. - name: surgical technique
  1541. schemaKey: MeasurementTechniqueType
  1542. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T135649_ecephys.nwb
  1543. schemaKey: Asset
  1544. schemaVersion: 0.6.4
  1545. variableMeasured:
  1546. - schemaKey: PropertyValue
  1547. value: ElectricalSeries
  1548. - schemaKey: PropertyValue
  1549. value: ElectrodeGroup
  1550. wasAttributedTo:
  1551. - age:
  1552. schemaKey: PropertyValue
  1553. unitText: ISO-8601 duration
  1554. value: P90D
  1555. valueReference:
  1556. schemaKey: PropertyValue
  1557. value: dandi:BirthReference
  1558. identifier: YBT_Rat4_ECoG1024
  1559. schemaKey: Participant
  1560. sex:
  1561. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1562. name: Male
  1563. schemaKey: SexType
  1564. species:
  1565. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1566. name: Rattus norvegicus - Norway rat
  1567. schemaKey: SpeciesType
  1568. wasGeneratedBy:
  1569. - description: Sensory stimulation of contralateral E3 whisker with 20 psi air-puff
  1570. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1571. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1572. name: Acquisition session
  1573. schemaKey: Session
  1574. startDate: '2020-10-30T13:56:49+09:00'
  1575. - description: Metadata generated by DANDI cli
  1576. endDate: '2023-05-31T00:39:04.974717+09:00'
  1577. id: urn:uuid:4d292d05-1805-4906-959e-5b024c871785
  1578. name: Metadata generation
  1579. schemaKey: Activity
  1580. startDate: '2023-05-31T00:39:04.708165+09:00'
  1581. wasAssociatedWith:
  1582. - identifier: RRID:SCR_019009
  1583. name: DANDI Command Line Interface
  1584. schemaKey: Software
  1585. url: https://github.com/dandi/dandi-cli
  1586. version: 0.55.0
  1587. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1588. access:
  1589. - schemaKey: AccessRequirements
  1590. status: dandi:OpenAccess
  1591. approach:
  1592. - name: electrophysiological approach
  1593. schemaKey: ApproachType
  1594. blobDateModified: '2023-05-26T19:36:16.211148+09:00'
  1595. contentSize: 4385683137
  1596. contentUrl:
  1597. - https://api.dandiarchive.org/api/assets/0a055ed8-d64b-446f-a437-c2699d8df4df/download/
  1598. - https://dandiarchive.s3.amazonaws.com/blobs/a2c/e52/a2ce528f-19fa-4a5a-8ff8-e46f9a0e3cea
  1599. dateModified: '2023-05-31T00:39:26.634931+09:00'
  1600. digest:
  1601. dandi:dandi-etag: 6e484303331fcf896ae2db64b9836aac-66
  1602. dandi:sha2-256: 89e77c2633c9b873fd24fed39129b2eae4148674714c2eaf1941d3ae39e4a3e6
  1603. encodingFormat: application/x-nwb
  1604. id: dandiasset:0a055ed8-d64b-446f-a437-c2699d8df4df
  1605. identifier: 0a055ed8-d64b-446f-a437-c2699d8df4df
  1606. measurementTechnique:
  1607. - name: multi electrode extracellular electrophysiology recording technique
  1608. schemaKey: MeasurementTechniqueType
  1609. - name: surgical technique
  1610. schemaKey: MeasurementTechniqueType
  1611. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T135846_ecephys.nwb
  1612. schemaKey: Asset
  1613. schemaVersion: 0.6.4
  1614. variableMeasured:
  1615. - schemaKey: PropertyValue
  1616. value: ElectricalSeries
  1617. - schemaKey: PropertyValue
  1618. value: ElectrodeGroup
  1619. wasAttributedTo:
  1620. - age:
  1621. schemaKey: PropertyValue
  1622. unitText: ISO-8601 duration
  1623. value: P90D
  1624. valueReference:
  1625. schemaKey: PropertyValue
  1626. value: dandi:BirthReference
  1627. identifier: YBT_Rat4_ECoG1024
  1628. schemaKey: Participant
  1629. sex:
  1630. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1631. name: Male
  1632. schemaKey: SexType
  1633. species:
  1634. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1635. name: Rattus norvegicus - Norway rat
  1636. schemaKey: SpeciesType
  1637. wasGeneratedBy:
  1638. - description: Sensory stimulation of contralateral E4 whisker with 20 psi air-puff
  1639. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1640. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1641. name: Acquisition session
  1642. schemaKey: Session
  1643. startDate: '2020-10-30T13:58:46+09:00'
  1644. - description: Metadata generated by DANDI cli
  1645. endDate: '2023-05-31T00:39:26.634931+09:00'
  1646. id: urn:uuid:68cce957-356e-486a-afdb-2530cd90dbfc
  1647. name: Metadata generation
  1648. schemaKey: Activity
  1649. startDate: '2023-05-31T00:39:26.366731+09:00'
  1650. wasAssociatedWith:
  1651. - identifier: RRID:SCR_019009
  1652. name: DANDI Command Line Interface
  1653. schemaKey: Software
  1654. url: https://github.com/dandi/dandi-cli
  1655. version: 0.55.0
  1656. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1657. access:
  1658. - schemaKey: AccessRequirements
  1659. status: dandi:OpenAccess
  1660. approach:
  1661. - name: electrophysiological approach
  1662. schemaKey: ApproachType
  1663. blobDateModified: '2023-05-28T12:55:23.541632+09:00'
  1664. contentSize: 4392272767
  1665. contentUrl:
  1666. - https://api.dandiarchive.org/api/assets/4dd0a897-617c-42eb-a717-7d1fd3eb9cf1/download/
  1667. - https://dandiarchive.s3.amazonaws.com/blobs/436/aa5/436aa5ea-249f-4aaf-8053-44216eccfc79
  1668. dateModified: '2023-05-31T00:40:43.588858+09:00'
  1669. digest:
  1670. dandi:dandi-etag: ef96aa67699dbe00fb8f2dd6ad883381-66
  1671. dandi:sha2-256: d17eccc89cca5d22d4bed23bdabd7d59f34ec99f5ed78c0b6fe9f014271b7811
  1672. encodingFormat: application/x-nwb
  1673. id: dandiasset:4dd0a897-617c-42eb-a717-7d1fd3eb9cf1
  1674. identifier: 4dd0a897-617c-42eb-a717-7d1fd3eb9cf1
  1675. measurementTechnique:
  1676. - name: multi electrode extracellular electrophysiology recording technique
  1677. schemaKey: MeasurementTechniqueType
  1678. - name: surgical technique
  1679. schemaKey: MeasurementTechniqueType
  1680. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T140516_ecephys.nwb
  1681. schemaKey: Asset
  1682. schemaVersion: 0.6.4
  1683. variableMeasured:
  1684. - schemaKey: PropertyValue
  1685. value: ElectricalSeries
  1686. - schemaKey: PropertyValue
  1687. value: ElectrodeGroup
  1688. wasAttributedTo:
  1689. - age:
  1690. schemaKey: PropertyValue
  1691. unitText: ISO-8601 duration
  1692. value: P90D
  1693. valueReference:
  1694. schemaKey: PropertyValue
  1695. value: dandi:BirthReference
  1696. identifier: YBT_Rat4_ECoG1024
  1697. schemaKey: Participant
  1698. sex:
  1699. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1700. name: Male
  1701. schemaKey: SexType
  1702. species:
  1703. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1704. name: Rattus norvegicus - Norway rat
  1705. schemaKey: SpeciesType
  1706. wasGeneratedBy:
  1707. - description: Sensory stimulation of contralateral D2 whisker with 20 psi air-puff
  1708. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1709. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1710. name: Acquisition session
  1711. schemaKey: Session
  1712. startDate: '2020-10-30T14:05:16+09:00'
  1713. - description: Metadata generated by DANDI cli
  1714. endDate: '2023-05-31T00:40:43.588858+09:00'
  1715. id: urn:uuid:95908e85-bf43-4e52-aae9-bd5752229e53
  1716. name: Metadata generation
  1717. schemaKey: Activity
  1718. startDate: '2023-05-31T00:40:43.338868+09:00'
  1719. wasAssociatedWith:
  1720. - identifier: RRID:SCR_019009
  1721. name: DANDI Command Line Interface
  1722. schemaKey: Software
  1723. url: https://github.com/dandi/dandi-cli
  1724. version: 0.55.0
  1725. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1726. access:
  1727. - schemaKey: AccessRequirements
  1728. status: dandi:OpenAccess
  1729. approach:
  1730. - name: electrophysiological approach
  1731. schemaKey: ApproachType
  1732. blobDateModified: '2023-05-28T03:29:01.595953+09:00'
  1733. contentSize: 4390802543
  1734. contentUrl:
  1735. - https://api.dandiarchive.org/api/assets/0f65bfdc-148b-4900-abc4-33128f6eaea9/download/
  1736. - https://dandiarchive.s3.amazonaws.com/blobs/941/144/9411449b-ffc5-4ce8-9d60-e5234d63f5c0
  1737. dateModified: '2023-05-31T00:47:14.650616+09:00'
  1738. digest:
  1739. dandi:dandi-etag: d44dc6e718e9fc7e7c0c846952e072bf-66
  1740. dandi:sha2-256: ef77472126f1081fbf2e1f705e987e0ff5c61d876063102d51bd62e1daa3d257
  1741. encodingFormat: application/x-nwb
  1742. id: dandiasset:0f65bfdc-148b-4900-abc4-33128f6eaea9
  1743. identifier: 0f65bfdc-148b-4900-abc4-33128f6eaea9
  1744. measurementTechnique:
  1745. - name: multi electrode extracellular electrophysiology recording technique
  1746. schemaKey: MeasurementTechniqueType
  1747. - name: surgical technique
  1748. schemaKey: MeasurementTechniqueType
  1749. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T140744_ecephys.nwb
  1750. schemaKey: Asset
  1751. schemaVersion: 0.6.4
  1752. variableMeasured:
  1753. - schemaKey: PropertyValue
  1754. value: ElectricalSeries
  1755. - schemaKey: PropertyValue
  1756. value: ElectrodeGroup
  1757. wasAttributedTo:
  1758. - age:
  1759. schemaKey: PropertyValue
  1760. unitText: ISO-8601 duration
  1761. value: P90D
  1762. valueReference:
  1763. schemaKey: PropertyValue
  1764. value: dandi:BirthReference
  1765. identifier: YBT_Rat4_ECoG1024
  1766. schemaKey: Participant
  1767. sex:
  1768. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1769. name: Male
  1770. schemaKey: SexType
  1771. species:
  1772. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1773. name: Rattus norvegicus - Norway rat
  1774. schemaKey: SpeciesType
  1775. wasGeneratedBy:
  1776. - description: Sensory stimulation of contralateral D3 whisker with 20 psi air-puff
  1777. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1778. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1779. name: Acquisition session
  1780. schemaKey: Session
  1781. startDate: '2020-10-30T14:07:44+09:00'
  1782. - description: Metadata generated by DANDI cli
  1783. endDate: '2023-05-31T00:47:14.650616+09:00'
  1784. id: urn:uuid:b1ca865a-c958-4a55-bd38-6a29899be66a
  1785. name: Metadata generation
  1786. schemaKey: Activity
  1787. startDate: '2023-05-31T00:47:14.384552+09:00'
  1788. wasAssociatedWith:
  1789. - identifier: RRID:SCR_019009
  1790. name: DANDI Command Line Interface
  1791. schemaKey: Software
  1792. url: https://github.com/dandi/dandi-cli
  1793. version: 0.55.0
  1794. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1795. access:
  1796. - schemaKey: AccessRequirements
  1797. status: dandi:OpenAccess
  1798. approach:
  1799. - name: electrophysiological approach
  1800. schemaKey: ApproachType
  1801. blobDateModified: '2023-05-29T14:10:39.572474+09:00'
  1802. contentSize: 4386362094
  1803. contentUrl:
  1804. - https://api.dandiarchive.org/api/assets/5d40e9de-9549-4104-aa50-62b99602bb84/download/
  1805. - https://dandiarchive.s3.amazonaws.com/blobs/dd2/ad6/dd2ad621-156a-4ec2-8a4e-7b47e3d0b737
  1806. dateModified: '2023-05-31T01:48:12.323448+09:00'
  1807. digest:
  1808. dandi:dandi-etag: 1fb82fbda9dae66907980180ba89c874-66
  1809. dandi:sha2-256: 5ed041393488cfb10e6918d708c2c3895e0eca2fad5585be530187a7ae5722d8
  1810. encodingFormat: application/x-nwb
  1811. id: dandiasset:5d40e9de-9549-4104-aa50-62b99602bb84
  1812. identifier: 5d40e9de-9549-4104-aa50-62b99602bb84
  1813. measurementTechnique:
  1814. - name: multi electrode extracellular electrophysiology recording technique
  1815. schemaKey: MeasurementTechniqueType
  1816. - name: surgical technique
  1817. schemaKey: MeasurementTechniqueType
  1818. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T141318_ecephys.nwb
  1819. schemaKey: Asset
  1820. schemaVersion: 0.6.4
  1821. variableMeasured:
  1822. - schemaKey: PropertyValue
  1823. value: ElectricalSeries
  1824. - schemaKey: PropertyValue
  1825. value: ElectrodeGroup
  1826. wasAttributedTo:
  1827. - age:
  1828. schemaKey: PropertyValue
  1829. unitText: ISO-8601 duration
  1830. value: P90D
  1831. valueReference:
  1832. schemaKey: PropertyValue
  1833. value: dandi:BirthReference
  1834. identifier: YBT_Rat4_ECoG1024
  1835. schemaKey: Participant
  1836. sex:
  1837. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1838. name: Male
  1839. schemaKey: SexType
  1840. species:
  1841. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1842. name: Rattus norvegicus - Norway rat
  1843. schemaKey: SpeciesType
  1844. wasGeneratedBy:
  1845. - description: Sensory stimulation of contralateral C2 whisker with 20 psi air-puff
  1846. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1847. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1848. name: Acquisition session
  1849. schemaKey: Session
  1850. startDate: '2020-10-30T14:13:18+09:00'
  1851. - description: Metadata generated by DANDI cli
  1852. endDate: '2023-05-31T01:48:12.323448+09:00'
  1853. id: urn:uuid:a65d4b01-a915-46b8-b240-2b94dfd6fd48
  1854. name: Metadata generation
  1855. schemaKey: Activity
  1856. startDate: '2023-05-31T01:48:12.172202+09: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.55.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-05-28T00:57:12.836453+09:00'
  1871. contentSize: 4379919094
  1872. contentUrl:
  1873. - https://api.dandiarchive.org/api/assets/2ea034f4-2203-4da3-b76e-01b482f1ade9/download/
  1874. - https://dandiarchive.s3.amazonaws.com/blobs/e01/9b7/e019b741-25ef-475c-adc4-978951d27900
  1875. dateModified: '2023-05-31T01:47:02.247499+09:00'
  1876. digest:
  1877. dandi:dandi-etag: cf377448ed00a7c53a60c6517c7c02e0-66
  1878. dandi:sha2-256: a5bd0a98baa15f06af4ffd8ace6bbe270d2fac92351030e2227f36d6c561dd32
  1879. encodingFormat: application/x-nwb
  1880. id: dandiasset:2ea034f4-2203-4da3-b76e-01b482f1ade9
  1881. identifier: 2ea034f4-2203-4da3-b76e-01b482f1ade9
  1882. measurementTechnique:
  1883. - name: multi electrode extracellular electrophysiology recording technique
  1884. schemaKey: MeasurementTechniqueType
  1885. - name: surgical technique
  1886. schemaKey: MeasurementTechniqueType
  1887. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T140942_ecephys.nwb
  1888. schemaKey: Asset
  1889. schemaVersion: 0.6.4
  1890. variableMeasured:
  1891. - schemaKey: PropertyValue
  1892. value: ElectricalSeries
  1893. - schemaKey: PropertyValue
  1894. value: ElectrodeGroup
  1895. wasAttributedTo:
  1896. - age:
  1897. schemaKey: PropertyValue
  1898. unitText: ISO-8601 duration
  1899. value: P90D
  1900. valueReference:
  1901. schemaKey: PropertyValue
  1902. value: dandi:BirthReference
  1903. identifier: YBT_Rat4_ECoG1024
  1904. schemaKey: Participant
  1905. sex:
  1906. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1907. name: Male
  1908. schemaKey: SexType
  1909. species:
  1910. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1911. name: Rattus norvegicus - Norway rat
  1912. schemaKey: SpeciesType
  1913. wasGeneratedBy:
  1914. - description: Sensory stimulation of contralateral D4 whisker with 20 psi air-puff
  1915. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1916. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1917. name: Acquisition session
  1918. schemaKey: Session
  1919. startDate: '2020-10-30T14:09:42+09:00'
  1920. - description: Metadata generated by DANDI cli
  1921. endDate: '2023-05-31T01:47:02.247499+09:00'
  1922. id: urn:uuid:abb0515d-e2c1-4ee5-92cc-7e5c5abd481d
  1923. name: Metadata generation
  1924. schemaKey: Activity
  1925. startDate: '2023-05-31T01:47:02.106756+09:00'
  1926. wasAssociatedWith:
  1927. - identifier: RRID:SCR_019009
  1928. name: DANDI Command Line Interface
  1929. schemaKey: Software
  1930. url: https://github.com/dandi/dandi-cli
  1931. version: 0.55.0
  1932. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1933. access:
  1934. - schemaKey: AccessRequirements
  1935. status: dandi:OpenAccess
  1936. approach:
  1937. - name: electrophysiological approach
  1938. schemaKey: ApproachType
  1939. blobDateModified: '2023-05-29T17:45:40.503289+09:00'
  1940. contentSize: 4385554736
  1941. contentUrl:
  1942. - https://api.dandiarchive.org/api/assets/74ec3b69-5fcd-42cd-ba9f-ebc3d9747b8b/download/
  1943. - https://dandiarchive.s3.amazonaws.com/blobs/6c1/3d9/6c13d92e-b4f0-41de-8815-473f818ef13b
  1944. dateModified: '2023-05-31T01:48:07.229325+09:00'
  1945. digest:
  1946. dandi:dandi-etag: a083e0a05b4ef7f22aaaa4c14803c3c0-66
  1947. dandi:sha2-256: 9ec9f7021435870c313602b1d3e5b9530c3d3c6351c13b770fccbd10f4075573
  1948. encodingFormat: application/x-nwb
  1949. id: dandiasset:74ec3b69-5fcd-42cd-ba9f-ebc3d9747b8b
  1950. identifier: 74ec3b69-5fcd-42cd-ba9f-ebc3d9747b8b
  1951. measurementTechnique:
  1952. - name: multi electrode extracellular electrophysiology recording technique
  1953. schemaKey: MeasurementTechniqueType
  1954. - name: surgical technique
  1955. schemaKey: MeasurementTechniqueType
  1956. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T141125_ecephys.nwb
  1957. schemaKey: Asset
  1958. schemaVersion: 0.6.4
  1959. variableMeasured:
  1960. - schemaKey: PropertyValue
  1961. value: ElectricalSeries
  1962. - schemaKey: PropertyValue
  1963. value: ElectrodeGroup
  1964. wasAttributedTo:
  1965. - age:
  1966. schemaKey: PropertyValue
  1967. unitText: ISO-8601 duration
  1968. value: P90D
  1969. valueReference:
  1970. schemaKey: PropertyValue
  1971. value: dandi:BirthReference
  1972. identifier: YBT_Rat4_ECoG1024
  1973. schemaKey: Participant
  1974. sex:
  1975. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1976. name: Male
  1977. schemaKey: SexType
  1978. species:
  1979. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1980. name: Rattus norvegicus - Norway rat
  1981. schemaKey: SpeciesType
  1982. wasGeneratedBy:
  1983. - description: Sensory stimulation of contralateral C1 whisker with 20 psi air-puff
  1984. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  1985. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  1986. name: Acquisition session
  1987. schemaKey: Session
  1988. startDate: '2020-10-30T14:11:25+09:00'
  1989. - description: Metadata generated by DANDI cli
  1990. endDate: '2023-05-31T01:48:07.229325+09:00'
  1991. id: urn:uuid:90cba0ee-4a10-4cef-a04a-618ea8a7fbb3
  1992. name: Metadata generation
  1993. schemaKey: Activity
  1994. startDate: '2023-05-31T01:48:07.102659+09:00'
  1995. wasAssociatedWith:
  1996. - identifier: RRID:SCR_019009
  1997. name: DANDI Command Line Interface
  1998. schemaKey: Software
  1999. url: https://github.com/dandi/dandi-cli
  2000. version: 0.55.0
  2001. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2002. access:
  2003. - schemaKey: AccessRequirements
  2004. status: dandi:OpenAccess
  2005. approach:
  2006. - name: electrophysiological approach
  2007. schemaKey: ApproachType
  2008. blobDateModified: '2023-05-29T04:35:36.348428+09:00'
  2009. contentSize: 4377001023
  2010. contentUrl:
  2011. - https://api.dandiarchive.org/api/assets/0e087cb9-9188-460c-b564-02ef4132dd17/download/
  2012. - https://dandiarchive.s3.amazonaws.com/blobs/b2b/4e9/b2b4e9e8-c0f0-4e0b-b255-cd59e357dbd2
  2013. dateModified: '2023-05-31T01:49:54.172863+09:00'
  2014. digest:
  2015. dandi:dandi-etag: bcfa8b788b2479b3191e32a7b418e7c4-66
  2016. dandi:sha2-256: d1e6001a59643f549a1bdf0162855111abc12ae12c252793de5da95c9dacc2af
  2017. encodingFormat: application/x-nwb
  2018. id: dandiasset:0e087cb9-9188-460c-b564-02ef4132dd17
  2019. identifier: 0e087cb9-9188-460c-b564-02ef4132dd17
  2020. measurementTechnique:
  2021. - name: multi electrode extracellular electrophysiology recording technique
  2022. schemaKey: MeasurementTechniqueType
  2023. - name: surgical technique
  2024. schemaKey: MeasurementTechniqueType
  2025. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T142019_ecephys.nwb
  2026. schemaKey: Asset
  2027. schemaVersion: 0.6.4
  2028. variableMeasured:
  2029. - schemaKey: PropertyValue
  2030. value: ElectricalSeries
  2031. - schemaKey: PropertyValue
  2032. value: ElectrodeGroup
  2033. wasAttributedTo:
  2034. - age:
  2035. schemaKey: PropertyValue
  2036. unitText: ISO-8601 duration
  2037. value: P90D
  2038. valueReference:
  2039. schemaKey: PropertyValue
  2040. value: dandi:BirthReference
  2041. identifier: YBT_Rat4_ECoG1024
  2042. schemaKey: Participant
  2043. sex:
  2044. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2045. name: Male
  2046. schemaKey: SexType
  2047. species:
  2048. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2049. name: Rattus norvegicus - Norway rat
  2050. schemaKey: SpeciesType
  2051. wasGeneratedBy:
  2052. - description: Sensory stimulation of contralateral C3 whisker with 20 psi air-puff
  2053. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  2054. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  2055. name: Acquisition session
  2056. schemaKey: Session
  2057. startDate: '2020-10-30T14:20:19+09:00'
  2058. - description: Metadata generated by DANDI cli
  2059. endDate: '2023-05-31T01:49:54.172863+09:00'
  2060. id: urn:uuid:20a9553f-6662-4f01-afaf-773a88e5c892
  2061. name: Metadata generation
  2062. schemaKey: Activity
  2063. startDate: '2023-05-31T01:49:54.000016+09:00'
  2064. wasAssociatedWith:
  2065. - identifier: RRID:SCR_019009
  2066. name: DANDI Command Line Interface
  2067. schemaKey: Software
  2068. url: https://github.com/dandi/dandi-cli
  2069. version: 0.55.0
  2070. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2071. access:
  2072. - schemaKey: AccessRequirements
  2073. status: dandi:OpenAccess
  2074. approach:
  2075. - name: electrophysiological approach
  2076. schemaKey: ApproachType
  2077. blobDateModified: '2023-05-29T00:28:09.992010+09:00'
  2078. contentSize: 4484542495
  2079. contentUrl:
  2080. - https://api.dandiarchive.org/api/assets/dd92088c-2172-400d-9134-6f980ed3379a/download/
  2081. - https://dandiarchive.s3.amazonaws.com/blobs/af7/395/af73951b-2af1-4eac-ad67-3d24fade5937
  2082. dateModified: '2023-05-31T01:57:06.284454+09:00'
  2083. digest:
  2084. dandi:dandi-etag: 566185920664d8de890607797859281c-67
  2085. dandi:sha2-256: 640b78be86744572060acad3e69458609940304b372bf06f2eb73c05857f4a6c
  2086. encodingFormat: application/x-nwb
  2087. id: dandiasset:dd92088c-2172-400d-9134-6f980ed3379a
  2088. identifier: dd92088c-2172-400d-9134-6f980ed3379a
  2089. measurementTechnique:
  2090. - name: multi electrode extracellular electrophysiology recording technique
  2091. schemaKey: MeasurementTechniqueType
  2092. - name: surgical technique
  2093. schemaKey: MeasurementTechniqueType
  2094. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T142315_ecephys.nwb
  2095. schemaKey: Asset
  2096. schemaVersion: 0.6.4
  2097. variableMeasured:
  2098. - schemaKey: PropertyValue
  2099. value: ElectricalSeries
  2100. - schemaKey: PropertyValue
  2101. value: ElectrodeGroup
  2102. wasAttributedTo:
  2103. - age:
  2104. schemaKey: PropertyValue
  2105. unitText: ISO-8601 duration
  2106. value: P90D
  2107. valueReference:
  2108. schemaKey: PropertyValue
  2109. value: dandi:BirthReference
  2110. identifier: YBT_Rat4_ECoG1024
  2111. schemaKey: Participant
  2112. sex:
  2113. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2114. name: Male
  2115. schemaKey: SexType
  2116. species:
  2117. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2118. name: Rattus norvegicus - Norway rat
  2119. schemaKey: SpeciesType
  2120. wasGeneratedBy:
  2121. - description: Sensory stimulation of contralateral C4 whisker with 20 psi air-puff
  2122. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  2123. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  2124. name: Acquisition session
  2125. schemaKey: Session
  2126. startDate: '2020-10-30T14:23:15+09:00'
  2127. - description: Metadata generated by DANDI cli
  2128. endDate: '2023-05-31T01:57:06.284454+09:00'
  2129. id: urn:uuid:11ef6a70-e9b2-4bac-b0e1-3470cc61588a
  2130. name: Metadata generation
  2131. schemaKey: Activity
  2132. startDate: '2023-05-31T01:57:06.143826+09:00'
  2133. wasAssociatedWith:
  2134. - identifier: RRID:SCR_019009
  2135. name: DANDI Command Line Interface
  2136. schemaKey: Software
  2137. url: https://github.com/dandi/dandi-cli
  2138. version: 0.55.0
  2139. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2140. access:
  2141. - schemaKey: AccessRequirements
  2142. status: dandi:OpenAccess
  2143. approach:
  2144. - name: electrophysiological approach
  2145. schemaKey: ApproachType
  2146. blobDateModified: '2023-05-30T23:27:58.750360+09:00'
  2147. contentSize: 2805020235
  2148. contentUrl:
  2149. - https://api.dandiarchive.org/api/assets/55e82f4f-51df-4cb4-b44e-24c50993f20b/download/
  2150. - https://dandiarchive.s3.amazonaws.com/blobs/d2e/1e7/d2e1e7c7-3a78-40f0-8b73-7d06c0a1a45d
  2151. dateModified: '2023-05-31T02:52:21.142670+09:00'
  2152. digest:
  2153. dandi:dandi-etag: 8b48a6f8d3a117508ea500163b887803-42
  2154. dandi:sha2-256: 36d8cca7cfa2fdb05ec0c3630edfc99de25528a48a2dfa4c09cfd68f3f1d6725
  2155. encodingFormat: application/x-nwb
  2156. id: dandiasset:55e82f4f-51df-4cb4-b44e-24c50993f20b
  2157. identifier: 55e82f4f-51df-4cb4-b44e-24c50993f20b
  2158. measurementTechnique:
  2159. - name: multi electrode extracellular electrophysiology recording technique
  2160. schemaKey: MeasurementTechniqueType
  2161. - name: surgical technique
  2162. schemaKey: MeasurementTechniqueType
  2163. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T143506_ecephys.nwb
  2164. schemaKey: Asset
  2165. schemaVersion: 0.6.4
  2166. variableMeasured:
  2167. - schemaKey: PropertyValue
  2168. value: ElectricalSeries
  2169. - schemaKey: PropertyValue
  2170. value: ElectrodeGroup
  2171. wasAttributedTo:
  2172. - age:
  2173. schemaKey: PropertyValue
  2174. unitText: ISO-8601 duration
  2175. value: P90D
  2176. valueReference:
  2177. schemaKey: PropertyValue
  2178. value: dandi:BirthReference
  2179. identifier: YBT_Rat4_ECoG1024
  2180. schemaKey: Participant
  2181. sex:
  2182. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2183. name: Male
  2184. schemaKey: SexType
  2185. species:
  2186. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2187. name: Rattus norvegicus - Norway rat
  2188. schemaKey: SpeciesType
  2189. wasGeneratedBy:
  2190. - description: Sensory stimulation of contralateral forelimb with 40 psi air-puff
  2191. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  2192. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  2193. name: Acquisition session
  2194. schemaKey: Session
  2195. startDate: '2020-10-30T14:35:06+09:00'
  2196. - description: Metadata generated by DANDI cli
  2197. endDate: '2023-05-31T02:52:21.142670+09:00'
  2198. id: urn:uuid:cdfedca0-9314-41a8-95bf-c41ee0f770c7
  2199. name: Metadata generation
  2200. schemaKey: Activity
  2201. startDate: '2023-05-31T02:52:21.033292+09:00'
  2202. wasAssociatedWith:
  2203. - identifier: RRID:SCR_019009
  2204. name: DANDI Command Line Interface
  2205. schemaKey: Software
  2206. url: https://github.com/dandi/dandi-cli
  2207. version: 0.55.0
  2208. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2209. access:
  2210. - schemaKey: AccessRequirements
  2211. status: dandi:OpenAccess
  2212. approach:
  2213. - name: electrophysiological approach
  2214. schemaKey: ApproachType
  2215. blobDateModified: '2023-05-30T17:51:54.291357+09:00'
  2216. contentSize: 4369594625
  2217. contentUrl:
  2218. - https://api.dandiarchive.org/api/assets/453d7e09-b874-44e9-943f-2f770e79d6a0/download/
  2219. - https://dandiarchive.s3.amazonaws.com/blobs/4b8/324/4b8324b8-67f1-49d0-913b-aa42c5c335b2
  2220. dateModified: '2023-05-31T02:52:31.130314+09:00'
  2221. digest:
  2222. dandi:dandi-etag: 4db2a906f4e15d0dd5c2609f5c5aefd0-66
  2223. dandi:sha2-256: 00d749f58bcd1380aead5e799676209577151cc1d8bfc6ea61f130e2c2a5a9b7
  2224. encodingFormat: application/x-nwb
  2225. id: dandiasset:453d7e09-b874-44e9-943f-2f770e79d6a0
  2226. identifier: 453d7e09-b874-44e9-943f-2f770e79d6a0
  2227. measurementTechnique:
  2228. - name: multi electrode extracellular electrophysiology recording technique
  2229. schemaKey: MeasurementTechniqueType
  2230. - name: surgical technique
  2231. schemaKey: MeasurementTechniqueType
  2232. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T143729_ecephys.nwb
  2233. schemaKey: Asset
  2234. schemaVersion: 0.6.4
  2235. variableMeasured:
  2236. - schemaKey: PropertyValue
  2237. value: ElectricalSeries
  2238. - schemaKey: PropertyValue
  2239. value: ElectrodeGroup
  2240. wasAttributedTo:
  2241. - age:
  2242. schemaKey: PropertyValue
  2243. unitText: ISO-8601 duration
  2244. value: P90D
  2245. valueReference:
  2246. schemaKey: PropertyValue
  2247. value: dandi:BirthReference
  2248. identifier: YBT_Rat4_ECoG1024
  2249. schemaKey: Participant
  2250. sex:
  2251. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2252. name: Male
  2253. schemaKey: SexType
  2254. species:
  2255. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2256. name: Rattus norvegicus - Norway rat
  2257. schemaKey: SpeciesType
  2258. wasGeneratedBy:
  2259. - description: Sensory stimulation of contralateral hindlimb with 40 psi air-puff
  2260. every 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  2261. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  2262. name: Acquisition session
  2263. schemaKey: Session
  2264. startDate: '2020-10-30T14:37:29+09:00'
  2265. - description: Metadata generated by DANDI cli
  2266. endDate: '2023-05-31T02:52:31.130314+09:00'
  2267. id: urn:uuid:0e533488-5dd0-4f29-bc97-0c2430c9dd3a
  2268. name: Metadata generation
  2269. schemaKey: Activity
  2270. startDate: '2023-05-31T02:52:31.005313+09:00'
  2271. wasAssociatedWith:
  2272. - identifier: RRID:SCR_019009
  2273. name: DANDI Command Line Interface
  2274. schemaKey: Software
  2275. url: https://github.com/dandi/dandi-cli
  2276. version: 0.55.0
  2277. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2278. access:
  2279. - schemaKey: AccessRequirements
  2280. status: dandi:OpenAccess
  2281. approach:
  2282. - name: electrophysiological approach
  2283. schemaKey: ApproachType
  2284. blobDateModified: '2023-05-30T10:37:53.805669+09:00'
  2285. contentSize: 4385338890
  2286. contentUrl:
  2287. - https://api.dandiarchive.org/api/assets/3a9ab928-565b-4d9f-a265-7ca250feae5d/download/
  2288. - https://dandiarchive.s3.amazonaws.com/blobs/426/021/42602187-4fbd-4d41-9789-247f65ea567d
  2289. dateModified: '2023-05-31T02:53:09.746829+09:00'
  2290. digest:
  2291. dandi:dandi-etag: 95f266eca5ddf7eae9a383ba09da2cc8-66
  2292. dandi:sha2-256: 8f02dee7ecaa30fa8b4599c1854ff8e22c346a2b23a7a2b2dc0f7d712281f6a4
  2293. encodingFormat: application/x-nwb
  2294. id: dandiasset:3a9ab928-565b-4d9f-a265-7ca250feae5d
  2295. identifier: 3a9ab928-565b-4d9f-a265-7ca250feae5d
  2296. measurementTechnique:
  2297. - name: multi electrode extracellular electrophysiology recording technique
  2298. schemaKey: MeasurementTechniqueType
  2299. - name: surgical technique
  2300. schemaKey: MeasurementTechniqueType
  2301. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T143955_ecephys.nwb
  2302. schemaKey: Asset
  2303. schemaVersion: 0.6.4
  2304. variableMeasured:
  2305. - schemaKey: PropertyValue
  2306. value: ElectricalSeries
  2307. - schemaKey: PropertyValue
  2308. value: ElectrodeGroup
  2309. wasAttributedTo:
  2310. - age:
  2311. schemaKey: PropertyValue
  2312. unitText: ISO-8601 duration
  2313. value: P90D
  2314. valueReference:
  2315. schemaKey: PropertyValue
  2316. value: dandi:BirthReference
  2317. identifier: YBT_Rat4_ECoG1024
  2318. schemaKey: Participant
  2319. sex:
  2320. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2321. name: Male
  2322. schemaKey: SexType
  2323. species:
  2324. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2325. name: Rattus norvegicus - Norway rat
  2326. schemaKey: SpeciesType
  2327. wasGeneratedBy:
  2328. - description: Sensory stimulation of contralateral trunk with 40 psi air-puff every
  2329. 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  2330. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  2331. name: Acquisition session
  2332. schemaKey: Session
  2333. startDate: '2020-10-30T14:39:55+09:00'
  2334. - description: Metadata generated by DANDI cli
  2335. endDate: '2023-05-31T02:53:09.746829+09:00'
  2336. id: urn:uuid:07bff50c-d303-45d6-a6b7-2b9349fca131
  2337. name: Metadata generation
  2338. schemaKey: Activity
  2339. startDate: '2023-05-31T02:53:09.590026+09:00'
  2340. wasAssociatedWith:
  2341. - identifier: RRID:SCR_019009
  2342. name: DANDI Command Line Interface
  2343. schemaKey: Software
  2344. url: https://github.com/dandi/dandi-cli
  2345. version: 0.55.0
  2346. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2347. access:
  2348. - schemaKey: AccessRequirements
  2349. status: dandi:OpenAccess
  2350. approach:
  2351. - name: electrophysiological approach
  2352. schemaKey: ApproachType
  2353. blobDateModified: '2023-05-30T04:36:29.749743+09:00'
  2354. contentSize: 4369589935
  2355. contentUrl:
  2356. - https://api.dandiarchive.org/api/assets/e2f931a7-9a96-4207-98fa-b5cefe1f7e0b/download/
  2357. - https://dandiarchive.s3.amazonaws.com/blobs/70d/79b/70d79b6a-8361-46bb-b29a-c12c0b2cbc85
  2358. dateModified: '2023-05-31T02:53:26.174690+09:00'
  2359. digest:
  2360. dandi:dandi-etag: 82d5d29e8438ca82ac60d1d7a862c9c5-66
  2361. dandi:sha2-256: 439b9b8449dad1eb7dbef702a261677549b85d4c463ab81987dfc2eca2c08041
  2362. encodingFormat: application/x-nwb
  2363. id: dandiasset:e2f931a7-9a96-4207-98fa-b5cefe1f7e0b
  2364. identifier: e2f931a7-9a96-4207-98fa-b5cefe1f7e0b
  2365. measurementTechnique:
  2366. - name: multi electrode extracellular electrophysiology recording technique
  2367. schemaKey: MeasurementTechniqueType
  2368. - name: surgical technique
  2369. schemaKey: MeasurementTechniqueType
  2370. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T144133_ecephys.nwb
  2371. schemaKey: Asset
  2372. schemaVersion: 0.6.4
  2373. variableMeasured:
  2374. - schemaKey: PropertyValue
  2375. value: ElectricalSeries
  2376. - schemaKey: PropertyValue
  2377. value: ElectrodeGroup
  2378. wasAttributedTo:
  2379. - age:
  2380. schemaKey: PropertyValue
  2381. unitText: ISO-8601 duration
  2382. value: P90D
  2383. valueReference:
  2384. schemaKey: PropertyValue
  2385. value: dandi:BirthReference
  2386. identifier: YBT_Rat4_ECoG1024
  2387. schemaKey: Participant
  2388. sex:
  2389. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2390. name: Male
  2391. schemaKey: SexType
  2392. species:
  2393. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2394. name: Rattus norvegicus - Norway rat
  2395. schemaKey: SpeciesType
  2396. wasGeneratedBy:
  2397. - description: Sensory stimulation of contralateral neck with 40 psi air-puff every
  2398. 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  2399. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  2400. name: Acquisition session
  2401. schemaKey: Session
  2402. startDate: '2020-10-30T14:41:33+09:00'
  2403. - description: Metadata generated by DANDI cli
  2404. endDate: '2023-05-31T02:53:26.174690+09:00'
  2405. id: urn:uuid:8c9728c0-9bc5-4d84-a859-746a0a7fe0f8
  2406. name: Metadata generation
  2407. schemaKey: Activity
  2408. startDate: '2023-05-31T02:53:26.018155+09:00'
  2409. wasAssociatedWith:
  2410. - identifier: RRID:SCR_019009
  2411. name: DANDI Command Line Interface
  2412. schemaKey: Software
  2413. url: https://github.com/dandi/dandi-cli
  2414. version: 0.55.0
  2415. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2416. access:
  2417. - schemaKey: AccessRequirements
  2418. status: dandi:OpenAccess
  2419. approach:
  2420. - name: electrophysiological approach
  2421. schemaKey: ApproachType
  2422. blobDateModified: '2023-05-30T01:56:53.459970+09:00'
  2423. contentSize: 4356198380
  2424. contentUrl:
  2425. - https://api.dandiarchive.org/api/assets/07648d2f-fbba-451e-9532-39bf3bb39f71/download/
  2426. - https://dandiarchive.s3.amazonaws.com/blobs/73f/39e/73f39e5f-bd6e-42e0-81e3-477d8a99ba76
  2427. dateModified: '2023-05-31T03:03:36.483551+09:00'
  2428. digest:
  2429. dandi:dandi-etag: f8629e5bbaf915409fc34468b862dbf8-65
  2430. dandi:sha2-256: 1b3ce1fc96b0fa7cdccb480410a949502774cb1053f7e521215dab11a9a94ffb
  2431. encodingFormat: application/x-nwb
  2432. id: dandiasset:07648d2f-fbba-451e-9532-39bf3bb39f71
  2433. identifier: 07648d2f-fbba-451e-9532-39bf3bb39f71
  2434. measurementTechnique:
  2435. - name: multi electrode extracellular electrophysiology recording technique
  2436. schemaKey: MeasurementTechniqueType
  2437. - name: surgical technique
  2438. schemaKey: MeasurementTechniqueType
  2439. path: sub-YBT-Rat4-ECoG1024/sub-YBT-Rat4-ECoG1024_ses-20201030T144734_ecephys.nwb
  2440. schemaKey: Asset
  2441. schemaVersion: 0.6.4
  2442. variableMeasured:
  2443. - schemaKey: PropertyValue
  2444. value: ElectricalSeries
  2445. - schemaKey: PropertyValue
  2446. value: ElectrodeGroup
  2447. wasAttributedTo:
  2448. - age:
  2449. schemaKey: PropertyValue
  2450. unitText: ISO-8601 duration
  2451. value: P90D
  2452. valueReference:
  2453. schemaKey: PropertyValue
  2454. value: dandi:BirthReference
  2455. identifier: YBT_Rat4_ECoG1024
  2456. schemaKey: Participant
  2457. sex:
  2458. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2459. name: Male
  2460. schemaKey: SexType
  2461. species:
  2462. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2463. name: Rattus norvegicus - Norway rat
  2464. schemaKey: SpeciesType
  2465. wasGeneratedBy:
  2466. - description: Sensory stimulation of contralateral tail with 40 psi air-puff every
  2467. 1 s + Fine functional mapping of rat barrel cortex (right side) with micro-ECoG
  2468. grids with 1024 channels, 150 µm pitch, 30 µm diameter
  2469. name: Acquisition session
  2470. schemaKey: Session
  2471. startDate: '2020-10-30T14:47:34+09:00'
  2472. - description: Metadata generated by DANDI cli
  2473. endDate: '2023-05-31T03:03:36.483551+09:00'
  2474. id: urn:uuid:5f07e722-73f7-4499-9cba-8d86fe11fde2
  2475. name: Metadata generation
  2476. schemaKey: Activity
  2477. startDate: '2023-05-31T03:03:36.294990+09:00'
  2478. wasAssociatedWith:
  2479. - identifier: RRID:SCR_019009
  2480. name: DANDI Command Line Interface
  2481. schemaKey: Software
  2482. url: https://github.com/dandi/dandi-cli
  2483. version: 0.55.0
Tip!

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

Comments

Loading...