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

assets.yaml 84 KB
Raw

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
  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. - name: behavioral approach
  9. schemaKey: ApproachType
  10. blobDateModified: '2023-03-15T10:14:45.804118-07:00'
  11. contentSize: 527509576
  12. contentUrl:
  13. - https://api.dandiarchive.org/api/assets/73689194-02e4-40c5-9936-5c6ed7cfb99d/download/
  14. - https://dandiarchive.s3.amazonaws.com/blobs/a44/91f/a4491f82-a361-4f2d-a63d-4e2c9af37be9
  15. dateModified: '2023-03-16T09:34:18.876604-07:00'
  16. datePublished: '2023-03-17T00:39:50.067059+00:00'
  17. digest:
  18. dandi:dandi-etag: 2406734040fc11782815de6fff05e6e5-8
  19. dandi:sha2-256: 78e4809d903aea2261c302799b3ee03b899f01183ccbf434af8671afc6fba332
  20. encodingFormat: application/x-nwb
  21. id: dandiasset:73689194-02e4-40c5-9936-5c6ed7cfb99d
  22. identifier: 73689194-02e4-40c5-9936-5c6ed7cfb99d
  23. keywords:
  24. - EEG
  25. - Neuropixels
  26. - electrical stimulation
  27. - brain states
  28. - cortico-thalamic interactions
  29. measurementTechnique:
  30. - name: surgical technique
  31. schemaKey: MeasurementTechniqueType
  32. - name: behavioral technique
  33. schemaKey: MeasurementTechniqueType
  34. - name: analytical technique
  35. schemaKey: MeasurementTechniqueType
  36. - name: multi electrode extracellular electrophysiology recording technique
  37. schemaKey: MeasurementTechniqueType
  38. path: sub-543393/sub-543393_ses-20200820_behavior+ecephys.nwb
  39. publishedBy:
  40. endDate: '2023-03-17T00:39:50.067059+00:00'
  41. id: urn:uuid:a6103094-3209-425f-8f51-cb4180b61f7c
  42. name: DANDI publish
  43. schemaKey: PublishActivity
  44. startDate: '2023-03-17T00:39:50.067059+00:00'
  45. wasAssociatedWith:
  46. - id: urn:uuid:9eaacb79-7ae5-4aaa-ae3f-9d9f7a0e3b4d
  47. identifier: RRID:SCR_017571
  48. name: DANDI API
  49. schemaKey: Software
  50. version: 0.1.0
  51. schemaKey: Asset
  52. schemaVersion: 0.6.4
  53. variableMeasured:
  54. - schemaKey: PropertyValue
  55. value: BehavioralTimeSeries
  56. - schemaKey: PropertyValue
  57. value: ElectricalSeries
  58. - schemaKey: PropertyValue
  59. value: ElectrodeGroup
  60. - schemaKey: PropertyValue
  61. value: ProcessingModule
  62. wasAttributedTo:
  63. - age:
  64. schemaKey: PropertyValue
  65. unitText: ISO-8601 duration
  66. value: P65D
  67. valueReference:
  68. schemaKey: PropertyValue
  69. value: dandi:BirthReference
  70. identifier: '543393'
  71. schemaKey: Participant
  72. sex:
  73. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  74. name: Male
  75. schemaKey: SexType
  76. species:
  77. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  78. name: Mus musculus - House mouse
  79. schemaKey: SpeciesType
  80. wasGeneratedBy:
  81. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  82. identifier: '20200820'
  83. name: '20200820'
  84. schemaKey: Session
  85. startDate: '2020-08-20T13:24:37.313000-07:00'
  86. - description: Metadata generated by DANDI cli
  87. endDate: '2023-03-16T09:34:18.876604-07:00'
  88. id: urn:uuid:f80025c4-eb70-4efe-b041-59fb7b6b3ebd
  89. name: Metadata generation
  90. schemaKey: Activity
  91. startDate: '2023-03-16T09:34:12.603004-07:00'
  92. wasAssociatedWith:
  93. - identifier: RRID:SCR_019009
  94. name: DANDI Command Line Interface
  95. schemaKey: Software
  96. url: https://github.com/dandi/dandi-cli
  97. version: 0.51.0
  98. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  99. access:
  100. - schemaKey: AccessRequirements
  101. status: dandi:OpenAccess
  102. approach:
  103. - name: electrophysiological approach
  104. schemaKey: ApproachType
  105. - name: behavioral approach
  106. schemaKey: ApproachType
  107. blobDateModified: '2023-03-15T10:15:44.887397-07:00'
  108. contentSize: 589190292
  109. contentUrl:
  110. - https://api.dandiarchive.org/api/assets/f00ff515-1833-4f4f-bd9e-9c7dbf353397/download/
  111. - https://dandiarchive.s3.amazonaws.com/blobs/e68/0b6/e680b62a-e358-44cb-b6c3-3ba8aeff9ab5
  112. dateModified: '2023-03-16T09:34:20.075423-07:00'
  113. datePublished: '2023-03-17T00:39:50.081535+00:00'
  114. digest:
  115. dandi:dandi-etag: 09e757364f12b170627cd3fe77181e28-9
  116. dandi:sha2-256: 3d9b703e2c96428cad82af4ff13f8f4d1f4c7302c758fad4243220854dbb4c1c
  117. encodingFormat: application/x-nwb
  118. id: dandiasset:f00ff515-1833-4f4f-bd9e-9c7dbf353397
  119. identifier: f00ff515-1833-4f4f-bd9e-9c7dbf353397
  120. keywords:
  121. - EEG
  122. - Neuropixels
  123. - electrical stimulation
  124. - brain states
  125. - cortico-thalamic interactions
  126. measurementTechnique:
  127. - name: surgical technique
  128. schemaKey: MeasurementTechniqueType
  129. - name: behavioral technique
  130. schemaKey: MeasurementTechniqueType
  131. - name: analytical technique
  132. schemaKey: MeasurementTechniqueType
  133. - name: multi electrode extracellular electrophysiology recording technique
  134. schemaKey: MeasurementTechniqueType
  135. path: sub-543394/sub-543394_ses-20200827_behavior+ecephys.nwb
  136. publishedBy:
  137. endDate: '2023-03-17T00:39:50.081535+00:00'
  138. id: urn:uuid:e098ff62-ecb1-47cd-b7a8-10e14d46dc5b
  139. name: DANDI publish
  140. schemaKey: PublishActivity
  141. startDate: '2023-03-17T00:39:50.081535+00:00'
  142. wasAssociatedWith:
  143. - id: urn:uuid:6cec4e9f-5cb9-44c1-bcfb-e97d7b1aba82
  144. identifier: RRID:SCR_017571
  145. name: DANDI API
  146. schemaKey: Software
  147. version: 0.1.0
  148. schemaKey: Asset
  149. schemaVersion: 0.6.4
  150. variableMeasured:
  151. - schemaKey: PropertyValue
  152. value: BehavioralTimeSeries
  153. - schemaKey: PropertyValue
  154. value: ElectricalSeries
  155. - schemaKey: PropertyValue
  156. value: ElectrodeGroup
  157. - schemaKey: PropertyValue
  158. value: ProcessingModule
  159. wasAttributedTo:
  160. - age:
  161. schemaKey: PropertyValue
  162. unitText: ISO-8601 duration
  163. value: P72D
  164. valueReference:
  165. schemaKey: PropertyValue
  166. value: dandi:BirthReference
  167. identifier: '543394'
  168. schemaKey: Participant
  169. sex:
  170. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  171. name: Male
  172. schemaKey: SexType
  173. species:
  174. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  175. name: Mus musculus - House mouse
  176. schemaKey: SpeciesType
  177. wasGeneratedBy:
  178. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  179. identifier: '20200827'
  180. name: '20200827'
  181. schemaKey: Session
  182. startDate: '2020-08-27T14:31:41.143000-07:00'
  183. - description: Metadata generated by DANDI cli
  184. endDate: '2023-03-16T09:34:20.075423-07:00'
  185. id: urn:uuid:90ae1a73-8dac-4fed-99fa-77818e0c80b5
  186. name: Metadata generation
  187. schemaKey: Activity
  188. startDate: '2023-03-16T09:34:16.308382-07:00'
  189. wasAssociatedWith:
  190. - identifier: RRID:SCR_019009
  191. name: DANDI Command Line Interface
  192. schemaKey: Software
  193. url: https://github.com/dandi/dandi-cli
  194. version: 0.51.0
  195. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  196. access:
  197. - schemaKey: AccessRequirements
  198. status: dandi:OpenAccess
  199. approach:
  200. - name: electrophysiological approach
  201. schemaKey: ApproachType
  202. - name: behavioral approach
  203. schemaKey: ApproachType
  204. blobDateModified: '2023-03-15T10:13:52.512573-07:00'
  205. contentSize: 428192135
  206. contentUrl:
  207. - https://api.dandiarchive.org/api/assets/ec27a42e-098f-418e-b5e6-1424d5bbdb90/download/
  208. - https://dandiarchive.s3.amazonaws.com/blobs/e7b/996/e7b9961a-b215-47f0-9a6b-fa62da37b078
  209. dateModified: '2023-03-16T09:34:18.892229-07:00'
  210. datePublished: '2023-03-17T00:39:50.052021+00:00'
  211. digest:
  212. dandi:dandi-etag: 707957957dc394ca5e5be3d5dd3a1d5d-7
  213. dandi:sha2-256: 716e5372de827ab0a72fae5036045527f5e884bcc5a48215bba278fbb516521e
  214. encodingFormat: application/x-nwb
  215. id: dandiasset:ec27a42e-098f-418e-b5e6-1424d5bbdb90
  216. identifier: ec27a42e-098f-418e-b5e6-1424d5bbdb90
  217. keywords:
  218. - EEG
  219. - Neuropixels
  220. - electrical stimulation
  221. - brain states
  222. - cortico-thalamic interactions
  223. measurementTechnique:
  224. - name: surgical technique
  225. schemaKey: MeasurementTechniqueType
  226. - name: behavioral technique
  227. schemaKey: MeasurementTechniqueType
  228. - name: analytical technique
  229. schemaKey: MeasurementTechniqueType
  230. - name: multi electrode extracellular electrophysiology recording technique
  231. schemaKey: MeasurementTechniqueType
  232. path: sub-521887/sub-521887_ses-20200730_behavior+ecephys.nwb
  233. publishedBy:
  234. endDate: '2023-03-17T00:39:50.052021+00:00'
  235. id: urn:uuid:e0696574-9283-4126-997a-5c08a14cea4f
  236. name: DANDI publish
  237. schemaKey: PublishActivity
  238. startDate: '2023-03-17T00:39:50.052021+00:00'
  239. wasAssociatedWith:
  240. - id: urn:uuid:f40b1dd4-54e7-4c6f-a3c2-186e7f32b871
  241. identifier: RRID:SCR_017571
  242. name: DANDI API
  243. schemaKey: Software
  244. version: 0.1.0
  245. schemaKey: Asset
  246. schemaVersion: 0.6.4
  247. variableMeasured:
  248. - schemaKey: PropertyValue
  249. value: BehavioralTimeSeries
  250. - schemaKey: PropertyValue
  251. value: ElectricalSeries
  252. - schemaKey: PropertyValue
  253. value: ElectrodeGroup
  254. - schemaKey: PropertyValue
  255. value: ProcessingModule
  256. wasAttributedTo:
  257. - age:
  258. schemaKey: PropertyValue
  259. unitText: ISO-8601 duration
  260. value: P177D
  261. valueReference:
  262. schemaKey: PropertyValue
  263. value: dandi:BirthReference
  264. identifier: '521887'
  265. schemaKey: Participant
  266. sex:
  267. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  268. name: Female
  269. schemaKey: SexType
  270. species:
  271. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  272. name: Mus musculus - House mouse
  273. schemaKey: SpeciesType
  274. wasGeneratedBy:
  275. - description: EEG recording during wakefulness and isoflurane anesthesia
  276. identifier: '20200730'
  277. name: '20200730'
  278. schemaKey: Session
  279. startDate: '2020-07-30T11:24:44.799000-07:00'
  280. - description: Metadata generated by DANDI cli
  281. endDate: '2023-03-16T09:34:18.892229-07:00'
  282. id: urn:uuid:7ea6756f-44a0-445b-94ef-44527586041a
  283. name: Metadata generation
  284. schemaKey: Activity
  285. startDate: '2023-03-16T09:34:05.851312-07:00'
  286. wasAssociatedWith:
  287. - identifier: RRID:SCR_019009
  288. name: DANDI Command Line Interface
  289. schemaKey: Software
  290. url: https://github.com/dandi/dandi-cli
  291. version: 0.51.0
  292. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  293. access:
  294. - schemaKey: AccessRequirements
  295. status: dandi:OpenAccess
  296. approach:
  297. - name: electrophysiological approach
  298. schemaKey: ApproachType
  299. - name: behavioral approach
  300. schemaKey: ApproachType
  301. blobDateModified: '2023-03-15T10:12:16.026806-07:00'
  302. contentSize: 312139546
  303. contentUrl:
  304. - https://api.dandiarchive.org/api/assets/6ab37be4-adfe-4bea-a031-eb1a2b0782a8/download/
  305. - https://dandiarchive.s3.amazonaws.com/blobs/a36/7d4/a367d440-e803-4476-aac4-31b78904f5fe
  306. dateModified: '2023-03-16T09:34:36.204353-07:00'
  307. datePublished: '2023-03-17T00:39:50.074409+00:00'
  308. digest:
  309. dandi:dandi-etag: 8b2490771d34b124e46a251075f98f8b-5
  310. dandi:sha2-256: b80cd3a375ead36c05c451f562e92947573cd0679a30ffd573a04e44339b0171
  311. encodingFormat: application/x-nwb
  312. id: dandiasset:6ab37be4-adfe-4bea-a031-eb1a2b0782a8
  313. identifier: 6ab37be4-adfe-4bea-a031-eb1a2b0782a8
  314. keywords:
  315. - EEG
  316. - Neuropixels
  317. - electrical stimulation
  318. - brain states
  319. - cortico-thalamic interactions
  320. measurementTechnique:
  321. - name: surgical technique
  322. schemaKey: MeasurementTechniqueType
  323. - name: behavioral technique
  324. schemaKey: MeasurementTechniqueType
  325. - name: analytical technique
  326. schemaKey: MeasurementTechniqueType
  327. - name: multi electrode extracellular electrophysiology recording technique
  328. schemaKey: MeasurementTechniqueType
  329. path: sub-521885/sub-521885_ses-20200709_behavior+ecephys.nwb
  330. publishedBy:
  331. endDate: '2023-03-17T00:39:50.074409+00:00'
  332. id: urn:uuid:1d8478dc-0fa7-496a-bb6c-9213f26e8b67
  333. name: DANDI publish
  334. schemaKey: PublishActivity
  335. startDate: '2023-03-17T00:39:50.074409+00:00'
  336. wasAssociatedWith:
  337. - id: urn:uuid:21b1f296-3403-42f0-bb84-f3ee3fd87b86
  338. identifier: RRID:SCR_017571
  339. name: DANDI API
  340. schemaKey: Software
  341. version: 0.1.0
  342. schemaKey: Asset
  343. schemaVersion: 0.6.4
  344. variableMeasured:
  345. - schemaKey: PropertyValue
  346. value: BehavioralTimeSeries
  347. - schemaKey: PropertyValue
  348. value: ElectricalSeries
  349. - schemaKey: PropertyValue
  350. value: ElectrodeGroup
  351. - schemaKey: PropertyValue
  352. value: ProcessingModule
  353. wasAttributedTo:
  354. - age:
  355. schemaKey: PropertyValue
  356. unitText: ISO-8601 duration
  357. value: P156D
  358. valueReference:
  359. schemaKey: PropertyValue
  360. value: dandi:BirthReference
  361. identifier: '521885'
  362. schemaKey: Participant
  363. sex:
  364. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  365. name: Male
  366. schemaKey: SexType
  367. species:
  368. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  369. name: Mus musculus - House mouse
  370. schemaKey: SpeciesType
  371. wasGeneratedBy:
  372. - description: EEG recording during wakefulness and isoflurane anesthesia
  373. identifier: '20200709'
  374. name: '20200709'
  375. schemaKey: Session
  376. startDate: '2020-07-09T14:17:02.725000-07:00'
  377. - description: Metadata generated by DANDI cli
  378. endDate: '2023-03-16T09:34:36.204353-07:00'
  379. id: urn:uuid:51dfabad-a59b-4f9f-9cb0-65be248cb822
  380. name: Metadata generation
  381. schemaKey: Activity
  382. startDate: '2023-03-16T09:34:21.021289-07:00'
  383. wasAssociatedWith:
  384. - identifier: RRID:SCR_019009
  385. name: DANDI Command Line Interface
  386. schemaKey: Software
  387. url: https://github.com/dandi/dandi-cli
  388. version: 0.51.0
  389. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  390. access:
  391. - schemaKey: AccessRequirements
  392. status: dandi:OpenAccess
  393. approach:
  394. - name: electrophysiological approach
  395. schemaKey: ApproachType
  396. - name: behavioral approach
  397. schemaKey: ApproachType
  398. blobDateModified: '2023-03-15T10:13:07.902170-07:00'
  399. contentSize: 504307581
  400. contentUrl:
  401. - https://api.dandiarchive.org/api/assets/d77558e6-1b16-49c2-9f61-885d63701331/download/
  402. - https://dandiarchive.s3.amazonaws.com/blobs/514/482/5144821b-078c-4172-a2b2-323761e7045d
  403. dateModified: '2023-03-16T09:40:07.625757-07:00'
  404. datePublished: '2023-03-17T00:39:50.059854+00:00'
  405. digest:
  406. dandi:dandi-etag: d16f6141925390c2368cac34333acbc8-8
  407. dandi:sha2-256: a799afdf771a5f629e19312d37714b0990418cef0d2b7425b46e17574678fcb6
  408. encodingFormat: application/x-nwb
  409. id: dandiasset:d77558e6-1b16-49c2-9f61-885d63701331
  410. identifier: d77558e6-1b16-49c2-9f61-885d63701331
  411. keywords:
  412. - EEG
  413. - Neuropixels
  414. - electrical stimulation
  415. - brain states
  416. - cortico-thalamic interactions
  417. measurementTechnique:
  418. - name: surgical technique
  419. schemaKey: MeasurementTechniqueType
  420. - name: behavioral technique
  421. schemaKey: MeasurementTechniqueType
  422. - name: analytical technique
  423. schemaKey: MeasurementTechniqueType
  424. - name: multi electrode extracellular electrophysiology recording technique
  425. schemaKey: MeasurementTechniqueType
  426. path: sub-521886/sub-521886_ses-20200716_behavior+ecephys.nwb
  427. publishedBy:
  428. endDate: '2023-03-17T00:39:50.059854+00:00'
  429. id: urn:uuid:20822f67-37c9-4762-865a-54511216c35d
  430. name: DANDI publish
  431. schemaKey: PublishActivity
  432. startDate: '2023-03-17T00:39:50.059854+00:00'
  433. wasAssociatedWith:
  434. - id: urn:uuid:8512fc99-f0a2-4780-8687-0f4aedf9ce13
  435. identifier: RRID:SCR_017571
  436. name: DANDI API
  437. schemaKey: Software
  438. version: 0.1.0
  439. schemaKey: Asset
  440. schemaVersion: 0.6.4
  441. variableMeasured:
  442. - schemaKey: PropertyValue
  443. value: BehavioralTimeSeries
  444. - schemaKey: PropertyValue
  445. value: ElectricalSeries
  446. - schemaKey: PropertyValue
  447. value: ElectrodeGroup
  448. - schemaKey: PropertyValue
  449. value: ProcessingModule
  450. wasAttributedTo:
  451. - age:
  452. schemaKey: PropertyValue
  453. unitText: ISO-8601 duration
  454. value: P163D
  455. valueReference:
  456. schemaKey: PropertyValue
  457. value: dandi:BirthReference
  458. identifier: '521886'
  459. schemaKey: Participant
  460. sex:
  461. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  462. name: Male
  463. schemaKey: SexType
  464. species:
  465. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  466. name: Mus musculus - House mouse
  467. schemaKey: SpeciesType
  468. wasGeneratedBy:
  469. - description: EEG recording during wakefulness and isoflurane anesthesia
  470. identifier: '20200716'
  471. name: '20200716'
  472. schemaKey: Session
  473. startDate: '2020-07-16T13:36:49.384000-07:00'
  474. - description: Metadata generated by DANDI cli
  475. endDate: '2023-03-16T09:40:07.625757-07:00'
  476. id: urn:uuid:3c6b3876-b3cb-48b6-9cec-15fc36ef9dac
  477. name: Metadata generation
  478. schemaKey: Activity
  479. startDate: '2023-03-16T09:34:37.550786-07:00'
  480. wasAssociatedWith:
  481. - identifier: RRID:SCR_019009
  482. name: DANDI Command Line Interface
  483. schemaKey: Software
  484. url: https://github.com/dandi/dandi-cli
  485. version: 0.51.0
  486. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  487. access:
  488. - schemaKey: AccessRequirements
  489. status: dandi:OpenAccess
  490. approach:
  491. - name: electrophysiological approach
  492. schemaKey: ApproachType
  493. - name: behavioral approach
  494. schemaKey: ApproachType
  495. blobDateModified: '2023-03-15T14:10:48.320511-07:00'
  496. contentSize: 1124308400
  497. contentUrl:
  498. - https://api.dandiarchive.org/api/assets/7b2e1a9c-0900-4f5d-9be7-a2dcb2ca5cb3/download/
  499. - https://dandiarchive.s3.amazonaws.com/blobs/38a/015/38a0151f-89de-482a-b0f0-5c3794a7b601
  500. dateModified: '2023-03-16T09:51:32.049534-07:00'
  501. datePublished: '2023-03-17T00:39:50.089234+00:00'
  502. digest:
  503. dandi:dandi-etag: 336ba6efaf32bc516320b69e80734fbe-17
  504. dandi:sha2-256: c985835d707fa688de39968b3f2645150a7d67818ae7c81a9bd8c746d4c5202b
  505. encodingFormat: application/x-nwb
  506. id: dandiasset:7b2e1a9c-0900-4f5d-9be7-a2dcb2ca5cb3
  507. identifier: 7b2e1a9c-0900-4f5d-9be7-a2dcb2ca5cb3
  508. keywords:
  509. - EEG
  510. - Neuropixels
  511. - electrical stimulation
  512. - brain states
  513. - cortico-thalamic interactions
  514. measurementTechnique:
  515. - name: surgical technique
  516. schemaKey: MeasurementTechniqueType
  517. - name: behavioral technique
  518. schemaKey: MeasurementTechniqueType
  519. - name: analytical technique
  520. schemaKey: MeasurementTechniqueType
  521. - name: multi electrode extracellular electrophysiology recording technique
  522. schemaKey: MeasurementTechniqueType
  523. path: sub-569070/sub-569070_ses-20210401_behavior+ecephys.nwb
  524. publishedBy:
  525. endDate: '2023-03-17T00:39:50.089234+00:00'
  526. id: urn:uuid:5b0a6cfa-0f5c-4839-8ef9-f1481d14a4d7
  527. name: DANDI publish
  528. schemaKey: PublishActivity
  529. startDate: '2023-03-17T00:39:50.089234+00:00'
  530. wasAssociatedWith:
  531. - id: urn:uuid:cf60ee16-e1ce-4dc8-90b7-a39ef4df3fb7
  532. identifier: RRID:SCR_017571
  533. name: DANDI API
  534. schemaKey: Software
  535. version: 0.1.0
  536. schemaKey: Asset
  537. schemaVersion: 0.6.4
  538. variableMeasured:
  539. - schemaKey: PropertyValue
  540. value: BehavioralTimeSeries
  541. - schemaKey: PropertyValue
  542. value: ElectricalSeries
  543. - schemaKey: PropertyValue
  544. value: ElectrodeGroup
  545. - schemaKey: PropertyValue
  546. value: ProcessingModule
  547. wasAttributedTo:
  548. - age:
  549. schemaKey: PropertyValue
  550. unitText: ISO-8601 duration
  551. value: P114D
  552. valueReference:
  553. schemaKey: PropertyValue
  554. value: dandi:BirthReference
  555. identifier: '569070'
  556. schemaKey: Participant
  557. sex:
  558. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  559. name: Male
  560. schemaKey: SexType
  561. species:
  562. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  563. name: Mus musculus - House mouse
  564. schemaKey: SpeciesType
  565. wasGeneratedBy:
  566. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  567. identifier: '20210401'
  568. name: '20210401'
  569. schemaKey: Session
  570. startDate: '2021-04-01T10:27:22.310000-07:00'
  571. - description: Metadata generated by DANDI cli
  572. endDate: '2023-03-16T09:51:32.049534-07:00'
  573. id: urn:uuid:e80642bb-a33e-4f52-8ddd-f4e74535eaa5
  574. name: Metadata generation
  575. schemaKey: Activity
  576. startDate: '2023-03-16T09:43:18.348931-07:00'
  577. wasAssociatedWith:
  578. - identifier: RRID:SCR_019009
  579. name: DANDI Command Line Interface
  580. schemaKey: Software
  581. url: https://github.com/dandi/dandi-cli
  582. version: 0.51.0
  583. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  584. access:
  585. - schemaKey: AccessRequirements
  586. status: dandi:OpenAccess
  587. approach:
  588. - name: electrophysiological approach
  589. schemaKey: ApproachType
  590. - name: behavioral approach
  591. schemaKey: ApproachType
  592. blobDateModified: '2023-03-15T13:29:48.301405-07:00'
  593. contentSize: 22471663122
  594. contentUrl:
  595. - https://api.dandiarchive.org/api/assets/36dc1ee7-9157-4826-b389-14e5a888dece/download/
  596. - https://dandiarchive.s3.amazonaws.com/blobs/f25/59a/f2559a31-2ec3-471e-b37c-8b926fffd3f4
  597. dateModified: '2023-03-16T09:51:34.720327-07:00'
  598. datePublished: '2023-03-17T00:39:50.099668+00:00'
  599. digest:
  600. dandi:dandi-etag: d51fd297df6393f6624ac492d92bdc32-335
  601. dandi:sha2-256: f6596b63d3dea6cf59d6c15de337a2ef5a293c39a4094a592fe1f1869937117c
  602. encodingFormat: application/x-nwb
  603. id: dandiasset:36dc1ee7-9157-4826-b389-14e5a888dece
  604. identifier: 36dc1ee7-9157-4826-b389-14e5a888dece
  605. keywords:
  606. - EEG
  607. - Neuropixels
  608. - electrical stimulation
  609. - brain states
  610. - cortico-thalamic interactions
  611. measurementTechnique:
  612. - name: surgical technique
  613. schemaKey: MeasurementTechniqueType
  614. - name: spike sorting technique
  615. schemaKey: MeasurementTechniqueType
  616. - name: behavioral technique
  617. schemaKey: MeasurementTechniqueType
  618. - name: analytical technique
  619. schemaKey: MeasurementTechniqueType
  620. - name: signal filtering technique
  621. schemaKey: MeasurementTechniqueType
  622. - name: multi electrode extracellular electrophysiology recording technique
  623. schemaKey: MeasurementTechniqueType
  624. path: sub-569069/sub-569069_ses-20210312_behavior+ecephys.nwb
  625. publishedBy:
  626. endDate: '2023-03-17T00:39:50.099668+00:00'
  627. id: urn:uuid:888ea6c3-20fb-4ef1-869a-5a2f9d5abbb0
  628. name: DANDI publish
  629. schemaKey: PublishActivity
  630. startDate: '2023-03-17T00:39:50.099668+00:00'
  631. wasAssociatedWith:
  632. - id: urn:uuid:539cc245-877b-462f-879c-252ba1d191bb
  633. identifier: RRID:SCR_017571
  634. name: DANDI API
  635. schemaKey: Software
  636. version: 0.1.0
  637. schemaKey: Asset
  638. schemaVersion: 0.6.4
  639. variableMeasured:
  640. - schemaKey: PropertyValue
  641. value: BehavioralTimeSeries
  642. - schemaKey: PropertyValue
  643. value: Units
  644. - schemaKey: PropertyValue
  645. value: ElectricalSeries
  646. - schemaKey: PropertyValue
  647. value: ElectrodeGroup
  648. - schemaKey: PropertyValue
  649. value: LFP
  650. - schemaKey: PropertyValue
  651. value: ProcessingModule
  652. wasAttributedTo:
  653. - age:
  654. schemaKey: PropertyValue
  655. unitText: ISO-8601 duration
  656. value: P94D
  657. valueReference:
  658. schemaKey: PropertyValue
  659. value: dandi:BirthReference
  660. identifier: '569069'
  661. schemaKey: Participant
  662. sex:
  663. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  664. name: Male
  665. schemaKey: SexType
  666. species:
  667. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  668. name: Mus musculus - House mouse
  669. schemaKey: SpeciesType
  670. wasGeneratedBy:
  671. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  672. identifier: '20210312'
  673. name: '20210312'
  674. schemaKey: Session
  675. startDate: '2021-03-12T10:52:32.647000-08:00'
  676. - description: Metadata generated by DANDI cli
  677. endDate: '2023-03-16T09:51:34.720327-07:00'
  678. id: urn:uuid:64c73985-4e8a-4d65-8e26-4193d0b16d93
  679. name: Metadata generation
  680. schemaKey: Activity
  681. startDate: '2023-03-16T09:50:10.207705-07:00'
  682. wasAssociatedWith:
  683. - identifier: RRID:SCR_019009
  684. name: DANDI Command Line Interface
  685. schemaKey: Software
  686. url: https://github.com/dandi/dandi-cli
  687. version: 0.51.0
  688. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  689. access:
  690. - schemaKey: AccessRequirements
  691. status: dandi:OpenAccess
  692. approach:
  693. - name: electrophysiological approach
  694. schemaKey: ApproachType
  695. - name: behavioral approach
  696. schemaKey: ApproachType
  697. blobDateModified: '2023-03-15T12:49:33.260588-07:00'
  698. contentSize: 27288590471
  699. contentUrl:
  700. - https://api.dandiarchive.org/api/assets/d983e868-92e8-48a3-b23f-4254fafa1502/download/
  701. - https://dandiarchive.s3.amazonaws.com/blobs/544/745/5447455e-49ec-4ce0-9a64-4cad767bef7b
  702. dateModified: '2023-03-16T09:51:36.945066-07:00'
  703. datePublished: '2023-03-17T00:39:50.107964+00:00'
  704. digest:
  705. dandi:dandi-etag: 23d7b42d0416e924323fe4eae387f845-407
  706. dandi:sha2-256: 2ba3ca6b3fac62e5b98fc410201b57f4c9ff39b0f637c252c27f951c48c3f316
  707. encodingFormat: application/x-nwb
  708. id: dandiasset:d983e868-92e8-48a3-b23f-4254fafa1502
  709. identifier: d983e868-92e8-48a3-b23f-4254fafa1502
  710. keywords:
  711. - EEG
  712. - Neuropixels
  713. - electrical stimulation
  714. - brain states
  715. - cortico-thalamic interactions
  716. measurementTechnique:
  717. - name: surgical technique
  718. schemaKey: MeasurementTechniqueType
  719. - name: spike sorting technique
  720. schemaKey: MeasurementTechniqueType
  721. - name: behavioral technique
  722. schemaKey: MeasurementTechniqueType
  723. - name: analytical technique
  724. schemaKey: MeasurementTechniqueType
  725. - name: signal filtering technique
  726. schemaKey: MeasurementTechniqueType
  727. - name: multi electrode extracellular electrophysiology recording technique
  728. schemaKey: MeasurementTechniqueType
  729. path: sub-569068/sub-569068_ses-20210304_behavior+ecephys.nwb
  730. publishedBy:
  731. endDate: '2023-03-17T00:39:50.107964+00:00'
  732. id: urn:uuid:d859472a-0252-47f6-ad19-b636786be4ba
  733. name: DANDI publish
  734. schemaKey: PublishActivity
  735. startDate: '2023-03-17T00:39:50.107964+00:00'
  736. wasAssociatedWith:
  737. - id: urn:uuid:a0f18ce6-6c00-461c-b9a5-df2a5eda981d
  738. identifier: RRID:SCR_017571
  739. name: DANDI API
  740. schemaKey: Software
  741. version: 0.1.0
  742. schemaKey: Asset
  743. schemaVersion: 0.6.4
  744. variableMeasured:
  745. - schemaKey: PropertyValue
  746. value: BehavioralTimeSeries
  747. - schemaKey: PropertyValue
  748. value: Units
  749. - schemaKey: PropertyValue
  750. value: ElectricalSeries
  751. - schemaKey: PropertyValue
  752. value: ElectrodeGroup
  753. - schemaKey: PropertyValue
  754. value: LFP
  755. - schemaKey: PropertyValue
  756. value: ProcessingModule
  757. wasAttributedTo:
  758. - age:
  759. schemaKey: PropertyValue
  760. unitText: ISO-8601 duration
  761. value: P86D
  762. valueReference:
  763. schemaKey: PropertyValue
  764. value: dandi:BirthReference
  765. identifier: '569068'
  766. schemaKey: Participant
  767. sex:
  768. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  769. name: Male
  770. schemaKey: SexType
  771. species:
  772. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  773. name: Mus musculus - House mouse
  774. schemaKey: SpeciesType
  775. wasGeneratedBy:
  776. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  777. identifier: '20210304'
  778. name: '20210304'
  779. schemaKey: Session
  780. startDate: '2021-03-04T10:51:34.689000-08:00'
  781. - description: Metadata generated by DANDI cli
  782. endDate: '2023-03-16T09:51:36.945066-07:00'
  783. id: urn:uuid:f4d64654-1ac3-44e1-99a1-322552190836
  784. name: Metadata generation
  785. schemaKey: Activity
  786. startDate: '2023-03-16T09:51:17.158493-07:00'
  787. wasAssociatedWith:
  788. - identifier: RRID:SCR_019009
  789. name: DANDI Command Line Interface
  790. schemaKey: Software
  791. url: https://github.com/dandi/dandi-cli
  792. version: 0.51.0
  793. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  794. access:
  795. - schemaKey: AccessRequirements
  796. status: dandi:OpenAccess
  797. approach:
  798. - name: electrophysiological approach
  799. schemaKey: ApproachType
  800. - name: behavioral approach
  801. schemaKey: ApproachType
  802. blobDateModified: '2023-03-15T17:23:08.457587-07:00'
  803. contentSize: 13304265059
  804. contentUrl:
  805. - https://api.dandiarchive.org/api/assets/1178a345-d6a7-467a-a193-37a6a86df21f/download/
  806. - https://dandiarchive.s3.amazonaws.com/blobs/17c/527/17c52716-2b62-44c5-ac4a-b8510df3a1bf
  807. dateModified: '2023-03-16T10:15:22.583758-07:00'
  808. datePublished: '2023-03-17T00:39:49.902470+00:00'
  809. digest:
  810. dandi:dandi-etag: 89ae004f591eec0b5e4e68a70a0c6af6-199
  811. dandi:sha2-256: 149252e7858ee3adb2eb691296aa9ee818691f27f81ff85183052c7954e76871
  812. encodingFormat: application/x-nwb
  813. id: dandiasset:1178a345-d6a7-467a-a193-37a6a86df21f
  814. identifier: 1178a345-d6a7-467a-a193-37a6a86df21f
  815. keywords:
  816. - EEG
  817. - Neuropixels
  818. - electrical stimulation
  819. - brain states
  820. - cortico-thalamic interactions
  821. measurementTechnique:
  822. - name: surgical technique
  823. schemaKey: MeasurementTechniqueType
  824. - name: spike sorting technique
  825. schemaKey: MeasurementTechniqueType
  826. - name: behavioral technique
  827. schemaKey: MeasurementTechniqueType
  828. - name: analytical technique
  829. schemaKey: MeasurementTechniqueType
  830. - name: signal filtering technique
  831. schemaKey: MeasurementTechniqueType
  832. - name: multi electrode extracellular electrophysiology recording technique
  833. schemaKey: MeasurementTechniqueType
  834. path: sub-569072/sub-569072_ses-20210422_behavior+ecephys.nwb
  835. publishedBy:
  836. endDate: '2023-03-17T00:39:49.902470+00:00'
  837. id: urn:uuid:9a1efa27-e358-4d3d-ab94-8e83b0811810
  838. name: DANDI publish
  839. schemaKey: PublishActivity
  840. startDate: '2023-03-17T00:39:49.902470+00:00'
  841. wasAssociatedWith:
  842. - id: urn:uuid:cf719720-a300-4bb9-b717-a13fa33d8c9a
  843. identifier: RRID:SCR_017571
  844. name: DANDI API
  845. schemaKey: Software
  846. version: 0.1.0
  847. schemaKey: Asset
  848. schemaVersion: 0.6.4
  849. variableMeasured:
  850. - schemaKey: PropertyValue
  851. value: BehavioralTimeSeries
  852. - schemaKey: PropertyValue
  853. value: Units
  854. - schemaKey: PropertyValue
  855. value: ElectricalSeries
  856. - schemaKey: PropertyValue
  857. value: ElectrodeGroup
  858. - schemaKey: PropertyValue
  859. value: LFP
  860. - schemaKey: PropertyValue
  861. value: ProcessingModule
  862. wasAttributedTo:
  863. - age:
  864. schemaKey: PropertyValue
  865. unitText: ISO-8601 duration
  866. value: P135D
  867. valueReference:
  868. schemaKey: PropertyValue
  869. value: dandi:BirthReference
  870. identifier: '569072'
  871. schemaKey: Participant
  872. sex:
  873. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  874. name: Male
  875. schemaKey: SexType
  876. species:
  877. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  878. name: Mus musculus - House mouse
  879. schemaKey: SpeciesType
  880. wasGeneratedBy:
  881. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  882. identifier: '20210422'
  883. name: '20210422'
  884. schemaKey: Session
  885. startDate: '2021-04-22T10:26:39.878000-07:00'
  886. - description: Metadata generated by DANDI cli
  887. endDate: '2023-03-16T10:15:22.583758-07:00'
  888. id: urn:uuid:acc8cf6f-86b4-424e-9dd5-1447537491af
  889. name: Metadata generation
  890. schemaKey: Activity
  891. startDate: '2023-03-16T10:03:08.835020-07:00'
  892. wasAssociatedWith:
  893. - identifier: RRID:SCR_019009
  894. name: DANDI Command Line Interface
  895. schemaKey: Software
  896. url: https://github.com/dandi/dandi-cli
  897. version: 0.51.0
  898. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  899. access:
  900. - schemaKey: AccessRequirements
  901. status: dandi:OpenAccess
  902. approach:
  903. - name: electrophysiological approach
  904. schemaKey: ApproachType
  905. - name: behavioral approach
  906. schemaKey: ApproachType
  907. blobDateModified: '2023-03-15T16:45:48.755233-07:00'
  908. contentSize: 26729211995
  909. contentUrl:
  910. - https://api.dandiarchive.org/api/assets/4db6170e-185a-4ed9-bb5e-c1f69a3c6cff/download/
  911. - https://dandiarchive.s3.amazonaws.com/blobs/2bf/eed/2bfeedf1-6d46-40b1-9019-d3053867f2b8
  912. dateModified: '2023-03-16T10:20:03.264946-07:00'
  913. datePublished: '2023-03-17T00:39:49.914651+00:00'
  914. digest:
  915. dandi:dandi-etag: 217a91f1594170e0cbb0b88f34f3b316-399
  916. dandi:sha2-256: ba26a371459d7415f142e21cd5d64411442b0ad16f8bc902649f9efec5ef7699
  917. encodingFormat: application/x-nwb
  918. id: dandiasset:4db6170e-185a-4ed9-bb5e-c1f69a3c6cff
  919. identifier: 4db6170e-185a-4ed9-bb5e-c1f69a3c6cff
  920. keywords:
  921. - EEG
  922. - Neuropixels
  923. - electrical stimulation
  924. - brain states
  925. - cortico-thalamic interactions
  926. measurementTechnique:
  927. - name: surgical technique
  928. schemaKey: MeasurementTechniqueType
  929. - name: spike sorting technique
  930. schemaKey: MeasurementTechniqueType
  931. - name: behavioral technique
  932. schemaKey: MeasurementTechniqueType
  933. - name: analytical technique
  934. schemaKey: MeasurementTechniqueType
  935. - name: signal filtering technique
  936. schemaKey: MeasurementTechniqueType
  937. - name: multi electrode extracellular electrophysiology recording technique
  938. schemaKey: MeasurementTechniqueType
  939. path: sub-569073/sub-569073_ses-20210415_behavior+ecephys.nwb
  940. publishedBy:
  941. endDate: '2023-03-17T00:39:49.914651+00:00'
  942. id: urn:uuid:f727689c-d60d-448e-92e6-ca1f3eaa7a76
  943. name: DANDI publish
  944. schemaKey: PublishActivity
  945. startDate: '2023-03-17T00:39:49.914651+00:00'
  946. wasAssociatedWith:
  947. - id: urn:uuid:4b1eb188-003b-4af3-aaaf-db79ca5e75f3
  948. identifier: RRID:SCR_017571
  949. name: DANDI API
  950. schemaKey: Software
  951. version: 0.1.0
  952. schemaKey: Asset
  953. schemaVersion: 0.6.4
  954. variableMeasured:
  955. - schemaKey: PropertyValue
  956. value: BehavioralTimeSeries
  957. - schemaKey: PropertyValue
  958. value: Units
  959. - schemaKey: PropertyValue
  960. value: ElectricalSeries
  961. - schemaKey: PropertyValue
  962. value: ElectrodeGroup
  963. - schemaKey: PropertyValue
  964. value: LFP
  965. - schemaKey: PropertyValue
  966. value: ProcessingModule
  967. wasAttributedTo:
  968. - age:
  969. schemaKey: PropertyValue
  970. unitText: ISO-8601 duration
  971. value: P128D
  972. valueReference:
  973. schemaKey: PropertyValue
  974. value: dandi:BirthReference
  975. identifier: '569073'
  976. schemaKey: Participant
  977. sex:
  978. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  979. name: Male
  980. schemaKey: SexType
  981. species:
  982. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  983. name: Mus musculus - House mouse
  984. schemaKey: SpeciesType
  985. wasGeneratedBy:
  986. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  987. identifier: '20210415'
  988. name: '20210415'
  989. schemaKey: Session
  990. startDate: '2021-04-15T10:26:36.611000-07:00'
  991. - description: Metadata generated by DANDI cli
  992. endDate: '2023-03-16T10:20:03.264946-07:00'
  993. id: urn:uuid:e8b2939c-79dc-40ed-a47b-833b1cad9424
  994. name: Metadata generation
  995. schemaKey: Activity
  996. startDate: '2023-03-16T10:14:45.864130-07:00'
  997. wasAssociatedWith:
  998. - identifier: RRID:SCR_019009
  999. name: DANDI Command Line Interface
  1000. schemaKey: Software
  1001. url: https://github.com/dandi/dandi-cli
  1002. version: 0.51.0
  1003. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1004. access:
  1005. - schemaKey: AccessRequirements
  1006. status: dandi:OpenAccess
  1007. approach:
  1008. - name: electrophysiological approach
  1009. schemaKey: ApproachType
  1010. - name: behavioral approach
  1011. schemaKey: ApproachType
  1012. blobDateModified: '2023-03-15T17:02:48.199258-07:00'
  1013. contentSize: 13200523477
  1014. contentUrl:
  1015. - https://api.dandiarchive.org/api/assets/488238b2-11f9-4c50-a3ec-414d1f3e91ab/download/
  1016. - https://dandiarchive.s3.amazonaws.com/blobs/1ad/b6e/1adb6e69-cf6f-4638-808f-54602617f90d
  1017. dateModified: '2023-03-16T10:23:37.293978-07:00'
  1018. datePublished: '2023-03-17T00:39:49.924086+00:00'
  1019. digest:
  1020. dandi:dandi-etag: 6a149c274af680c5c9b1d1fd4feb847e-197
  1021. dandi:sha2-256: e7d06071f111da92540e6a7fa2f9dcb1723af6a83200d1392632980572a6d8af
  1022. encodingFormat: application/x-nwb
  1023. id: dandiasset:488238b2-11f9-4c50-a3ec-414d1f3e91ab
  1024. identifier: 488238b2-11f9-4c50-a3ec-414d1f3e91ab
  1025. keywords:
  1026. - EEG
  1027. - Neuropixels
  1028. - electrical stimulation
  1029. - brain states
  1030. - cortico-thalamic interactions
  1031. measurementTechnique:
  1032. - name: surgical technique
  1033. schemaKey: MeasurementTechniqueType
  1034. - name: spike sorting technique
  1035. schemaKey: MeasurementTechniqueType
  1036. - name: behavioral technique
  1037. schemaKey: MeasurementTechniqueType
  1038. - name: analytical technique
  1039. schemaKey: MeasurementTechniqueType
  1040. - name: signal filtering technique
  1041. schemaKey: MeasurementTechniqueType
  1042. - name: multi electrode extracellular electrophysiology recording technique
  1043. schemaKey: MeasurementTechniqueType
  1044. path: sub-569073/sub-569073_ses-20210416_behavior+ecephys.nwb
  1045. publishedBy:
  1046. endDate: '2023-03-17T00:39:49.924086+00:00'
  1047. id: urn:uuid:ca26e883-b84b-4b07-8e7f-b7b268df88fd
  1048. name: DANDI publish
  1049. schemaKey: PublishActivity
  1050. startDate: '2023-03-17T00:39:49.924086+00:00'
  1051. wasAssociatedWith:
  1052. - id: urn:uuid:d6474cdb-724d-4fef-a2aa-cad21c68663d
  1053. identifier: RRID:SCR_017571
  1054. name: DANDI API
  1055. schemaKey: Software
  1056. version: 0.1.0
  1057. schemaKey: Asset
  1058. schemaVersion: 0.6.4
  1059. variableMeasured:
  1060. - schemaKey: PropertyValue
  1061. value: BehavioralTimeSeries
  1062. - schemaKey: PropertyValue
  1063. value: Units
  1064. - schemaKey: PropertyValue
  1065. value: ElectricalSeries
  1066. - schemaKey: PropertyValue
  1067. value: ElectrodeGroup
  1068. - schemaKey: PropertyValue
  1069. value: LFP
  1070. - schemaKey: PropertyValue
  1071. value: ProcessingModule
  1072. wasAttributedTo:
  1073. - age:
  1074. schemaKey: PropertyValue
  1075. unitText: ISO-8601 duration
  1076. value: P129D
  1077. valueReference:
  1078. schemaKey: PropertyValue
  1079. value: dandi:BirthReference
  1080. identifier: '569073'
  1081. schemaKey: Participant
  1082. sex:
  1083. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1084. name: Male
  1085. schemaKey: SexType
  1086. species:
  1087. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1088. name: Mus musculus - House mouse
  1089. schemaKey: SpeciesType
  1090. wasGeneratedBy:
  1091. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  1092. identifier: '20210416'
  1093. name: '20210416'
  1094. schemaKey: Session
  1095. startDate: '2021-04-16T10:42:30.491000-07:00'
  1096. - description: Metadata generated by DANDI cli
  1097. endDate: '2023-03-16T10:23:37.293978-07:00'
  1098. id: urn:uuid:3d245ec9-f7e8-4d42-9af4-f275bda609e2
  1099. name: Metadata generation
  1100. schemaKey: Activity
  1101. startDate: '2023-03-16T10:19:14.815189-07:00'
  1102. wasAssociatedWith:
  1103. - identifier: RRID:SCR_019009
  1104. name: DANDI Command Line Interface
  1105. schemaKey: Software
  1106. url: https://github.com/dandi/dandi-cli
  1107. version: 0.51.0
  1108. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1109. access:
  1110. - schemaKey: AccessRequirements
  1111. status: dandi:OpenAccess
  1112. approach:
  1113. - name: electrophysiological approach
  1114. schemaKey: ApproachType
  1115. - name: behavioral approach
  1116. schemaKey: ApproachType
  1117. blobDateModified: '2023-03-15T14:06:27.586590-07:00'
  1118. contentSize: 23171959305
  1119. contentUrl:
  1120. - https://api.dandiarchive.org/api/assets/3589f22f-c30c-427b-9e48-d1c27d4a9c65/download/
  1121. - https://dandiarchive.s3.amazonaws.com/blobs/69d/0f4/69d0f48f-1de0-48c4-9957-1425f5f4ed2b
  1122. dateModified: '2023-03-16T10:38:41.363180-07:00'
  1123. datePublished: '2023-03-17T00:39:49.932250+00:00'
  1124. digest:
  1125. dandi:dandi-etag: 8b1fad88394359cf85d5cbc9db982744-346
  1126. dandi:sha2-256: 6440574638f6c361750eb44249887eac44843f9ecb785229e34405a66f52c755
  1127. encodingFormat: application/x-nwb
  1128. id: dandiasset:3589f22f-c30c-427b-9e48-d1c27d4a9c65
  1129. identifier: 3589f22f-c30c-427b-9e48-d1c27d4a9c65
  1130. keywords:
  1131. - EEG
  1132. - Neuropixels
  1133. - electrical stimulation
  1134. - brain states
  1135. - cortico-thalamic interactions
  1136. measurementTechnique:
  1137. - name: surgical technique
  1138. schemaKey: MeasurementTechniqueType
  1139. - name: spike sorting technique
  1140. schemaKey: MeasurementTechniqueType
  1141. - name: behavioral technique
  1142. schemaKey: MeasurementTechniqueType
  1143. - name: analytical technique
  1144. schemaKey: MeasurementTechniqueType
  1145. - name: signal filtering technique
  1146. schemaKey: MeasurementTechniqueType
  1147. - name: multi electrode extracellular electrophysiology recording technique
  1148. schemaKey: MeasurementTechniqueType
  1149. path: sub-571619/sub-571619_ses-20210319_behavior+ecephys.nwb
  1150. publishedBy:
  1151. endDate: '2023-03-17T00:39:49.932250+00:00'
  1152. id: urn:uuid:6c58c92d-c9ec-4f59-8eb3-9230fe47ae92
  1153. name: DANDI publish
  1154. schemaKey: PublishActivity
  1155. startDate: '2023-03-17T00:39:49.932250+00:00'
  1156. wasAssociatedWith:
  1157. - id: urn:uuid:9a92052e-2f69-4bb7-95c9-6ae8a54d0919
  1158. identifier: RRID:SCR_017571
  1159. name: DANDI API
  1160. schemaKey: Software
  1161. version: 0.1.0
  1162. schemaKey: Asset
  1163. schemaVersion: 0.6.4
  1164. variableMeasured:
  1165. - schemaKey: PropertyValue
  1166. value: BehavioralTimeSeries
  1167. - schemaKey: PropertyValue
  1168. value: Units
  1169. - schemaKey: PropertyValue
  1170. value: ElectricalSeries
  1171. - schemaKey: PropertyValue
  1172. value: ElectrodeGroup
  1173. - schemaKey: PropertyValue
  1174. value: LFP
  1175. - schemaKey: PropertyValue
  1176. value: ProcessingModule
  1177. wasAttributedTo:
  1178. - age:
  1179. schemaKey: PropertyValue
  1180. unitText: ISO-8601 duration
  1181. value: P80D
  1182. valueReference:
  1183. schemaKey: PropertyValue
  1184. value: dandi:BirthReference
  1185. identifier: '571619'
  1186. schemaKey: Participant
  1187. sex:
  1188. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1189. name: Male
  1190. schemaKey: SexType
  1191. species:
  1192. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1193. name: Mus musculus - House mouse
  1194. schemaKey: SpeciesType
  1195. wasGeneratedBy:
  1196. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  1197. identifier: '20210319'
  1198. name: '20210319'
  1199. schemaKey: Session
  1200. startDate: '2021-03-19T10:08:49.020000-07:00'
  1201. - description: Metadata generated by DANDI cli
  1202. endDate: '2023-03-16T10:38:41.363180-07:00'
  1203. id: urn:uuid:ebe3360d-7e63-4ca1-8d2c-709928b40176
  1204. name: Metadata generation
  1205. schemaKey: Activity
  1206. startDate: '2023-03-16T10:29:55.384065-07:00'
  1207. wasAssociatedWith:
  1208. - identifier: RRID:SCR_019009
  1209. name: DANDI Command Line Interface
  1210. schemaKey: Software
  1211. url: https://github.com/dandi/dandi-cli
  1212. version: 0.51.0
  1213. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1214. access:
  1215. - schemaKey: AccessRequirements
  1216. status: dandi:OpenAccess
  1217. approach:
  1218. - name: electrophysiological approach
  1219. schemaKey: ApproachType
  1220. - name: behavioral approach
  1221. schemaKey: ApproachType
  1222. blobDateModified: '2023-03-15T10:50:29.482015-07:00'
  1223. contentSize: 14872627051
  1224. contentUrl:
  1225. - https://api.dandiarchive.org/api/assets/8e6e4eec-c987-4dea-bf45-c59052bdbee0/download/
  1226. - https://dandiarchive.s3.amazonaws.com/blobs/575/2b1/5752b14d-8403-4679-891e-867ff37b6290
  1227. dateModified: '2023-03-16T11:20:30.351800-07:00'
  1228. datePublished: '2023-03-17T00:39:49.940852+00:00'
  1229. digest:
  1230. dandi:dandi-etag: ba31471f407929c3df4ae0699135dba1-222
  1231. dandi:sha2-256: 91ac73ebe3f8474f328ba2b73a46974bbb4c074b49e76c6dcc455f7fa70539a0
  1232. encodingFormat: application/x-nwb
  1233. id: dandiasset:8e6e4eec-c987-4dea-bf45-c59052bdbee0
  1234. identifier: 8e6e4eec-c987-4dea-bf45-c59052bdbee0
  1235. keywords:
  1236. - EEG
  1237. - Neuropixels
  1238. - electrical stimulation
  1239. - brain states
  1240. - cortico-thalamic interactions
  1241. measurementTechnique:
  1242. - name: multi electrode extracellular electrophysiology recording technique
  1243. schemaKey: MeasurementTechniqueType
  1244. - name: behavioral technique
  1245. schemaKey: MeasurementTechniqueType
  1246. - name: analytical technique
  1247. schemaKey: MeasurementTechniqueType
  1248. - name: spike sorting technique
  1249. schemaKey: MeasurementTechniqueType
  1250. - name: signal filtering technique
  1251. schemaKey: MeasurementTechniqueType
  1252. - name: surgical technique
  1253. schemaKey: MeasurementTechniqueType
  1254. path: sub-546655/sub-546655_ses-20201023_behavior+ecephys.nwb
  1255. publishedBy:
  1256. endDate: '2023-03-17T00:39:49.940852+00:00'
  1257. id: urn:uuid:adec1746-d0ce-4f64-bd71-bcac161e2259
  1258. name: DANDI publish
  1259. schemaKey: PublishActivity
  1260. startDate: '2023-03-17T00:39:49.940852+00:00'
  1261. wasAssociatedWith:
  1262. - id: urn:uuid:1ca85e19-4959-43a6-8bde-b5115ca3fb13
  1263. identifier: RRID:SCR_017571
  1264. name: DANDI API
  1265. schemaKey: Software
  1266. version: 0.1.0
  1267. schemaKey: Asset
  1268. schemaVersion: 0.6.4
  1269. variableMeasured:
  1270. - schemaKey: PropertyValue
  1271. value: ElectrodeGroup
  1272. - schemaKey: PropertyValue
  1273. value: ElectricalSeries
  1274. - schemaKey: PropertyValue
  1275. value: ProcessingModule
  1276. - schemaKey: PropertyValue
  1277. value: Units
  1278. - schemaKey: PropertyValue
  1279. value: LFP
  1280. - schemaKey: PropertyValue
  1281. value: BehavioralTimeSeries
  1282. wasAttributedTo:
  1283. - age:
  1284. schemaKey: PropertyValue
  1285. unitText: ISO-8601 duration
  1286. value: P108D
  1287. valueReference:
  1288. schemaKey: PropertyValue
  1289. value: dandi:BirthReference
  1290. identifier: '546655'
  1291. schemaKey: Participant
  1292. sex:
  1293. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1294. name: Female
  1295. schemaKey: SexType
  1296. species:
  1297. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1298. name: Mus musculus - House mouse
  1299. schemaKey: SpeciesType
  1300. wasGeneratedBy:
  1301. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  1302. identifier: '20201023'
  1303. name: '20201023'
  1304. schemaKey: Session
  1305. startDate: '2020-10-23T11:00:53.462000-07:00'
  1306. - description: Metadata generated by DANDI cli
  1307. endDate: '2023-03-16T11:20:30.351800-07:00'
  1308. id: urn:uuid:af4daf5e-69db-4447-99ba-9338775f59d9
  1309. name: Metadata generation
  1310. schemaKey: Activity
  1311. startDate: '2023-03-16T11:20:30.225870-07:00'
  1312. wasAssociatedWith:
  1313. - identifier: RRID:SCR_019009
  1314. name: DANDI Command Line Interface
  1315. schemaKey: Software
  1316. url: https://github.com/dandi/dandi-cli
  1317. version: 0.51.0
  1318. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1319. access:
  1320. - schemaKey: AccessRequirements
  1321. status: dandi:OpenAccess
  1322. approach:
  1323. - name: electrophysiological approach
  1324. schemaKey: ApproachType
  1325. - name: behavioral approach
  1326. schemaKey: ApproachType
  1327. blobDateModified: '2023-03-15T11:11:34.696905-07:00'
  1328. contentSize: 11687836529
  1329. contentUrl:
  1330. - https://api.dandiarchive.org/api/assets/942c7978-09e1-41f6-a2eb-00f0a70ddfde/download/
  1331. - https://dandiarchive.s3.amazonaws.com/blobs/ed8/a98/ed8a984b-15bf-434a-a6ce-76c9e76cceb0
  1332. dateModified: '2023-03-16T11:23:12.324718-07:00'
  1333. datePublished: '2023-03-17T00:39:49.948855+00:00'
  1334. digest:
  1335. dandi:dandi-etag: 49098a096fb6c2475982a3d25be53006-175
  1336. dandi:sha2-256: a949ca38d1b2c55b32c694bff8c9ce73195ec6c84a9d58f61cc9ce456ba14029
  1337. encodingFormat: application/x-nwb
  1338. id: dandiasset:942c7978-09e1-41f6-a2eb-00f0a70ddfde
  1339. identifier: 942c7978-09e1-41f6-a2eb-00f0a70ddfde
  1340. keywords:
  1341. - EEG
  1342. - Neuropixels
  1343. - electrical stimulation
  1344. - brain states
  1345. - cortico-thalamic interactions
  1346. measurementTechnique:
  1347. - name: multi electrode extracellular electrophysiology recording technique
  1348. schemaKey: MeasurementTechniqueType
  1349. - name: behavioral technique
  1350. schemaKey: MeasurementTechniqueType
  1351. - name: analytical technique
  1352. schemaKey: MeasurementTechniqueType
  1353. - name: spike sorting technique
  1354. schemaKey: MeasurementTechniqueType
  1355. - name: signal filtering technique
  1356. schemaKey: MeasurementTechniqueType
  1357. - name: surgical technique
  1358. schemaKey: MeasurementTechniqueType
  1359. path: sub-551399/sub-551399_ses-20210128_behavior+ecephys.nwb
  1360. publishedBy:
  1361. endDate: '2023-03-17T00:39:49.948855+00:00'
  1362. id: urn:uuid:1b42306a-3b21-47fd-9bfd-4d2d772dda9a
  1363. name: DANDI publish
  1364. schemaKey: PublishActivity
  1365. startDate: '2023-03-17T00:39:49.948855+00:00'
  1366. wasAssociatedWith:
  1367. - id: urn:uuid:6301a699-deb0-47a2-bbcd-f4ca91446e67
  1368. identifier: RRID:SCR_017571
  1369. name: DANDI API
  1370. schemaKey: Software
  1371. version: 0.1.0
  1372. schemaKey: Asset
  1373. schemaVersion: 0.6.4
  1374. variableMeasured:
  1375. - schemaKey: PropertyValue
  1376. value: ElectrodeGroup
  1377. - schemaKey: PropertyValue
  1378. value: ElectricalSeries
  1379. - schemaKey: PropertyValue
  1380. value: ProcessingModule
  1381. - schemaKey: PropertyValue
  1382. value: Units
  1383. - schemaKey: PropertyValue
  1384. value: LFP
  1385. - schemaKey: PropertyValue
  1386. value: BehavioralTimeSeries
  1387. wasAttributedTo:
  1388. - age:
  1389. schemaKey: PropertyValue
  1390. unitText: ISO-8601 duration
  1391. value: P177D
  1392. valueReference:
  1393. schemaKey: PropertyValue
  1394. value: dandi:BirthReference
  1395. identifier: '551399'
  1396. schemaKey: Participant
  1397. sex:
  1398. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1399. name: Female
  1400. schemaKey: SexType
  1401. species:
  1402. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1403. name: Mus musculus - House mouse
  1404. schemaKey: SpeciesType
  1405. wasGeneratedBy:
  1406. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  1407. identifier: '20210128'
  1408. name: '20210128'
  1409. schemaKey: Session
  1410. startDate: '2021-01-28T13:58:56.188000-08:00'
  1411. - description: Metadata generated by DANDI cli
  1412. endDate: '2023-03-16T11:23:12.324718-07:00'
  1413. id: urn:uuid:beb4d01f-1c91-48a9-99e1-9610c606c3b3
  1414. name: Metadata generation
  1415. schemaKey: Activity
  1416. startDate: '2023-03-16T11:23:11.952925-07:00'
  1417. wasAssociatedWith:
  1418. - identifier: RRID:SCR_019009
  1419. name: DANDI Command Line Interface
  1420. schemaKey: Software
  1421. url: https://github.com/dandi/dandi-cli
  1422. version: 0.51.0
  1423. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1424. access:
  1425. - schemaKey: AccessRequirements
  1426. status: dandi:OpenAccess
  1427. approach:
  1428. - name: electrophysiological approach
  1429. schemaKey: ApproachType
  1430. - name: behavioral approach
  1431. schemaKey: ApproachType
  1432. blobDateModified: '2023-03-15T11:39:44.407389-07:00'
  1433. contentSize: 15202442994
  1434. contentUrl:
  1435. - https://api.dandiarchive.org/api/assets/d966b247-2bac-4ef0-8b80-aae010f50c98/download/
  1436. - https://dandiarchive.s3.amazonaws.com/blobs/698/379/698379ab-d774-44b2-8c8f-d6622f869ffa
  1437. dateModified: '2023-03-16T11:23:12.317722-07:00'
  1438. datePublished: '2023-03-17T00:39:49.957327+00:00'
  1439. digest:
  1440. dandi:dandi-etag: c1b4604f122951d8b75dabcc31d4a9f5-227
  1441. dandi:sha2-256: 187ee306b97f51736600b5491d4bcaaeb3ce37915683fa7fba55b5166f06960d
  1442. encodingFormat: application/x-nwb
  1443. id: dandiasset:d966b247-2bac-4ef0-8b80-aae010f50c98
  1444. identifier: d966b247-2bac-4ef0-8b80-aae010f50c98
  1445. keywords:
  1446. - EEG
  1447. - Neuropixels
  1448. - electrical stimulation
  1449. - brain states
  1450. - cortico-thalamic interactions
  1451. measurementTechnique:
  1452. - name: multi electrode extracellular electrophysiology recording technique
  1453. schemaKey: MeasurementTechniqueType
  1454. - name: behavioral technique
  1455. schemaKey: MeasurementTechniqueType
  1456. - name: analytical technique
  1457. schemaKey: MeasurementTechniqueType
  1458. - name: spike sorting technique
  1459. schemaKey: MeasurementTechniqueType
  1460. - name: signal filtering technique
  1461. schemaKey: MeasurementTechniqueType
  1462. - name: surgical technique
  1463. schemaKey: MeasurementTechniqueType
  1464. path: sub-551397/sub-551397_ses-20210211_behavior+ecephys.nwb
  1465. publishedBy:
  1466. endDate: '2023-03-17T00:39:49.957327+00:00'
  1467. id: urn:uuid:c6c395b5-b342-4002-9d3a-32593fd1dc23
  1468. name: DANDI publish
  1469. schemaKey: PublishActivity
  1470. startDate: '2023-03-17T00:39:49.957327+00:00'
  1471. wasAssociatedWith:
  1472. - id: urn:uuid:f51cdee2-49c0-4e12-99dd-870c25a6be39
  1473. identifier: RRID:SCR_017571
  1474. name: DANDI API
  1475. schemaKey: Software
  1476. version: 0.1.0
  1477. schemaKey: Asset
  1478. schemaVersion: 0.6.4
  1479. variableMeasured:
  1480. - schemaKey: PropertyValue
  1481. value: ElectrodeGroup
  1482. - schemaKey: PropertyValue
  1483. value: ElectricalSeries
  1484. - schemaKey: PropertyValue
  1485. value: ProcessingModule
  1486. - schemaKey: PropertyValue
  1487. value: Units
  1488. - schemaKey: PropertyValue
  1489. value: LFP
  1490. - schemaKey: PropertyValue
  1491. value: BehavioralTimeSeries
  1492. wasAttributedTo:
  1493. - age:
  1494. schemaKey: PropertyValue
  1495. unitText: ISO-8601 duration
  1496. value: P191D
  1497. valueReference:
  1498. schemaKey: PropertyValue
  1499. value: dandi:BirthReference
  1500. identifier: '551397'
  1501. schemaKey: Participant
  1502. sex:
  1503. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1504. name: Male
  1505. schemaKey: SexType
  1506. species:
  1507. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1508. name: Mus musculus - House mouse
  1509. schemaKey: SpeciesType
  1510. wasGeneratedBy:
  1511. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  1512. identifier: '20210211'
  1513. name: '20210211'
  1514. schemaKey: Session
  1515. startDate: '2021-02-11T10:45:18.239000-08:00'
  1516. - description: Metadata generated by DANDI cli
  1517. endDate: '2023-03-16T11:23:12.317722-07:00'
  1518. id: urn:uuid:e3d9018d-0da2-4e71-a67d-24698d5e0749
  1519. name: Metadata generation
  1520. schemaKey: Activity
  1521. startDate: '2023-03-16T11:23:11.923942-07:00'
  1522. wasAssociatedWith:
  1523. - identifier: RRID:SCR_019009
  1524. name: DANDI Command Line Interface
  1525. schemaKey: Software
  1526. url: https://github.com/dandi/dandi-cli
  1527. version: 0.51.0
  1528. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1529. access:
  1530. - schemaKey: AccessRequirements
  1531. status: dandi:OpenAccess
  1532. approach:
  1533. - name: electrophysiological approach
  1534. schemaKey: ApproachType
  1535. - name: behavioral approach
  1536. schemaKey: ApproachType
  1537. blobDateModified: '2023-03-15T12:10:32.796146-07:00'
  1538. contentSize: 24829252031
  1539. contentUrl:
  1540. - https://api.dandiarchive.org/api/assets/b50c782a-1c0c-4d26-8b7e-da6c3fabc090/download/
  1541. - https://dandiarchive.s3.amazonaws.com/blobs/86d/416/86d41604-5bd8-4860-8bc9-cf15253e5dca
  1542. dateModified: '2023-03-16T11:40:01.843259-07:00'
  1543. datePublished: '2023-03-17T00:39:49.966516+00:00'
  1544. digest:
  1545. dandi:dandi-etag: c22c67f8cb27aef425153316842ef78a-370
  1546. dandi:sha2-256: a6d270bcc678dfbb3c2a65131e19e70c559f0dbf34b49fad2dfcec8cc7053962
  1547. encodingFormat: application/x-nwb
  1548. id: dandiasset:b50c782a-1c0c-4d26-8b7e-da6c3fabc090
  1549. identifier: b50c782a-1c0c-4d26-8b7e-da6c3fabc090
  1550. keywords:
  1551. - EEG
  1552. - Neuropixels
  1553. - electrical stimulation
  1554. - brain states
  1555. - cortico-thalamic interactions
  1556. measurementTechnique:
  1557. - name: multi electrode extracellular electrophysiology recording technique
  1558. schemaKey: MeasurementTechniqueType
  1559. - name: behavioral technique
  1560. schemaKey: MeasurementTechniqueType
  1561. - name: analytical technique
  1562. schemaKey: MeasurementTechniqueType
  1563. - name: spike sorting technique
  1564. schemaKey: MeasurementTechniqueType
  1565. - name: signal filtering technique
  1566. schemaKey: MeasurementTechniqueType
  1567. - name: surgical technique
  1568. schemaKey: MeasurementTechniqueType
  1569. path: sub-569062/sub-569062_ses-20210218_behavior+ecephys.nwb
  1570. publishedBy:
  1571. endDate: '2023-03-17T00:39:49.966516+00:00'
  1572. id: urn:uuid:78362082-5816-46da-9036-2c4b068c4661
  1573. name: DANDI publish
  1574. schemaKey: PublishActivity
  1575. startDate: '2023-03-17T00:39:49.966516+00:00'
  1576. wasAssociatedWith:
  1577. - id: urn:uuid:4c8d1307-74be-41a3-877e-8f7d22f68240
  1578. identifier: RRID:SCR_017571
  1579. name: DANDI API
  1580. schemaKey: Software
  1581. version: 0.1.0
  1582. schemaKey: Asset
  1583. schemaVersion: 0.6.4
  1584. variableMeasured:
  1585. - schemaKey: PropertyValue
  1586. value: ElectrodeGroup
  1587. - schemaKey: PropertyValue
  1588. value: ElectricalSeries
  1589. - schemaKey: PropertyValue
  1590. value: ProcessingModule
  1591. - schemaKey: PropertyValue
  1592. value: Units
  1593. - schemaKey: PropertyValue
  1594. value: LFP
  1595. - schemaKey: PropertyValue
  1596. value: BehavioralTimeSeries
  1597. wasAttributedTo:
  1598. - age:
  1599. schemaKey: PropertyValue
  1600. unitText: ISO-8601 duration
  1601. value: P72D
  1602. valueReference:
  1603. schemaKey: PropertyValue
  1604. value: dandi:BirthReference
  1605. identifier: '569062'
  1606. schemaKey: Participant
  1607. sex:
  1608. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1609. name: Female
  1610. schemaKey: SexType
  1611. species:
  1612. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1613. name: Mus musculus - House mouse
  1614. schemaKey: SpeciesType
  1615. wasGeneratedBy:
  1616. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  1617. identifier: '20210218'
  1618. name: '20210218'
  1619. schemaKey: Session
  1620. startDate: '2021-02-18T11:17:47.286000-08:00'
  1621. - description: Metadata generated by DANDI cli
  1622. endDate: '2023-03-16T11:40:01.843259-07:00'
  1623. id: urn:uuid:21108695-73f6-4aa8-931a-6152983f1adb
  1624. name: Metadata generation
  1625. schemaKey: Activity
  1626. startDate: '2023-03-16T11:38:56.511086-07:00'
  1627. wasAssociatedWith:
  1628. - identifier: RRID:SCR_019009
  1629. name: DANDI Command Line Interface
  1630. schemaKey: Software
  1631. url: https://github.com/dandi/dandi-cli
  1632. version: 0.51.0
  1633. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1634. access:
  1635. - schemaKey: AccessRequirements
  1636. status: dandi:OpenAccess
  1637. approach:
  1638. - name: electrophysiological approach
  1639. schemaKey: ApproachType
  1640. - name: behavioral approach
  1641. schemaKey: ApproachType
  1642. blobDateModified: '2023-03-15T14:49:24.176915-07:00'
  1643. contentSize: 25890182136
  1644. contentUrl:
  1645. - https://api.dandiarchive.org/api/assets/938f9620-10a4-4b72-9fbf-487e273ebcb6/download/
  1646. - https://dandiarchive.s3.amazonaws.com/blobs/a73/dc7/a73dc7da-8d05-448a-9c1c-2dc5daddcc11
  1647. dateModified: '2023-03-16T11:40:02.799727-07:00'
  1648. datePublished: '2023-03-17T00:39:49.976548+00:00'
  1649. digest:
  1650. dandi:dandi-etag: 6bcf0ac5cfbe0279ba1cfb1617d679c8-386
  1651. dandi:sha2-256: 286325e0cc8fd24696f38de8ed1683cfe68c9c456ebf7c2372e8ef88d95c3cd2
  1652. encodingFormat: application/x-nwb
  1653. id: dandiasset:938f9620-10a4-4b72-9fbf-487e273ebcb6
  1654. identifier: 938f9620-10a4-4b72-9fbf-487e273ebcb6
  1655. keywords:
  1656. - EEG
  1657. - Neuropixels
  1658. - electrical stimulation
  1659. - brain states
  1660. - cortico-thalamic interactions
  1661. measurementTechnique:
  1662. - name: multi electrode extracellular electrophysiology recording technique
  1663. schemaKey: MeasurementTechniqueType
  1664. - name: behavioral technique
  1665. schemaKey: MeasurementTechniqueType
  1666. - name: analytical technique
  1667. schemaKey: MeasurementTechniqueType
  1668. - name: spike sorting technique
  1669. schemaKey: MeasurementTechniqueType
  1670. - name: signal filtering technique
  1671. schemaKey: MeasurementTechniqueType
  1672. - name: surgical technique
  1673. schemaKey: MeasurementTechniqueType
  1674. path: sub-569064/sub-569064_ses-20210408_behavior+ecephys.nwb
  1675. publishedBy:
  1676. endDate: '2023-03-17T00:39:49.976548+00:00'
  1677. id: urn:uuid:704b3fc9-a465-467f-afcf-5b1b6c346093
  1678. name: DANDI publish
  1679. schemaKey: PublishActivity
  1680. startDate: '2023-03-17T00:39:49.976548+00:00'
  1681. wasAssociatedWith:
  1682. - id: urn:uuid:94d4d78c-b371-423a-a77a-9bb10d72fd54
  1683. identifier: RRID:SCR_017571
  1684. name: DANDI API
  1685. schemaKey: Software
  1686. version: 0.1.0
  1687. schemaKey: Asset
  1688. schemaVersion: 0.6.4
  1689. variableMeasured:
  1690. - schemaKey: PropertyValue
  1691. value: ElectrodeGroup
  1692. - schemaKey: PropertyValue
  1693. value: ElectricalSeries
  1694. - schemaKey: PropertyValue
  1695. value: ProcessingModule
  1696. - schemaKey: PropertyValue
  1697. value: Units
  1698. - schemaKey: PropertyValue
  1699. value: LFP
  1700. - schemaKey: PropertyValue
  1701. value: BehavioralTimeSeries
  1702. wasAttributedTo:
  1703. - age:
  1704. schemaKey: PropertyValue
  1705. unitText: ISO-8601 duration
  1706. value: P121D
  1707. valueReference:
  1708. schemaKey: PropertyValue
  1709. value: dandi:BirthReference
  1710. identifier: '569064'
  1711. schemaKey: Participant
  1712. sex:
  1713. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1714. name: Female
  1715. schemaKey: SexType
  1716. species:
  1717. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1718. name: Mus musculus - House mouse
  1719. schemaKey: SpeciesType
  1720. wasGeneratedBy:
  1721. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  1722. identifier: '20210408'
  1723. name: '20210408'
  1724. schemaKey: Session
  1725. startDate: '2021-04-08T10:27:27.251000-07:00'
  1726. - description: Metadata generated by DANDI cli
  1727. endDate: '2023-03-16T11:40:02.799727-07:00'
  1728. id: urn:uuid:4cbe7737-5389-4501-979f-beaf72d17711
  1729. name: Metadata generation
  1730. schemaKey: Activity
  1731. startDate: '2023-03-16T11:39:41.590388-07:00'
  1732. wasAssociatedWith:
  1733. - identifier: RRID:SCR_019009
  1734. name: DANDI Command Line Interface
  1735. schemaKey: Software
  1736. url: https://github.com/dandi/dandi-cli
  1737. version: 0.51.0
  1738. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1739. access:
  1740. - schemaKey: AccessRequirements
  1741. status: dandi:OpenAccess
  1742. approach:
  1743. - name: electrophysiological approach
  1744. schemaKey: ApproachType
  1745. - name: behavioral approach
  1746. schemaKey: ApproachType
  1747. blobDateModified: '2023-03-15T17:57:44.254435-07:00'
  1748. contentSize: 23246547092
  1749. contentUrl:
  1750. - https://api.dandiarchive.org/api/assets/cd2d17f3-9846-4b51-b7c9-366ea422ef9e/download/
  1751. - https://dandiarchive.s3.amazonaws.com/blobs/0d3/d6e/0d3d6ea2-5d67-43cc-98c0-c7a8b8ba8fab
  1752. dateModified: '2023-03-16T11:47:51.899506-07:00'
  1753. datePublished: '2023-03-17T00:39:49.984863+00:00'
  1754. digest:
  1755. dandi:dandi-etag: ba7a352d36d93c1b1cb25603c5f5825e-347
  1756. dandi:sha2-256: fbcff4b1deb1dab63ef3e97896a03241856d80f6656b62c276a6a3f91c444b3f
  1757. encodingFormat: application/x-nwb
  1758. id: dandiasset:cd2d17f3-9846-4b51-b7c9-366ea422ef9e
  1759. identifier: cd2d17f3-9846-4b51-b7c9-366ea422ef9e
  1760. keywords:
  1761. - EEG
  1762. - Neuropixels
  1763. - electrical stimulation
  1764. - brain states
  1765. - cortico-thalamic interactions
  1766. measurementTechnique:
  1767. - name: multi electrode extracellular electrophysiology recording technique
  1768. schemaKey: MeasurementTechniqueType
  1769. - name: behavioral technique
  1770. schemaKey: MeasurementTechniqueType
  1771. - name: analytical technique
  1772. schemaKey: MeasurementTechniqueType
  1773. - name: spike sorting technique
  1774. schemaKey: MeasurementTechniqueType
  1775. - name: signal filtering technique
  1776. schemaKey: MeasurementTechniqueType
  1777. - name: surgical technique
  1778. schemaKey: MeasurementTechniqueType
  1779. path: sub-571620/sub-571620_ses-20210513_behavior+ecephys.nwb
  1780. publishedBy:
  1781. endDate: '2023-03-17T00:39:49.984863+00:00'
  1782. id: urn:uuid:0ddd9856-0a31-45ad-8a97-1db24b4b7a76
  1783. name: DANDI publish
  1784. schemaKey: PublishActivity
  1785. startDate: '2023-03-17T00:39:49.984863+00:00'
  1786. wasAssociatedWith:
  1787. - id: urn:uuid:f0546ccd-f604-417f-b03b-241517ef181a
  1788. identifier: RRID:SCR_017571
  1789. name: DANDI API
  1790. schemaKey: Software
  1791. version: 0.1.0
  1792. schemaKey: Asset
  1793. schemaVersion: 0.6.4
  1794. variableMeasured:
  1795. - schemaKey: PropertyValue
  1796. value: ElectrodeGroup
  1797. - schemaKey: PropertyValue
  1798. value: ElectricalSeries
  1799. - schemaKey: PropertyValue
  1800. value: ProcessingModule
  1801. - schemaKey: PropertyValue
  1802. value: Units
  1803. - schemaKey: PropertyValue
  1804. value: LFP
  1805. - schemaKey: PropertyValue
  1806. value: BehavioralTimeSeries
  1807. wasAttributedTo:
  1808. - age:
  1809. schemaKey: PropertyValue
  1810. unitText: ISO-8601 duration
  1811. value: P135D
  1812. valueReference:
  1813. schemaKey: PropertyValue
  1814. value: dandi:BirthReference
  1815. identifier: '571620'
  1816. schemaKey: Participant
  1817. sex:
  1818. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1819. name: Female
  1820. schemaKey: SexType
  1821. species:
  1822. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1823. name: Mus musculus - House mouse
  1824. schemaKey: SpeciesType
  1825. wasGeneratedBy:
  1826. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  1827. identifier: '20210513'
  1828. name: '20210513'
  1829. schemaKey: Session
  1830. startDate: '2021-05-13T11:33:34.084000-07:00'
  1831. - description: Metadata generated by DANDI cli
  1832. endDate: '2023-03-16T11:47:51.899506-07:00'
  1833. id: urn:uuid:1ad5a52e-b821-47ea-bf18-da94572ad481
  1834. name: Metadata generation
  1835. schemaKey: Activity
  1836. startDate: '2023-03-16T11:47:51.877011-07:00'
  1837. wasAssociatedWith:
  1838. - identifier: RRID:SCR_019009
  1839. name: DANDI Command Line Interface
  1840. schemaKey: Software
  1841. url: https://github.com/dandi/dandi-cli
  1842. version: 0.51.0
  1843. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1844. access:
  1845. - schemaKey: AccessRequirements
  1846. status: dandi:OpenAccess
  1847. approach:
  1848. - name: electrophysiological approach
  1849. schemaKey: ApproachType
  1850. - name: behavioral approach
  1851. schemaKey: ApproachType
  1852. blobDateModified: '2023-03-15T18:56:33.253398-07:00'
  1853. contentSize: 24332634364
  1854. contentUrl:
  1855. - https://api.dandiarchive.org/api/assets/9e3c6ff0-de3c-4d7c-86bb-e5b8c980821d/download/
  1856. - https://dandiarchive.s3.amazonaws.com/blobs/6bf/d32/6bfd3255-1373-4de8-afc7-5f03aafe0a54
  1857. dateModified: '2023-03-16T11:47:57.843267-07:00'
  1858. datePublished: '2023-03-17T00:39:49.992808+00:00'
  1859. digest:
  1860. dandi:dandi-etag: b8cf03d64615421aec0fc6bfbf989a97-363
  1861. dandi:sha2-256: 8e0feb65d0f4553519414da5d2f4953409de63681c7f224b062973b36ea4a2d5
  1862. encodingFormat: application/x-nwb
  1863. id: dandiasset:9e3c6ff0-de3c-4d7c-86bb-e5b8c980821d
  1864. identifier: 9e3c6ff0-de3c-4d7c-86bb-e5b8c980821d
  1865. keywords:
  1866. - EEG
  1867. - Neuropixels
  1868. - electrical stimulation
  1869. - brain states
  1870. - cortico-thalamic interactions
  1871. measurementTechnique:
  1872. - name: multi electrode extracellular electrophysiology recording technique
  1873. schemaKey: MeasurementTechniqueType
  1874. - name: behavioral technique
  1875. schemaKey: MeasurementTechniqueType
  1876. - name: analytical technique
  1877. schemaKey: MeasurementTechniqueType
  1878. - name: spike sorting technique
  1879. schemaKey: MeasurementTechniqueType
  1880. - name: signal filtering technique
  1881. schemaKey: MeasurementTechniqueType
  1882. - name: surgical technique
  1883. schemaKey: MeasurementTechniqueType
  1884. path: sub-575102/sub-575102_ses-20210603_behavior+ecephys.nwb
  1885. publishedBy:
  1886. endDate: '2023-03-17T00:39:49.992808+00:00'
  1887. id: urn:uuid:a714cf72-75ec-4f04-80c4-64931b363985
  1888. name: DANDI publish
  1889. schemaKey: PublishActivity
  1890. startDate: '2023-03-17T00:39:49.992808+00:00'
  1891. wasAssociatedWith:
  1892. - id: urn:uuid:bb874b9c-231b-476c-af71-257eaa79760e
  1893. identifier: RRID:SCR_017571
  1894. name: DANDI API
  1895. schemaKey: Software
  1896. version: 0.1.0
  1897. schemaKey: Asset
  1898. schemaVersion: 0.6.4
  1899. variableMeasured:
  1900. - schemaKey: PropertyValue
  1901. value: ElectrodeGroup
  1902. - schemaKey: PropertyValue
  1903. value: ElectricalSeries
  1904. - schemaKey: PropertyValue
  1905. value: ProcessingModule
  1906. - schemaKey: PropertyValue
  1907. value: Units
  1908. - schemaKey: PropertyValue
  1909. value: LFP
  1910. - schemaKey: PropertyValue
  1911. value: BehavioralTimeSeries
  1912. wasAttributedTo:
  1913. - age:
  1914. schemaKey: PropertyValue
  1915. unitText: ISO-8601 duration
  1916. value: P128D
  1917. valueReference:
  1918. schemaKey: PropertyValue
  1919. value: dandi:BirthReference
  1920. identifier: '575102'
  1921. schemaKey: Participant
  1922. sex:
  1923. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1924. name: Female
  1925. schemaKey: SexType
  1926. species:
  1927. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1928. name: Mus musculus - House mouse
  1929. schemaKey: SpeciesType
  1930. wasGeneratedBy:
  1931. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  1932. identifier: '20210603'
  1933. name: '20210603'
  1934. schemaKey: Session
  1935. startDate: '2021-06-03T11:24:49.610000-07:00'
  1936. - description: Metadata generated by DANDI cli
  1937. endDate: '2023-03-16T11:47:57.843267-07:00'
  1938. id: urn:uuid:32308d67-655e-4469-9b3b-a8b86f079ec8
  1939. name: Metadata generation
  1940. schemaKey: Activity
  1941. startDate: '2023-03-16T11:47:56.878167-07:00'
  1942. wasAssociatedWith:
  1943. - identifier: RRID:SCR_019009
  1944. name: DANDI Command Line Interface
  1945. schemaKey: Software
  1946. url: https://github.com/dandi/dandi-cli
  1947. version: 0.51.0
  1948. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1949. access:
  1950. - schemaKey: AccessRequirements
  1951. status: dandi:OpenAccess
  1952. approach:
  1953. - name: electrophysiological approach
  1954. schemaKey: ApproachType
  1955. - name: behavioral approach
  1956. schemaKey: ApproachType
  1957. blobDateModified: '2023-03-15T19:17:44.807810-07:00'
  1958. contentSize: 14282619785
  1959. contentUrl:
  1960. - https://api.dandiarchive.org/api/assets/52d02063-b696-4f17-b342-6f54c57b80db/download/
  1961. - https://dandiarchive.s3.amazonaws.com/blobs/caa/15c/caa15c9e-e5c9-4861-83ba-e853bf99a0ef
  1962. dateModified: '2023-03-16T11:59:18.676906-07:00'
  1963. datePublished: '2023-03-17T00:39:50.000922+00:00'
  1964. digest:
  1965. dandi:dandi-etag: 91b673a7b3d4422a595a801dcc32aab9-213
  1966. dandi:sha2-256: 86839e3b286b49031f0e852f5956223297e2e1b48ece7ac3f267099805617352
  1967. encodingFormat: application/x-nwb
  1968. id: dandiasset:52d02063-b696-4f17-b342-6f54c57b80db
  1969. identifier: 52d02063-b696-4f17-b342-6f54c57b80db
  1970. keywords:
  1971. - EEG
  1972. - Neuropixels
  1973. - electrical stimulation
  1974. - brain states
  1975. - cortico-thalamic interactions
  1976. measurementTechnique:
  1977. - name: multi electrode extracellular electrophysiology recording technique
  1978. schemaKey: MeasurementTechniqueType
  1979. - name: behavioral technique
  1980. schemaKey: MeasurementTechniqueType
  1981. - name: analytical technique
  1982. schemaKey: MeasurementTechniqueType
  1983. - name: spike sorting technique
  1984. schemaKey: MeasurementTechniqueType
  1985. - name: signal filtering technique
  1986. schemaKey: MeasurementTechniqueType
  1987. - name: surgical technique
  1988. schemaKey: MeasurementTechniqueType
  1989. path: sub-586466/sub-586466_ses-20210729_behavior+ecephys.nwb
  1990. publishedBy:
  1991. endDate: '2023-03-17T00:39:50.000922+00:00'
  1992. id: urn:uuid:bd3862d2-9d32-4f01-b4d4-673b2da0bbe2
  1993. name: DANDI publish
  1994. schemaKey: PublishActivity
  1995. startDate: '2023-03-17T00:39:50.000922+00:00'
  1996. wasAssociatedWith:
  1997. - id: urn:uuid:d89b1c02-54be-41af-b93b-508ef3b8542b
  1998. identifier: RRID:SCR_017571
  1999. name: DANDI API
  2000. schemaKey: Software
  2001. version: 0.1.0
  2002. schemaKey: Asset
  2003. schemaVersion: 0.6.4
  2004. variableMeasured:
  2005. - schemaKey: PropertyValue
  2006. value: ElectrodeGroup
  2007. - schemaKey: PropertyValue
  2008. value: ElectricalSeries
  2009. - schemaKey: PropertyValue
  2010. value: ProcessingModule
  2011. - schemaKey: PropertyValue
  2012. value: Units
  2013. - schemaKey: PropertyValue
  2014. value: LFP
  2015. - schemaKey: PropertyValue
  2016. value: BehavioralTimeSeries
  2017. wasAttributedTo:
  2018. - age:
  2019. schemaKey: PropertyValue
  2020. unitText: ISO-8601 duration
  2021. value: P93D
  2022. valueReference:
  2023. schemaKey: PropertyValue
  2024. value: dandi:BirthReference
  2025. identifier: '586466'
  2026. schemaKey: Participant
  2027. sex:
  2028. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2029. name: Male
  2030. schemaKey: SexType
  2031. species:
  2032. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2033. name: Mus musculus - House mouse
  2034. schemaKey: SpeciesType
  2035. wasGeneratedBy:
  2036. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  2037. identifier: '20210729'
  2038. name: '20210729'
  2039. schemaKey: Session
  2040. startDate: '2021-07-29T10:37:25.585000-07:00'
  2041. - description: Metadata generated by DANDI cli
  2042. endDate: '2023-03-16T11:59:18.676906-07:00'
  2043. id: urn:uuid:66f6df2d-40d9-454e-a4ea-63489dd9ba94
  2044. name: Metadata generation
  2045. schemaKey: Activity
  2046. startDate: '2023-03-16T11:59:18.514596-07:00'
  2047. wasAssociatedWith:
  2048. - identifier: RRID:SCR_019009
  2049. name: DANDI Command Line Interface
  2050. schemaKey: Software
  2051. url: https://github.com/dandi/dandi-cli
  2052. version: 0.51.0
  2053. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2054. access:
  2055. - schemaKey: AccessRequirements
  2056. status: dandi:OpenAccess
  2057. approach:
  2058. - name: electrophysiological approach
  2059. schemaKey: ApproachType
  2060. - name: behavioral approach
  2061. schemaKey: ApproachType
  2062. blobDateModified: '2023-03-15T20:08:54.967802-07:00'
  2063. contentSize: 12027340272
  2064. contentUrl:
  2065. - https://api.dandiarchive.org/api/assets/8acbe845-c9ce-411c-81ba-77b33de17a2e/download/
  2066. - https://dandiarchive.s3.amazonaws.com/blobs/b64/f17/b64f17f8-c14f-40f4-b70f-a9f2c7bc6753
  2067. dateModified: '2023-03-16T12:13:02.747348-07:00'
  2068. datePublished: '2023-03-17T00:39:50.017377+00:00'
  2069. digest:
  2070. dandi:dandi-etag: 7d157baca82d7b7a111ce603cef4934f-180
  2071. dandi:sha2-256: 9eba570ed85aac893c6b173357c83fa1d7520d573364fa24a4734cba2275b9c9
  2072. encodingFormat: application/x-nwb
  2073. id: dandiasset:8acbe845-c9ce-411c-81ba-77b33de17a2e
  2074. identifier: 8acbe845-c9ce-411c-81ba-77b33de17a2e
  2075. keywords:
  2076. - EEG
  2077. - Neuropixels
  2078. - electrical stimulation
  2079. - brain states
  2080. - cortico-thalamic interactions
  2081. measurementTechnique:
  2082. - name: behavioral technique
  2083. schemaKey: MeasurementTechniqueType
  2084. - name: signal filtering technique
  2085. schemaKey: MeasurementTechniqueType
  2086. - name: multi electrode extracellular electrophysiology recording technique
  2087. schemaKey: MeasurementTechniqueType
  2088. - name: analytical technique
  2089. schemaKey: MeasurementTechniqueType
  2090. - name: spike sorting technique
  2091. schemaKey: MeasurementTechniqueType
  2092. - name: surgical technique
  2093. schemaKey: MeasurementTechniqueType
  2094. path: sub-590479/sub-590479_ses-20210921_behavior+ecephys.nwb
  2095. publishedBy:
  2096. endDate: '2023-03-17T00:39:50.017377+00:00'
  2097. id: urn:uuid:ae5b17e9-c5a1-4aad-a786-608988aff7c3
  2098. name: DANDI publish
  2099. schemaKey: PublishActivity
  2100. startDate: '2023-03-17T00:39:50.017377+00:00'
  2101. wasAssociatedWith:
  2102. - id: urn:uuid:f754fc52-535c-4e1c-a162-24eb977cda34
  2103. identifier: RRID:SCR_017571
  2104. name: DANDI API
  2105. schemaKey: Software
  2106. version: 0.1.0
  2107. schemaKey: Asset
  2108. schemaVersion: 0.6.4
  2109. variableMeasured:
  2110. - schemaKey: PropertyValue
  2111. value: LFP
  2112. - schemaKey: PropertyValue
  2113. value: ElectricalSeries
  2114. - schemaKey: PropertyValue
  2115. value: ElectrodeGroup
  2116. - schemaKey: PropertyValue
  2117. value: ProcessingModule
  2118. - schemaKey: PropertyValue
  2119. value: Units
  2120. - schemaKey: PropertyValue
  2121. value: BehavioralTimeSeries
  2122. wasAttributedTo:
  2123. - age:
  2124. schemaKey: PropertyValue
  2125. unitText: ISO-8601 duration
  2126. value: P119D
  2127. valueReference:
  2128. schemaKey: PropertyValue
  2129. value: dandi:BirthReference
  2130. identifier: '590479'
  2131. schemaKey: Participant
  2132. sex:
  2133. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2134. name: Male
  2135. schemaKey: SexType
  2136. species:
  2137. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2138. name: Mus musculus - House mouse
  2139. schemaKey: SpeciesType
  2140. wasGeneratedBy:
  2141. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  2142. identifier: '20210921'
  2143. name: '20210921'
  2144. schemaKey: Session
  2145. startDate: '2021-09-21T17:23:14.158000-07:00'
  2146. - description: Metadata generated by DANDI cli
  2147. endDate: '2023-03-16T12:13:02.747348-07:00'
  2148. id: urn:uuid:4680f338-730f-4ef1-968c-bcca04c7e2d6
  2149. name: Metadata generation
  2150. schemaKey: Activity
  2151. startDate: '2023-03-16T12:13:02.694877-07:00'
  2152. wasAssociatedWith:
  2153. - identifier: RRID:SCR_019009
  2154. name: DANDI Command Line Interface
  2155. schemaKey: Software
  2156. url: https://github.com/dandi/dandi-cli
  2157. version: 0.51.0
  2158. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2159. access:
  2160. - schemaKey: AccessRequirements
  2161. status: dandi:OpenAccess
  2162. approach:
  2163. - name: electrophysiological approach
  2164. schemaKey: ApproachType
  2165. - name: behavioral approach
  2166. schemaKey: ApproachType
  2167. blobDateModified: '2023-03-15T19:50:28.805615-07:00'
  2168. contentSize: 22105059491
  2169. contentUrl:
  2170. - https://api.dandiarchive.org/api/assets/db2372af-f041-42c8-a5f1-594be5a83c9e/download/
  2171. - https://dandiarchive.s3.amazonaws.com/blobs/f58/e4f/f58e4f45-a21f-4859-97a7-0637233be8e1
  2172. dateModified: '2023-03-16T12:13:02.788724-07:00'
  2173. datePublished: '2023-03-17T00:39:50.027921+00:00'
  2174. digest:
  2175. dandi:dandi-etag: b17602e7695d46285597135ce8256319-330
  2176. dandi:sha2-256: 6cfb9cc75ea4fcda291eee9d8dd17b18264e822ae2bd4af0bd9121be9fa16836
  2177. encodingFormat: application/x-nwb
  2178. id: dandiasset:db2372af-f041-42c8-a5f1-594be5a83c9e
  2179. identifier: db2372af-f041-42c8-a5f1-594be5a83c9e
  2180. keywords:
  2181. - EEG
  2182. - Neuropixels
  2183. - electrical stimulation
  2184. - brain states
  2185. - cortico-thalamic interactions
  2186. measurementTechnique:
  2187. - name: behavioral technique
  2188. schemaKey: MeasurementTechniqueType
  2189. - name: signal filtering technique
  2190. schemaKey: MeasurementTechniqueType
  2191. - name: multi electrode extracellular electrophysiology recording technique
  2192. schemaKey: MeasurementTechniqueType
  2193. - name: analytical technique
  2194. schemaKey: MeasurementTechniqueType
  2195. - name: spike sorting technique
  2196. schemaKey: MeasurementTechniqueType
  2197. - name: surgical technique
  2198. schemaKey: MeasurementTechniqueType
  2199. path: sub-586468/sub-586468_ses-20210819_behavior+ecephys.nwb
  2200. publishedBy:
  2201. endDate: '2023-03-17T00:39:50.027921+00:00'
  2202. id: urn:uuid:021c2d74-171d-4e55-a424-efe5e562f166
  2203. name: DANDI publish
  2204. schemaKey: PublishActivity
  2205. startDate: '2023-03-17T00:39:50.027921+00:00'
  2206. wasAssociatedWith:
  2207. - id: urn:uuid:25dd5097-a03e-4568-9278-20d799917f66
  2208. identifier: RRID:SCR_017571
  2209. name: DANDI API
  2210. schemaKey: Software
  2211. version: 0.1.0
  2212. schemaKey: Asset
  2213. schemaVersion: 0.6.4
  2214. variableMeasured:
  2215. - schemaKey: PropertyValue
  2216. value: LFP
  2217. - schemaKey: PropertyValue
  2218. value: ElectricalSeries
  2219. - schemaKey: PropertyValue
  2220. value: ElectrodeGroup
  2221. - schemaKey: PropertyValue
  2222. value: ProcessingModule
  2223. - schemaKey: PropertyValue
  2224. value: Units
  2225. - schemaKey: PropertyValue
  2226. value: BehavioralTimeSeries
  2227. wasAttributedTo:
  2228. - age:
  2229. schemaKey: PropertyValue
  2230. unitText: ISO-8601 duration
  2231. value: P114D
  2232. valueReference:
  2233. schemaKey: PropertyValue
  2234. value: dandi:BirthReference
  2235. identifier: '586468'
  2236. schemaKey: Participant
  2237. sex:
  2238. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2239. name: Female
  2240. schemaKey: SexType
  2241. species:
  2242. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2243. name: Mus musculus - House mouse
  2244. schemaKey: SpeciesType
  2245. wasGeneratedBy:
  2246. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  2247. identifier: '20210819'
  2248. name: '20210819'
  2249. schemaKey: Session
  2250. startDate: '2021-08-19T11:36:39.948000-07:00'
  2251. - description: Metadata generated by DANDI cli
  2252. endDate: '2023-03-16T12:13:02.788724-07:00'
  2253. id: urn:uuid:ada76ae0-2cce-41b3-be24-4742bfd69732
  2254. name: Metadata generation
  2255. schemaKey: Activity
  2256. startDate: '2023-03-16T12:13:02.723139-07:00'
  2257. wasAssociatedWith:
  2258. - identifier: RRID:SCR_019009
  2259. name: DANDI Command Line Interface
  2260. schemaKey: Software
  2261. url: https://github.com/dandi/dandi-cli
  2262. version: 0.51.0
  2263. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2264. access:
  2265. - schemaKey: AccessRequirements
  2266. status: dandi:OpenAccess
  2267. approach:
  2268. - name: electrophysiological approach
  2269. schemaKey: ApproachType
  2270. - name: behavioral approach
  2271. schemaKey: ApproachType
  2272. blobDateModified: '2023-03-15T20:51:04.688319-07:00'
  2273. contentSize: 21088736780
  2274. contentUrl:
  2275. - https://api.dandiarchive.org/api/assets/6ecc433b-e0dc-4756-828d-4d775f228ffc/download/
  2276. - https://dandiarchive.s3.amazonaws.com/blobs/5c4/58f/5c458f66-ebed-45e2-8b8e-4143d3af9820
  2277. dateModified: '2023-03-16T12:18:37.147594-07:00'
  2278. datePublished: '2023-03-17T00:39:50.036180+00:00'
  2279. digest:
  2280. dandi:dandi-etag: baf8a3bb7c3605d130419579c2708803-315
  2281. dandi:sha2-256: 4df3dbf9cf20d18ffd9f74d4877e3a06bffe5ea398c642e41fe04b738427172a
  2282. encodingFormat: application/x-nwb
  2283. id: dandiasset:6ecc433b-e0dc-4756-828d-4d775f228ffc
  2284. identifier: 6ecc433b-e0dc-4756-828d-4d775f228ffc
  2285. keywords:
  2286. - EEG
  2287. - Neuropixels
  2288. - electrical stimulation
  2289. - brain states
  2290. - cortico-thalamic interactions
  2291. measurementTechnique:
  2292. - name: behavioral technique
  2293. schemaKey: MeasurementTechniqueType
  2294. - name: signal filtering technique
  2295. schemaKey: MeasurementTechniqueType
  2296. - name: multi electrode extracellular electrophysiology recording technique
  2297. schemaKey: MeasurementTechniqueType
  2298. - name: analytical technique
  2299. schemaKey: MeasurementTechniqueType
  2300. - name: spike sorting technique
  2301. schemaKey: MeasurementTechniqueType
  2302. - name: surgical technique
  2303. schemaKey: MeasurementTechniqueType
  2304. path: sub-590480/sub-590480_ses-20211111_behavior+ecephys.nwb
  2305. publishedBy:
  2306. endDate: '2023-03-17T00:39:50.036180+00:00'
  2307. id: urn:uuid:05e72ea5-ac42-4631-a7f8-3a4acb735f33
  2308. name: DANDI publish
  2309. schemaKey: PublishActivity
  2310. startDate: '2023-03-17T00:39:50.036180+00:00'
  2311. wasAssociatedWith:
  2312. - id: urn:uuid:0cbf8c5c-f7f8-4046-93e9-9dce66614e9a
  2313. identifier: RRID:SCR_017571
  2314. name: DANDI API
  2315. schemaKey: Software
  2316. version: 0.1.0
  2317. schemaKey: Asset
  2318. schemaVersion: 0.6.4
  2319. variableMeasured:
  2320. - schemaKey: PropertyValue
  2321. value: LFP
  2322. - schemaKey: PropertyValue
  2323. value: ElectricalSeries
  2324. - schemaKey: PropertyValue
  2325. value: ElectrodeGroup
  2326. - schemaKey: PropertyValue
  2327. value: ProcessingModule
  2328. - schemaKey: PropertyValue
  2329. value: Units
  2330. - schemaKey: PropertyValue
  2331. value: BehavioralTimeSeries
  2332. wasAttributedTo:
  2333. - age:
  2334. schemaKey: PropertyValue
  2335. unitText: ISO-8601 duration
  2336. value: P170D
  2337. valueReference:
  2338. schemaKey: PropertyValue
  2339. value: dandi:BirthReference
  2340. identifier: '590480'
  2341. schemaKey: Participant
  2342. sex:
  2343. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2344. name: Female
  2345. schemaKey: SexType
  2346. species:
  2347. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2348. name: Mus musculus - House mouse
  2349. schemaKey: SpeciesType
  2350. wasGeneratedBy:
  2351. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  2352. identifier: '20211111'
  2353. name: '20211111'
  2354. schemaKey: Session
  2355. startDate: '2021-11-11T10:54:02.165000-08:00'
  2356. - description: Metadata generated by DANDI cli
  2357. endDate: '2023-03-16T12:18:37.147594-07:00'
  2358. id: urn:uuid:511c2598-3890-4f18-887d-d07d11e87882
  2359. name: Metadata generation
  2360. schemaKey: Activity
  2361. startDate: '2023-03-16T12:18:35.002676-07:00'
  2362. wasAssociatedWith:
  2363. - identifier: RRID:SCR_019009
  2364. name: DANDI Command Line Interface
  2365. schemaKey: Software
  2366. url: https://github.com/dandi/dandi-cli
  2367. version: 0.51.0
  2368. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2369. access:
  2370. - schemaKey: AccessRequirements
  2371. status: dandi:OpenAccess
  2372. approach:
  2373. - name: electrophysiological approach
  2374. schemaKey: ApproachType
  2375. - name: behavioral approach
  2376. schemaKey: ApproachType
  2377. blobDateModified: '2023-03-15T21:29:59.141794-07:00'
  2378. contentSize: 22265170072
  2379. contentUrl:
  2380. - https://api.dandiarchive.org/api/assets/42114d91-f4af-415f-84a8-8e4a01ce2501/download/
  2381. - https://dandiarchive.s3.amazonaws.com/blobs/422/065/42206527-438e-4884-a3da-497f4cdf6a33
  2382. dateModified: '2023-03-16T12:29:56.503594-07:00'
  2383. datePublished: '2023-03-17T00:39:50.044054+00:00'
  2384. digest:
  2385. dandi:dandi-etag: 5e356de166972312d5681b98f4a0c82c-332
  2386. dandi:sha2-256: c617e9a0a436a9e7c7fb3e4325d8734ac1b0f33a5cf0291d0aa598657966ae02
  2387. encodingFormat: application/x-nwb
  2388. id: dandiasset:42114d91-f4af-415f-84a8-8e4a01ce2501
  2389. identifier: 42114d91-f4af-415f-84a8-8e4a01ce2501
  2390. keywords:
  2391. - EEG
  2392. - Neuropixels
  2393. - electrical stimulation
  2394. - brain states
  2395. - cortico-thalamic interactions
  2396. measurementTechnique:
  2397. - name: behavioral technique
  2398. schemaKey: MeasurementTechniqueType
  2399. - name: signal filtering technique
  2400. schemaKey: MeasurementTechniqueType
  2401. - name: multi electrode extracellular electrophysiology recording technique
  2402. schemaKey: MeasurementTechniqueType
  2403. - name: analytical technique
  2404. schemaKey: MeasurementTechniqueType
  2405. - name: spike sorting technique
  2406. schemaKey: MeasurementTechniqueType
  2407. - name: surgical technique
  2408. schemaKey: MeasurementTechniqueType
  2409. path: sub-599017/sub-599017_ses-20220210_behavior+ecephys.nwb
  2410. publishedBy:
  2411. endDate: '2023-03-17T00:39:50.044054+00:00'
  2412. id: urn:uuid:845f6abe-f5b9-45e4-b017-91abc0bd730c
  2413. name: DANDI publish
  2414. schemaKey: PublishActivity
  2415. startDate: '2023-03-17T00:39:50.044054+00:00'
  2416. wasAssociatedWith:
  2417. - id: urn:uuid:68f8950d-38de-4544-97ca-6025b6f6a941
  2418. identifier: RRID:SCR_017571
  2419. name: DANDI API
  2420. schemaKey: Software
  2421. version: 0.1.0
  2422. schemaKey: Asset
  2423. schemaVersion: 0.6.4
  2424. variableMeasured:
  2425. - schemaKey: PropertyValue
  2426. value: LFP
  2427. - schemaKey: PropertyValue
  2428. value: ElectricalSeries
  2429. - schemaKey: PropertyValue
  2430. value: ElectrodeGroup
  2431. - schemaKey: PropertyValue
  2432. value: ProcessingModule
  2433. - schemaKey: PropertyValue
  2434. value: Units
  2435. - schemaKey: PropertyValue
  2436. value: BehavioralTimeSeries
  2437. wasAttributedTo:
  2438. - age:
  2439. schemaKey: PropertyValue
  2440. unitText: ISO-8601 duration
  2441. value: P198D
  2442. valueReference:
  2443. schemaKey: PropertyValue
  2444. value: dandi:BirthReference
  2445. identifier: '599017'
  2446. schemaKey: Participant
  2447. sex:
  2448. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2449. name: Female
  2450. schemaKey: SexType
  2451. species:
  2452. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2453. name: Mus musculus - House mouse
  2454. schemaKey: SpeciesType
  2455. wasGeneratedBy:
  2456. - description: EEG and Neuropixels recording during wakefulness and isoflurane anesthesia
  2457. identifier: '20220210'
  2458. name: '20220210'
  2459. schemaKey: Session
  2460. startDate: '2022-02-10T10:53:15.219000-08:00'
  2461. - description: Metadata generated by DANDI cli
  2462. endDate: '2023-03-16T12:29:56.503594-07:00'
  2463. id: urn:uuid:a42a181a-2326-43ce-8537-9afe379fe5c3
  2464. name: Metadata generation
  2465. schemaKey: Activity
  2466. startDate: '2023-03-16T12:29:55.012582-07:00'
  2467. wasAssociatedWith:
  2468. - identifier: RRID:SCR_019009
  2469. name: DANDI Command Line Interface
  2470. schemaKey: Software
  2471. url: https://github.com/dandi/dandi-cli
  2472. version: 0.51.0
Tip!

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

Comments

Loading...