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 71 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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/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: '2024-03-15T03:01:52.329530Z'
  11. contentSize: 1817318769
  12. contentUrl:
  13. - https://api.dandiarchive.org/api/assets/c402cea1-857f-467f-a948-dbf5b682ae97/download/
  14. - https://dandiarchive.s3.amazonaws.com/blobs/3e6/b90/3e6b90c2-0cd4-4046-8bbb-321db95fa1ec
  15. dateModified: '2024-03-15T03:12:06.312269Z'
  16. datePublished: '2024-03-15T04:50:06.261629+00:00'
  17. digest:
  18. dandi:dandi-etag: 4f89210baaf195783a2a61dc0ec79a39-28
  19. dandi:sha2-256: 43bbe2c4e6c70b610347b8d798be1c28414355f6593b9a877f5fa99365c8c338
  20. encodingFormat: application/x-nwb
  21. id: dandiasset:c402cea1-857f-467f-a948-dbf5b682ae97
  22. identifier: c402cea1-857f-467f-a948-dbf5b682ae97
  23. keywords:
  24. - head-direction
  25. - postsubiculum
  26. - extracellular
  27. - freely-moving
  28. - electrophysiology
  29. measurementTechnique:
  30. - name: behavioral technique
  31. schemaKey: MeasurementTechniqueType
  32. - name: spike sorting technique
  33. schemaKey: MeasurementTechniqueType
  34. - name: analytical technique
  35. schemaKey: MeasurementTechniqueType
  36. - name: multi electrode extracellular electrophysiology recording technique
  37. schemaKey: MeasurementTechniqueType
  38. - name: signal filtering technique
  39. schemaKey: MeasurementTechniqueType
  40. - name: surgical technique
  41. schemaKey: MeasurementTechniqueType
  42. path: sub-A3706/sub-A3706_behavior+ecephys.nwb
  43. publishedBy:
  44. endDate: '2024-03-15T04:50:06.261629+00:00'
  45. id: urn:uuid:e199f13d-1342-4409-bce7-74d9dee41d16
  46. name: DANDI publish
  47. schemaKey: PublishActivity
  48. startDate: '2024-03-15T04:50:06.261629+00:00'
  49. wasAssociatedWith:
  50. - id: urn:uuid:f32f1b99-3f04-4c99-b2ca-f028dc5ef505
  51. identifier: RRID:SCR_017571
  52. name: DANDI API
  53. schemaKey: Software
  54. version: 0.1.0
  55. schemaKey: Asset
  56. schemaVersion: 0.6.6
  57. variableMeasured:
  58. - schemaKey: PropertyValue
  59. value: ElectricalSeries
  60. - schemaKey: PropertyValue
  61. value: Position
  62. - schemaKey: PropertyValue
  63. value: CompassDirection
  64. - schemaKey: PropertyValue
  65. value: ProcessingModule
  66. - schemaKey: PropertyValue
  67. value: SpatialSeries
  68. - schemaKey: PropertyValue
  69. value: Units
  70. - schemaKey: PropertyValue
  71. value: ElectrodeGroup
  72. - schemaKey: PropertyValue
  73. value: LFP
  74. wasAttributedTo:
  75. - age:
  76. schemaKey: PropertyValue
  77. unitText: ISO-8601 duration
  78. value: P12W/
  79. valueReference:
  80. schemaKey: PropertyValue
  81. value: dandi:BirthReference
  82. identifier: A3706
  83. schemaKey: Participant
  84. sex:
  85. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  86. name: Male
  87. schemaKey: SexType
  88. species:
  89. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  90. name: Mus musculus - House mouse
  91. schemaKey: SpeciesType
  92. wasGeneratedBy:
  93. - description: Open field and sleep recording
  94. identifier: '200313'
  95. name: '200313'
  96. schemaKey: Session
  97. startDate: '2020-03-13T00:00:00-04:00'
  98. - description: Metadata generated by DANDI cli
  99. endDate: '2024-03-15T03:12:06.312241Z'
  100. id: urn:uuid:1de2d772-ca96-47bb-aa1a-8271420bc59c
  101. name: Metadata generation
  102. schemaKey: Activity
  103. startDate: '2024-03-15T03:12:06.308878Z'
  104. wasAssociatedWith:
  105. - identifier: RRID:SCR_019009
  106. name: DANDI Command Line Interface
  107. schemaKey: Software
  108. url: https://github.com/dandi/dandi-cli
  109. version: 0.60.0
  110. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  111. access:
  112. - schemaKey: AccessRequirements
  113. status: dandi:OpenAccess
  114. approach:
  115. - name: behavioral approach
  116. schemaKey: ApproachType
  117. - name: electrophysiological approach
  118. schemaKey: ApproachType
  119. blobDateModified: '2024-03-15T04:25:09.707069Z'
  120. contentSize: 1868265972
  121. contentUrl:
  122. - https://api.dandiarchive.org/api/assets/4b611d8c-477b-4f1e-b97c-9e2c04bd4c98/download/
  123. - https://dandiarchive.s3.amazonaws.com/blobs/1d3/e25/1d3e25d9-c9f8-46bc-86f0-e5cb7dc8c81d
  124. dateModified: '2024-03-15T04:27:42.879407Z'
  125. datePublished: '2024-03-15T04:50:06.276878+00:00'
  126. digest:
  127. dandi:dandi-etag: 70b7766a7e0b89233675f91232c50861-28
  128. dandi:sha2-256: 71bf04815b437fe7b45271d50aa04d2b3e638d5e89cc1f3162f263dd349d13d7
  129. encodingFormat: application/x-nwb
  130. id: dandiasset:4b611d8c-477b-4f1e-b97c-9e2c04bd4c98
  131. identifier: 4b611d8c-477b-4f1e-b97c-9e2c04bd4c98
  132. keywords:
  133. - head-direction
  134. - postsubiculum
  135. - extracellular
  136. - freely-moving
  137. - electrophysiology
  138. measurementTechnique:
  139. - name: multi electrode extracellular electrophysiology recording technique
  140. schemaKey: MeasurementTechniqueType
  141. - name: surgical technique
  142. schemaKey: MeasurementTechniqueType
  143. - name: signal filtering technique
  144. schemaKey: MeasurementTechniqueType
  145. - name: spike sorting technique
  146. schemaKey: MeasurementTechniqueType
  147. - name: behavioral technique
  148. schemaKey: MeasurementTechniqueType
  149. - name: analytical technique
  150. schemaKey: MeasurementTechniqueType
  151. path: sub-A3705/sub-A3705_behavior+ecephys.nwb
  152. publishedBy:
  153. endDate: '2024-03-15T04:50:06.276878+00:00'
  154. id: urn:uuid:03607828-0b13-416c-8f0b-1fadb1d3ef09
  155. name: DANDI publish
  156. schemaKey: PublishActivity
  157. startDate: '2024-03-15T04:50:06.276878+00:00'
  158. wasAssociatedWith:
  159. - id: urn:uuid:4b4e2d42-8024-4753-a65b-a519bcb31e39
  160. identifier: RRID:SCR_017571
  161. name: DANDI API
  162. schemaKey: Software
  163. version: 0.1.0
  164. schemaKey: Asset
  165. schemaVersion: 0.6.6
  166. variableMeasured:
  167. - schemaKey: PropertyValue
  168. value: ElectricalSeries
  169. - schemaKey: PropertyValue
  170. value: ElectrodeGroup
  171. - schemaKey: PropertyValue
  172. value: LFP
  173. - schemaKey: PropertyValue
  174. value: CompassDirection
  175. - schemaKey: PropertyValue
  176. value: Position
  177. - schemaKey: PropertyValue
  178. value: SpatialSeries
  179. - schemaKey: PropertyValue
  180. value: ProcessingModule
  181. - schemaKey: PropertyValue
  182. value: Units
  183. wasAttributedTo:
  184. - age:
  185. schemaKey: PropertyValue
  186. unitText: ISO-8601 duration
  187. value: P12W/
  188. valueReference:
  189. schemaKey: PropertyValue
  190. value: dandi:BirthReference
  191. identifier: A3705
  192. schemaKey: Participant
  193. sex:
  194. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  195. name: Male
  196. schemaKey: SexType
  197. species:
  198. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  199. name: Mus musculus - House mouse
  200. schemaKey: SpeciesType
  201. wasGeneratedBy:
  202. - description: Open field and sleep recording
  203. identifier: '200306'
  204. name: '200306'
  205. schemaKey: Session
  206. startDate: '2020-03-06T00:00:00-05:00'
  207. - description: Metadata generated by DANDI cli
  208. endDate: '2024-03-15T04:27:42.879382Z'
  209. id: urn:uuid:8fac68eb-eb6c-414b-99b6-880a751c1f6d
  210. name: Metadata generation
  211. schemaKey: Activity
  212. startDate: '2024-03-15T04:27:42.874331Z'
  213. wasAssociatedWith:
  214. - identifier: RRID:SCR_019009
  215. name: DANDI Command Line Interface
  216. schemaKey: Software
  217. url: https://github.com/dandi/dandi-cli
  218. version: 0.60.0
  219. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  220. access:
  221. - schemaKey: AccessRequirements
  222. status: dandi:OpenAccess
  223. approach:
  224. - name: behavioral approach
  225. schemaKey: ApproachType
  226. - name: electrophysiological approach
  227. schemaKey: ApproachType
  228. blobDateModified: '2024-03-15T04:17:51.758826Z'
  229. contentSize: 2007196865
  230. contentUrl:
  231. - https://api.dandiarchive.org/api/assets/5f95b1d3-0b1a-455d-8007-98c5934ef3b7/download/
  232. - https://dandiarchive.s3.amazonaws.com/blobs/971/16d/97116dfd-34c0-4ed4-813e-204ebc89822d
  233. dateModified: '2024-03-15T04:27:43.654561Z'
  234. datePublished: '2024-03-15T04:50:06.283246+00:00'
  235. digest:
  236. dandi:dandi-etag: d7735272cea55713c7e83a9b7d8e54ae-30
  237. dandi:sha2-256: 1832b16d0ea8a49bc7b60d0a8c9ad03615a76092ba5c55bc98afa967e8a82b0c
  238. encodingFormat: application/x-nwb
  239. id: dandiasset:5f95b1d3-0b1a-455d-8007-98c5934ef3b7
  240. identifier: 5f95b1d3-0b1a-455d-8007-98c5934ef3b7
  241. keywords:
  242. - head-direction
  243. - postsubiculum
  244. - extracellular
  245. - freely-moving
  246. - electrophysiology
  247. measurementTechnique:
  248. - name: multi electrode extracellular electrophysiology recording technique
  249. schemaKey: MeasurementTechniqueType
  250. - name: surgical technique
  251. schemaKey: MeasurementTechniqueType
  252. - name: signal filtering technique
  253. schemaKey: MeasurementTechniqueType
  254. - name: spike sorting technique
  255. schemaKey: MeasurementTechniqueType
  256. - name: behavioral technique
  257. schemaKey: MeasurementTechniqueType
  258. - name: analytical technique
  259. schemaKey: MeasurementTechniqueType
  260. path: sub-A3702/sub-A3702_behavior+ecephys.nwb
  261. publishedBy:
  262. endDate: '2024-03-15T04:50:06.283246+00:00'
  263. id: urn:uuid:819c61c5-78b7-4244-851e-26f7b6c6ea7a
  264. name: DANDI publish
  265. schemaKey: PublishActivity
  266. startDate: '2024-03-15T04:50:06.283246+00:00'
  267. wasAssociatedWith:
  268. - id: urn:uuid:26fd34d1-16fa-4fb9-80f9-a8be33fee886
  269. identifier: RRID:SCR_017571
  270. name: DANDI API
  271. schemaKey: Software
  272. version: 0.1.0
  273. schemaKey: Asset
  274. schemaVersion: 0.6.6
  275. variableMeasured:
  276. - schemaKey: PropertyValue
  277. value: ElectricalSeries
  278. - schemaKey: PropertyValue
  279. value: ElectrodeGroup
  280. - schemaKey: PropertyValue
  281. value: LFP
  282. - schemaKey: PropertyValue
  283. value: CompassDirection
  284. - schemaKey: PropertyValue
  285. value: Position
  286. - schemaKey: PropertyValue
  287. value: SpatialSeries
  288. - schemaKey: PropertyValue
  289. value: ProcessingModule
  290. - schemaKey: PropertyValue
  291. value: Units
  292. wasAttributedTo:
  293. - age:
  294. schemaKey: PropertyValue
  295. unitText: ISO-8601 duration
  296. value: P12W/
  297. valueReference:
  298. schemaKey: PropertyValue
  299. value: dandi:BirthReference
  300. identifier: A3702
  301. schemaKey: Participant
  302. sex:
  303. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  304. name: Male
  305. schemaKey: SexType
  306. species:
  307. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  308. name: Mus musculus - House mouse
  309. schemaKey: SpeciesType
  310. wasGeneratedBy:
  311. - description: Open field and sleep recording
  312. identifier: '191126'
  313. name: '191126'
  314. schemaKey: Session
  315. startDate: '2019-11-26T00:00:00-05:00'
  316. - description: Metadata generated by DANDI cli
  317. endDate: '2024-03-15T04:27:43.654503Z'
  318. id: urn:uuid:73816947-2536-402e-bb56-c75ecf34c2bc
  319. name: Metadata generation
  320. schemaKey: Activity
  321. startDate: '2024-03-15T04:27:43.651040Z'
  322. wasAssociatedWith:
  323. - identifier: RRID:SCR_019009
  324. name: DANDI Command Line Interface
  325. schemaKey: Software
  326. url: https://github.com/dandi/dandi-cli
  327. version: 0.60.0
  328. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  329. access:
  330. - schemaKey: AccessRequirements
  331. status: dandi:OpenAccess
  332. approach:
  333. - name: behavioral approach
  334. schemaKey: ApproachType
  335. - name: electrophysiological approach
  336. schemaKey: ApproachType
  337. blobDateModified: '2024-03-15T04:04:55.360845Z'
  338. contentSize: 2313814109
  339. contentUrl:
  340. - https://api.dandiarchive.org/api/assets/11f512ba-5bcf-4230-a8cb-dc8d36db38cb/download/
  341. - https://dandiarchive.s3.amazonaws.com/blobs/a2b/94f/a2b94f91-6a75-43d8-b5db-21d89449f481
  342. dateModified: '2024-03-15T04:27:44.068730Z'
  343. datePublished: '2024-03-15T04:50:06.288738+00:00'
  344. digest:
  345. dandi:dandi-etag: 24d39acc20bfd88e934d96d067699910-35
  346. dandi:sha2-256: a3d7ffc6618055d2cb709c2fe65d22f2779efac7fae2ea5a97c2629b37f643b8
  347. encodingFormat: application/x-nwb
  348. id: dandiasset:11f512ba-5bcf-4230-a8cb-dc8d36db38cb
  349. identifier: 11f512ba-5bcf-4230-a8cb-dc8d36db38cb
  350. keywords:
  351. - head-direction
  352. - postsubiculum
  353. - extracellular
  354. - freely-moving
  355. - electrophysiology
  356. measurementTechnique:
  357. - name: multi electrode extracellular electrophysiology recording technique
  358. schemaKey: MeasurementTechniqueType
  359. - name: surgical technique
  360. schemaKey: MeasurementTechniqueType
  361. - name: signal filtering technique
  362. schemaKey: MeasurementTechniqueType
  363. - name: spike sorting technique
  364. schemaKey: MeasurementTechniqueType
  365. - name: behavioral technique
  366. schemaKey: MeasurementTechniqueType
  367. - name: analytical technique
  368. schemaKey: MeasurementTechniqueType
  369. path: sub-A3701/sub-A3701_ses-191119_behavior+ecephys.nwb
  370. publishedBy:
  371. endDate: '2024-03-15T04:50:06.288738+00:00'
  372. id: urn:uuid:efb470e3-8698-490d-89da-399fcb151340
  373. name: DANDI publish
  374. schemaKey: PublishActivity
  375. startDate: '2024-03-15T04:50:06.288738+00:00'
  376. wasAssociatedWith:
  377. - id: urn:uuid:1f8a213e-3c40-404e-a3fe-842c28e8306d
  378. identifier: RRID:SCR_017571
  379. name: DANDI API
  380. schemaKey: Software
  381. version: 0.1.0
  382. schemaKey: Asset
  383. schemaVersion: 0.6.6
  384. variableMeasured:
  385. - schemaKey: PropertyValue
  386. value: ElectricalSeries
  387. - schemaKey: PropertyValue
  388. value: ElectrodeGroup
  389. - schemaKey: PropertyValue
  390. value: LFP
  391. - schemaKey: PropertyValue
  392. value: CompassDirection
  393. - schemaKey: PropertyValue
  394. value: Position
  395. - schemaKey: PropertyValue
  396. value: SpatialSeries
  397. - schemaKey: PropertyValue
  398. value: ProcessingModule
  399. - schemaKey: PropertyValue
  400. value: Units
  401. wasAttributedTo:
  402. - age:
  403. schemaKey: PropertyValue
  404. unitText: ISO-8601 duration
  405. value: P12W/
  406. valueReference:
  407. schemaKey: PropertyValue
  408. value: dandi:BirthReference
  409. identifier: A3701
  410. schemaKey: Participant
  411. sex:
  412. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  413. name: Male
  414. schemaKey: SexType
  415. species:
  416. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  417. name: Mus musculus - House mouse
  418. schemaKey: SpeciesType
  419. wasGeneratedBy:
  420. - description: Open field and sleep recording
  421. identifier: '191119'
  422. name: '191119'
  423. schemaKey: Session
  424. startDate: '2019-11-19T00:00:00-05:00'
  425. - description: Metadata generated by DANDI cli
  426. endDate: '2024-03-15T04:27:44.068709Z'
  427. id: urn:uuid:599d70ec-23a7-42ae-b721-fd8234664868
  428. name: Metadata generation
  429. schemaKey: Activity
  430. startDate: '2024-03-15T04:27:44.066043Z'
  431. wasAssociatedWith:
  432. - identifier: RRID:SCR_019009
  433. name: DANDI Command Line Interface
  434. schemaKey: Software
  435. url: https://github.com/dandi/dandi-cli
  436. version: 0.60.0
  437. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  438. access:
  439. - schemaKey: AccessRequirements
  440. status: dandi:OpenAccess
  441. approach:
  442. - name: behavioral approach
  443. schemaKey: ApproachType
  444. - name: electrophysiological approach
  445. schemaKey: ApproachType
  446. blobDateModified: '2024-03-15T04:04:55.360000Z'
  447. contentSize: 2313814109
  448. contentUrl:
  449. - https://api.dandiarchive.org/api/assets/aeed384f-20b3-4ac3-bbab-8b3a56402787/download/
  450. - https://dandiarchive.s3.amazonaws.com/blobs/a2b/94f/a2b94f91-6a75-43d8-b5db-21d89449f481
  451. dateModified: '2024-03-18T00:18:44.518276Z'
  452. datePublished: '2024-03-18T01:50:45.342851+00:00'
  453. digest:
  454. dandi:dandi-etag: 24d39acc20bfd88e934d96d067699910-35
  455. dandi:sha2-256: a3d7ffc6618055d2cb709c2fe65d22f2779efac7fae2ea5a97c2629b37f643b8
  456. encodingFormat: application/x-nwb
  457. id: dandiasset:aeed384f-20b3-4ac3-bbab-8b3a56402787
  458. identifier: aeed384f-20b3-4ac3-bbab-8b3a56402787
  459. keywords:
  460. - head-direction
  461. - postsubiculum
  462. - extracellular
  463. - freely-moving
  464. - electrophysiology
  465. measurementTechnique:
  466. - name: spike sorting technique
  467. schemaKey: MeasurementTechniqueType
  468. - name: signal filtering technique
  469. schemaKey: MeasurementTechniqueType
  470. - name: multi electrode extracellular electrophysiology recording technique
  471. schemaKey: MeasurementTechniqueType
  472. - name: analytical technique
  473. schemaKey: MeasurementTechniqueType
  474. - name: behavioral technique
  475. schemaKey: MeasurementTechniqueType
  476. - name: surgical technique
  477. schemaKey: MeasurementTechniqueType
  478. path: sub-A3701/sub-A3701_behavior+ecephys.nwb
  479. publishedBy:
  480. endDate: '2024-03-18T01:50:45.342851+00:00'
  481. id: urn:uuid:04ee103e-8dee-4757-abef-6e7ee0bbeddf
  482. name: DANDI publish
  483. schemaKey: PublishActivity
  484. startDate: '2024-03-18T01:50:45.342851+00:00'
  485. wasAssociatedWith:
  486. - id: urn:uuid:3ec0e9bc-3ba1-4b5c-9904-6d55b3892b44
  487. identifier: RRID:SCR_017571
  488. name: DANDI API
  489. schemaKey: Software
  490. version: 0.1.0
  491. schemaKey: Asset
  492. schemaVersion: 0.6.6
  493. variableMeasured:
  494. - schemaKey: PropertyValue
  495. value: ElectrodeGroup
  496. - schemaKey: PropertyValue
  497. value: ElectricalSeries
  498. - schemaKey: PropertyValue
  499. value: CompassDirection
  500. - schemaKey: PropertyValue
  501. value: SpatialSeries
  502. - schemaKey: PropertyValue
  503. value: Position
  504. - schemaKey: PropertyValue
  505. value: LFP
  506. - schemaKey: PropertyValue
  507. value: ProcessingModule
  508. - schemaKey: PropertyValue
  509. value: Units
  510. wasAttributedTo:
  511. - age:
  512. schemaKey: PropertyValue
  513. unitText: ISO-8601 duration
  514. value: P12W/
  515. valueReference:
  516. schemaKey: PropertyValue
  517. value: dandi:BirthReference
  518. identifier: A3701
  519. schemaKey: Participant
  520. sex:
  521. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  522. name: Male
  523. schemaKey: SexType
  524. species:
  525. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  526. name: Mus musculus - House mouse
  527. schemaKey: SpeciesType
  528. wasGeneratedBy:
  529. - description: Open field and sleep recording
  530. identifier: '191119'
  531. name: '191119'
  532. schemaKey: Session
  533. startDate: '2019-11-19T00:00:00-05:00'
  534. - description: Metadata generated by DANDI cli
  535. endDate: '2024-03-18T00:18:44.518249Z'
  536. id: urn:uuid:758d4523-8b8a-4559-9067-150d5b5a357f
  537. name: Metadata generation
  538. schemaKey: Activity
  539. startDate: '2024-03-18T00:18:42.848632Z'
  540. wasAssociatedWith:
  541. - identifier: RRID:SCR_019009
  542. name: DANDI Command Line Interface
  543. schemaKey: Software
  544. url: https://github.com/dandi/dandi-cli
  545. version: 0.60.0
  546. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  547. access:
  548. - schemaKey: AccessRequirements
  549. status: dandi:OpenAccess
  550. approach:
  551. - name: behavioral approach
  552. schemaKey: ApproachType
  553. - name: electrophysiological approach
  554. schemaKey: ApproachType
  555. blobDateModified: '2024-03-17T17:46:24.450000Z'
  556. contentSize: 975977605
  557. contentUrl:
  558. - https://api.dandiarchive.org/api/assets/7b1f1c93-1c01-4d6f-ba9e-150b9744d4d1/download/
  559. - https://dandiarchive.s3.amazonaws.com/blobs/070/204/0702041a-6f63-4716-bb14-9e795f75a14a
  560. dateModified: '2024-03-18T00:18:37.861298Z'
  561. datePublished: '2024-03-18T01:50:45.350903+00:00'
  562. digest:
  563. dandi:dandi-etag: fcd6afa3dc5c4a52a7372e7de8443a9a-15
  564. dandi:sha2-256: 3aa4e0214cfe889bfca5bda52318001a6b40d10dcf5d19b7a4e516464008b89b
  565. encodingFormat: application/x-nwb
  566. id: dandiasset:7b1f1c93-1c01-4d6f-ba9e-150b9744d4d1
  567. identifier: 7b1f1c93-1c01-4d6f-ba9e-150b9744d4d1
  568. keywords:
  569. - head-direction
  570. - postsubiculum
  571. - extracellular
  572. - freely-moving
  573. - electrophysiology
  574. measurementTechnique:
  575. - name: spike sorting technique
  576. schemaKey: MeasurementTechniqueType
  577. - name: signal filtering technique
  578. schemaKey: MeasurementTechniqueType
  579. - name: multi electrode extracellular electrophysiology recording technique
  580. schemaKey: MeasurementTechniqueType
  581. - name: analytical technique
  582. schemaKey: MeasurementTechniqueType
  583. - name: behavioral technique
  584. schemaKey: MeasurementTechniqueType
  585. - name: surgical technique
  586. schemaKey: MeasurementTechniqueType
  587. path: sub-A3703/sub-A3703_behavior+ecephys.nwb
  588. publishedBy:
  589. endDate: '2024-03-18T01:50:45.350903+00:00'
  590. id: urn:uuid:2e4d4fe5-249e-435d-abc6-d535b1392029
  591. name: DANDI publish
  592. schemaKey: PublishActivity
  593. startDate: '2024-03-18T01:50:45.350903+00:00'
  594. wasAssociatedWith:
  595. - id: urn:uuid:d21046ac-5fd7-443b-932d-846f81c3b0d7
  596. identifier: RRID:SCR_017571
  597. name: DANDI API
  598. schemaKey: Software
  599. version: 0.1.0
  600. schemaKey: Asset
  601. schemaVersion: 0.6.6
  602. variableMeasured:
  603. - schemaKey: PropertyValue
  604. value: ElectrodeGroup
  605. - schemaKey: PropertyValue
  606. value: ElectricalSeries
  607. - schemaKey: PropertyValue
  608. value: CompassDirection
  609. - schemaKey: PropertyValue
  610. value: SpatialSeries
  611. - schemaKey: PropertyValue
  612. value: Position
  613. - schemaKey: PropertyValue
  614. value: LFP
  615. - schemaKey: PropertyValue
  616. value: ProcessingModule
  617. - schemaKey: PropertyValue
  618. value: Units
  619. wasAttributedTo:
  620. - age:
  621. schemaKey: PropertyValue
  622. unitText: ISO-8601 duration
  623. value: P12W/
  624. valueReference:
  625. schemaKey: PropertyValue
  626. value: dandi:BirthReference
  627. identifier: A3703
  628. schemaKey: Participant
  629. sex:
  630. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  631. name: Male
  632. schemaKey: SexType
  633. species:
  634. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  635. name: Mus musculus - House mouse
  636. schemaKey: SpeciesType
  637. wasGeneratedBy:
  638. - description: Open field and sleep recording
  639. identifier: '191215'
  640. name: '191215'
  641. schemaKey: Session
  642. startDate: '2019-12-15T00:00:00-05:00'
  643. - description: Metadata generated by DANDI cli
  644. endDate: '2024-03-18T00:18:37.861255Z'
  645. id: urn:uuid:bfd635b5-8f9f-4556-b5f9-5ae9d0fa08da
  646. name: Metadata generation
  647. schemaKey: Activity
  648. startDate: '2024-03-18T00:18:37.827489Z'
  649. wasAssociatedWith:
  650. - identifier: RRID:SCR_019009
  651. name: DANDI Command Line Interface
  652. schemaKey: Software
  653. url: https://github.com/dandi/dandi-cli
  654. version: 0.60.0
  655. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  656. access:
  657. - schemaKey: AccessRequirements
  658. status: dandi:OpenAccess
  659. approach:
  660. - name: behavioral approach
  661. schemaKey: ApproachType
  662. - name: electrophysiological approach
  663. schemaKey: ApproachType
  664. blobDateModified: '2024-03-17T18:07:40.920000Z'
  665. contentSize: 1658628235
  666. contentUrl:
  667. - https://api.dandiarchive.org/api/assets/14e3b887-f05a-472c-ab48-6b2b07cd24c7/download/
  668. - https://dandiarchive.s3.amazonaws.com/blobs/57f/9ec/57f9ec73-3c44-40f3-8d05-696c438302ad
  669. dateModified: '2024-03-18T00:18:51.525933Z'
  670. datePublished: '2024-03-18T01:50:45.357192+00:00'
  671. digest:
  672. dandi:dandi-etag: b8fe3af7b98ea6baa754fd1bced74c11-25
  673. dandi:sha2-256: 853be495f9ca4102978f4eb581f44865087fa7cc48c6fe7463e069855d86269c
  674. encodingFormat: application/x-nwb
  675. id: dandiasset:14e3b887-f05a-472c-ab48-6b2b07cd24c7
  676. identifier: 14e3b887-f05a-472c-ab48-6b2b07cd24c7
  677. keywords:
  678. - head-direction
  679. - postsubiculum
  680. - extracellular
  681. - freely-moving
  682. - electrophysiology
  683. measurementTechnique:
  684. - name: spike sorting technique
  685. schemaKey: MeasurementTechniqueType
  686. - name: signal filtering technique
  687. schemaKey: MeasurementTechniqueType
  688. - name: multi electrode extracellular electrophysiology recording technique
  689. schemaKey: MeasurementTechniqueType
  690. - name: analytical technique
  691. schemaKey: MeasurementTechniqueType
  692. - name: behavioral technique
  693. schemaKey: MeasurementTechniqueType
  694. - name: surgical technique
  695. schemaKey: MeasurementTechniqueType
  696. path: sub-A3711/sub-A3711_behavior+ecephys.nwb
  697. publishedBy:
  698. endDate: '2024-03-18T01:50:45.357192+00:00'
  699. id: urn:uuid:456884c9-396e-47eb-9a9e-8cef7b9501b4
  700. name: DANDI publish
  701. schemaKey: PublishActivity
  702. startDate: '2024-03-18T01:50:45.357192+00:00'
  703. wasAssociatedWith:
  704. - id: urn:uuid:b1457076-419b-4009-a034-064f4621efa6
  705. identifier: RRID:SCR_017571
  706. name: DANDI API
  707. schemaKey: Software
  708. version: 0.1.0
  709. schemaKey: Asset
  710. schemaVersion: 0.6.6
  711. variableMeasured:
  712. - schemaKey: PropertyValue
  713. value: ElectrodeGroup
  714. - schemaKey: PropertyValue
  715. value: ElectricalSeries
  716. - schemaKey: PropertyValue
  717. value: CompassDirection
  718. - schemaKey: PropertyValue
  719. value: SpatialSeries
  720. - schemaKey: PropertyValue
  721. value: Position
  722. - schemaKey: PropertyValue
  723. value: LFP
  724. - schemaKey: PropertyValue
  725. value: ProcessingModule
  726. - schemaKey: PropertyValue
  727. value: Units
  728. wasAttributedTo:
  729. - age:
  730. schemaKey: PropertyValue
  731. unitText: ISO-8601 duration
  732. value: P12W/
  733. valueReference:
  734. schemaKey: PropertyValue
  735. value: dandi:BirthReference
  736. identifier: A3711
  737. schemaKey: Participant
  738. sex:
  739. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  740. name: Male
  741. schemaKey: SexType
  742. species:
  743. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  744. name: Mus musculus - House mouse
  745. schemaKey: SpeciesType
  746. wasGeneratedBy:
  747. - description: Open field and sleep recording
  748. identifier: 200810b
  749. name: 200810b
  750. schemaKey: Session
  751. startDate: '2020-08-10T00:00:00-04:00'
  752. - description: Metadata generated by DANDI cli
  753. endDate: '2024-03-18T00:18:51.525910Z'
  754. id: urn:uuid:8e7adf4d-9fb9-4848-aadc-677bdbe0b83f
  755. name: Metadata generation
  756. schemaKey: Activity
  757. startDate: '2024-03-18T00:18:51.523059Z'
  758. wasAssociatedWith:
  759. - identifier: RRID:SCR_019009
  760. name: DANDI Command Line Interface
  761. schemaKey: Software
  762. url: https://github.com/dandi/dandi-cli
  763. version: 0.60.0
  764. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  765. access:
  766. - schemaKey: AccessRequirements
  767. status: dandi:OpenAccess
  768. approach:
  769. - name: behavioral approach
  770. schemaKey: ApproachType
  771. - name: electrophysiological approach
  772. schemaKey: ApproachType
  773. blobDateModified: '2024-03-17T20:20:20.230000Z'
  774. contentSize: 1802572480
  775. contentUrl:
  776. - https://api.dandiarchive.org/api/assets/db541be3-efee-49ae-b15b-7a62f7b054f7/download/
  777. - https://dandiarchive.s3.amazonaws.com/blobs/bc8/441/bc844174-9ca0-440b-b53a-9ad5ec83146f
  778. dateModified: '2024-03-18T00:18:50.637118Z'
  779. datePublished: '2024-03-18T01:50:45.363660+00:00'
  780. digest:
  781. dandi:dandi-etag: 63be7a702a0db1ee38ac7c03b8639851-27
  782. dandi:sha2-256: 37ce2b4bcac6f71d4025f42500bb22de7cbfbf5384622d58953f8bb6085b2c01
  783. encodingFormat: application/x-nwb
  784. id: dandiasset:db541be3-efee-49ae-b15b-7a62f7b054f7
  785. identifier: db541be3-efee-49ae-b15b-7a62f7b054f7
  786. keywords:
  787. - head-direction
  788. - postsubiculum
  789. - extracellular
  790. - freely-moving
  791. - electrophysiology
  792. measurementTechnique:
  793. - name: spike sorting technique
  794. schemaKey: MeasurementTechniqueType
  795. - name: signal filtering technique
  796. schemaKey: MeasurementTechniqueType
  797. - name: multi electrode extracellular electrophysiology recording technique
  798. schemaKey: MeasurementTechniqueType
  799. - name: analytical technique
  800. schemaKey: MeasurementTechniqueType
  801. - name: behavioral technique
  802. schemaKey: MeasurementTechniqueType
  803. - name: surgical technique
  804. schemaKey: MeasurementTechniqueType
  805. path: sub-A3707/sub-A3707_behavior+ecephys.nwb
  806. publishedBy:
  807. endDate: '2024-03-18T01:50:45.363660+00:00'
  808. id: urn:uuid:ded4db66-de75-46cc-afc9-2a5286582a72
  809. name: DANDI publish
  810. schemaKey: PublishActivity
  811. startDate: '2024-03-18T01:50:45.363660+00:00'
  812. wasAssociatedWith:
  813. - id: urn:uuid:ded87df5-5160-42f2-8de2-c5c5074d8967
  814. identifier: RRID:SCR_017571
  815. name: DANDI API
  816. schemaKey: Software
  817. version: 0.1.0
  818. schemaKey: Asset
  819. schemaVersion: 0.6.6
  820. variableMeasured:
  821. - schemaKey: PropertyValue
  822. value: ElectrodeGroup
  823. - schemaKey: PropertyValue
  824. value: ElectricalSeries
  825. - schemaKey: PropertyValue
  826. value: CompassDirection
  827. - schemaKey: PropertyValue
  828. value: SpatialSeries
  829. - schemaKey: PropertyValue
  830. value: Position
  831. - schemaKey: PropertyValue
  832. value: LFP
  833. - schemaKey: PropertyValue
  834. value: ProcessingModule
  835. - schemaKey: PropertyValue
  836. value: Units
  837. wasAttributedTo:
  838. - age:
  839. schemaKey: PropertyValue
  840. unitText: ISO-8601 duration
  841. value: P12W/
  842. valueReference:
  843. schemaKey: PropertyValue
  844. value: dandi:BirthReference
  845. identifier: A3707
  846. schemaKey: Participant
  847. sex:
  848. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  849. name: Male
  850. schemaKey: SexType
  851. species:
  852. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  853. name: Mus musculus - House mouse
  854. schemaKey: SpeciesType
  855. wasGeneratedBy:
  856. - description: Open field and sleep recording
  857. identifier: '200317'
  858. name: '200317'
  859. schemaKey: Session
  860. startDate: '2020-03-17T00:00:00-04:00'
  861. - description: Metadata generated by DANDI cli
  862. endDate: '2024-03-18T00:18:50.637090Z'
  863. id: urn:uuid:402bcb97-1e28-46b0-9af1-93a04649c7fe
  864. name: Metadata generation
  865. schemaKey: Activity
  866. startDate: '2024-03-18T00:18:48.953803Z'
  867. wasAssociatedWith:
  868. - identifier: RRID:SCR_019009
  869. name: DANDI Command Line Interface
  870. schemaKey: Software
  871. url: https://github.com/dandi/dandi-cli
  872. version: 0.60.0
  873. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  874. access:
  875. - schemaKey: AccessRequirements
  876. status: dandi:OpenAccess
  877. approach:
  878. - name: behavioral approach
  879. schemaKey: ApproachType
  880. - name: electrophysiological approach
  881. schemaKey: ApproachType
  882. blobDateModified: '2024-03-17T18:02:11.790000Z'
  883. contentSize: 2033783916
  884. contentUrl:
  885. - https://api.dandiarchive.org/api/assets/6e51a889-79e8-4326-bbd5-afbcd5f68a02/download/
  886. - https://dandiarchive.s3.amazonaws.com/blobs/d04/e2a/d04e2a60-eadd-4d4d-9624-e55e67d12d15
  887. dateModified: '2024-03-18T00:18:50.637951Z'
  888. datePublished: '2024-03-18T01:50:45.370529+00:00'
  889. digest:
  890. dandi:dandi-etag: 4ed3eb428c5afd73b8d70c78bd4e11ad-31
  891. dandi:sha2-256: e927446f628788c9879acbe318df9749a3671d798be978928766e98486897f71
  892. encodingFormat: application/x-nwb
  893. id: dandiasset:6e51a889-79e8-4326-bbd5-afbcd5f68a02
  894. identifier: 6e51a889-79e8-4326-bbd5-afbcd5f68a02
  895. keywords:
  896. - head-direction
  897. - postsubiculum
  898. - extracellular
  899. - freely-moving
  900. - electrophysiology
  901. measurementTechnique:
  902. - name: spike sorting technique
  903. schemaKey: MeasurementTechniqueType
  904. - name: signal filtering technique
  905. schemaKey: MeasurementTechniqueType
  906. - name: multi electrode extracellular electrophysiology recording technique
  907. schemaKey: MeasurementTechniqueType
  908. - name: analytical technique
  909. schemaKey: MeasurementTechniqueType
  910. - name: behavioral technique
  911. schemaKey: MeasurementTechniqueType
  912. - name: surgical technique
  913. schemaKey: MeasurementTechniqueType
  914. path: sub-A3710/sub-A3710_behavior+ecephys.nwb
  915. publishedBy:
  916. endDate: '2024-03-18T01:50:45.370529+00:00'
  917. id: urn:uuid:e23c5001-6ab1-466e-b046-e510e390908d
  918. name: DANDI publish
  919. schemaKey: PublishActivity
  920. startDate: '2024-03-18T01:50:45.370529+00:00'
  921. wasAssociatedWith:
  922. - id: urn:uuid:26f519b5-8cf1-4d85-80a9-5b80c2a32c95
  923. identifier: RRID:SCR_017571
  924. name: DANDI API
  925. schemaKey: Software
  926. version: 0.1.0
  927. schemaKey: Asset
  928. schemaVersion: 0.6.6
  929. variableMeasured:
  930. - schemaKey: PropertyValue
  931. value: ElectrodeGroup
  932. - schemaKey: PropertyValue
  933. value: ElectricalSeries
  934. - schemaKey: PropertyValue
  935. value: CompassDirection
  936. - schemaKey: PropertyValue
  937. value: SpatialSeries
  938. - schemaKey: PropertyValue
  939. value: Position
  940. - schemaKey: PropertyValue
  941. value: LFP
  942. - schemaKey: PropertyValue
  943. value: ProcessingModule
  944. - schemaKey: PropertyValue
  945. value: Units
  946. wasAttributedTo:
  947. - age:
  948. schemaKey: PropertyValue
  949. unitText: ISO-8601 duration
  950. value: P12W/
  951. valueReference:
  952. schemaKey: PropertyValue
  953. value: dandi:BirthReference
  954. identifier: A3710
  955. schemaKey: Participant
  956. sex:
  957. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  958. name: Male
  959. schemaKey: SexType
  960. species:
  961. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  962. name: Mus musculus - House mouse
  963. schemaKey: SpeciesType
  964. wasGeneratedBy:
  965. - description: Open field and sleep recording
  966. identifier: '200609'
  967. name: '200609'
  968. schemaKey: Session
  969. startDate: '2020-06-09T00:00:00-04:00'
  970. - description: Metadata generated by DANDI cli
  971. endDate: '2024-03-18T00:18:50.637929Z'
  972. id: urn:uuid:461c0a85-6461-4c69-a2bd-24906cd4a687
  973. name: Metadata generation
  974. schemaKey: Activity
  975. startDate: '2024-03-18T00:18:50.634297Z'
  976. wasAssociatedWith:
  977. - identifier: RRID:SCR_019009
  978. name: DANDI Command Line Interface
  979. schemaKey: Software
  980. url: https://github.com/dandi/dandi-cli
  981. version: 0.60.0
  982. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  983. access:
  984. - schemaKey: AccessRequirements
  985. status: dandi:OpenAccess
  986. approach:
  987. - name: behavioral approach
  988. schemaKey: ApproachType
  989. - name: electrophysiological approach
  990. schemaKey: ApproachType
  991. blobDateModified: '2024-03-17T17:57:00.300000Z'
  992. contentSize: 2138111586
  993. contentUrl:
  994. - https://api.dandiarchive.org/api/assets/d99ae8e7-ed20-41dd-9af0-8f1030c94f31/download/
  995. - https://dandiarchive.s3.amazonaws.com/blobs/889/1ce/8891ce05-3012-4c3b-bc91-c8a179225938
  996. dateModified: '2024-03-18T00:18:50.099183Z'
  997. datePublished: '2024-03-18T01:50:45.374773+00:00'
  998. digest:
  999. dandi:dandi-etag: d1ecd929dea708bd866ebeac50cfd374-32
  1000. dandi:sha2-256: 5d97ae30d989878e6e03d579ffbb2efd4e3b73cf9b89d3a1c68e13520d184b1f
  1001. encodingFormat: application/x-nwb
  1002. id: dandiasset:d99ae8e7-ed20-41dd-9af0-8f1030c94f31
  1003. identifier: d99ae8e7-ed20-41dd-9af0-8f1030c94f31
  1004. keywords:
  1005. - head-direction
  1006. - postsubiculum
  1007. - extracellular
  1008. - freely-moving
  1009. - electrophysiology
  1010. measurementTechnique:
  1011. - name: spike sorting technique
  1012. schemaKey: MeasurementTechniqueType
  1013. - name: signal filtering technique
  1014. schemaKey: MeasurementTechniqueType
  1015. - name: multi electrode extracellular electrophysiology recording technique
  1016. schemaKey: MeasurementTechniqueType
  1017. - name: analytical technique
  1018. schemaKey: MeasurementTechniqueType
  1019. - name: behavioral technique
  1020. schemaKey: MeasurementTechniqueType
  1021. - name: surgical technique
  1022. schemaKey: MeasurementTechniqueType
  1023. path: sub-A3709/sub-A3709_behavior+ecephys.nwb
  1024. publishedBy:
  1025. endDate: '2024-03-18T01:50:45.374773+00:00'
  1026. id: urn:uuid:9e4aa742-3aa8-4962-8ec1-05ffcd5f03a1
  1027. name: DANDI publish
  1028. schemaKey: PublishActivity
  1029. startDate: '2024-03-18T01:50:45.374773+00:00'
  1030. wasAssociatedWith:
  1031. - id: urn:uuid:d98dade1-2f71-49c1-84c2-abecef43a42a
  1032. identifier: RRID:SCR_017571
  1033. name: DANDI API
  1034. schemaKey: Software
  1035. version: 0.1.0
  1036. schemaKey: Asset
  1037. schemaVersion: 0.6.6
  1038. variableMeasured:
  1039. - schemaKey: PropertyValue
  1040. value: ElectrodeGroup
  1041. - schemaKey: PropertyValue
  1042. value: ElectricalSeries
  1043. - schemaKey: PropertyValue
  1044. value: CompassDirection
  1045. - schemaKey: PropertyValue
  1046. value: SpatialSeries
  1047. - schemaKey: PropertyValue
  1048. value: Position
  1049. - schemaKey: PropertyValue
  1050. value: LFP
  1051. - schemaKey: PropertyValue
  1052. value: ProcessingModule
  1053. - schemaKey: PropertyValue
  1054. value: Units
  1055. wasAttributedTo:
  1056. - age:
  1057. schemaKey: PropertyValue
  1058. unitText: ISO-8601 duration
  1059. value: P12W/
  1060. valueReference:
  1061. schemaKey: PropertyValue
  1062. value: dandi:BirthReference
  1063. identifier: A3709
  1064. schemaKey: Participant
  1065. sex:
  1066. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1067. name: Male
  1068. schemaKey: SexType
  1069. species:
  1070. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1071. name: Mus musculus - House mouse
  1072. schemaKey: SpeciesType
  1073. wasGeneratedBy:
  1074. - description: Open field and sleep recording
  1075. identifier: '200601'
  1076. name: '200601'
  1077. schemaKey: Session
  1078. startDate: '2020-06-01T00:00:00-04:00'
  1079. - description: Metadata generated by DANDI cli
  1080. endDate: '2024-03-18T00:18:50.099155Z'
  1081. id: urn:uuid:b54109b1-72de-4050-a66f-e8ba3dd3858a
  1082. name: Metadata generation
  1083. schemaKey: Activity
  1084. startDate: '2024-03-18T00:18:50.092852Z'
  1085. wasAssociatedWith:
  1086. - identifier: RRID:SCR_019009
  1087. name: DANDI Command Line Interface
  1088. schemaKey: Software
  1089. url: https://github.com/dandi/dandi-cli
  1090. version: 0.60.0
  1091. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1092. access:
  1093. - schemaKey: AccessRequirements
  1094. status: dandi:OpenAccess
  1095. approach:
  1096. - name: behavioral approach
  1097. schemaKey: ApproachType
  1098. - name: electrophysiological approach
  1099. schemaKey: ApproachType
  1100. blobDateModified: '2024-03-17T18:15:35.190000Z'
  1101. contentSize: 1844523137
  1102. contentUrl:
  1103. - https://api.dandiarchive.org/api/assets/406c830c-4a4d-4d01-9c54-a7d8d0a974e3/download/
  1104. - https://dandiarchive.s3.amazonaws.com/blobs/f3a/ffa/f3affa59-97e8-47f8-a18f-363799b33e2d
  1105. dateModified: '2024-03-18T00:21:07.527248Z'
  1106. datePublished: '2024-03-18T01:50:45.379348+00:00'
  1107. digest:
  1108. dandi:dandi-etag: e7009b457362d25e60b3a8041c6b5a31-28
  1109. dandi:sha2-256: bce7196022f18bcfbb87e0e0461d8a42790c25c93b91e361521afe3ed0f83514
  1110. encodingFormat: application/x-nwb
  1111. id: dandiasset:406c830c-4a4d-4d01-9c54-a7d8d0a974e3
  1112. identifier: 406c830c-4a4d-4d01-9c54-a7d8d0a974e3
  1113. keywords:
  1114. - head-direction
  1115. - postsubiculum
  1116. - extracellular
  1117. - freely-moving
  1118. - electrophysiology
  1119. measurementTechnique:
  1120. - name: spike sorting technique
  1121. schemaKey: MeasurementTechniqueType
  1122. - name: signal filtering technique
  1123. schemaKey: MeasurementTechniqueType
  1124. - name: multi electrode extracellular electrophysiology recording technique
  1125. schemaKey: MeasurementTechniqueType
  1126. - name: analytical technique
  1127. schemaKey: MeasurementTechniqueType
  1128. - name: behavioral technique
  1129. schemaKey: MeasurementTechniqueType
  1130. - name: surgical technique
  1131. schemaKey: MeasurementTechniqueType
  1132. path: sub-A3713/sub-A3713_behavior+ecephys.nwb
  1133. publishedBy:
  1134. endDate: '2024-03-18T01:50:45.379348+00:00'
  1135. id: urn:uuid:079502b5-dbe4-46ce-8c6b-f0180a51a9ec
  1136. name: DANDI publish
  1137. schemaKey: PublishActivity
  1138. startDate: '2024-03-18T01:50:45.379348+00:00'
  1139. wasAssociatedWith:
  1140. - id: urn:uuid:78049c1e-c25e-4330-a91b-706bb6a31154
  1141. identifier: RRID:SCR_017571
  1142. name: DANDI API
  1143. schemaKey: Software
  1144. version: 0.1.0
  1145. schemaKey: Asset
  1146. schemaVersion: 0.6.6
  1147. variableMeasured:
  1148. - schemaKey: PropertyValue
  1149. value: ElectrodeGroup
  1150. - schemaKey: PropertyValue
  1151. value: ElectricalSeries
  1152. - schemaKey: PropertyValue
  1153. value: CompassDirection
  1154. - schemaKey: PropertyValue
  1155. value: SpatialSeries
  1156. - schemaKey: PropertyValue
  1157. value: Position
  1158. - schemaKey: PropertyValue
  1159. value: LFP
  1160. - schemaKey: PropertyValue
  1161. value: ProcessingModule
  1162. - schemaKey: PropertyValue
  1163. value: Units
  1164. wasAttributedTo:
  1165. - age:
  1166. schemaKey: PropertyValue
  1167. unitText: ISO-8601 duration
  1168. value: P12W/
  1169. valueReference:
  1170. schemaKey: PropertyValue
  1171. value: dandi:BirthReference
  1172. identifier: A3713
  1173. schemaKey: Participant
  1174. sex:
  1175. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1176. name: Male
  1177. schemaKey: SexType
  1178. species:
  1179. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1180. name: Mus musculus - House mouse
  1181. schemaKey: SpeciesType
  1182. wasGeneratedBy:
  1183. - description: Open field and sleep recording
  1184. identifier: 200909a
  1185. name: 200909a
  1186. schemaKey: Session
  1187. startDate: '2020-09-09T00:00:00-04:00'
  1188. - description: Metadata generated by DANDI cli
  1189. endDate: '2024-03-18T00:21:07.527224Z'
  1190. id: urn:uuid:754365f0-6b28-4f21-b9c8-901c51a46d76
  1191. name: Metadata generation
  1192. schemaKey: Activity
  1193. startDate: '2024-03-18T00:21:07.523628Z'
  1194. wasAssociatedWith:
  1195. - identifier: RRID:SCR_019009
  1196. name: DANDI Command Line Interface
  1197. schemaKey: Software
  1198. url: https://github.com/dandi/dandi-cli
  1199. version: 0.60.0
  1200. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1201. access:
  1202. - schemaKey: AccessRequirements
  1203. status: dandi:OpenAccess
  1204. approach:
  1205. - name: behavioral approach
  1206. schemaKey: ApproachType
  1207. - name: electrophysiological approach
  1208. schemaKey: ApproachType
  1209. blobDateModified: '2024-03-17T22:57:45.600000Z'
  1210. contentSize: 1958948923
  1211. contentUrl:
  1212. - https://api.dandiarchive.org/api/assets/d9fa51c6-8dd8-4973-bc5b-30ab7905a103/download/
  1213. - https://dandiarchive.s3.amazonaws.com/blobs/418/9fd/4189fd90-7d6d-4172-9ed1-782ecc39fe89
  1214. dateModified: '2024-03-18T00:23:02.781756Z'
  1215. datePublished: '2024-03-18T01:50:45.384357+00:00'
  1216. digest:
  1217. dandi:dandi-etag: c88210600e9a78b531f0bc3e65d1fd76-30
  1218. dandi:sha2-256: d9abfb190e07f72246b6caa7229b66053b6d5cbce5d498ebfb05514dfb25f383
  1219. encodingFormat: application/x-nwb
  1220. id: dandiasset:d9fa51c6-8dd8-4973-bc5b-30ab7905a103
  1221. identifier: d9fa51c6-8dd8-4973-bc5b-30ab7905a103
  1222. keywords:
  1223. - head-direction
  1224. - postsubiculum
  1225. - extracellular
  1226. - freely-moving
  1227. - electrophysiology
  1228. measurementTechnique:
  1229. - name: spike sorting technique
  1230. schemaKey: MeasurementTechniqueType
  1231. - name: signal filtering technique
  1232. schemaKey: MeasurementTechniqueType
  1233. - name: multi electrode extracellular electrophysiology recording technique
  1234. schemaKey: MeasurementTechniqueType
  1235. - name: analytical technique
  1236. schemaKey: MeasurementTechniqueType
  1237. - name: behavioral technique
  1238. schemaKey: MeasurementTechniqueType
  1239. - name: surgical technique
  1240. schemaKey: MeasurementTechniqueType
  1241. path: sub-A3716/sub-A3716_behavior+ecephys.nwb
  1242. publishedBy:
  1243. endDate: '2024-03-18T01:50:45.384357+00:00'
  1244. id: urn:uuid:f4a39a68-3ebe-4e63-a96e-3801389b5b2f
  1245. name: DANDI publish
  1246. schemaKey: PublishActivity
  1247. startDate: '2024-03-18T01:50:45.384357+00:00'
  1248. wasAssociatedWith:
  1249. - id: urn:uuid:888ed4b2-28e4-4fb6-af7d-7229bf20a54c
  1250. identifier: RRID:SCR_017571
  1251. name: DANDI API
  1252. schemaKey: Software
  1253. version: 0.1.0
  1254. schemaKey: Asset
  1255. schemaVersion: 0.6.6
  1256. variableMeasured:
  1257. - schemaKey: PropertyValue
  1258. value: ElectrodeGroup
  1259. - schemaKey: PropertyValue
  1260. value: ElectricalSeries
  1261. - schemaKey: PropertyValue
  1262. value: CompassDirection
  1263. - schemaKey: PropertyValue
  1264. value: SpatialSeries
  1265. - schemaKey: PropertyValue
  1266. value: Position
  1267. - schemaKey: PropertyValue
  1268. value: LFP
  1269. - schemaKey: PropertyValue
  1270. value: ProcessingModule
  1271. - schemaKey: PropertyValue
  1272. value: Units
  1273. wasAttributedTo:
  1274. - age:
  1275. schemaKey: PropertyValue
  1276. unitText: ISO-8601 duration
  1277. value: P12W/
  1278. valueReference:
  1279. schemaKey: PropertyValue
  1280. value: dandi:BirthReference
  1281. identifier: A3716
  1282. schemaKey: Participant
  1283. sex:
  1284. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1285. name: Male
  1286. schemaKey: SexType
  1287. species:
  1288. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1289. name: Mus musculus - House mouse
  1290. schemaKey: SpeciesType
  1291. wasGeneratedBy:
  1292. - description: Open field and sleep recording
  1293. identifier: 201015b
  1294. name: 201015b
  1295. schemaKey: Session
  1296. startDate: '2020-10-15T00:00:00-04:00'
  1297. - description: Metadata generated by DANDI cli
  1298. endDate: '2024-03-18T00:23:02.781730Z'
  1299. id: urn:uuid:4e7307a4-a3d6-43ad-a9b4-89fdb751bd57
  1300. name: Metadata generation
  1301. schemaKey: Activity
  1302. startDate: '2024-03-18T00:23:02.440897Z'
  1303. wasAssociatedWith:
  1304. - identifier: RRID:SCR_019009
  1305. name: DANDI Command Line Interface
  1306. schemaKey: Software
  1307. url: https://github.com/dandi/dandi-cli
  1308. version: 0.60.0
  1309. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1310. access:
  1311. - schemaKey: AccessRequirements
  1312. status: dandi:OpenAccess
  1313. approach:
  1314. - name: behavioral approach
  1315. schemaKey: ApproachType
  1316. - name: electrophysiological approach
  1317. schemaKey: ApproachType
  1318. blobDateModified: '2024-03-17T19:51:47.540000Z'
  1319. contentSize: 1659611853
  1320. contentUrl:
  1321. - https://api.dandiarchive.org/api/assets/2ddcce91-ce8c-4c0f-b055-1c20a5d23784/download/
  1322. - https://dandiarchive.s3.amazonaws.com/blobs/c7d/e54/c7de548e-a48b-4700-817e-6e3e156ab41e
  1323. dateModified: '2024-03-18T00:23:50.331446Z'
  1324. datePublished: '2024-03-18T01:50:45.389657+00:00'
  1325. digest:
  1326. dandi:dandi-etag: 6f6a400889a34323924b6b7e6f5d20b1-25
  1327. dandi:sha2-256: 89f32cce8bc67b24c7a2ced28dc1563c0ed222d6ac65a002ca71eb2119e2f7d0
  1328. encodingFormat: application/x-nwb
  1329. id: dandiasset:2ddcce91-ce8c-4c0f-b055-1c20a5d23784
  1330. identifier: 2ddcce91-ce8c-4c0f-b055-1c20a5d23784
  1331. keywords:
  1332. - head-direction
  1333. - postsubiculum
  1334. - extracellular
  1335. - freely-moving
  1336. - electrophysiology
  1337. measurementTechnique:
  1338. - name: spike sorting technique
  1339. schemaKey: MeasurementTechniqueType
  1340. - name: signal filtering technique
  1341. schemaKey: MeasurementTechniqueType
  1342. - name: multi electrode extracellular electrophysiology recording technique
  1343. schemaKey: MeasurementTechniqueType
  1344. - name: analytical technique
  1345. schemaKey: MeasurementTechniqueType
  1346. - name: behavioral technique
  1347. schemaKey: MeasurementTechniqueType
  1348. - name: surgical technique
  1349. schemaKey: MeasurementTechniqueType
  1350. path: sub-A3730/sub-A3730_behavior+ecephys.nwb
  1351. publishedBy:
  1352. endDate: '2024-03-18T01:50:45.389657+00:00'
  1353. id: urn:uuid:a3df0060-5f61-473c-b3de-2e7379575868
  1354. name: DANDI publish
  1355. schemaKey: PublishActivity
  1356. startDate: '2024-03-18T01:50:45.389657+00:00'
  1357. wasAssociatedWith:
  1358. - id: urn:uuid:420971ae-1f76-425c-98ff-735a3fb75716
  1359. identifier: RRID:SCR_017571
  1360. name: DANDI API
  1361. schemaKey: Software
  1362. version: 0.1.0
  1363. schemaKey: Asset
  1364. schemaVersion: 0.6.6
  1365. variableMeasured:
  1366. - schemaKey: PropertyValue
  1367. value: ElectrodeGroup
  1368. - schemaKey: PropertyValue
  1369. value: ElectricalSeries
  1370. - schemaKey: PropertyValue
  1371. value: CompassDirection
  1372. - schemaKey: PropertyValue
  1373. value: SpatialSeries
  1374. - schemaKey: PropertyValue
  1375. value: Position
  1376. - schemaKey: PropertyValue
  1377. value: LFP
  1378. - schemaKey: PropertyValue
  1379. value: ProcessingModule
  1380. - schemaKey: PropertyValue
  1381. value: Units
  1382. wasAttributedTo:
  1383. - age:
  1384. schemaKey: PropertyValue
  1385. unitText: ISO-8601 duration
  1386. value: P12W/
  1387. valueReference:
  1388. schemaKey: PropertyValue
  1389. value: dandi:BirthReference
  1390. identifier: A3730
  1391. schemaKey: Participant
  1392. sex:
  1393. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1394. name: Male
  1395. schemaKey: SexType
  1396. species:
  1397. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1398. name: Mus musculus - House mouse
  1399. schemaKey: SpeciesType
  1400. wasGeneratedBy:
  1401. - description: Open field and sleep recording
  1402. identifier: 210323b
  1403. name: 210323b
  1404. schemaKey: Session
  1405. startDate: '2021-03-23T00:00:00-04:00'
  1406. - description: Metadata generated by DANDI cli
  1407. endDate: '2024-03-18T00:23:50.331424Z'
  1408. id: urn:uuid:762962a2-af12-4dce-b897-e2c4cab86b11
  1409. name: Metadata generation
  1410. schemaKey: Activity
  1411. startDate: '2024-03-18T00:23:50.007248Z'
  1412. wasAssociatedWith:
  1413. - identifier: RRID:SCR_019009
  1414. name: DANDI Command Line Interface
  1415. schemaKey: Software
  1416. url: https://github.com/dandi/dandi-cli
  1417. version: 0.60.0
  1418. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1419. access:
  1420. - schemaKey: AccessRequirements
  1421. status: dandi:OpenAccess
  1422. approach:
  1423. - name: behavioral approach
  1424. schemaKey: ApproachType
  1425. - name: electrophysiological approach
  1426. schemaKey: ApproachType
  1427. blobDateModified: '2024-03-17T18:22:34.380000Z'
  1428. contentSize: 1947281636
  1429. contentUrl:
  1430. - https://api.dandiarchive.org/api/assets/40c65669-9807-4dfb-84d0-a38599fe97b4/download/
  1431. - https://dandiarchive.s3.amazonaws.com/blobs/803/9e0/8039e05c-33b5-4382-81f4-cb440cd27972
  1432. dateModified: '2024-03-18T00:23:44.530467Z'
  1433. datePublished: '2024-03-18T01:50:45.405947+00:00'
  1434. digest:
  1435. dandi:dandi-etag: b435f2ed1d3acb8aed96946ae3b9935a-30
  1436. dandi:sha2-256: 58012437e039ed6b1683f966c74e7e21539808a9903321cad142b9dd5271a1b3
  1437. encodingFormat: application/x-nwb
  1438. id: dandiasset:40c65669-9807-4dfb-84d0-a38599fe97b4
  1439. identifier: 40c65669-9807-4dfb-84d0-a38599fe97b4
  1440. keywords:
  1441. - head-direction
  1442. - postsubiculum
  1443. - extracellular
  1444. - freely-moving
  1445. - electrophysiology
  1446. measurementTechnique:
  1447. - name: spike sorting technique
  1448. schemaKey: MeasurementTechniqueType
  1449. - name: signal filtering technique
  1450. schemaKey: MeasurementTechniqueType
  1451. - name: multi electrode extracellular electrophysiology recording technique
  1452. schemaKey: MeasurementTechniqueType
  1453. - name: analytical technique
  1454. schemaKey: MeasurementTechniqueType
  1455. - name: behavioral technique
  1456. schemaKey: MeasurementTechniqueType
  1457. - name: surgical technique
  1458. schemaKey: MeasurementTechniqueType
  1459. path: sub-A3717/sub-A3717_behavior+ecephys.nwb
  1460. publishedBy:
  1461. endDate: '2024-03-18T01:50:45.405947+00:00'
  1462. id: urn:uuid:336d6261-28bf-4157-9b13-f88ae6c595a4
  1463. name: DANDI publish
  1464. schemaKey: PublishActivity
  1465. startDate: '2024-03-18T01:50:45.405947+00:00'
  1466. wasAssociatedWith:
  1467. - id: urn:uuid:f468c167-d7fd-4129-a07d-d490cb55a56a
  1468. identifier: RRID:SCR_017571
  1469. name: DANDI API
  1470. schemaKey: Software
  1471. version: 0.1.0
  1472. schemaKey: Asset
  1473. schemaVersion: 0.6.6
  1474. variableMeasured:
  1475. - schemaKey: PropertyValue
  1476. value: ElectrodeGroup
  1477. - schemaKey: PropertyValue
  1478. value: ElectricalSeries
  1479. - schemaKey: PropertyValue
  1480. value: CompassDirection
  1481. - schemaKey: PropertyValue
  1482. value: SpatialSeries
  1483. - schemaKey: PropertyValue
  1484. value: Position
  1485. - schemaKey: PropertyValue
  1486. value: LFP
  1487. - schemaKey: PropertyValue
  1488. value: ProcessingModule
  1489. - schemaKey: PropertyValue
  1490. value: Units
  1491. wasAttributedTo:
  1492. - age:
  1493. schemaKey: PropertyValue
  1494. unitText: ISO-8601 duration
  1495. value: P12W/
  1496. valueReference:
  1497. schemaKey: PropertyValue
  1498. value: dandi:BirthReference
  1499. identifier: A3717
  1500. schemaKey: Participant
  1501. sex:
  1502. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1503. name: Male
  1504. schemaKey: SexType
  1505. species:
  1506. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1507. name: Mus musculus - House mouse
  1508. schemaKey: SpeciesType
  1509. wasGeneratedBy:
  1510. - description: Open field and sleep recording
  1511. identifier: '201021'
  1512. name: '201021'
  1513. schemaKey: Session
  1514. startDate: '2020-10-21T00:00:00-04:00'
  1515. - description: Metadata generated by DANDI cli
  1516. endDate: '2024-03-18T00:23:44.530446Z'
  1517. id: urn:uuid:df0bc1fb-295c-4cef-b87b-a572a079fe71
  1518. name: Metadata generation
  1519. schemaKey: Activity
  1520. startDate: '2024-03-18T00:23:44.527247Z'
  1521. wasAssociatedWith:
  1522. - identifier: RRID:SCR_019009
  1523. name: DANDI Command Line Interface
  1524. schemaKey: Software
  1525. url: https://github.com/dandi/dandi-cli
  1526. version: 0.60.0
  1527. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1528. access:
  1529. - schemaKey: AccessRequirements
  1530. status: dandi:OpenAccess
  1531. approach:
  1532. - name: electrophysiological approach
  1533. schemaKey: ApproachType
  1534. - name: behavioral approach
  1535. schemaKey: ApproachType
  1536. blobDateModified: '2024-03-18T00:34:21.470000Z'
  1537. contentSize: 1408992875
  1538. contentUrl:
  1539. - https://api.dandiarchive.org/api/assets/c3fa1591-5fc1-4991-b6a6-9b6d04ee2b64/download/
  1540. - https://dandiarchive.s3.amazonaws.com/blobs/f6a/7ac/f6a7ac46-b37e-454e-b7ff-25166a86542e
  1541. dateModified: '2024-03-18T00:36:12.027114Z'
  1542. datePublished: '2024-03-18T01:50:45.412186+00:00'
  1543. digest:
  1544. dandi:dandi-etag: 2cbb19d8d65c12cf51f42b20db845e13-21
  1545. dandi:sha2-256: 51b1de1d56895bba556b7b608998e2989f169dac0d795deec20a98ef77d28f65
  1546. encodingFormat: application/x-nwb
  1547. id: dandiasset:c3fa1591-5fc1-4991-b6a6-9b6d04ee2b64
  1548. identifier: c3fa1591-5fc1-4991-b6a6-9b6d04ee2b64
  1549. keywords:
  1550. - head-direction
  1551. - postsubiculum
  1552. - extracellular
  1553. - freely-moving
  1554. - electrophysiology
  1555. measurementTechnique:
  1556. - name: surgical technique
  1557. schemaKey: MeasurementTechniqueType
  1558. - name: analytical technique
  1559. schemaKey: MeasurementTechniqueType
  1560. - name: behavioral technique
  1561. schemaKey: MeasurementTechniqueType
  1562. - name: multi electrode extracellular electrophysiology recording technique
  1563. schemaKey: MeasurementTechniqueType
  1564. - name: signal filtering technique
  1565. schemaKey: MeasurementTechniqueType
  1566. - name: spike sorting technique
  1567. schemaKey: MeasurementTechniqueType
  1568. path: sub-A3728/sub-A3728_behavior+ecephys.nwb
  1569. publishedBy:
  1570. endDate: '2024-03-18T01:50:45.412186+00:00'
  1571. id: urn:uuid:af9a5114-a0a3-43c1-b7c7-88b48ae794b1
  1572. name: DANDI publish
  1573. schemaKey: PublishActivity
  1574. startDate: '2024-03-18T01:50:45.412186+00:00'
  1575. wasAssociatedWith:
  1576. - id: urn:uuid:85523a2c-96a8-4d76-9a78-7b0cf51ff7a4
  1577. identifier: RRID:SCR_017571
  1578. name: DANDI API
  1579. schemaKey: Software
  1580. version: 0.1.0
  1581. schemaKey: Asset
  1582. schemaVersion: 0.6.6
  1583. variableMeasured:
  1584. - schemaKey: PropertyValue
  1585. value: Position
  1586. - schemaKey: PropertyValue
  1587. value: ElectrodeGroup
  1588. - schemaKey: PropertyValue
  1589. value: Units
  1590. - schemaKey: PropertyValue
  1591. value: SpatialSeries
  1592. - schemaKey: PropertyValue
  1593. value: LFP
  1594. - schemaKey: PropertyValue
  1595. value: ElectricalSeries
  1596. - schemaKey: PropertyValue
  1597. value: ProcessingModule
  1598. - schemaKey: PropertyValue
  1599. value: CompassDirection
  1600. wasAttributedTo:
  1601. - age:
  1602. schemaKey: PropertyValue
  1603. unitText: ISO-8601 duration
  1604. value: P12W/
  1605. valueReference:
  1606. schemaKey: PropertyValue
  1607. value: dandi:BirthReference
  1608. identifier: A3728
  1609. schemaKey: Participant
  1610. sex:
  1611. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1612. name: Male
  1613. schemaKey: SexType
  1614. species:
  1615. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1616. name: Mus musculus - House mouse
  1617. schemaKey: SpeciesType
  1618. wasGeneratedBy:
  1619. - description: Open field and sleep recording
  1620. identifier: 210309b
  1621. name: 210309b
  1622. schemaKey: Session
  1623. startDate: '2021-03-09T00:00:00-05:00'
  1624. - description: Metadata generated by DANDI cli
  1625. endDate: '2024-03-18T00:36:12.027085Z'
  1626. id: urn:uuid:65c99ff1-9b50-41b0-8aaa-16d66e939bc3
  1627. name: Metadata generation
  1628. schemaKey: Activity
  1629. startDate: '2024-03-18T00:36:12.021953Z'
  1630. wasAssociatedWith:
  1631. - identifier: RRID:SCR_019009
  1632. name: DANDI Command Line Interface
  1633. schemaKey: Software
  1634. url: https://github.com/dandi/dandi-cli
  1635. version: 0.60.0
  1636. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1637. access:
  1638. - schemaKey: AccessRequirements
  1639. status: dandi:OpenAccess
  1640. approach:
  1641. - name: electrophysiological approach
  1642. schemaKey: ApproachType
  1643. - name: behavioral approach
  1644. schemaKey: ApproachType
  1645. blobDateModified: '2024-03-18T00:24:23.160000Z'
  1646. contentSize: 1910687877
  1647. contentUrl:
  1648. - https://api.dandiarchive.org/api/assets/2161c0c2-a75d-4895-bda4-ec888ecc4c28/download/
  1649. - https://dandiarchive.s3.amazonaws.com/blobs/116/986/116986ac-5c9a-4317-bdbe-b4dd1bc7eb70
  1650. dateModified: '2024-03-18T00:36:12.104987Z'
  1651. datePublished: '2024-03-18T01:50:45.417472+00:00'
  1652. digest:
  1653. dandi:dandi-etag: ba6f6c7a01f1cb44c45d26d5167a4c7e-29
  1654. dandi:sha2-256: fbbd8efbc8153313d963ffaac82f6a4f78984e09e24f6110f168a7aaa53b824b
  1655. encodingFormat: application/x-nwb
  1656. id: dandiasset:2161c0c2-a75d-4895-bda4-ec888ecc4c28
  1657. identifier: 2161c0c2-a75d-4895-bda4-ec888ecc4c28
  1658. keywords:
  1659. - head-direction
  1660. - postsubiculum
  1661. - extracellular
  1662. - freely-moving
  1663. - electrophysiology
  1664. measurementTechnique:
  1665. - name: surgical technique
  1666. schemaKey: MeasurementTechniqueType
  1667. - name: analytical technique
  1668. schemaKey: MeasurementTechniqueType
  1669. - name: behavioral technique
  1670. schemaKey: MeasurementTechniqueType
  1671. - name: multi electrode extracellular electrophysiology recording technique
  1672. schemaKey: MeasurementTechniqueType
  1673. - name: signal filtering technique
  1674. schemaKey: MeasurementTechniqueType
  1675. - name: spike sorting technique
  1676. schemaKey: MeasurementTechniqueType
  1677. path: sub-A3723/sub-A3723_behavior+ecephys.nwb
  1678. publishedBy:
  1679. endDate: '2024-03-18T01:50:45.417472+00:00'
  1680. id: urn:uuid:361ac930-b45f-486a-a053-2fa9a7ee4515
  1681. name: DANDI publish
  1682. schemaKey: PublishActivity
  1683. startDate: '2024-03-18T01:50:45.417472+00:00'
  1684. wasAssociatedWith:
  1685. - id: urn:uuid:d50886bf-e7bb-4e60-af57-9771ec1698f2
  1686. identifier: RRID:SCR_017571
  1687. name: DANDI API
  1688. schemaKey: Software
  1689. version: 0.1.0
  1690. schemaKey: Asset
  1691. schemaVersion: 0.6.6
  1692. variableMeasured:
  1693. - schemaKey: PropertyValue
  1694. value: Position
  1695. - schemaKey: PropertyValue
  1696. value: ElectrodeGroup
  1697. - schemaKey: PropertyValue
  1698. value: Units
  1699. - schemaKey: PropertyValue
  1700. value: SpatialSeries
  1701. - schemaKey: PropertyValue
  1702. value: LFP
  1703. - schemaKey: PropertyValue
  1704. value: ElectricalSeries
  1705. - schemaKey: PropertyValue
  1706. value: ProcessingModule
  1707. - schemaKey: PropertyValue
  1708. value: CompassDirection
  1709. wasAttributedTo:
  1710. - age:
  1711. schemaKey: PropertyValue
  1712. unitText: ISO-8601 duration
  1713. value: P12W/
  1714. valueReference:
  1715. schemaKey: PropertyValue
  1716. value: dandi:BirthReference
  1717. identifier: A3723
  1718. schemaKey: Participant
  1719. sex:
  1720. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1721. name: Male
  1722. schemaKey: SexType
  1723. species:
  1724. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1725. name: Mus musculus - House mouse
  1726. schemaKey: SpeciesType
  1727. wasGeneratedBy:
  1728. - description: Open field and sleep recording
  1729. identifier: '201115'
  1730. name: '201115'
  1731. schemaKey: Session
  1732. startDate: '2020-11-15T00:00:00-05:00'
  1733. - description: Metadata generated by DANDI cli
  1734. endDate: '2024-03-18T00:36:12.104962Z'
  1735. id: urn:uuid:4f7589c8-05e6-44b8-8193-cc5ed67412f2
  1736. name: Metadata generation
  1737. schemaKey: Activity
  1738. startDate: '2024-03-18T00:36:12.084120Z'
  1739. wasAssociatedWith:
  1740. - identifier: RRID:SCR_019009
  1741. name: DANDI Command Line Interface
  1742. schemaKey: Software
  1743. url: https://github.com/dandi/dandi-cli
  1744. version: 0.60.0
  1745. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1746. access:
  1747. - schemaKey: AccessRequirements
  1748. status: dandi:OpenAccess
  1749. approach:
  1750. - name: electrophysiological approach
  1751. schemaKey: ApproachType
  1752. - name: behavioral approach
  1753. schemaKey: ApproachType
  1754. blobDateModified: '2024-03-18T00:43:16.960000Z'
  1755. contentSize: 1748968030
  1756. contentUrl:
  1757. - https://api.dandiarchive.org/api/assets/7d3b0430-b358-4b6c-956b-13cec276215b/download/
  1758. - https://dandiarchive.s3.amazonaws.com/blobs/05d/620/05d620c1-a3f7-4a64-bc45-80b38dda8749
  1759. dateModified: '2024-03-18T01:27:28.865624Z'
  1760. datePublished: '2024-03-18T01:50:45.422469+00:00'
  1761. digest:
  1762. dandi:dandi-etag: 367d50aac642d1dbe9e6e0b254df9db7-27
  1763. dandi:sha2-256: a69c05efedf678bc79e41b38347f141b1f8049a9e81fe967d020be0b431b997e
  1764. encodingFormat: application/x-nwb
  1765. id: dandiasset:7d3b0430-b358-4b6c-956b-13cec276215b
  1766. identifier: 7d3b0430-b358-4b6c-956b-13cec276215b
  1767. keywords:
  1768. - head-direction
  1769. - postsubiculum
  1770. - extracellular
  1771. - freely-moving
  1772. - electrophysiology
  1773. measurementTechnique:
  1774. - name: multi electrode extracellular electrophysiology recording technique
  1775. schemaKey: MeasurementTechniqueType
  1776. - name: behavioral technique
  1777. schemaKey: MeasurementTechniqueType
  1778. - name: analytical technique
  1779. schemaKey: MeasurementTechniqueType
  1780. - name: surgical technique
  1781. schemaKey: MeasurementTechniqueType
  1782. - name: spike sorting technique
  1783. schemaKey: MeasurementTechniqueType
  1784. - name: signal filtering technique
  1785. schemaKey: MeasurementTechniqueType
  1786. path: sub-A5505/sub-A5505_behavior+ecephys.nwb
  1787. publishedBy:
  1788. endDate: '2024-03-18T01:50:45.422469+00:00'
  1789. id: urn:uuid:d95a109b-2bb8-474b-8e86-2b7ca1fed651
  1790. name: DANDI publish
  1791. schemaKey: PublishActivity
  1792. startDate: '2024-03-18T01:50:45.422469+00:00'
  1793. wasAssociatedWith:
  1794. - id: urn:uuid:c579af48-0de0-41c3-a895-3a22c9ec86be
  1795. identifier: RRID:SCR_017571
  1796. name: DANDI API
  1797. schemaKey: Software
  1798. version: 0.1.0
  1799. schemaKey: Asset
  1800. schemaVersion: 0.6.6
  1801. variableMeasured:
  1802. - schemaKey: PropertyValue
  1803. value: Position
  1804. - schemaKey: PropertyValue
  1805. value: ProcessingModule
  1806. - schemaKey: PropertyValue
  1807. value: ElectricalSeries
  1808. - schemaKey: PropertyValue
  1809. value: Units
  1810. - schemaKey: PropertyValue
  1811. value: SpatialSeries
  1812. - schemaKey: PropertyValue
  1813. value: ElectrodeGroup
  1814. - schemaKey: PropertyValue
  1815. value: CompassDirection
  1816. - schemaKey: PropertyValue
  1817. value: LFP
  1818. wasAttributedTo:
  1819. - age:
  1820. schemaKey: PropertyValue
  1821. unitText: ISO-8601 duration
  1822. value: P12W/
  1823. valueReference:
  1824. schemaKey: PropertyValue
  1825. value: dandi:BirthReference
  1826. identifier: A5505
  1827. schemaKey: Participant
  1828. sex:
  1829. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1830. name: Male
  1831. schemaKey: SexType
  1832. species:
  1833. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1834. name: Mus musculus - House mouse
  1835. schemaKey: SpeciesType
  1836. wasGeneratedBy:
  1837. - description: Open field and sleep recording
  1838. identifier: '200831'
  1839. name: '200831'
  1840. schemaKey: Session
  1841. startDate: '2020-08-31T00:00:00-04:00'
  1842. - description: Metadata generated by DANDI cli
  1843. endDate: '2024-03-18T01:27:28.865594Z'
  1844. id: urn:uuid:6b5f0ad5-c745-4b07-bcbd-f5c85838752d
  1845. name: Metadata generation
  1846. schemaKey: Activity
  1847. startDate: '2024-03-18T01:27:28.859161Z'
  1848. wasAssociatedWith:
  1849. - identifier: RRID:SCR_019009
  1850. name: DANDI Command Line Interface
  1851. schemaKey: Software
  1852. url: https://github.com/dandi/dandi-cli
  1853. version: 0.60.0
  1854. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1855. access:
  1856. - schemaKey: AccessRequirements
  1857. status: dandi:OpenAccess
  1858. approach:
  1859. - name: electrophysiological approach
  1860. schemaKey: ApproachType
  1861. - name: behavioral approach
  1862. schemaKey: ApproachType
  1863. blobDateModified: '2024-03-18T01:21:31.500000Z'
  1864. contentSize: 1785162854
  1865. contentUrl:
  1866. - https://api.dandiarchive.org/api/assets/f68e763b-b80b-4670-9193-21a5cff4ef71/download/
  1867. - https://dandiarchive.s3.amazonaws.com/blobs/cdf/4d4/cdf4d46b-786c-4ae3-a1f7-cdd6c9ef8a00
  1868. dateModified: '2024-03-18T01:27:31.935751Z'
  1869. datePublished: '2024-03-18T01:50:45.427319+00:00'
  1870. digest:
  1871. dandi:dandi-etag: d71c5f88924d840a87f0dd109adab93b-27
  1872. dandi:sha2-256: baa4558d9015d076e3e011006c6eeb80c38c648031694e756e6cfad3d9af0eb3
  1873. encodingFormat: application/x-nwb
  1874. id: dandiasset:f68e763b-b80b-4670-9193-21a5cff4ef71
  1875. identifier: f68e763b-b80b-4670-9193-21a5cff4ef71
  1876. keywords:
  1877. - head-direction
  1878. - postsubiculum
  1879. - extracellular
  1880. - freely-moving
  1881. - electrophysiology
  1882. measurementTechnique:
  1883. - name: multi electrode extracellular electrophysiology recording technique
  1884. schemaKey: MeasurementTechniqueType
  1885. - name: behavioral technique
  1886. schemaKey: MeasurementTechniqueType
  1887. - name: analytical technique
  1888. schemaKey: MeasurementTechniqueType
  1889. - name: surgical technique
  1890. schemaKey: MeasurementTechniqueType
  1891. - name: spike sorting technique
  1892. schemaKey: MeasurementTechniqueType
  1893. - name: signal filtering technique
  1894. schemaKey: MeasurementTechniqueType
  1895. path: sub-A5508/sub-A5508_behavior+ecephys.nwb
  1896. publishedBy:
  1897. endDate: '2024-03-18T01:50:45.427319+00:00'
  1898. id: urn:uuid:84a34cc0-dbd1-4139-a5b9-b39c5bbda850
  1899. name: DANDI publish
  1900. schemaKey: PublishActivity
  1901. startDate: '2024-03-18T01:50:45.427319+00:00'
  1902. wasAssociatedWith:
  1903. - id: urn:uuid:c2a15d09-62cf-4540-956d-8f9cd5a1685a
  1904. identifier: RRID:SCR_017571
  1905. name: DANDI API
  1906. schemaKey: Software
  1907. version: 0.1.0
  1908. schemaKey: Asset
  1909. schemaVersion: 0.6.6
  1910. variableMeasured:
  1911. - schemaKey: PropertyValue
  1912. value: Position
  1913. - schemaKey: PropertyValue
  1914. value: ProcessingModule
  1915. - schemaKey: PropertyValue
  1916. value: ElectricalSeries
  1917. - schemaKey: PropertyValue
  1918. value: Units
  1919. - schemaKey: PropertyValue
  1920. value: SpatialSeries
  1921. - schemaKey: PropertyValue
  1922. value: ElectrodeGroup
  1923. - schemaKey: PropertyValue
  1924. value: CompassDirection
  1925. - schemaKey: PropertyValue
  1926. value: LFP
  1927. wasAttributedTo:
  1928. - age:
  1929. schemaKey: PropertyValue
  1930. unitText: ISO-8601 duration
  1931. value: P12W/
  1932. valueReference:
  1933. schemaKey: PropertyValue
  1934. value: dandi:BirthReference
  1935. identifier: A5508
  1936. schemaKey: Participant
  1937. sex:
  1938. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1939. name: Male
  1940. schemaKey: SexType
  1941. species:
  1942. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1943. name: Mus musculus - House mouse
  1944. schemaKey: SpeciesType
  1945. wasGeneratedBy:
  1946. - description: Open field and sleep recording
  1947. identifier: '200930'
  1948. name: '200930'
  1949. schemaKey: Session
  1950. startDate: '2020-09-30T00:00:00-04:00'
  1951. - description: Metadata generated by DANDI cli
  1952. endDate: '2024-03-18T01:27:31.935722Z'
  1953. id: urn:uuid:22843216-47fe-4045-bede-601802564faa
  1954. name: Metadata generation
  1955. schemaKey: Activity
  1956. startDate: '2024-03-18T01:27:31.932233Z'
  1957. wasAssociatedWith:
  1958. - identifier: RRID:SCR_019009
  1959. name: DANDI Command Line Interface
  1960. schemaKey: Software
  1961. url: https://github.com/dandi/dandi-cli
  1962. version: 0.60.0
  1963. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1964. access:
  1965. - schemaKey: AccessRequirements
  1966. status: dandi:OpenAccess
  1967. approach:
  1968. - name: electrophysiological approach
  1969. schemaKey: ApproachType
  1970. - name: behavioral approach
  1971. schemaKey: ApproachType
  1972. blobDateModified: '2024-03-18T01:09:32.670000Z'
  1973. contentSize: 1939471145
  1974. contentUrl:
  1975. - https://api.dandiarchive.org/api/assets/5f5f9323-a2ef-4acf-be9f-4ed713492991/download/
  1976. - https://dandiarchive.s3.amazonaws.com/blobs/5a9/c00/5a9c008b-2d1c-4cf3-a5b7-5a0845e3a96d
  1977. dateModified: '2024-03-18T01:27:30.038396Z'
  1978. datePublished: '2024-03-18T01:50:45.435503+00:00'
  1979. digest:
  1980. dandi:dandi-etag: f49194a861e05b5b3e0e9f833a90461f-29
  1981. dandi:sha2-256: b7de87109e01eb72163d5a5db10581e5a5637cfa42f74bc83659c65c6818d1b0
  1982. encodingFormat: application/x-nwb
  1983. id: dandiasset:5f5f9323-a2ef-4acf-be9f-4ed713492991
  1984. identifier: 5f5f9323-a2ef-4acf-be9f-4ed713492991
  1985. keywords:
  1986. - head-direction
  1987. - postsubiculum
  1988. - extracellular
  1989. - freely-moving
  1990. - electrophysiology
  1991. measurementTechnique:
  1992. - name: multi electrode extracellular electrophysiology recording technique
  1993. schemaKey: MeasurementTechniqueType
  1994. - name: behavioral technique
  1995. schemaKey: MeasurementTechniqueType
  1996. - name: analytical technique
  1997. schemaKey: MeasurementTechniqueType
  1998. - name: surgical technique
  1999. schemaKey: MeasurementTechniqueType
  2000. - name: spike sorting technique
  2001. schemaKey: MeasurementTechniqueType
  2002. - name: signal filtering technique
  2003. schemaKey: MeasurementTechniqueType
  2004. path: sub-A5507/sub-A5507_behavior+ecephys.nwb
  2005. publishedBy:
  2006. endDate: '2024-03-18T01:50:45.435503+00:00'
  2007. id: urn:uuid:921ba1d9-ebc7-41c8-ab0a-973b15b4cf7d
  2008. name: DANDI publish
  2009. schemaKey: PublishActivity
  2010. startDate: '2024-03-18T01:50:45.435503+00:00'
  2011. wasAssociatedWith:
  2012. - id: urn:uuid:d37e3a25-723b-41f7-8932-180de773d80a
  2013. identifier: RRID:SCR_017571
  2014. name: DANDI API
  2015. schemaKey: Software
  2016. version: 0.1.0
  2017. schemaKey: Asset
  2018. schemaVersion: 0.6.6
  2019. variableMeasured:
  2020. - schemaKey: PropertyValue
  2021. value: Position
  2022. - schemaKey: PropertyValue
  2023. value: ProcessingModule
  2024. - schemaKey: PropertyValue
  2025. value: ElectricalSeries
  2026. - schemaKey: PropertyValue
  2027. value: Units
  2028. - schemaKey: PropertyValue
  2029. value: SpatialSeries
  2030. - schemaKey: PropertyValue
  2031. value: ElectrodeGroup
  2032. - schemaKey: PropertyValue
  2033. value: CompassDirection
  2034. - schemaKey: PropertyValue
  2035. value: LFP
  2036. wasAttributedTo:
  2037. - age:
  2038. schemaKey: PropertyValue
  2039. unitText: ISO-8601 duration
  2040. value: P12W/
  2041. valueReference:
  2042. schemaKey: PropertyValue
  2043. value: dandi:BirthReference
  2044. identifier: A5507
  2045. schemaKey: Participant
  2046. sex:
  2047. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2048. name: Male
  2049. schemaKey: SexType
  2050. species:
  2051. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2052. name: Mus musculus - House mouse
  2053. schemaKey: SpeciesType
  2054. wasGeneratedBy:
  2055. - description: Open field and sleep recording
  2056. identifier: '200920'
  2057. name: '200920'
  2058. schemaKey: Session
  2059. startDate: '2020-09-20T00:00:00-04:00'
  2060. - description: Metadata generated by DANDI cli
  2061. endDate: '2024-03-18T01:27:30.038373Z'
  2062. id: urn:uuid:d5a433b3-16b5-4ee4-a229-5e295b4ed5bf
  2063. name: Metadata generation
  2064. schemaKey: Activity
  2065. startDate: '2024-03-18T01:27:30.035580Z'
  2066. wasAssociatedWith:
  2067. - identifier: RRID:SCR_019009
  2068. name: DANDI Command Line Interface
  2069. schemaKey: Software
  2070. url: https://github.com/dandi/dandi-cli
  2071. version: 0.60.0
  2072. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  2073. access:
  2074. - schemaKey: AccessRequirements
  2075. status: dandi:OpenAccess
  2076. approach:
  2077. - name: electrophysiological approach
  2078. schemaKey: ApproachType
  2079. - name: behavioral approach
  2080. schemaKey: ApproachType
  2081. blobDateModified: '2024-03-18T01:40:18.950000Z'
  2082. contentSize: 1752465467
  2083. contentUrl:
  2084. - https://api.dandiarchive.org/api/assets/618b6264-19e5-45f2-96d6-c79fa82f2efb/download/
  2085. - https://dandiarchive.s3.amazonaws.com/blobs/684/c94/684c9427-60e8-44cf-800a-84a6edd0e6bd
  2086. dateModified: '2024-03-18T01:42:06.700948Z'
  2087. datePublished: '2024-03-18T01:50:45.440999+00:00'
  2088. digest:
  2089. dandi:dandi-etag: 34bbe4b0203c80d98259c246ef08b05a-27
  2090. dandi:sha2-256: 33330f4c0e84291a22b6b7ecc9de31ed77de26f8fb2f6c522425e8b5113b5a95
  2091. encodingFormat: application/x-nwb
  2092. id: dandiasset:618b6264-19e5-45f2-96d6-c79fa82f2efb
  2093. identifier: 618b6264-19e5-45f2-96d6-c79fa82f2efb
  2094. keywords:
  2095. - head-direction
  2096. - postsubiculum
  2097. - extracellular
  2098. - freely-moving
  2099. - electrophysiology
  2100. measurementTechnique:
  2101. - name: multi electrode extracellular electrophysiology recording technique
  2102. schemaKey: MeasurementTechniqueType
  2103. - name: analytical technique
  2104. schemaKey: MeasurementTechniqueType
  2105. - name: spike sorting technique
  2106. schemaKey: MeasurementTechniqueType
  2107. - name: surgical technique
  2108. schemaKey: MeasurementTechniqueType
  2109. - name: signal filtering technique
  2110. schemaKey: MeasurementTechniqueType
  2111. - name: behavioral technique
  2112. schemaKey: MeasurementTechniqueType
  2113. path: sub-A5506/sub-A5506_behavior+ecephys.nwb
  2114. publishedBy:
  2115. endDate: '2024-03-18T01:50:45.440999+00:00'
  2116. id: urn:uuid:94b456aa-2fca-4632-af96-17465a42589f
  2117. name: DANDI publish
  2118. schemaKey: PublishActivity
  2119. startDate: '2024-03-18T01:50:45.440999+00:00'
  2120. wasAssociatedWith:
  2121. - id: urn:uuid:2dcda31d-b9f7-4f04-b7da-930b34b56df2
  2122. identifier: RRID:SCR_017571
  2123. name: DANDI API
  2124. schemaKey: Software
  2125. version: 0.1.0
  2126. schemaKey: Asset
  2127. schemaVersion: 0.6.6
  2128. variableMeasured:
  2129. - schemaKey: PropertyValue
  2130. value: SpatialSeries
  2131. - schemaKey: PropertyValue
  2132. value: ElectrodeGroup
  2133. - schemaKey: PropertyValue
  2134. value: CompassDirection
  2135. - schemaKey: PropertyValue
  2136. value: ProcessingModule
  2137. - schemaKey: PropertyValue
  2138. value: LFP
  2139. - schemaKey: PropertyValue
  2140. value: Position
  2141. - schemaKey: PropertyValue
  2142. value: ElectricalSeries
  2143. - schemaKey: PropertyValue
  2144. value: Units
  2145. wasAttributedTo:
  2146. - age:
  2147. schemaKey: PropertyValue
  2148. unitText: ISO-8601 duration
  2149. value: P12W/
  2150. valueReference:
  2151. schemaKey: PropertyValue
  2152. value: dandi:BirthReference
  2153. identifier: A5506
  2154. schemaKey: Participant
  2155. sex:
  2156. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2157. name: Male
  2158. schemaKey: SexType
  2159. species:
  2160. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2161. name: Mus musculus - House mouse
  2162. schemaKey: SpeciesType
  2163. wasGeneratedBy:
  2164. - description: Open field and sleep recording
  2165. identifier: 200914a
  2166. name: 200914a
  2167. schemaKey: Session
  2168. startDate: '2020-09-14T00:00:00-04:00'
  2169. - description: Metadata generated by DANDI cli
  2170. endDate: '2024-03-18T01:42:06.700918Z'
  2171. id: urn:uuid:fd9522c8-5a3a-4af7-894f-4125c583f0fb
  2172. name: Metadata generation
  2173. schemaKey: Activity
  2174. startDate: '2024-03-18T01:42:06.696583Z'
  2175. wasAssociatedWith:
  2176. - identifier: RRID:SCR_019009
  2177. name: DANDI Command Line Interface
  2178. schemaKey: Software
  2179. url: https://github.com/dandi/dandi-cli
  2180. version: 0.60.0
Tip!

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

Comments

Loading...