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

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: electrophysiological approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2023-03-23T05:13:48.220000+00:00'
  9. contentSize: 1839543072
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/2e6b590a-a2a4-4455-bb9b-45cc3d7d7cc0/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/b99/e98/b99e985f-88d6-4747-beb5-04ccaaadde2a
  13. dateModified: '2023-03-29T18:24:50.990870+00:00'
  14. datePublished: '2025-07-11T17:56:13.751463+00:00'
  15. digest:
  16. dandi:dandi-etag: 0a478b42bb8c4b711f2971722ed53187-28
  17. dandi:sha2-256: 7c2dff6c2dae3c987a82f4e27e513104fe7abe6f6c496d929d9107f1b0cde601
  18. encodingFormat: application/x-nwb
  19. id: dandiasset:2e6b590a-a2a4-4455-bb9b-45cc3d7d7cc0
  20. identifier: 2e6b590a-a2a4-4455-bb9b-45cc3d7d7cc0
  21. measurementTechnique:
  22. - name: surgical technique
  23. schemaKey: MeasurementTechniqueType
  24. - name: multi electrode extracellular electrophysiology recording technique
  25. schemaKey: MeasurementTechniqueType
  26. - name: analytical technique
  27. schemaKey: MeasurementTechniqueType
  28. - name: signal filtering technique
  29. schemaKey: MeasurementTechniqueType
  30. path: sub-BH395/sub-BH395_ses-20221213T195834_ecephys.nwb
  31. publishedBy:
  32. endDate: '2025-07-11T17:56:13.751463+00:00'
  33. id: urn:uuid:1a5f5264-b51e-41bf-80f3-e7394d04086d
  34. name: DANDI publish
  35. schemaKey: PublishActivity
  36. startDate: '2025-07-11T17:56:13.751463+00:00'
  37. wasAssociatedWith:
  38. - id: urn:uuid:2d6ef60a-5ade-4c27-9036-0fb5656f6999
  39. identifier: RRID:SCR_017571
  40. name: DANDI API
  41. schemaKey: Software
  42. version: 0.1.0
  43. schemaKey: Asset
  44. schemaVersion: 0.6.4
  45. variableMeasured:
  46. - schemaKey: PropertyValue
  47. value: LFP
  48. - schemaKey: PropertyValue
  49. value: ElectricalSeries
  50. - schemaKey: PropertyValue
  51. value: ProcessingModule
  52. - schemaKey: PropertyValue
  53. value: ElectrodeGroup
  54. wasAttributedTo:
  55. - age:
  56. schemaKey: PropertyValue
  57. unitText: ISO-8601 duration
  58. value: P24W
  59. valueReference:
  60. schemaKey: PropertyValue
  61. value: dandi:BirthReference
  62. identifier: BH395
  63. schemaKey: Participant
  64. sex:
  65. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  66. name: Male
  67. schemaKey: SexType
  68. species:
  69. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  70. name: Rattus norvegicus - Norway rat
  71. schemaKey: SpeciesType
  72. wasGeneratedBy:
  73. - description: Rat Ultrasound Array Stimulation
  74. name: Acquisition session
  75. schemaKey: Session
  76. startDate: '2022-12-13T19:58:34-08:00'
  77. - description: Metadata generated by DANDI cli
  78. endDate: '2023-03-29T18:24:50.990789+00:00'
  79. id: urn:uuid:5110d480-fa85-4de5-b292-38f7de587413
  80. name: Metadata generation
  81. schemaKey: Activity
  82. startDate: '2023-03-29T18:24:45.016130+00:00'
  83. wasAssociatedWith:
  84. - identifier: RRID:SCR_019009
  85. name: DANDI Command Line Interface
  86. schemaKey: Software
  87. url: https://github.com/dandi/dandi-cli
  88. version: 0.51.0
  89. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  90. access:
  91. - schemaKey: AccessRequirements
  92. status: dandi:OpenAccess
  93. approach:
  94. - name: electrophysiological approach
  95. schemaKey: ApproachType
  96. blobDateModified: '2023-03-28T22:09:16.483000+00:00'
  97. contentSize: 2030646048
  98. contentUrl:
  99. - https://api.dandiarchive.org/api/assets/525e0586-28a0-4241-9cd8-158dfdfbf798/download/
  100. - https://dandiarchive.s3.amazonaws.com/blobs/d6f/30f/d6f30f97-30d5-4f81-8889-bea27bb6c10d
  101. dateModified: '2023-03-29T18:25:54.966651+00:00'
  102. datePublished: '2025-07-11T17:56:13.763023+00:00'
  103. digest:
  104. dandi:dandi-etag: d5ae57326c40e7149c36960b54ccdaa0-31
  105. dandi:sha2-256: eb34e0091571f8d53f785fcf7b130e9f3a0460bd1c4d4ba8942e1514288f7006
  106. encodingFormat: application/x-nwb
  107. id: dandiasset:525e0586-28a0-4241-9cd8-158dfdfbf798
  108. identifier: 525e0586-28a0-4241-9cd8-158dfdfbf798
  109. measurementTechnique:
  110. - name: surgical technique
  111. schemaKey: MeasurementTechniqueType
  112. - name: multi electrode extracellular electrophysiology recording technique
  113. schemaKey: MeasurementTechniqueType
  114. - name: analytical technique
  115. schemaKey: MeasurementTechniqueType
  116. - name: signal filtering technique
  117. schemaKey: MeasurementTechniqueType
  118. path: sub-BH444/sub-BH444_ses-20230214T230505_ecephys.nwb
  119. publishedBy:
  120. endDate: '2025-07-11T17:56:13.763023+00:00'
  121. id: urn:uuid:c537c2d4-2d97-4874-b2a4-c2b0665b5aa9
  122. name: DANDI publish
  123. schemaKey: PublishActivity
  124. startDate: '2025-07-11T17:56:13.763023+00:00'
  125. wasAssociatedWith:
  126. - id: urn:uuid:2a42c631-90d2-4d20-ba3a-7aa49cdeeee8
  127. identifier: RRID:SCR_017571
  128. name: DANDI API
  129. schemaKey: Software
  130. version: 0.1.0
  131. schemaKey: Asset
  132. schemaVersion: 0.6.4
  133. variableMeasured:
  134. - schemaKey: PropertyValue
  135. value: LFP
  136. - schemaKey: PropertyValue
  137. value: ElectricalSeries
  138. - schemaKey: PropertyValue
  139. value: ProcessingModule
  140. - schemaKey: PropertyValue
  141. value: ElectrodeGroup
  142. wasAttributedTo:
  143. - age:
  144. schemaKey: PropertyValue
  145. unitText: ISO-8601 duration
  146. value: P24W
  147. valueReference:
  148. schemaKey: PropertyValue
  149. value: dandi:BirthReference
  150. identifier: BH444
  151. schemaKey: Participant
  152. sex:
  153. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  154. name: Male
  155. schemaKey: SexType
  156. species:
  157. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  158. name: Rattus norvegicus - Norway rat
  159. schemaKey: SpeciesType
  160. wasGeneratedBy:
  161. - description: Rat Ultrasound Array Stimulation
  162. name: Acquisition session
  163. schemaKey: Session
  164. startDate: '2023-02-14T23:05:05-08:00'
  165. - description: Metadata generated by DANDI cli
  166. endDate: '2023-03-29T18:25:54.966590+00:00'
  167. id: urn:uuid:3f4e26e2-6923-44d1-9592-89573f0cbe77
  168. name: Metadata generation
  169. schemaKey: Activity
  170. startDate: '2023-03-29T18:25:54.912500+00:00'
  171. wasAssociatedWith:
  172. - identifier: RRID:SCR_019009
  173. name: DANDI Command Line Interface
  174. schemaKey: Software
  175. url: https://github.com/dandi/dandi-cli
  176. version: 0.51.0
  177. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  178. access:
  179. - schemaKey: AccessRequirements
  180. status: dandi:OpenAccess
  181. approach:
  182. - name: electrophysiological approach
  183. schemaKey: ApproachType
  184. blobDateModified: '2023-03-23T05:28:38.169000+00:00'
  185. contentSize: 4427222472
  186. contentUrl:
  187. - https://api.dandiarchive.org/api/assets/f93b0cdc-a5c7-4339-9c81-0eb91ea91c36/download/
  188. - https://dandiarchive.s3.amazonaws.com/blobs/1c6/5fa/1c65faf2-61ea-48c2-bc9a-1b61befb8e3b
  189. dateModified: '2023-03-29T18:25:45.561015+00:00'
  190. datePublished: '2025-07-11T17:56:13.772655+00:00'
  191. digest:
  192. dandi:dandi-etag: 1a91579e5dceac9953447a469c88ed5e-66
  193. dandi:sha2-256: 6ad0ecf4a5280282263c1ac45284377950e091723586788c399793f59b10fa2a
  194. encodingFormat: application/x-nwb
  195. id: dandiasset:f93b0cdc-a5c7-4339-9c81-0eb91ea91c36
  196. identifier: f93b0cdc-a5c7-4339-9c81-0eb91ea91c36
  197. measurementTechnique:
  198. - name: surgical technique
  199. schemaKey: MeasurementTechniqueType
  200. - name: multi electrode extracellular electrophysiology recording technique
  201. schemaKey: MeasurementTechniqueType
  202. - name: analytical technique
  203. schemaKey: MeasurementTechniqueType
  204. - name: signal filtering technique
  205. schemaKey: MeasurementTechniqueType
  206. path: sub-BH395/sub-BH395_ses-20221213T185547_ecephys.nwb
  207. publishedBy:
  208. endDate: '2025-07-11T17:56:13.772655+00:00'
  209. id: urn:uuid:1d7d8903-bc6e-4015-a310-ec07a5ad4bff
  210. name: DANDI publish
  211. schemaKey: PublishActivity
  212. startDate: '2025-07-11T17:56:13.772655+00:00'
  213. wasAssociatedWith:
  214. - id: urn:uuid:9351343f-f6bb-4f79-99a1-6569680f21da
  215. identifier: RRID:SCR_017571
  216. name: DANDI API
  217. schemaKey: Software
  218. version: 0.1.0
  219. schemaKey: Asset
  220. schemaVersion: 0.6.4
  221. variableMeasured:
  222. - schemaKey: PropertyValue
  223. value: LFP
  224. - schemaKey: PropertyValue
  225. value: ElectricalSeries
  226. - schemaKey: PropertyValue
  227. value: ProcessingModule
  228. - schemaKey: PropertyValue
  229. value: ElectrodeGroup
  230. wasAttributedTo:
  231. - age:
  232. schemaKey: PropertyValue
  233. unitText: ISO-8601 duration
  234. value: P24W
  235. valueReference:
  236. schemaKey: PropertyValue
  237. value: dandi:BirthReference
  238. identifier: BH395
  239. schemaKey: Participant
  240. sex:
  241. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  242. name: Male
  243. schemaKey: SexType
  244. species:
  245. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  246. name: Rattus norvegicus - Norway rat
  247. schemaKey: SpeciesType
  248. wasGeneratedBy:
  249. - description: Rat Ultrasound Array Stimulation
  250. name: Acquisition session
  251. schemaKey: Session
  252. startDate: '2022-12-13T18:55:47-08:00'
  253. - description: Metadata generated by DANDI cli
  254. endDate: '2023-03-29T18:25:45.560984+00:00'
  255. id: urn:uuid:26118de1-b4e0-4bc6-af38-856eb384500d
  256. name: Metadata generation
  257. schemaKey: Activity
  258. startDate: '2023-03-29T18:25:45.429684+00:00'
  259. wasAssociatedWith:
  260. - identifier: RRID:SCR_019009
  261. name: DANDI Command Line Interface
  262. schemaKey: Software
  263. url: https://github.com/dandi/dandi-cli
  264. version: 0.51.0
  265. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  266. access:
  267. - schemaKey: AccessRequirements
  268. status: dandi:OpenAccess
  269. approach:
  270. - name: electrophysiological approach
  271. schemaKey: ApproachType
  272. blobDateModified: '2023-03-23T05:28:36.559000+00:00'
  273. contentSize: 4467208992
  274. contentUrl:
  275. - https://api.dandiarchive.org/api/assets/70040a17-bfc9-4ab1-b1b1-13e1c118d4df/download/
  276. - https://dandiarchive.s3.amazonaws.com/blobs/082/8f8/0828f847-62e9-443f-8241-3960985ddab3
  277. dateModified: '2023-03-29T18:25:45.540322+00:00'
  278. datePublished: '2025-07-11T17:56:13.781724+00:00'
  279. digest:
  280. dandi:dandi-etag: 664b5da8cc27c449ed4471f68ab653e7-67
  281. dandi:sha2-256: a737cbfd0fe131beb4fbf72d32f0e75425c65f59bdb7c59a81560624602528ad
  282. encodingFormat: application/x-nwb
  283. id: dandiasset:70040a17-bfc9-4ab1-b1b1-13e1c118d4df
  284. identifier: 70040a17-bfc9-4ab1-b1b1-13e1c118d4df
  285. measurementTechnique:
  286. - name: surgical technique
  287. schemaKey: MeasurementTechniqueType
  288. - name: multi electrode extracellular electrophysiology recording technique
  289. schemaKey: MeasurementTechniqueType
  290. - name: analytical technique
  291. schemaKey: MeasurementTechniqueType
  292. - name: signal filtering technique
  293. schemaKey: MeasurementTechniqueType
  294. path: sub-BH395/sub-BH395_ses-20221213T174039_ecephys.nwb
  295. publishedBy:
  296. endDate: '2025-07-11T17:56:13.781724+00:00'
  297. id: urn:uuid:697832ca-7b8b-4957-8643-4b7ec91d3353
  298. name: DANDI publish
  299. schemaKey: PublishActivity
  300. startDate: '2025-07-11T17:56:13.781724+00:00'
  301. wasAssociatedWith:
  302. - id: urn:uuid:c8d8075f-e84d-4d02-8be1-0c62383148d2
  303. identifier: RRID:SCR_017571
  304. name: DANDI API
  305. schemaKey: Software
  306. version: 0.1.0
  307. schemaKey: Asset
  308. schemaVersion: 0.6.4
  309. variableMeasured:
  310. - schemaKey: PropertyValue
  311. value: LFP
  312. - schemaKey: PropertyValue
  313. value: ElectricalSeries
  314. - schemaKey: PropertyValue
  315. value: ProcessingModule
  316. - schemaKey: PropertyValue
  317. value: ElectrodeGroup
  318. wasAttributedTo:
  319. - age:
  320. schemaKey: PropertyValue
  321. unitText: ISO-8601 duration
  322. value: P24W
  323. valueReference:
  324. schemaKey: PropertyValue
  325. value: dandi:BirthReference
  326. identifier: BH395
  327. schemaKey: Participant
  328. sex:
  329. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  330. name: Male
  331. schemaKey: SexType
  332. species:
  333. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  334. name: Rattus norvegicus - Norway rat
  335. schemaKey: SpeciesType
  336. wasGeneratedBy:
  337. - description: Rat Ultrasound Array Stimulation
  338. name: Acquisition session
  339. schemaKey: Session
  340. startDate: '2022-12-13T17:40:39-08:00'
  341. - description: Metadata generated by DANDI cli
  342. endDate: '2023-03-29T18:25:45.540284+00:00'
  343. id: urn:uuid:3501fb26-63a1-4239-8c1c-cb4aaf8db150
  344. name: Metadata generation
  345. schemaKey: Activity
  346. startDate: '2023-03-29T18:25:45.224232+00:00'
  347. wasAssociatedWith:
  348. - identifier: RRID:SCR_019009
  349. name: DANDI Command Line Interface
  350. schemaKey: Software
  351. url: https://github.com/dandi/dandi-cli
  352. version: 0.51.0
  353. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  354. access:
  355. - schemaKey: AccessRequirements
  356. status: dandi:OpenAccess
  357. approach:
  358. - name: electrophysiological approach
  359. schemaKey: ApproachType
  360. blobDateModified: '2023-03-23T05:28:51.619000+00:00'
  361. contentSize: 4527665952
  362. contentUrl:
  363. - https://api.dandiarchive.org/api/assets/9595a8fb-5d11-4653-a36e-72a319de680f/download/
  364. - https://dandiarchive.s3.amazonaws.com/blobs/9c7/4e6/9c74e651-2a78-406a-9036-999ac65d5646
  365. dateModified: '2023-03-29T18:25:45.567696+00:00'
  366. datePublished: '2025-07-11T17:56:13.793529+00:00'
  367. digest:
  368. dandi:dandi-etag: 129622ef737db2ed1f54f3e8eb2a171f-68
  369. dandi:sha2-256: bd789dc92cb33cbf3e8d80e906efed238f7af56d5b8103022e21164f10dfe83a
  370. encodingFormat: application/x-nwb
  371. id: dandiasset:9595a8fb-5d11-4653-a36e-72a319de680f
  372. identifier: 9595a8fb-5d11-4653-a36e-72a319de680f
  373. measurementTechnique:
  374. - name: surgical technique
  375. schemaKey: MeasurementTechniqueType
  376. - name: multi electrode extracellular electrophysiology recording technique
  377. schemaKey: MeasurementTechniqueType
  378. - name: analytical technique
  379. schemaKey: MeasurementTechniqueType
  380. - name: signal filtering technique
  381. schemaKey: MeasurementTechniqueType
  382. path: sub-BH395/sub-BH395_ses-20221213T183140_ecephys.nwb
  383. publishedBy:
  384. endDate: '2025-07-11T17:56:13.793529+00:00'
  385. id: urn:uuid:137322b7-6506-494b-8513-5be0413fb963
  386. name: DANDI publish
  387. schemaKey: PublishActivity
  388. startDate: '2025-07-11T17:56:13.793529+00:00'
  389. wasAssociatedWith:
  390. - id: urn:uuid:c7e0d5a5-655f-49b0-b611-6654588dfa0c
  391. identifier: RRID:SCR_017571
  392. name: DANDI API
  393. schemaKey: Software
  394. version: 0.1.0
  395. schemaKey: Asset
  396. schemaVersion: 0.6.4
  397. variableMeasured:
  398. - schemaKey: PropertyValue
  399. value: LFP
  400. - schemaKey: PropertyValue
  401. value: ElectricalSeries
  402. - schemaKey: PropertyValue
  403. value: ProcessingModule
  404. - schemaKey: PropertyValue
  405. value: ElectrodeGroup
  406. wasAttributedTo:
  407. - age:
  408. schemaKey: PropertyValue
  409. unitText: ISO-8601 duration
  410. value: P24W
  411. valueReference:
  412. schemaKey: PropertyValue
  413. value: dandi:BirthReference
  414. identifier: BH395
  415. schemaKey: Participant
  416. sex:
  417. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  418. name: Male
  419. schemaKey: SexType
  420. species:
  421. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  422. name: Rattus norvegicus - Norway rat
  423. schemaKey: SpeciesType
  424. wasGeneratedBy:
  425. - description: Rat Ultrasound Array Stimulation
  426. name: Acquisition session
  427. schemaKey: Session
  428. startDate: '2022-12-13T18:31:40-08:00'
  429. - description: Metadata generated by DANDI cli
  430. endDate: '2023-03-29T18:25:45.567666+00:00'
  431. id: urn:uuid:c4304fb4-48f5-4a72-b89a-305239b14ccc
  432. name: Metadata generation
  433. schemaKey: Activity
  434. startDate: '2023-03-29T18:25:45.388828+00:00'
  435. wasAssociatedWith:
  436. - identifier: RRID:SCR_019009
  437. name: DANDI Command Line Interface
  438. schemaKey: Software
  439. url: https://github.com/dandi/dandi-cli
  440. version: 0.51.0
  441. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  442. access:
  443. - schemaKey: AccessRequirements
  444. status: dandi:OpenAccess
  445. approach:
  446. - name: electrophysiological approach
  447. schemaKey: ApproachType
  448. blobDateModified: '2023-03-23T05:28:44.809000+00:00'
  449. contentSize: 4484018976
  450. contentUrl:
  451. - https://api.dandiarchive.org/api/assets/e2101d55-ff91-42d2-bfcb-ba763a4d2759/download/
  452. - https://dandiarchive.s3.amazonaws.com/blobs/b37/ff1/b37ff19b-fe62-428d-8831-8619c00920ce
  453. dateModified: '2023-03-29T18:25:45.541953+00:00'
  454. datePublished: '2025-07-11T17:56:13.806550+00:00'
  455. digest:
  456. dandi:dandi-etag: 7dbbde63ca15ec08d524a90d16b01b01-67
  457. dandi:sha2-256: d5ef2bdf0f6b6c0c50d3810df631f9ad74009ddb79966fdf27012b4bf1c32f36
  458. encodingFormat: application/x-nwb
  459. id: dandiasset:e2101d55-ff91-42d2-bfcb-ba763a4d2759
  460. identifier: e2101d55-ff91-42d2-bfcb-ba763a4d2759
  461. measurementTechnique:
  462. - name: surgical technique
  463. schemaKey: MeasurementTechniqueType
  464. - name: multi electrode extracellular electrophysiology recording technique
  465. schemaKey: MeasurementTechniqueType
  466. - name: analytical technique
  467. schemaKey: MeasurementTechniqueType
  468. - name: signal filtering technique
  469. schemaKey: MeasurementTechniqueType
  470. path: sub-BH395/sub-BH395_ses-20221213T180853_ecephys.nwb
  471. publishedBy:
  472. endDate: '2025-07-11T17:56:13.806550+00:00'
  473. id: urn:uuid:3d348555-85d7-4ec6-bf20-ebc54191c07a
  474. name: DANDI publish
  475. schemaKey: PublishActivity
  476. startDate: '2025-07-11T17:56:13.806550+00:00'
  477. wasAssociatedWith:
  478. - id: urn:uuid:f37e30d4-4998-486e-82e9-70adff57c738
  479. identifier: RRID:SCR_017571
  480. name: DANDI API
  481. schemaKey: Software
  482. version: 0.1.0
  483. schemaKey: Asset
  484. schemaVersion: 0.6.4
  485. variableMeasured:
  486. - schemaKey: PropertyValue
  487. value: LFP
  488. - schemaKey: PropertyValue
  489. value: ElectricalSeries
  490. - schemaKey: PropertyValue
  491. value: ProcessingModule
  492. - schemaKey: PropertyValue
  493. value: ElectrodeGroup
  494. wasAttributedTo:
  495. - age:
  496. schemaKey: PropertyValue
  497. unitText: ISO-8601 duration
  498. value: P24W
  499. valueReference:
  500. schemaKey: PropertyValue
  501. value: dandi:BirthReference
  502. identifier: BH395
  503. schemaKey: Participant
  504. sex:
  505. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  506. name: Male
  507. schemaKey: SexType
  508. species:
  509. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  510. name: Rattus norvegicus - Norway rat
  511. schemaKey: SpeciesType
  512. wasGeneratedBy:
  513. - description: Rat Ultrasound Array Stimulation
  514. name: Acquisition session
  515. schemaKey: Session
  516. startDate: '2022-12-13T18:08:53-08:00'
  517. - description: Metadata generated by DANDI cli
  518. endDate: '2023-03-29T18:25:45.541923+00:00'
  519. id: urn:uuid:a0ad377b-1909-4c78-8cde-22d328332d7a
  520. name: Metadata generation
  521. schemaKey: Activity
  522. startDate: '2023-03-29T18:25:45.345296+00:00'
  523. wasAssociatedWith:
  524. - identifier: RRID:SCR_019009
  525. name: DANDI Command Line Interface
  526. schemaKey: Software
  527. url: https://github.com/dandi/dandi-cli
  528. version: 0.51.0
  529. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  530. access:
  531. - schemaKey: AccessRequirements
  532. status: dandi:OpenAccess
  533. approach:
  534. - name: electrophysiological approach
  535. schemaKey: ApproachType
  536. blobDateModified: '2023-03-28T22:09:23.503000+00:00'
  537. contentSize: 2036839200
  538. contentUrl:
  539. - https://api.dandiarchive.org/api/assets/b3f179f9-f671-4f6f-a511-827f6b12121f/download/
  540. - https://dandiarchive.s3.amazonaws.com/blobs/440/2ac/4402acd1-c5c5-4882-a9b3-68d72607d6e1
  541. dateModified: '2023-03-29T18:27:05.965144+00:00'
  542. datePublished: '2025-07-11T17:56:13.817185+00:00'
  543. digest:
  544. dandi:dandi-etag: bd88d14be5e901d3968dff0d39f92d31-31
  545. dandi:sha2-256: fdf4ff34667bc0a2704e9440d55221f73c1eb851694587d7455b3038b370c2ba
  546. encodingFormat: application/x-nwb
  547. id: dandiasset:b3f179f9-f671-4f6f-a511-827f6b12121f
  548. identifier: b3f179f9-f671-4f6f-a511-827f6b12121f
  549. measurementTechnique:
  550. - name: surgical technique
  551. schemaKey: MeasurementTechniqueType
  552. - name: multi electrode extracellular electrophysiology recording technique
  553. schemaKey: MeasurementTechniqueType
  554. - name: analytical technique
  555. schemaKey: MeasurementTechniqueType
  556. - name: signal filtering technique
  557. schemaKey: MeasurementTechniqueType
  558. path: sub-BH444/sub-BH444_ses-20230215T015857_ecephys.nwb
  559. publishedBy:
  560. endDate: '2025-07-11T17:56:13.817185+00:00'
  561. id: urn:uuid:2fe237e5-c72c-4059-9b6c-dc26037b327b
  562. name: DANDI publish
  563. schemaKey: PublishActivity
  564. startDate: '2025-07-11T17:56:13.817185+00:00'
  565. wasAssociatedWith:
  566. - id: urn:uuid:75ddd143-c28f-4205-9848-ddc31f46e364
  567. identifier: RRID:SCR_017571
  568. name: DANDI API
  569. schemaKey: Software
  570. version: 0.1.0
  571. schemaKey: Asset
  572. schemaVersion: 0.6.4
  573. variableMeasured:
  574. - schemaKey: PropertyValue
  575. value: LFP
  576. - schemaKey: PropertyValue
  577. value: ElectricalSeries
  578. - schemaKey: PropertyValue
  579. value: ProcessingModule
  580. - schemaKey: PropertyValue
  581. value: ElectrodeGroup
  582. wasAttributedTo:
  583. - age:
  584. schemaKey: PropertyValue
  585. unitText: ISO-8601 duration
  586. value: P24W
  587. valueReference:
  588. schemaKey: PropertyValue
  589. value: dandi:BirthReference
  590. identifier: BH444
  591. schemaKey: Participant
  592. sex:
  593. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  594. name: Male
  595. schemaKey: SexType
  596. species:
  597. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  598. name: Rattus norvegicus - Norway rat
  599. schemaKey: SpeciesType
  600. wasGeneratedBy:
  601. - description: Rat Ultrasound Array Stimulation
  602. name: Acquisition session
  603. schemaKey: Session
  604. startDate: '2023-02-15T01:58:57-08:00'
  605. - description: Metadata generated by DANDI cli
  606. endDate: '2023-03-29T18:27:05.965099+00:00'
  607. id: urn:uuid:77af1fd5-02e2-4a4b-a0fa-7110c08ecedc
  608. name: Metadata generation
  609. schemaKey: Activity
  610. startDate: '2023-03-29T18:26:57.598290+00:00'
  611. wasAssociatedWith:
  612. - identifier: RRID:SCR_019009
  613. name: DANDI Command Line Interface
  614. schemaKey: Software
  615. url: https://github.com/dandi/dandi-cli
  616. version: 0.51.0
  617. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  618. access:
  619. - schemaKey: AccessRequirements
  620. status: dandi:OpenAccess
  621. approach:
  622. - name: electrophysiological approach
  623. schemaKey: ApproachType
  624. blobDateModified: '2023-03-28T22:09:18.502000+00:00'
  625. contentSize: 2027696928
  626. contentUrl:
  627. - https://api.dandiarchive.org/api/assets/4605803d-1a02-4190-8494-5c59fa23bf7f/download/
  628. - https://dandiarchive.s3.amazonaws.com/blobs/f1d/d9a/f1dd9add-8d08-4e09-99e8-9d367e08fbae
  629. dateModified: '2023-03-29T18:27:20.725758+00:00'
  630. datePublished: '2025-07-11T17:56:13.830946+00:00'
  631. digest:
  632. dandi:dandi-etag: 8e0c2e934cafac1e82b1b926dc8b1635-31
  633. dandi:sha2-256: c2d7ab232c81daa5753e0cf68ef94499e12c7e6e48d2244760d5b2df177e3e05
  634. encodingFormat: application/x-nwb
  635. id: dandiasset:4605803d-1a02-4190-8494-5c59fa23bf7f
  636. identifier: 4605803d-1a02-4190-8494-5c59fa23bf7f
  637. measurementTechnique:
  638. - name: surgical technique
  639. schemaKey: MeasurementTechniqueType
  640. - name: multi electrode extracellular electrophysiology recording technique
  641. schemaKey: MeasurementTechniqueType
  642. - name: analytical technique
  643. schemaKey: MeasurementTechniqueType
  644. - name: signal filtering technique
  645. schemaKey: MeasurementTechniqueType
  646. path: sub-BH444/sub-BH444_ses-20230214T235435_ecephys.nwb
  647. publishedBy:
  648. endDate: '2025-07-11T17:56:13.830946+00:00'
  649. id: urn:uuid:a9c4688e-acbd-4810-8051-daf8fb825dc5
  650. name: DANDI publish
  651. schemaKey: PublishActivity
  652. startDate: '2025-07-11T17:56:13.830946+00:00'
  653. wasAssociatedWith:
  654. - id: urn:uuid:b7d62fb2-3aad-411c-87e6-730649d9e4ba
  655. identifier: RRID:SCR_017571
  656. name: DANDI API
  657. schemaKey: Software
  658. version: 0.1.0
  659. schemaKey: Asset
  660. schemaVersion: 0.6.4
  661. variableMeasured:
  662. - schemaKey: PropertyValue
  663. value: LFP
  664. - schemaKey: PropertyValue
  665. value: ElectricalSeries
  666. - schemaKey: PropertyValue
  667. value: ProcessingModule
  668. - schemaKey: PropertyValue
  669. value: ElectrodeGroup
  670. wasAttributedTo:
  671. - age:
  672. schemaKey: PropertyValue
  673. unitText: ISO-8601 duration
  674. value: P24W
  675. valueReference:
  676. schemaKey: PropertyValue
  677. value: dandi:BirthReference
  678. identifier: BH444
  679. schemaKey: Participant
  680. sex:
  681. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  682. name: Male
  683. schemaKey: SexType
  684. species:
  685. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  686. name: Rattus norvegicus - Norway rat
  687. schemaKey: SpeciesType
  688. wasGeneratedBy:
  689. - description: Rat Ultrasound Array Stimulation
  690. name: Acquisition session
  691. schemaKey: Session
  692. startDate: '2023-02-14T23:54:35-08:00'
  693. - description: Metadata generated by DANDI cli
  694. endDate: '2023-03-29T18:27:20.725714+00:00'
  695. id: urn:uuid:34ec6976-0ce1-4fc4-82b7-d65940c90ea9
  696. name: Metadata generation
  697. schemaKey: Activity
  698. startDate: '2023-03-29T18:27:20.105943+00:00'
  699. wasAssociatedWith:
  700. - identifier: RRID:SCR_019009
  701. name: DANDI Command Line Interface
  702. schemaKey: Software
  703. url: https://github.com/dandi/dandi-cli
  704. version: 0.51.0
  705. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  706. access:
  707. - schemaKey: AccessRequirements
  708. status: dandi:OpenAccess
  709. approach:
  710. - name: electrophysiological approach
  711. schemaKey: ApproachType
  712. blobDateModified: '2023-03-28T22:09:24.888000+00:00'
  713. contentSize: 2035954464
  714. contentUrl:
  715. - https://api.dandiarchive.org/api/assets/318a77b7-0f96-444d-a27a-b400dd46d353/download/
  716. - https://dandiarchive.s3.amazonaws.com/blobs/cef/b75/cefb7505-d79d-45f1-9ff7-aa6deed037e9
  717. dateModified: '2023-03-29T18:27:20.732834+00:00'
  718. datePublished: '2025-07-11T17:56:13.851016+00:00'
  719. digest:
  720. dandi:dandi-etag: 2c6e0ac38b32dd33345a56289485dc23-31
  721. dandi:sha2-256: 6623327a2c4d343bbb262fbca39f3c942e8fc60997d50958e0e709ab0df39f64
  722. encodingFormat: application/x-nwb
  723. id: dandiasset:318a77b7-0f96-444d-a27a-b400dd46d353
  724. identifier: 318a77b7-0f96-444d-a27a-b400dd46d353
  725. measurementTechnique:
  726. - name: surgical technique
  727. schemaKey: MeasurementTechniqueType
  728. - name: multi electrode extracellular electrophysiology recording technique
  729. schemaKey: MeasurementTechniqueType
  730. - name: analytical technique
  731. schemaKey: MeasurementTechniqueType
  732. - name: signal filtering technique
  733. schemaKey: MeasurementTechniqueType
  734. path: sub-BH444/sub-BH444_ses-20230215T013638_ecephys.nwb
  735. publishedBy:
  736. endDate: '2025-07-11T17:56:13.851016+00:00'
  737. id: urn:uuid:21178fea-4832-4e6d-a6ea-164d57b75964
  738. name: DANDI publish
  739. schemaKey: PublishActivity
  740. startDate: '2025-07-11T17:56:13.851016+00:00'
  741. wasAssociatedWith:
  742. - id: urn:uuid:1e87471f-229d-43c7-8ca7-02545ae8b5fa
  743. identifier: RRID:SCR_017571
  744. name: DANDI API
  745. schemaKey: Software
  746. version: 0.1.0
  747. schemaKey: Asset
  748. schemaVersion: 0.6.4
  749. variableMeasured:
  750. - schemaKey: PropertyValue
  751. value: LFP
  752. - schemaKey: PropertyValue
  753. value: ElectricalSeries
  754. - schemaKey: PropertyValue
  755. value: ProcessingModule
  756. - schemaKey: PropertyValue
  757. value: ElectrodeGroup
  758. wasAttributedTo:
  759. - age:
  760. schemaKey: PropertyValue
  761. unitText: ISO-8601 duration
  762. value: P24W
  763. valueReference:
  764. schemaKey: PropertyValue
  765. value: dandi:BirthReference
  766. identifier: BH444
  767. schemaKey: Participant
  768. sex:
  769. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  770. name: Male
  771. schemaKey: SexType
  772. species:
  773. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  774. name: Rattus norvegicus - Norway rat
  775. schemaKey: SpeciesType
  776. wasGeneratedBy:
  777. - description: Rat Ultrasound Array Stimulation
  778. name: Acquisition session
  779. schemaKey: Session
  780. startDate: '2023-02-15T01:36:38-08:00'
  781. - description: Metadata generated by DANDI cli
  782. endDate: '2023-03-29T18:27:20.732799+00:00'
  783. id: urn:uuid:772ae3bd-f971-402d-999e-772f781e40ae
  784. name: Metadata generation
  785. schemaKey: Activity
  786. startDate: '2023-03-29T18:27:19.985415+00: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. blobDateModified: '2023-03-28T22:09:11.482000+00:00'
  801. contentSize: 2032659320
  802. contentUrl:
  803. - https://api.dandiarchive.org/api/assets/ef77df1e-332a-458f-bd90-500a505dd62e/download/
  804. - https://dandiarchive.s3.amazonaws.com/blobs/27b/98b/27b98bf9-bff5-48c0-beef-af0d23d19e57
  805. dateModified: '2023-03-29T18:27:21.537394+00:00'
  806. datePublished: '2025-07-11T17:56:13.867739+00:00'
  807. digest:
  808. dandi:dandi-etag: 337f69e4f2870b39738c303dc175208b-31
  809. dandi:sha2-256: 477503a55669318723394b2ff08734dd26c944609c7910723a7477183042245c
  810. encodingFormat: application/x-nwb
  811. id: dandiasset:ef77df1e-332a-458f-bd90-500a505dd62e
  812. identifier: ef77df1e-332a-458f-bd90-500a505dd62e
  813. measurementTechnique:
  814. - name: surgical technique
  815. schemaKey: MeasurementTechniqueType
  816. - name: multi electrode extracellular electrophysiology recording technique
  817. schemaKey: MeasurementTechniqueType
  818. - name: analytical technique
  819. schemaKey: MeasurementTechniqueType
  820. - name: signal filtering technique
  821. schemaKey: MeasurementTechniqueType
  822. path: sub-BH444/sub-BH444_ses-20230214T212616_ecephys.nwb
  823. publishedBy:
  824. endDate: '2025-07-11T17:56:13.867739+00:00'
  825. id: urn:uuid:5d3e8cad-8ab0-4a0c-83e8-3836637d747b
  826. name: DANDI publish
  827. schemaKey: PublishActivity
  828. startDate: '2025-07-11T17:56:13.867739+00:00'
  829. wasAssociatedWith:
  830. - id: urn:uuid:7714f562-1ae6-4afa-aebe-73734f50b927
  831. identifier: RRID:SCR_017571
  832. name: DANDI API
  833. schemaKey: Software
  834. version: 0.1.0
  835. schemaKey: Asset
  836. schemaVersion: 0.6.4
  837. variableMeasured:
  838. - schemaKey: PropertyValue
  839. value: LFP
  840. - schemaKey: PropertyValue
  841. value: ElectricalSeries
  842. - schemaKey: PropertyValue
  843. value: ProcessingModule
  844. - schemaKey: PropertyValue
  845. value: ElectrodeGroup
  846. wasAttributedTo:
  847. - age:
  848. schemaKey: PropertyValue
  849. unitText: ISO-8601 duration
  850. value: P24W
  851. valueReference:
  852. schemaKey: PropertyValue
  853. value: dandi:BirthReference
  854. identifier: BH444
  855. schemaKey: Participant
  856. sex:
  857. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  858. name: Male
  859. schemaKey: SexType
  860. species:
  861. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  862. name: Rattus norvegicus - Norway rat
  863. schemaKey: SpeciesType
  864. wasGeneratedBy:
  865. - description: Rat Ultrasound Array Stimulation
  866. name: Acquisition session
  867. schemaKey: Session
  868. startDate: '2023-02-14T21:26:16-08:00'
  869. - description: Metadata generated by DANDI cli
  870. endDate: '2023-03-29T18:27:21.537359+00:00'
  871. id: urn:uuid:3feb182f-3bf7-4174-ae28-6209f52ca5a0
  872. name: Metadata generation
  873. schemaKey: Activity
  874. startDate: '2023-03-29T18:27:20.500269+00:00'
  875. wasAssociatedWith:
  876. - identifier: RRID:SCR_019009
  877. name: DANDI Command Line Interface
  878. schemaKey: Software
  879. url: https://github.com/dandi/dandi-cli
  880. version: 0.51.0
  881. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  882. access:
  883. - schemaKey: AccessRequirements
  884. status: dandi:OpenAccess
  885. approach:
  886. - name: electrophysiological approach
  887. schemaKey: ApproachType
  888. blobDateModified: '2023-03-28T22:09:14.414000+00:00'
  889. contentSize: 2029466400
  890. contentUrl:
  891. - https://api.dandiarchive.org/api/assets/aef714b0-7ff4-484a-b71a-42dcabce6033/download/
  892. - https://dandiarchive.s3.amazonaws.com/blobs/db9/e4a/db9e4a6f-db38-41b5-9579-c665f3f9c6e4
  893. dateModified: '2023-03-29T18:27:21.530677+00:00'
  894. datePublished: '2025-07-11T17:56:13.876781+00:00'
  895. digest:
  896. dandi:dandi-etag: 6cd0ff07374399d1be6c8faa8e3ec947-31
  897. dandi:sha2-256: c6644b7c97bbcbffcfc61c499544719e0c1d89d757d907ea2952863c41eb48db
  898. encodingFormat: application/x-nwb
  899. id: dandiasset:aef714b0-7ff4-484a-b71a-42dcabce6033
  900. identifier: aef714b0-7ff4-484a-b71a-42dcabce6033
  901. measurementTechnique:
  902. - name: surgical technique
  903. schemaKey: MeasurementTechniqueType
  904. - name: multi electrode extracellular electrophysiology recording technique
  905. schemaKey: MeasurementTechniqueType
  906. - name: analytical technique
  907. schemaKey: MeasurementTechniqueType
  908. - name: signal filtering technique
  909. schemaKey: MeasurementTechniqueType
  910. path: sub-BH444/sub-BH444_ses-20230215T002717_ecephys.nwb
  911. publishedBy:
  912. endDate: '2025-07-11T17:56:13.876781+00:00'
  913. id: urn:uuid:005c5e94-49a0-4506-9105-4e90be21ed15
  914. name: DANDI publish
  915. schemaKey: PublishActivity
  916. startDate: '2025-07-11T17:56:13.876781+00:00'
  917. wasAssociatedWith:
  918. - id: urn:uuid:b6760d9a-9153-45f2-a3d3-365bf013ab3b
  919. identifier: RRID:SCR_017571
  920. name: DANDI API
  921. schemaKey: Software
  922. version: 0.1.0
  923. schemaKey: Asset
  924. schemaVersion: 0.6.4
  925. variableMeasured:
  926. - schemaKey: PropertyValue
  927. value: LFP
  928. - schemaKey: PropertyValue
  929. value: ElectricalSeries
  930. - schemaKey: PropertyValue
  931. value: ProcessingModule
  932. - schemaKey: PropertyValue
  933. value: ElectrodeGroup
  934. wasAttributedTo:
  935. - age:
  936. schemaKey: PropertyValue
  937. unitText: ISO-8601 duration
  938. value: P24W
  939. valueReference:
  940. schemaKey: PropertyValue
  941. value: dandi:BirthReference
  942. identifier: BH444
  943. schemaKey: Participant
  944. sex:
  945. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  946. name: Male
  947. schemaKey: SexType
  948. species:
  949. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  950. name: Rattus norvegicus - Norway rat
  951. schemaKey: SpeciesType
  952. wasGeneratedBy:
  953. - description: Rat Ultrasound Array Stimulation
  954. name: Acquisition session
  955. schemaKey: Session
  956. startDate: '2023-02-15T00:27:17-08:00'
  957. - description: Metadata generated by DANDI cli
  958. endDate: '2023-03-29T18:27:21.530639+00:00'
  959. id: urn:uuid:f32e35f1-b0df-407e-bade-212b623d201b
  960. name: Metadata generation
  961. schemaKey: Activity
  962. startDate: '2023-03-29T18:27:20.585344+00:00'
  963. wasAssociatedWith:
  964. - identifier: RRID:SCR_019009
  965. name: DANDI Command Line Interface
  966. schemaKey: Software
  967. url: https://github.com/dandi/dandi-cli
  968. version: 0.51.0
  969. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  970. access:
  971. - schemaKey: AccessRequirements
  972. status: dandi:OpenAccess
  973. approach:
  974. - name: electrophysiological approach
  975. schemaKey: ApproachType
  976. blobDateModified: '2023-03-28T22:09:08.358000+00:00'
  977. contentSize: 2025337632
  978. contentUrl:
  979. - https://api.dandiarchive.org/api/assets/38e4c6f4-1bdf-4d8d-ae84-60dba3c05a06/download/
  980. - https://dandiarchive.s3.amazonaws.com/blobs/04e/a2c/04ea2caa-60ab-405c-a66e-34113f1e3d7c
  981. dateModified: '2023-03-29T18:28:53.023455+00:00'
  982. datePublished: '2025-07-11T17:56:13.884901+00:00'
  983. digest:
  984. dandi:dandi-etag: a98193735486588be7ce577a03ea189f-31
  985. dandi:sha2-256: 4a3d480e65d71866938083cf5afbce5b83641786038c413baab3c5dd62f88e63
  986. encodingFormat: application/x-nwb
  987. id: dandiasset:38e4c6f4-1bdf-4d8d-ae84-60dba3c05a06
  988. identifier: 38e4c6f4-1bdf-4d8d-ae84-60dba3c05a06
  989. measurementTechnique:
  990. - name: surgical technique
  991. schemaKey: MeasurementTechniqueType
  992. - name: multi electrode extracellular electrophysiology recording technique
  993. schemaKey: MeasurementTechniqueType
  994. - name: analytical technique
  995. schemaKey: MeasurementTechniqueType
  996. - name: signal filtering technique
  997. schemaKey: MeasurementTechniqueType
  998. path: sub-BH444/sub-BH444_ses-20230214T222833_ecephys.nwb
  999. publishedBy:
  1000. endDate: '2025-07-11T17:56:13.884901+00:00'
  1001. id: urn:uuid:175bf9dd-5aa1-4f9b-a317-a319f24d4ce8
  1002. name: DANDI publish
  1003. schemaKey: PublishActivity
  1004. startDate: '2025-07-11T17:56:13.884901+00:00'
  1005. wasAssociatedWith:
  1006. - id: urn:uuid:d0a9c67f-ae72-474f-8fc8-1c90b5e2ae46
  1007. identifier: RRID:SCR_017571
  1008. name: DANDI API
  1009. schemaKey: Software
  1010. version: 0.1.0
  1011. schemaKey: Asset
  1012. schemaVersion: 0.6.4
  1013. variableMeasured:
  1014. - schemaKey: PropertyValue
  1015. value: LFP
  1016. - schemaKey: PropertyValue
  1017. value: ElectricalSeries
  1018. - schemaKey: PropertyValue
  1019. value: ProcessingModule
  1020. - schemaKey: PropertyValue
  1021. value: ElectrodeGroup
  1022. wasAttributedTo:
  1023. - age:
  1024. schemaKey: PropertyValue
  1025. unitText: ISO-8601 duration
  1026. value: P24W
  1027. valueReference:
  1028. schemaKey: PropertyValue
  1029. value: dandi:BirthReference
  1030. identifier: BH444
  1031. schemaKey: Participant
  1032. sex:
  1033. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1034. name: Male
  1035. schemaKey: SexType
  1036. species:
  1037. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1038. name: Rattus norvegicus - Norway rat
  1039. schemaKey: SpeciesType
  1040. wasGeneratedBy:
  1041. - description: Rat Ultrasound Array Stimulation
  1042. name: Acquisition session
  1043. schemaKey: Session
  1044. startDate: '2023-02-14T22:28:33-08:00'
  1045. - description: Metadata generated by DANDI cli
  1046. endDate: '2023-03-29T18:28:53.023439+00:00'
  1047. id: urn:uuid:0249bda5-3047-4ccc-a08f-d5a96eb2b49b
  1048. name: Metadata generation
  1049. schemaKey: Activity
  1050. startDate: '2023-03-29T18:28:53.005019+00:00'
  1051. wasAssociatedWith:
  1052. - identifier: RRID:SCR_019009
  1053. name: DANDI Command Line Interface
  1054. schemaKey: Software
  1055. url: https://github.com/dandi/dandi-cli
  1056. version: 0.51.0
  1057. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1058. access:
  1059. - schemaKey: AccessRequirements
  1060. status: dandi:OpenAccess
  1061. approach:
  1062. - name: electrophysiological approach
  1063. schemaKey: ApproachType
  1064. blobDateModified: '2023-03-28T22:09:32.350000+00:00'
  1065. contentSize: 2067477280
  1066. contentUrl:
  1067. - https://api.dandiarchive.org/api/assets/ab04e290-5395-4305-87ea-2eb702861e70/download/
  1068. - https://dandiarchive.s3.amazonaws.com/blobs/3a2/43f/3a243f39-6898-43a4-ac34-df583a62af6e
  1069. dateModified: '2023-03-29T18:28:53.015703+00:00'
  1070. datePublished: '2025-07-11T17:56:13.894726+00:00'
  1071. digest:
  1072. dandi:dandi-etag: 1b29fcc6c56306871b843518b1895069-31
  1073. dandi:sha2-256: f358c41a2ff26dc357156d03e5f9c7768f7827014e9bcaa64bca366c44651d85
  1074. encodingFormat: application/x-nwb
  1075. id: dandiasset:ab04e290-5395-4305-87ea-2eb702861e70
  1076. identifier: ab04e290-5395-4305-87ea-2eb702861e70
  1077. measurementTechnique:
  1078. - name: surgical technique
  1079. schemaKey: MeasurementTechniqueType
  1080. - name: multi electrode extracellular electrophysiology recording technique
  1081. schemaKey: MeasurementTechniqueType
  1082. - name: analytical technique
  1083. schemaKey: MeasurementTechniqueType
  1084. - name: signal filtering technique
  1085. schemaKey: MeasurementTechniqueType
  1086. path: sub-BH444/sub-BH444_ses-20230214T200303_ecephys.nwb
  1087. publishedBy:
  1088. endDate: '2025-07-11T17:56:13.894726+00:00'
  1089. id: urn:uuid:5ce68019-f1c5-442c-988f-30f560dc0c29
  1090. name: DANDI publish
  1091. schemaKey: PublishActivity
  1092. startDate: '2025-07-11T17:56:13.894726+00:00'
  1093. wasAssociatedWith:
  1094. - id: urn:uuid:17efdea9-0405-4f2f-9b91-b4dcc9bfe918
  1095. identifier: RRID:SCR_017571
  1096. name: DANDI API
  1097. schemaKey: Software
  1098. version: 0.1.0
  1099. schemaKey: Asset
  1100. schemaVersion: 0.6.4
  1101. variableMeasured:
  1102. - schemaKey: PropertyValue
  1103. value: LFP
  1104. - schemaKey: PropertyValue
  1105. value: ElectricalSeries
  1106. - schemaKey: PropertyValue
  1107. value: ProcessingModule
  1108. - schemaKey: PropertyValue
  1109. value: ElectrodeGroup
  1110. wasAttributedTo:
  1111. - age:
  1112. schemaKey: PropertyValue
  1113. unitText: ISO-8601 duration
  1114. value: P24W
  1115. valueReference:
  1116. schemaKey: PropertyValue
  1117. value: dandi:BirthReference
  1118. identifier: BH444
  1119. schemaKey: Participant
  1120. sex:
  1121. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1122. name: Male
  1123. schemaKey: SexType
  1124. species:
  1125. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1126. name: Rattus norvegicus - Norway rat
  1127. schemaKey: SpeciesType
  1128. wasGeneratedBy:
  1129. - description: Rat Ultrasound Array Stimulation
  1130. name: Acquisition session
  1131. schemaKey: Session
  1132. startDate: '2023-02-14T20:03:03-08:00'
  1133. - description: Metadata generated by DANDI cli
  1134. endDate: '2023-03-29T18:28:53.015670+00:00'
  1135. id: urn:uuid:0f0d2e54-06a4-49d9-8702-8332686efe7c
  1136. name: Metadata generation
  1137. schemaKey: Activity
  1138. startDate: '2023-03-29T18:28:52.962733+00:00'
  1139. wasAssociatedWith:
  1140. - identifier: RRID:SCR_019009
  1141. name: DANDI Command Line Interface
  1142. schemaKey: Software
  1143. url: https://github.com/dandi/dandi-cli
  1144. version: 0.51.0
  1145. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1146. access:
  1147. - schemaKey: AccessRequirements
  1148. status: dandi:OpenAccess
  1149. approach:
  1150. - name: electrophysiological approach
  1151. schemaKey: ApproachType
  1152. blobDateModified: '2023-03-28T22:09:25.029000+00:00'
  1153. contentSize: 2031825696
  1154. contentUrl:
  1155. - https://api.dandiarchive.org/api/assets/5891d5d4-2d6d-438c-a64e-12f8bb31db1a/download/
  1156. - https://dandiarchive.s3.amazonaws.com/blobs/c5d/260/c5d260b1-f290-4a2d-a512-54ad38c47188
  1157. dateModified: '2023-03-29T18:28:53.368889+00:00'
  1158. datePublished: '2025-07-11T17:56:13.902329+00:00'
  1159. digest:
  1160. dandi:dandi-etag: bb4fb9c11ea6a10e3801d9cfcda5983a-31
  1161. dandi:sha2-256: 50683dfb47b8be0fd5594fee6d5a7851c367fc610a5c06ea06de0f751f2c9c87
  1162. encodingFormat: application/x-nwb
  1163. id: dandiasset:5891d5d4-2d6d-438c-a64e-12f8bb31db1a
  1164. identifier: 5891d5d4-2d6d-438c-a64e-12f8bb31db1a
  1165. measurementTechnique:
  1166. - name: surgical technique
  1167. schemaKey: MeasurementTechniqueType
  1168. - name: multi electrode extracellular electrophysiology recording technique
  1169. schemaKey: MeasurementTechniqueType
  1170. - name: analytical technique
  1171. schemaKey: MeasurementTechniqueType
  1172. - name: signal filtering technique
  1173. schemaKey: MeasurementTechniqueType
  1174. path: sub-BH444/sub-BH444_ses-20230214T204015_ecephys.nwb
  1175. publishedBy:
  1176. endDate: '2025-07-11T17:56:13.902329+00:00'
  1177. id: urn:uuid:031e1f72-eecf-42fc-80b2-7afc2b998270
  1178. name: DANDI publish
  1179. schemaKey: PublishActivity
  1180. startDate: '2025-07-11T17:56:13.902329+00:00'
  1181. wasAssociatedWith:
  1182. - id: urn:uuid:a17d60de-c4e4-4af4-a4f8-edcb277b4c2a
  1183. identifier: RRID:SCR_017571
  1184. name: DANDI API
  1185. schemaKey: Software
  1186. version: 0.1.0
  1187. schemaKey: Asset
  1188. schemaVersion: 0.6.4
  1189. variableMeasured:
  1190. - schemaKey: PropertyValue
  1191. value: LFP
  1192. - schemaKey: PropertyValue
  1193. value: ElectricalSeries
  1194. - schemaKey: PropertyValue
  1195. value: ProcessingModule
  1196. - schemaKey: PropertyValue
  1197. value: ElectrodeGroup
  1198. wasAttributedTo:
  1199. - age:
  1200. schemaKey: PropertyValue
  1201. unitText: ISO-8601 duration
  1202. value: P24W
  1203. valueReference:
  1204. schemaKey: PropertyValue
  1205. value: dandi:BirthReference
  1206. identifier: BH444
  1207. schemaKey: Participant
  1208. sex:
  1209. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1210. name: Male
  1211. schemaKey: SexType
  1212. species:
  1213. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1214. name: Rattus norvegicus - Norway rat
  1215. schemaKey: SpeciesType
  1216. wasGeneratedBy:
  1217. - description: Rat Ultrasound Array Stimulation
  1218. name: Acquisition session
  1219. schemaKey: Session
  1220. startDate: '2023-02-14T20:40:15-08:00'
  1221. - description: Metadata generated by DANDI cli
  1222. endDate: '2023-03-29T18:28:53.368859+00:00'
  1223. id: urn:uuid:b85ddb83-6c66-45f7-a3b1-1a6da5c5188e
  1224. name: Metadata generation
  1225. schemaKey: Activity
  1226. startDate: '2023-03-29T18:28:53.233141+00:00'
  1227. wasAssociatedWith:
  1228. - identifier: RRID:SCR_019009
  1229. name: DANDI Command Line Interface
  1230. schemaKey: Software
  1231. url: https://github.com/dandi/dandi-cli
  1232. version: 0.51.0
  1233. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1234. access:
  1235. - schemaKey: AccessRequirements
  1236. status: dandi:OpenAccess
  1237. approach:
  1238. - name: electrophysiological approach
  1239. schemaKey: ApproachType
  1240. blobDateModified: '2023-03-28T22:09:26.581000+00:00'
  1241. contentSize: 2040799456
  1242. contentUrl:
  1243. - https://api.dandiarchive.org/api/assets/4654677f-0edd-4a0d-9cd7-e3103de94eea/download/
  1244. - https://dandiarchive.s3.amazonaws.com/blobs/9c7/b14/9c7b141d-cd23-4613-90b8-8b332f34ec43
  1245. dateModified: '2023-03-29T18:28:53.379059+00:00'
  1246. datePublished: '2025-07-11T17:56:13.909490+00:00'
  1247. digest:
  1248. dandi:dandi-etag: 625c79f98d9c6e4a2b0676600cc631e8-31
  1249. dandi:sha2-256: 9429ce16963408c798761bdcaa72c57a2e1fa0dbdfa1f6f35cedbf749a1d3ab1
  1250. encodingFormat: application/x-nwb
  1251. id: dandiasset:4654677f-0edd-4a0d-9cd7-e3103de94eea
  1252. identifier: 4654677f-0edd-4a0d-9cd7-e3103de94eea
  1253. measurementTechnique:
  1254. - name: surgical technique
  1255. schemaKey: MeasurementTechniqueType
  1256. - name: multi electrode extracellular electrophysiology recording technique
  1257. schemaKey: MeasurementTechniqueType
  1258. - name: analytical technique
  1259. schemaKey: MeasurementTechniqueType
  1260. - name: signal filtering technique
  1261. schemaKey: MeasurementTechniqueType
  1262. path: sub-BH444/sub-BH444_ses-20230215T010415_ecephys.nwb
  1263. publishedBy:
  1264. endDate: '2025-07-11T17:56:13.909490+00:00'
  1265. id: urn:uuid:6014fb7d-2df1-48f9-a90a-84e661384d37
  1266. name: DANDI publish
  1267. schemaKey: PublishActivity
  1268. startDate: '2025-07-11T17:56:13.909490+00:00'
  1269. wasAssociatedWith:
  1270. - id: urn:uuid:85b489d9-a00d-47b1-8455-d299661e5be0
  1271. identifier: RRID:SCR_017571
  1272. name: DANDI API
  1273. schemaKey: Software
  1274. version: 0.1.0
  1275. schemaKey: Asset
  1276. schemaVersion: 0.6.4
  1277. variableMeasured:
  1278. - schemaKey: PropertyValue
  1279. value: LFP
  1280. - schemaKey: PropertyValue
  1281. value: ElectricalSeries
  1282. - schemaKey: PropertyValue
  1283. value: ProcessingModule
  1284. - schemaKey: PropertyValue
  1285. value: ElectrodeGroup
  1286. wasAttributedTo:
  1287. - age:
  1288. schemaKey: PropertyValue
  1289. unitText: ISO-8601 duration
  1290. value: P24W
  1291. valueReference:
  1292. schemaKey: PropertyValue
  1293. value: dandi:BirthReference
  1294. identifier: BH444
  1295. schemaKey: Participant
  1296. sex:
  1297. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1298. name: Male
  1299. schemaKey: SexType
  1300. species:
  1301. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1302. name: Rattus norvegicus - Norway rat
  1303. schemaKey: SpeciesType
  1304. wasGeneratedBy:
  1305. - description: Rat Ultrasound Array Stimulation
  1306. name: Acquisition session
  1307. schemaKey: Session
  1308. startDate: '2023-02-15T01:04:15-08:00'
  1309. - description: Metadata generated by DANDI cli
  1310. endDate: '2023-03-29T18:28:53.379028+00:00'
  1311. id: urn:uuid:f6953d58-91bf-43ed-9d77-7bf7040a8d86
  1312. name: Metadata generation
  1313. schemaKey: Activity
  1314. startDate: '2023-03-29T18:28:53.275995+00:00'
  1315. wasAssociatedWith:
  1316. - identifier: RRID:SCR_019009
  1317. name: DANDI Command Line Interface
  1318. schemaKey: Software
  1319. url: https://github.com/dandi/dandi-cli
  1320. version: 0.51.0
  1321. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1322. access:
  1323. - schemaKey: AccessRequirements
  1324. status: dandi:OpenAccess
  1325. approach:
  1326. - name: electrophysiological approach
  1327. schemaKey: ApproachType
  1328. blobDateModified: '2023-05-02T21:05:59.946000+00:00'
  1329. contentSize: 2029761312
  1330. contentUrl:
  1331. - https://api.dandiarchive.org/api/assets/cb4fa315-63b8-486c-9b6a-2cf4c91ab977/download/
  1332. - https://dandiarchive.s3.amazonaws.com/blobs/394/1cb/3941cbf2-c2cf-428d-9a90-3d6b39c4e587
  1333. dateModified: '2023-05-02T21:22:38.236859+00:00'
  1334. datePublished: '2025-07-11T17:56:13.917582+00:00'
  1335. digest:
  1336. dandi:dandi-etag: 506c6891552088bc107477e14d1b162e-31
  1337. dandi:sha2-256: f316c1baea7e4728e1e3837fca7781ffcd1756efb2575ab83a2491b21d57f6d5
  1338. encodingFormat: application/x-nwb
  1339. id: dandiasset:cb4fa315-63b8-486c-9b6a-2cf4c91ab977
  1340. identifier: cb4fa315-63b8-486c-9b6a-2cf4c91ab977
  1341. measurementTechnique:
  1342. - name: multi electrode extracellular electrophysiology recording technique
  1343. schemaKey: MeasurementTechniqueType
  1344. - name: surgical technique
  1345. schemaKey: MeasurementTechniqueType
  1346. - name: signal filtering technique
  1347. schemaKey: MeasurementTechniqueType
  1348. - name: analytical technique
  1349. schemaKey: MeasurementTechniqueType
  1350. path: sub-BH401/sub-BH401_ses-20230207T224653_ecephys.nwb
  1351. publishedBy:
  1352. endDate: '2025-07-11T17:56:13.917582+00:00'
  1353. id: urn:uuid:e420b5e8-645a-4319-a382-9f53ee7df625
  1354. name: DANDI publish
  1355. schemaKey: PublishActivity
  1356. startDate: '2025-07-11T17:56:13.917582+00:00'
  1357. wasAssociatedWith:
  1358. - id: urn:uuid:45d30794-c641-408b-914e-1832d0f16fa2
  1359. identifier: RRID:SCR_017571
  1360. name: DANDI API
  1361. schemaKey: Software
  1362. version: 0.1.0
  1363. schemaKey: Asset
  1364. schemaVersion: 0.6.4
  1365. variableMeasured:
  1366. - schemaKey: PropertyValue
  1367. value: ElectrodeGroup
  1368. - schemaKey: PropertyValue
  1369. value: LFP
  1370. - schemaKey: PropertyValue
  1371. value: ElectricalSeries
  1372. - schemaKey: PropertyValue
  1373. value: ProcessingModule
  1374. wasAttributedTo:
  1375. - age:
  1376. schemaKey: PropertyValue
  1377. unitText: ISO-8601 duration
  1378. value: P24W
  1379. valueReference:
  1380. schemaKey: PropertyValue
  1381. value: dandi:BirthReference
  1382. identifier: BH401
  1383. schemaKey: Participant
  1384. sex:
  1385. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1386. name: Male
  1387. schemaKey: SexType
  1388. species:
  1389. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1390. name: Rattus norvegicus - Norway rat
  1391. schemaKey: SpeciesType
  1392. wasGeneratedBy:
  1393. - description: Rat Ultrasound Array Stimulation
  1394. name: Acquisition session
  1395. schemaKey: Session
  1396. startDate: '2023-02-07T22:46:53-08:00'
  1397. - description: Metadata generated by DANDI cli
  1398. endDate: '2023-05-02T21:22:38.236803+00:00'
  1399. id: urn:uuid:0fb9a19e-22a1-476a-a28d-557a66461eb1
  1400. name: Metadata generation
  1401. schemaKey: Activity
  1402. startDate: '2023-05-02T21:22:37.524022+00:00'
  1403. wasAssociatedWith:
  1404. - identifier: RRID:SCR_019009
  1405. name: DANDI Command Line Interface
  1406. schemaKey: Software
  1407. url: https://github.com/dandi/dandi-cli
  1408. version: 0.54.0
  1409. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1410. access:
  1411. - schemaKey: AccessRequirements
  1412. status: dandi:OpenAccess
  1413. approach:
  1414. - name: electrophysiological approach
  1415. schemaKey: ApproachType
  1416. blobDateModified: '2023-05-02T21:05:58.309000+00:00'
  1417. contentSize: 2055713568
  1418. contentUrl:
  1419. - https://api.dandiarchive.org/api/assets/fd3cc52b-66d3-4535-9750-8ee9767425b2/download/
  1420. - https://dandiarchive.s3.amazonaws.com/blobs/258/08f/25808f24-1650-4e77-9226-ed14ea766032
  1421. dateModified: '2023-05-02T21:22:38.238225+00:00'
  1422. datePublished: '2025-07-11T17:56:13.924999+00:00'
  1423. digest:
  1424. dandi:dandi-etag: 3ac559dd634133247c9f1ec2997f0d5b-31
  1425. dandi:sha2-256: 3d82e94b82543553aec05e00c7a43d4e7fdbe6da2a2a04503541bbc6a78873cc
  1426. encodingFormat: application/x-nwb
  1427. id: dandiasset:fd3cc52b-66d3-4535-9750-8ee9767425b2
  1428. identifier: fd3cc52b-66d3-4535-9750-8ee9767425b2
  1429. measurementTechnique:
  1430. - name: multi electrode extracellular electrophysiology recording technique
  1431. schemaKey: MeasurementTechniqueType
  1432. - name: surgical technique
  1433. schemaKey: MeasurementTechniqueType
  1434. - name: signal filtering technique
  1435. schemaKey: MeasurementTechniqueType
  1436. - name: analytical technique
  1437. schemaKey: MeasurementTechniqueType
  1438. path: sub-BH401/sub-BH401_ses-20230207T202916_ecephys.nwb
  1439. publishedBy:
  1440. endDate: '2025-07-11T17:56:13.924999+00:00'
  1441. id: urn:uuid:d67469ad-f090-4be0-8b4b-ccc974b4e337
  1442. name: DANDI publish
  1443. schemaKey: PublishActivity
  1444. startDate: '2025-07-11T17:56:13.924999+00:00'
  1445. wasAssociatedWith:
  1446. - id: urn:uuid:bc5927d6-0810-44c6-a66b-4f94a39d78b9
  1447. identifier: RRID:SCR_017571
  1448. name: DANDI API
  1449. schemaKey: Software
  1450. version: 0.1.0
  1451. schemaKey: Asset
  1452. schemaVersion: 0.6.4
  1453. variableMeasured:
  1454. - schemaKey: PropertyValue
  1455. value: ElectrodeGroup
  1456. - schemaKey: PropertyValue
  1457. value: LFP
  1458. - schemaKey: PropertyValue
  1459. value: ElectricalSeries
  1460. - schemaKey: PropertyValue
  1461. value: ProcessingModule
  1462. wasAttributedTo:
  1463. - age:
  1464. schemaKey: PropertyValue
  1465. unitText: ISO-8601 duration
  1466. value: P24W
  1467. valueReference:
  1468. schemaKey: PropertyValue
  1469. value: dandi:BirthReference
  1470. identifier: BH401
  1471. schemaKey: Participant
  1472. sex:
  1473. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1474. name: Male
  1475. schemaKey: SexType
  1476. species:
  1477. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1478. name: Rattus norvegicus - Norway rat
  1479. schemaKey: SpeciesType
  1480. wasGeneratedBy:
  1481. - description: Rat Ultrasound Array Stimulation
  1482. name: Acquisition session
  1483. schemaKey: Session
  1484. startDate: '2023-02-07T20:29:16-08:00'
  1485. - description: Metadata generated by DANDI cli
  1486. endDate: '2023-05-02T21:22:38.238185+00:00'
  1487. id: urn:uuid:adc19e30-afe7-45e0-b86c-99edee986785
  1488. name: Metadata generation
  1489. schemaKey: Activity
  1490. startDate: '2023-05-02T21:22:37.557453+00:00'
  1491. wasAssociatedWith:
  1492. - identifier: RRID:SCR_019009
  1493. name: DANDI Command Line Interface
  1494. schemaKey: Software
  1495. url: https://github.com/dandi/dandi-cli
  1496. version: 0.54.0
  1497. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1498. access:
  1499. - schemaKey: AccessRequirements
  1500. status: dandi:OpenAccess
  1501. approach:
  1502. - name: electrophysiological approach
  1503. schemaKey: ApproachType
  1504. blobDateModified: '2023-05-02T21:06:06.592000+00:00'
  1505. contentSize: 2058957600
  1506. contentUrl:
  1507. - https://api.dandiarchive.org/api/assets/a97b270d-fe7a-4789-87a5-6e46a5938f5d/download/
  1508. - https://dandiarchive.s3.amazonaws.com/blobs/026/edd/026edd41-d5c4-4eb9-bce6-aec2b28d3adb
  1509. dateModified: '2023-05-02T21:22:38.671647+00:00'
  1510. datePublished: '2025-07-11T17:56:13.932426+00:00'
  1511. digest:
  1512. dandi:dandi-etag: f5382647ccf518cfe4bd302e2fcfe263-31
  1513. dandi:sha2-256: 77813d521cbfdb03d17a5492c264a55deb74a42db2f299dc74bc55bdd65285d1
  1514. encodingFormat: application/x-nwb
  1515. id: dandiasset:a97b270d-fe7a-4789-87a5-6e46a5938f5d
  1516. identifier: a97b270d-fe7a-4789-87a5-6e46a5938f5d
  1517. measurementTechnique:
  1518. - name: multi electrode extracellular electrophysiology recording technique
  1519. schemaKey: MeasurementTechniqueType
  1520. - name: surgical technique
  1521. schemaKey: MeasurementTechniqueType
  1522. - name: signal filtering technique
  1523. schemaKey: MeasurementTechniqueType
  1524. - name: analytical technique
  1525. schemaKey: MeasurementTechniqueType
  1526. path: sub-BH401/sub-BH401_ses-20230208T012808_ecephys.nwb
  1527. publishedBy:
  1528. endDate: '2025-07-11T17:56:13.932426+00:00'
  1529. id: urn:uuid:3264151a-3aa1-4343-b43a-0671ef8a3be9
  1530. name: DANDI publish
  1531. schemaKey: PublishActivity
  1532. startDate: '2025-07-11T17:56:13.932426+00:00'
  1533. wasAssociatedWith:
  1534. - id: urn:uuid:da10e0b7-99ea-4127-89ea-0849983d8a60
  1535. identifier: RRID:SCR_017571
  1536. name: DANDI API
  1537. schemaKey: Software
  1538. version: 0.1.0
  1539. schemaKey: Asset
  1540. schemaVersion: 0.6.4
  1541. variableMeasured:
  1542. - schemaKey: PropertyValue
  1543. value: ElectrodeGroup
  1544. - schemaKey: PropertyValue
  1545. value: LFP
  1546. - schemaKey: PropertyValue
  1547. value: ElectricalSeries
  1548. - schemaKey: PropertyValue
  1549. value: ProcessingModule
  1550. wasAttributedTo:
  1551. - age:
  1552. schemaKey: PropertyValue
  1553. unitText: ISO-8601 duration
  1554. value: P24W
  1555. valueReference:
  1556. schemaKey: PropertyValue
  1557. value: dandi:BirthReference
  1558. identifier: BH401
  1559. schemaKey: Participant
  1560. sex:
  1561. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1562. name: Male
  1563. schemaKey: SexType
  1564. species:
  1565. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1566. name: Rattus norvegicus - Norway rat
  1567. schemaKey: SpeciesType
  1568. wasGeneratedBy:
  1569. - description: Rat Ultrasound Array Stimulation
  1570. name: Acquisition session
  1571. schemaKey: Session
  1572. startDate: '2023-02-08T01:28:08-08:00'
  1573. - description: Metadata generated by DANDI cli
  1574. endDate: '2023-05-02T21:22:38.671617+00:00'
  1575. id: urn:uuid:c203c983-8389-4cf6-9dac-443621df89b5
  1576. name: Metadata generation
  1577. schemaKey: Activity
  1578. startDate: '2023-05-02T21:22:38.631975+00:00'
  1579. wasAssociatedWith:
  1580. - identifier: RRID:SCR_019009
  1581. name: DANDI Command Line Interface
  1582. schemaKey: Software
  1583. url: https://github.com/dandi/dandi-cli
  1584. version: 0.54.0
  1585. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1586. access:
  1587. - schemaKey: AccessRequirements
  1588. status: dandi:OpenAccess
  1589. approach:
  1590. - name: electrophysiological approach
  1591. schemaKey: ApproachType
  1592. blobDateModified: '2023-05-02T21:05:48.484000+00:00'
  1593. contentSize: 2022388512
  1594. contentUrl:
  1595. - https://api.dandiarchive.org/api/assets/4bc57dca-d1b8-4cee-bac3-10320e10e44c/download/
  1596. - https://dandiarchive.s3.amazonaws.com/blobs/d67/e37/d67e37ab-d505-4378-819a-5aed006e14bf
  1597. dateModified: '2023-05-02T21:22:38.528066+00:00'
  1598. datePublished: '2025-07-11T17:56:13.939419+00:00'
  1599. digest:
  1600. dandi:dandi-etag: 47840c39b55f2f21f09b8c08934b3bbc-31
  1601. dandi:sha2-256: 48fa4df435a26431453fe39a43ffe7fdfcf1615885f94204509e28b825635130
  1602. encodingFormat: application/x-nwb
  1603. id: dandiasset:4bc57dca-d1b8-4cee-bac3-10320e10e44c
  1604. identifier: 4bc57dca-d1b8-4cee-bac3-10320e10e44c
  1605. measurementTechnique:
  1606. - name: multi electrode extracellular electrophysiology recording technique
  1607. schemaKey: MeasurementTechniqueType
  1608. - name: surgical technique
  1609. schemaKey: MeasurementTechniqueType
  1610. - name: signal filtering technique
  1611. schemaKey: MeasurementTechniqueType
  1612. - name: analytical technique
  1613. schemaKey: MeasurementTechniqueType
  1614. path: sub-BH401/sub-BH401_ses-20230208T000953_ecephys.nwb
  1615. publishedBy:
  1616. endDate: '2025-07-11T17:56:13.939419+00:00'
  1617. id: urn:uuid:8e75eed5-7443-433a-b61a-018c0dde47b7
  1618. name: DANDI publish
  1619. schemaKey: PublishActivity
  1620. startDate: '2025-07-11T17:56:13.939419+00:00'
  1621. wasAssociatedWith:
  1622. - id: urn:uuid:b6193bdc-6ebb-4c0f-bdb3-3d72d467c65c
  1623. identifier: RRID:SCR_017571
  1624. name: DANDI API
  1625. schemaKey: Software
  1626. version: 0.1.0
  1627. schemaKey: Asset
  1628. schemaVersion: 0.6.4
  1629. variableMeasured:
  1630. - schemaKey: PropertyValue
  1631. value: ElectrodeGroup
  1632. - schemaKey: PropertyValue
  1633. value: LFP
  1634. - schemaKey: PropertyValue
  1635. value: ElectricalSeries
  1636. - schemaKey: PropertyValue
  1637. value: ProcessingModule
  1638. wasAttributedTo:
  1639. - age:
  1640. schemaKey: PropertyValue
  1641. unitText: ISO-8601 duration
  1642. value: P24W
  1643. valueReference:
  1644. schemaKey: PropertyValue
  1645. value: dandi:BirthReference
  1646. identifier: BH401
  1647. schemaKey: Participant
  1648. sex:
  1649. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1650. name: Male
  1651. schemaKey: SexType
  1652. species:
  1653. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1654. name: Rattus norvegicus - Norway rat
  1655. schemaKey: SpeciesType
  1656. wasGeneratedBy:
  1657. - description: Rat Ultrasound Array Stimulation
  1658. name: Acquisition session
  1659. schemaKey: Session
  1660. startDate: '2023-02-08T00:09:53-08:00'
  1661. - description: Metadata generated by DANDI cli
  1662. endDate: '2023-05-02T21:22:38.528050+00:00'
  1663. id: urn:uuid:d029e61f-65c4-408b-8b3d-37f2dc9282b0
  1664. name: Metadata generation
  1665. schemaKey: Activity
  1666. startDate: '2023-05-02T21:22:38.522911+00:00'
  1667. wasAssociatedWith:
  1668. - identifier: RRID:SCR_019009
  1669. name: DANDI Command Line Interface
  1670. schemaKey: Software
  1671. url: https://github.com/dandi/dandi-cli
  1672. version: 0.54.0
  1673. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1674. access:
  1675. - schemaKey: AccessRequirements
  1676. status: dandi:OpenAccess
  1677. approach:
  1678. - name: electrophysiological approach
  1679. schemaKey: ApproachType
  1680. blobDateModified: '2023-05-02T21:06:29.092000+00:00'
  1681. contentSize: 2168369952
  1682. contentUrl:
  1683. - https://api.dandiarchive.org/api/assets/23bac3f8-ec15-45b4-af32-8e17edd3cd29/download/
  1684. - https://dandiarchive.s3.amazonaws.com/blobs/264/fb6/264fb67c-1fe9-4553-94e0-db5f2833f66d
  1685. dateModified: '2023-05-02T21:22:38.739933+00:00'
  1686. datePublished: '2025-07-11T17:56:13.945987+00:00'
  1687. digest:
  1688. dandi:dandi-etag: cd99887a5418ddc92d0358f2978be21d-33
  1689. dandi:sha2-256: 0a5b8704b3234c278c37db5e014b5755b9ee1776534b41be2b13f5d338d860a3
  1690. encodingFormat: application/x-nwb
  1691. id: dandiasset:23bac3f8-ec15-45b4-af32-8e17edd3cd29
  1692. identifier: 23bac3f8-ec15-45b4-af32-8e17edd3cd29
  1693. measurementTechnique:
  1694. - name: multi electrode extracellular electrophysiology recording technique
  1695. schemaKey: MeasurementTechniqueType
  1696. - name: surgical technique
  1697. schemaKey: MeasurementTechniqueType
  1698. - name: signal filtering technique
  1699. schemaKey: MeasurementTechniqueType
  1700. - name: analytical technique
  1701. schemaKey: MeasurementTechniqueType
  1702. path: sub-BH401/sub-BH401_ses-20230207T221353_ecephys.nwb
  1703. publishedBy:
  1704. endDate: '2025-07-11T17:56:13.945987+00:00'
  1705. id: urn:uuid:7758a6fd-f8b2-4284-8db5-82832413206f
  1706. name: DANDI publish
  1707. schemaKey: PublishActivity
  1708. startDate: '2025-07-11T17:56:13.945987+00:00'
  1709. wasAssociatedWith:
  1710. - id: urn:uuid:8289b95b-fa99-4147-b17d-e1c47f01b376
  1711. identifier: RRID:SCR_017571
  1712. name: DANDI API
  1713. schemaKey: Software
  1714. version: 0.1.0
  1715. schemaKey: Asset
  1716. schemaVersion: 0.6.4
  1717. variableMeasured:
  1718. - schemaKey: PropertyValue
  1719. value: ElectrodeGroup
  1720. - schemaKey: PropertyValue
  1721. value: LFP
  1722. - schemaKey: PropertyValue
  1723. value: ElectricalSeries
  1724. - schemaKey: PropertyValue
  1725. value: ProcessingModule
  1726. wasAttributedTo:
  1727. - age:
  1728. schemaKey: PropertyValue
  1729. unitText: ISO-8601 duration
  1730. value: P24W
  1731. valueReference:
  1732. schemaKey: PropertyValue
  1733. value: dandi:BirthReference
  1734. identifier: BH401
  1735. schemaKey: Participant
  1736. sex:
  1737. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1738. name: Male
  1739. schemaKey: SexType
  1740. species:
  1741. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1742. name: Rattus norvegicus - Norway rat
  1743. schemaKey: SpeciesType
  1744. wasGeneratedBy:
  1745. - description: Rat Ultrasound Array Stimulation
  1746. name: Acquisition session
  1747. schemaKey: Session
  1748. startDate: '2023-02-07T22:13:53-08:00'
  1749. - description: Metadata generated by DANDI cli
  1750. endDate: '2023-05-02T21:22:38.739904+00:00'
  1751. id: urn:uuid:3ba9c594-4456-4ed6-ab29-0115c5cf2b7a
  1752. name: Metadata generation
  1753. schemaKey: Activity
  1754. startDate: '2023-05-02T21:22:38.671786+00:00'
  1755. wasAssociatedWith:
  1756. - identifier: RRID:SCR_019009
  1757. name: DANDI Command Line Interface
  1758. schemaKey: Software
  1759. url: https://github.com/dandi/dandi-cli
  1760. version: 0.54.0
  1761. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1762. access:
  1763. - schemaKey: AccessRequirements
  1764. status: dandi:OpenAccess
  1765. approach:
  1766. - name: electrophysiological approach
  1767. schemaKey: ApproachType
  1768. blobDateModified: '2023-05-02T21:05:53.979000+00:00'
  1769. contentSize: 2045686560
  1770. contentUrl:
  1771. - https://api.dandiarchive.org/api/assets/b7920fa7-36b0-48a5-9827-beeeafb501a3/download/
  1772. - https://dandiarchive.s3.amazonaws.com/blobs/e39/ea7/e39ea767-de6f-45d6-857c-a3c29de968cd
  1773. dateModified: '2023-05-02T21:23:27.131806+00:00'
  1774. datePublished: '2025-07-11T17:56:13.953762+00:00'
  1775. digest:
  1776. dandi:dandi-etag: dfa3eae069cd7758540dccd6a918e378-31
  1777. dandi:sha2-256: 40cfa8c04f1bfd7b136533e0850ba40da8b58aec2aee75c355d43344c424235b
  1778. encodingFormat: application/x-nwb
  1779. id: dandiasset:b7920fa7-36b0-48a5-9827-beeeafb501a3
  1780. identifier: b7920fa7-36b0-48a5-9827-beeeafb501a3
  1781. measurementTechnique:
  1782. - name: multi electrode extracellular electrophysiology recording technique
  1783. schemaKey: MeasurementTechniqueType
  1784. - name: surgical technique
  1785. schemaKey: MeasurementTechniqueType
  1786. - name: signal filtering technique
  1787. schemaKey: MeasurementTechniqueType
  1788. - name: analytical technique
  1789. schemaKey: MeasurementTechniqueType
  1790. path: sub-BH401/sub-BH401_ses-20230207T213946_ecephys.nwb
  1791. publishedBy:
  1792. endDate: '2025-07-11T17:56:13.953762+00:00'
  1793. id: urn:uuid:3148c162-4c7a-49f8-ad54-26ebb7543e61
  1794. name: DANDI publish
  1795. schemaKey: PublishActivity
  1796. startDate: '2025-07-11T17:56:13.953762+00:00'
  1797. wasAssociatedWith:
  1798. - id: urn:uuid:69d2c8b9-24f7-4e3a-8166-8a8360852c25
  1799. identifier: RRID:SCR_017571
  1800. name: DANDI API
  1801. schemaKey: Software
  1802. version: 0.1.0
  1803. schemaKey: Asset
  1804. schemaVersion: 0.6.4
  1805. variableMeasured:
  1806. - schemaKey: PropertyValue
  1807. value: ElectrodeGroup
  1808. - schemaKey: PropertyValue
  1809. value: LFP
  1810. - schemaKey: PropertyValue
  1811. value: ElectricalSeries
  1812. - schemaKey: PropertyValue
  1813. value: ProcessingModule
  1814. wasAttributedTo:
  1815. - age:
  1816. schemaKey: PropertyValue
  1817. unitText: ISO-8601 duration
  1818. value: P24W
  1819. valueReference:
  1820. schemaKey: PropertyValue
  1821. value: dandi:BirthReference
  1822. identifier: BH401
  1823. schemaKey: Participant
  1824. sex:
  1825. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1826. name: Male
  1827. schemaKey: SexType
  1828. species:
  1829. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1830. name: Rattus norvegicus - Norway rat
  1831. schemaKey: SpeciesType
  1832. wasGeneratedBy:
  1833. - description: Rat Ultrasound Array Stimulation
  1834. name: Acquisition session
  1835. schemaKey: Session
  1836. startDate: '2023-02-07T21:39:46-08:00'
  1837. - description: Metadata generated by DANDI cli
  1838. endDate: '2023-05-02T21:23:27.131777+00:00'
  1839. id: urn:uuid:ce89aa65-0d70-4db3-889d-a9f450ce6760
  1840. name: Metadata generation
  1841. schemaKey: Activity
  1842. startDate: '2023-05-02T21:23:27.075652+00:00'
  1843. wasAssociatedWith:
  1844. - identifier: RRID:SCR_019009
  1845. name: DANDI Command Line Interface
  1846. schemaKey: Software
  1847. url: https://github.com/dandi/dandi-cli
  1848. version: 0.54.0
  1849. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1850. access:
  1851. - schemaKey: AccessRequirements
  1852. status: dandi:OpenAccess
  1853. approach:
  1854. - name: electrophysiological approach
  1855. schemaKey: ApproachType
  1856. blobDateModified: '2023-05-02T21:06:06.071000+00:00'
  1857. contentSize: 2042737440
  1858. contentUrl:
  1859. - https://api.dandiarchive.org/api/assets/e7b1f867-d1f4-4745-b1fe-98ba05d536de/download/
  1860. - https://dandiarchive.s3.amazonaws.com/blobs/637/2a5/6372a517-3d2d-4904-90de-f1fa43586687
  1861. dateModified: '2023-05-02T21:23:27.121357+00:00'
  1862. datePublished: '2025-07-11T17:56:13.961739+00:00'
  1863. digest:
  1864. dandi:dandi-etag: 78333d731e9d2aa16334688f552a4cfd-31
  1865. dandi:sha2-256: b66d030fd000c4f9005b3efa35bb75298525c4ac42bb86211bf5c63d86a775e8
  1866. encodingFormat: application/x-nwb
  1867. id: dandiasset:e7b1f867-d1f4-4745-b1fe-98ba05d536de
  1868. identifier: e7b1f867-d1f4-4745-b1fe-98ba05d536de
  1869. measurementTechnique:
  1870. - name: multi electrode extracellular electrophysiology recording technique
  1871. schemaKey: MeasurementTechniqueType
  1872. - name: surgical technique
  1873. schemaKey: MeasurementTechniqueType
  1874. - name: signal filtering technique
  1875. schemaKey: MeasurementTechniqueType
  1876. - name: analytical technique
  1877. schemaKey: MeasurementTechniqueType
  1878. path: sub-BH401/sub-BH401_ses-20230207T231819_ecephys.nwb
  1879. publishedBy:
  1880. endDate: '2025-07-11T17:56:13.961739+00:00'
  1881. id: urn:uuid:b43917c1-964d-4ca7-98ca-a68abb1bda98
  1882. name: DANDI publish
  1883. schemaKey: PublishActivity
  1884. startDate: '2025-07-11T17:56:13.961739+00:00'
  1885. wasAssociatedWith:
  1886. - id: urn:uuid:f6d9aaa4-6d52-4675-b3b6-d5ff8b9859b3
  1887. identifier: RRID:SCR_017571
  1888. name: DANDI API
  1889. schemaKey: Software
  1890. version: 0.1.0
  1891. schemaKey: Asset
  1892. schemaVersion: 0.6.4
  1893. variableMeasured:
  1894. - schemaKey: PropertyValue
  1895. value: ElectrodeGroup
  1896. - schemaKey: PropertyValue
  1897. value: LFP
  1898. - schemaKey: PropertyValue
  1899. value: ElectricalSeries
  1900. - schemaKey: PropertyValue
  1901. value: ProcessingModule
  1902. wasAttributedTo:
  1903. - age:
  1904. schemaKey: PropertyValue
  1905. unitText: ISO-8601 duration
  1906. value: P24W
  1907. valueReference:
  1908. schemaKey: PropertyValue
  1909. value: dandi:BirthReference
  1910. identifier: BH401
  1911. schemaKey: Participant
  1912. sex:
  1913. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1914. name: Male
  1915. schemaKey: SexType
  1916. species:
  1917. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1918. name: Rattus norvegicus - Norway rat
  1919. schemaKey: SpeciesType
  1920. wasGeneratedBy:
  1921. - description: Rat Ultrasound Array Stimulation
  1922. name: Acquisition session
  1923. schemaKey: Session
  1924. startDate: '2023-02-07T23:18:19-08:00'
  1925. - description: Metadata generated by DANDI cli
  1926. endDate: '2023-05-02T21:23:27.121322+00:00'
  1927. id: urn:uuid:f50b69cf-9c45-40b2-9ae8-a058b4ffa6af
  1928. name: Metadata generation
  1929. schemaKey: Activity
  1930. startDate: '2023-05-02T21:23:27.025854+00:00'
  1931. wasAssociatedWith:
  1932. - identifier: RRID:SCR_019009
  1933. name: DANDI Command Line Interface
  1934. schemaKey: Software
  1935. url: https://github.com/dandi/dandi-cli
  1936. version: 0.54.0
  1937. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1938. access:
  1939. - schemaKey: AccessRequirements
  1940. status: dandi:OpenAccess
  1941. approach:
  1942. - name: electrophysiological approach
  1943. schemaKey: ApproachType
  1944. blobDateModified: '2023-05-02T21:06:14.181000+00:00'
  1945. contentSize: 2085499680
  1946. contentUrl:
  1947. - https://api.dandiarchive.org/api/assets/0b111e46-66b7-4e06-b202-c4eefc50c4c3/download/
  1948. - https://dandiarchive.s3.amazonaws.com/blobs/dce/8f5/dce8f55b-37ba-45aa-8600-8f84923b4d79
  1949. dateModified: '2023-05-02T21:23:27.918427+00:00'
  1950. datePublished: '2025-07-11T17:56:13.971034+00:00'
  1951. digest:
  1952. dandi:dandi-etag: c7436ea002ff14795f89974ee9bcca69-32
  1953. dandi:sha2-256: cfd2e029a2c210071390ce0096db82d5e6985a2bf60955d0f14c1fbe30fff9f7
  1954. encodingFormat: application/x-nwb
  1955. id: dandiasset:0b111e46-66b7-4e06-b202-c4eefc50c4c3
  1956. identifier: 0b111e46-66b7-4e06-b202-c4eefc50c4c3
  1957. measurementTechnique:
  1958. - name: multi electrode extracellular electrophysiology recording technique
  1959. schemaKey: MeasurementTechniqueType
  1960. - name: surgical technique
  1961. schemaKey: MeasurementTechniqueType
  1962. - name: signal filtering technique
  1963. schemaKey: MeasurementTechniqueType
  1964. - name: analytical technique
  1965. schemaKey: MeasurementTechniqueType
  1966. path: sub-BH401/sub-BH401_ses-20230208T005106_ecephys.nwb
  1967. publishedBy:
  1968. endDate: '2025-07-11T17:56:13.971034+00:00'
  1969. id: urn:uuid:e1cf7d64-3516-4d11-bc93-f8c03c926ca1
  1970. name: DANDI publish
  1971. schemaKey: PublishActivity
  1972. startDate: '2025-07-11T17:56:13.971034+00:00'
  1973. wasAssociatedWith:
  1974. - id: urn:uuid:bd871351-e238-4970-acfc-49374e0513cf
  1975. identifier: RRID:SCR_017571
  1976. name: DANDI API
  1977. schemaKey: Software
  1978. version: 0.1.0
  1979. schemaKey: Asset
  1980. schemaVersion: 0.6.4
  1981. variableMeasured:
  1982. - schemaKey: PropertyValue
  1983. value: ElectrodeGroup
  1984. - schemaKey: PropertyValue
  1985. value: LFP
  1986. - schemaKey: PropertyValue
  1987. value: ElectricalSeries
  1988. - schemaKey: PropertyValue
  1989. value: ProcessingModule
  1990. wasAttributedTo:
  1991. - age:
  1992. schemaKey: PropertyValue
  1993. unitText: ISO-8601 duration
  1994. value: P24W
  1995. valueReference:
  1996. schemaKey: PropertyValue
  1997. value: dandi:BirthReference
  1998. identifier: BH401
  1999. schemaKey: Participant
  2000. sex:
  2001. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2002. name: Male
  2003. schemaKey: SexType
  2004. species:
  2005. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2006. name: Rattus norvegicus - Norway rat
  2007. schemaKey: SpeciesType
  2008. wasGeneratedBy:
  2009. - description: Rat Ultrasound Array Stimulation
  2010. name: Acquisition session
  2011. schemaKey: Session
  2012. startDate: '2023-02-08T00:51:06-08:00'
  2013. - description: Metadata generated by DANDI cli
  2014. endDate: '2023-05-02T21:23:27.918388+00:00'
  2015. id: urn:uuid:7c6862e3-9c8d-422c-b04d-1044cf39766e
  2016. name: Metadata generation
  2017. schemaKey: Activity
  2018. startDate: '2023-05-02T21:23:27.861102+00:00'
  2019. wasAssociatedWith:
  2020. - identifier: RRID:SCR_019009
  2021. name: DANDI Command Line Interface
  2022. schemaKey: Software
  2023. url: https://github.com/dandi/dandi-cli
  2024. version: 0.54.0
  2025. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2026. access:
  2027. - schemaKey: AccessRequirements
  2028. status: dandi:OpenAccess
  2029. approach:
  2030. - name: electrophysiological approach
  2031. schemaKey: ApproachType
  2032. blobDateModified: '2023-05-02T19:40:35.442000+00:00'
  2033. contentSize: 2053649184
  2034. contentUrl:
  2035. - https://api.dandiarchive.org/api/assets/1cfc2dfb-d293-438b-a6ab-df6dc867d7bd/download/
  2036. - https://dandiarchive.s3.amazonaws.com/blobs/5d4/04d/5d404df9-c7b7-4185-8bb9-e6e513aa69ef
  2037. dateModified: '2023-05-02T21:23:28.521503+00:00'
  2038. datePublished: '2025-07-11T17:56:13.979177+00:00'
  2039. digest:
  2040. dandi:dandi-etag: 8085d3c259dd1350a0801ef7b431a0a4-31
  2041. dandi:sha2-256: 284ac6dfcafb12296018e51857ae196dd6091e90bfc7802661db3f4b94e1961b
  2042. encodingFormat: application/x-nwb
  2043. id: dandiasset:1cfc2dfb-d293-438b-a6ab-df6dc867d7bd
  2044. identifier: 1cfc2dfb-d293-438b-a6ab-df6dc867d7bd
  2045. measurementTechnique:
  2046. - name: multi electrode extracellular electrophysiology recording technique
  2047. schemaKey: MeasurementTechniqueType
  2048. - name: surgical technique
  2049. schemaKey: MeasurementTechniqueType
  2050. - name: signal filtering technique
  2051. schemaKey: MeasurementTechniqueType
  2052. - name: analytical technique
  2053. schemaKey: MeasurementTechniqueType
  2054. path: sub-BH444/sub-BH444_ses-20230214T215744_ecephys.nwb
  2055. publishedBy:
  2056. endDate: '2025-07-11T17:56:13.979177+00:00'
  2057. id: urn:uuid:719205b6-43dc-4dbe-a8cb-e7e6a96a3c4d
  2058. name: DANDI publish
  2059. schemaKey: PublishActivity
  2060. startDate: '2025-07-11T17:56:13.979177+00:00'
  2061. wasAssociatedWith:
  2062. - id: urn:uuid:26e76db4-706d-44b7-b2ed-62787f678e44
  2063. identifier: RRID:SCR_017571
  2064. name: DANDI API
  2065. schemaKey: Software
  2066. version: 0.1.0
  2067. schemaKey: Asset
  2068. schemaVersion: 0.6.4
  2069. variableMeasured:
  2070. - schemaKey: PropertyValue
  2071. value: ElectrodeGroup
  2072. - schemaKey: PropertyValue
  2073. value: LFP
  2074. - schemaKey: PropertyValue
  2075. value: ElectricalSeries
  2076. - schemaKey: PropertyValue
  2077. value: ProcessingModule
  2078. wasAttributedTo:
  2079. - age:
  2080. schemaKey: PropertyValue
  2081. unitText: ISO-8601 duration
  2082. value: P24W
  2083. valueReference:
  2084. schemaKey: PropertyValue
  2085. value: dandi:BirthReference
  2086. identifier: BH444
  2087. schemaKey: Participant
  2088. sex:
  2089. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2090. name: Male
  2091. schemaKey: SexType
  2092. species:
  2093. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2094. name: Rattus norvegicus - Norway rat
  2095. schemaKey: SpeciesType
  2096. wasGeneratedBy:
  2097. - description: Rat Ultrasound Array Stimulation
  2098. name: Acquisition session
  2099. schemaKey: Session
  2100. startDate: '2023-02-14T21:57:44-08:00'
  2101. - description: Metadata generated by DANDI cli
  2102. endDate: '2023-05-02T21:23:28.521466+00:00'
  2103. id: urn:uuid:1ecd8e6c-1501-4b69-8592-a489aa3062c5
  2104. name: Metadata generation
  2105. schemaKey: Activity
  2106. startDate: '2023-05-02T21:23:28.403340+00:00'
  2107. wasAssociatedWith:
  2108. - identifier: RRID:SCR_019009
  2109. name: DANDI Command Line Interface
  2110. schemaKey: Software
  2111. url: https://github.com/dandi/dandi-cli
  2112. version: 0.54.0
  2113. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2114. access:
  2115. - schemaKey: AccessRequirements
  2116. status: dandi:OpenAccess
  2117. approach:
  2118. - name: electrophysiological approach
  2119. schemaKey: ApproachType
  2120. blobDateModified: '2023-05-02T19:35:46.356000+00:00'
  2121. contentSize: 1067463456
  2122. contentUrl:
  2123. - https://api.dandiarchive.org/api/assets/b4f4fc91-51e5-41e9-9a0a-130df842f3dd/download/
  2124. - https://dandiarchive.s3.amazonaws.com/blobs/343/067/3430676f-956e-43a1-8f5e-df7fff437ca9
  2125. dateModified: '2023-05-02T21:24:17.663829+00:00'
  2126. datePublished: '2025-07-11T17:56:13.987625+00:00'
  2127. digest:
  2128. dandi:dandi-etag: 569be647d459caa89dfef4b5aaf3b4ae-16
  2129. dandi:sha2-256: 3f18a9ee165c5e85938cc97fe28355cfae22e12105377f65127b18067a5d6d8d
  2130. encodingFormat: application/x-nwb
  2131. id: dandiasset:b4f4fc91-51e5-41e9-9a0a-130df842f3dd
  2132. identifier: b4f4fc91-51e5-41e9-9a0a-130df842f3dd
  2133. measurementTechnique:
  2134. - name: multi electrode extracellular electrophysiology recording technique
  2135. schemaKey: MeasurementTechniqueType
  2136. - name: surgical technique
  2137. schemaKey: MeasurementTechniqueType
  2138. - name: signal filtering technique
  2139. schemaKey: MeasurementTechniqueType
  2140. - name: analytical technique
  2141. schemaKey: MeasurementTechniqueType
  2142. path: sub-BH396/sub-BH396_ses-20221117T221038_ecephys.nwb
  2143. publishedBy:
  2144. endDate: '2025-07-11T17:56:13.987625+00:00'
  2145. id: urn:uuid:00d69dbd-9307-4438-ae59-eadcd39fa5bf
  2146. name: DANDI publish
  2147. schemaKey: PublishActivity
  2148. startDate: '2025-07-11T17:56:13.987625+00:00'
  2149. wasAssociatedWith:
  2150. - id: urn:uuid:0acfab20-5f4d-4774-a8f7-f1e03036614e
  2151. identifier: RRID:SCR_017571
  2152. name: DANDI API
  2153. schemaKey: Software
  2154. version: 0.1.0
  2155. schemaKey: Asset
  2156. schemaVersion: 0.6.4
  2157. variableMeasured:
  2158. - schemaKey: PropertyValue
  2159. value: ElectrodeGroup
  2160. - schemaKey: PropertyValue
  2161. value: LFP
  2162. - schemaKey: PropertyValue
  2163. value: ElectricalSeries
  2164. - schemaKey: PropertyValue
  2165. value: ProcessingModule
  2166. wasAttributedTo:
  2167. - age:
  2168. schemaKey: PropertyValue
  2169. unitText: ISO-8601 duration
  2170. value: P24W
  2171. valueReference:
  2172. schemaKey: PropertyValue
  2173. value: dandi:BirthReference
  2174. identifier: BH396
  2175. schemaKey: Participant
  2176. sex:
  2177. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2178. name: Male
  2179. schemaKey: SexType
  2180. species:
  2181. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2182. name: Rattus norvegicus - Norway rat
  2183. schemaKey: SpeciesType
  2184. wasGeneratedBy:
  2185. - description: Rat Ultrasound Array Stimulation
  2186. name: Acquisition session
  2187. schemaKey: Session
  2188. startDate: '2022-11-17T22:10:38-08:00'
  2189. - description: Metadata generated by DANDI cli
  2190. endDate: '2023-05-02T21:24:17.663796+00:00'
  2191. id: urn:uuid:73f0bdfa-a4fd-453b-9108-e9be5a99c5f5
  2192. name: Metadata generation
  2193. schemaKey: Activity
  2194. startDate: '2023-05-02T21:24:17.600433+00:00'
  2195. wasAssociatedWith:
  2196. - identifier: RRID:SCR_019009
  2197. name: DANDI Command Line Interface
  2198. schemaKey: Software
  2199. url: https://github.com/dandi/dandi-cli
  2200. version: 0.54.0
  2201. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2202. access:
  2203. - schemaKey: AccessRequirements
  2204. status: dandi:OpenAccess
  2205. approach:
  2206. - name: electrophysiological approach
  2207. schemaKey: ApproachType
  2208. blobDateModified: '2023-05-02T19:35:44.693000+00:00'
  2209. contentSize: 1063334688
  2210. contentUrl:
  2211. - https://api.dandiarchive.org/api/assets/c776722b-0b8f-40f6-8d2c-4b5af396095a/download/
  2212. - https://dandiarchive.s3.amazonaws.com/blobs/941/a0b/941a0bba-e382-452a-98ad-1daf448c4eb8
  2213. dateModified: '2023-05-02T21:24:17.662087+00:00'
  2214. datePublished: '2025-07-11T17:56:13.996324+00:00'
  2215. digest:
  2216. dandi:dandi-etag: c056d17efa18d8c882b3e68bf94e9640-16
  2217. dandi:sha2-256: a09f069bb2cb4870bb22f1bcd625317a9529a8a94a3d05c445b4519bd19d0317
  2218. encodingFormat: application/x-nwb
  2219. id: dandiasset:c776722b-0b8f-40f6-8d2c-4b5af396095a
  2220. identifier: c776722b-0b8f-40f6-8d2c-4b5af396095a
  2221. measurementTechnique:
  2222. - name: multi electrode extracellular electrophysiology recording technique
  2223. schemaKey: MeasurementTechniqueType
  2224. - name: surgical technique
  2225. schemaKey: MeasurementTechniqueType
  2226. - name: signal filtering technique
  2227. schemaKey: MeasurementTechniqueType
  2228. - name: analytical technique
  2229. schemaKey: MeasurementTechniqueType
  2230. path: sub-BH396/sub-BH396_ses-20221117T220434_ecephys.nwb
  2231. publishedBy:
  2232. endDate: '2025-07-11T17:56:13.996324+00:00'
  2233. id: urn:uuid:e322084e-f57a-447d-81fd-4a7aa9815fde
  2234. name: DANDI publish
  2235. schemaKey: PublishActivity
  2236. startDate: '2025-07-11T17:56:13.996324+00:00'
  2237. wasAssociatedWith:
  2238. - id: urn:uuid:d83765e8-045b-41fb-abd8-73fb82d30aa8
  2239. identifier: RRID:SCR_017571
  2240. name: DANDI API
  2241. schemaKey: Software
  2242. version: 0.1.0
  2243. schemaKey: Asset
  2244. schemaVersion: 0.6.4
  2245. variableMeasured:
  2246. - schemaKey: PropertyValue
  2247. value: ElectrodeGroup
  2248. - schemaKey: PropertyValue
  2249. value: LFP
  2250. - schemaKey: PropertyValue
  2251. value: ElectricalSeries
  2252. - schemaKey: PropertyValue
  2253. value: ProcessingModule
  2254. wasAttributedTo:
  2255. - age:
  2256. schemaKey: PropertyValue
  2257. unitText: ISO-8601 duration
  2258. value: P24W
  2259. valueReference:
  2260. schemaKey: PropertyValue
  2261. value: dandi:BirthReference
  2262. identifier: BH396
  2263. schemaKey: Participant
  2264. sex:
  2265. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2266. name: Male
  2267. schemaKey: SexType
  2268. species:
  2269. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2270. name: Rattus norvegicus - Norway rat
  2271. schemaKey: SpeciesType
  2272. wasGeneratedBy:
  2273. - description: Rat Ultrasound Array Stimulation
  2274. name: Acquisition session
  2275. schemaKey: Session
  2276. startDate: '2022-11-17T22:04:34-08:00'
  2277. - description: Metadata generated by DANDI cli
  2278. endDate: '2023-05-02T21:24:17.662045+00:00'
  2279. id: urn:uuid:41a9c102-036c-49bc-8415-fcd5cea43196
  2280. name: Metadata generation
  2281. schemaKey: Activity
  2282. startDate: '2023-05-02T21:24:17.555816+00:00'
  2283. wasAssociatedWith:
  2284. - identifier: RRID:SCR_019009
  2285. name: DANDI Command Line Interface
  2286. schemaKey: Software
  2287. url: https://github.com/dandi/dandi-cli
  2288. version: 0.54.0
  2289. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2290. access:
  2291. - schemaKey: AccessRequirements
  2292. status: dandi:OpenAccess
  2293. approach:
  2294. - name: electrophysiological approach
  2295. schemaKey: ApproachType
  2296. blobDateModified: '2023-05-02T19:36:11.700000+00:00'
  2297. contentSize: 1092825888
  2298. contentUrl:
  2299. - https://api.dandiarchive.org/api/assets/076826f7-3331-455e-9163-020e5305b047/download/
  2300. - https://dandiarchive.s3.amazonaws.com/blobs/e62/c66/e62c665c-ecdc-43bd-a0e6-182dcf4dcf8b
  2301. dateModified: '2023-05-02T21:24:17.980181+00:00'
  2302. datePublished: '2025-07-11T17:56:14.004951+00:00'
  2303. digest:
  2304. dandi:dandi-etag: c8bed80d566292ee40629a261c77aca3-17
  2305. dandi:sha2-256: 7fe4ffabafcba72dbe42c9f1658a1916c608aefd7f694809bb5060e9d09b3dca
  2306. encodingFormat: application/x-nwb
  2307. id: dandiasset:076826f7-3331-455e-9163-020e5305b047
  2308. identifier: 076826f7-3331-455e-9163-020e5305b047
  2309. measurementTechnique:
  2310. - name: multi electrode extracellular electrophysiology recording technique
  2311. schemaKey: MeasurementTechniqueType
  2312. - name: surgical technique
  2313. schemaKey: MeasurementTechniqueType
  2314. - name: signal filtering technique
  2315. schemaKey: MeasurementTechniqueType
  2316. - name: analytical technique
  2317. schemaKey: MeasurementTechniqueType
  2318. path: sub-BH396/sub-BH396_ses-20221117T224848_ecephys.nwb
  2319. publishedBy:
  2320. endDate: '2025-07-11T17:56:14.004951+00:00'
  2321. id: urn:uuid:cd09058e-6ba6-4c83-846b-82025c915dd5
  2322. name: DANDI publish
  2323. schemaKey: PublishActivity
  2324. startDate: '2025-07-11T17:56:14.004951+00:00'
  2325. wasAssociatedWith:
  2326. - id: urn:uuid:f61d3eef-38eb-462d-a4e2-a0384f70970b
  2327. identifier: RRID:SCR_017571
  2328. name: DANDI API
  2329. schemaKey: Software
  2330. version: 0.1.0
  2331. schemaKey: Asset
  2332. schemaVersion: 0.6.4
  2333. variableMeasured:
  2334. - schemaKey: PropertyValue
  2335. value: ElectrodeGroup
  2336. - schemaKey: PropertyValue
  2337. value: LFP
  2338. - schemaKey: PropertyValue
  2339. value: ElectricalSeries
  2340. - schemaKey: PropertyValue
  2341. value: ProcessingModule
  2342. wasAttributedTo:
  2343. - age:
  2344. schemaKey: PropertyValue
  2345. unitText: ISO-8601 duration
  2346. value: P24W
  2347. valueReference:
  2348. schemaKey: PropertyValue
  2349. value: dandi:BirthReference
  2350. identifier: BH396
  2351. schemaKey: Participant
  2352. sex:
  2353. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2354. name: Male
  2355. schemaKey: SexType
  2356. species:
  2357. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2358. name: Rattus norvegicus - Norway rat
  2359. schemaKey: SpeciesType
  2360. wasGeneratedBy:
  2361. - description: Rat Ultrasound Array Stimulation
  2362. name: Acquisition session
  2363. schemaKey: Session
  2364. startDate: '2022-11-17T22:48:48-08:00'
  2365. - description: Metadata generated by DANDI cli
  2366. endDate: '2023-05-02T21:24:17.980150+00:00'
  2367. id: urn:uuid:bb4daa5b-bdb5-4425-8ab6-676d63267a9a
  2368. name: Metadata generation
  2369. schemaKey: Activity
  2370. startDate: '2023-05-02T21:24:17.889492+00:00'
  2371. wasAssociatedWith:
  2372. - identifier: RRID:SCR_019009
  2373. name: DANDI Command Line Interface
  2374. schemaKey: Software
  2375. url: https://github.com/dandi/dandi-cli
  2376. version: 0.54.0
  2377. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2378. access:
  2379. - schemaKey: AccessRequirements
  2380. status: dandi:OpenAccess
  2381. approach:
  2382. - name: electrophysiological approach
  2383. schemaKey: ApproachType
  2384. blobDateModified: '2023-05-02T19:36:47.815000+00:00'
  2385. contentSize: 1228190496
  2386. contentUrl:
  2387. - https://api.dandiarchive.org/api/assets/13d6f4f1-0c4f-4a6f-926f-eddd2173fabd/download/
  2388. - https://dandiarchive.s3.amazonaws.com/blobs/601/700/60170051-cfc4-4244-9603-fa1b9bd706bc
  2389. dateModified: '2023-05-02T21:24:18.284059+00:00'
  2390. datePublished: '2025-07-11T17:56:14.013528+00:00'
  2391. digest:
  2392. dandi:dandi-etag: 71d4255dd7ec4b60a3dc9483c957d6d4-19
  2393. dandi:sha2-256: 457be755c2710020cd68da0bf76d1da4be790f00084d168576bde9f9269c6249
  2394. encodingFormat: application/x-nwb
  2395. id: dandiasset:13d6f4f1-0c4f-4a6f-926f-eddd2173fabd
  2396. identifier: 13d6f4f1-0c4f-4a6f-926f-eddd2173fabd
  2397. measurementTechnique:
  2398. - name: multi electrode extracellular electrophysiology recording technique
  2399. schemaKey: MeasurementTechniqueType
  2400. - name: surgical technique
  2401. schemaKey: MeasurementTechniqueType
  2402. - name: signal filtering technique
  2403. schemaKey: MeasurementTechniqueType
  2404. - name: analytical technique
  2405. schemaKey: MeasurementTechniqueType
  2406. path: sub-BH396/sub-BH396_ses-20221117T225429_ecephys.nwb
  2407. publishedBy:
  2408. endDate: '2025-07-11T17:56:14.013528+00:00'
  2409. id: urn:uuid:26fbe7f4-5d64-4d94-84d0-83c235f793e3
  2410. name: DANDI publish
  2411. schemaKey: PublishActivity
  2412. startDate: '2025-07-11T17:56:14.013528+00:00'
  2413. wasAssociatedWith:
  2414. - id: urn:uuid:78568889-c503-4d9e-b89e-b05508bd67b4
  2415. identifier: RRID:SCR_017571
  2416. name: DANDI API
  2417. schemaKey: Software
  2418. version: 0.1.0
  2419. schemaKey: Asset
  2420. schemaVersion: 0.6.4
  2421. variableMeasured:
  2422. - schemaKey: PropertyValue
  2423. value: ElectrodeGroup
  2424. - schemaKey: PropertyValue
  2425. value: LFP
  2426. - schemaKey: PropertyValue
  2427. value: ElectricalSeries
  2428. - schemaKey: PropertyValue
  2429. value: ProcessingModule
  2430. wasAttributedTo:
  2431. - age:
  2432. schemaKey: PropertyValue
  2433. unitText: ISO-8601 duration
  2434. value: P24W
  2435. valueReference:
  2436. schemaKey: PropertyValue
  2437. value: dandi:BirthReference
  2438. identifier: BH396
  2439. schemaKey: Participant
  2440. sex:
  2441. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2442. name: Male
  2443. schemaKey: SexType
  2444. species:
  2445. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2446. name: Rattus norvegicus - Norway rat
  2447. schemaKey: SpeciesType
  2448. wasGeneratedBy:
  2449. - description: Rat Ultrasound Array Stimulation
  2450. name: Acquisition session
  2451. schemaKey: Session
  2452. startDate: '2022-11-17T22:54:29-08:00'
  2453. - description: Metadata generated by DANDI cli
  2454. endDate: '2023-05-02T21:24:18.284025+00:00'
  2455. id: urn:uuid:24d8e0ca-06e3-4cc6-98d8-3d3b934ad939
  2456. name: Metadata generation
  2457. schemaKey: Activity
  2458. startDate: '2023-05-02T21:24:18.220521+00:00'
  2459. wasAssociatedWith:
  2460. - identifier: RRID:SCR_019009
  2461. name: DANDI Command Line Interface
  2462. schemaKey: Software
  2463. url: https://github.com/dandi/dandi-cli
  2464. version: 0.54.0
  2465. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2466. access:
  2467. - schemaKey: AccessRequirements
  2468. status: dandi:OpenAccess
  2469. approach:
  2470. - name: electrophysiological approach
  2471. schemaKey: ApproachType
  2472. blobDateModified: '2023-05-02T19:36:00.771000+00:00'
  2473. contentSize: 1081029408
  2474. contentUrl:
  2475. - https://api.dandiarchive.org/api/assets/bed0693c-5ad6-41fd-bd69-27e8ebdc1ef2/download/
  2476. - https://dandiarchive.s3.amazonaws.com/blobs/f7c/78a/f7c78a93-43f2-401b-9056-39ca564d4216
  2477. dateModified: '2023-05-02T21:24:17.676973+00:00'
  2478. datePublished: '2025-07-11T17:56:14.021968+00:00'
  2479. digest:
  2480. dandi:dandi-etag: b5d8bf38b53edc712cf620bcd346ea0b-17
  2481. dandi:sha2-256: 9f3b5f61da822a463d6494c46ce2278516e6924365bb5bfa050d0da33d2ba4f9
  2482. encodingFormat: application/x-nwb
  2483. id: dandiasset:bed0693c-5ad6-41fd-bd69-27e8ebdc1ef2
  2484. identifier: bed0693c-5ad6-41fd-bd69-27e8ebdc1ef2
  2485. measurementTechnique:
  2486. - name: multi electrode extracellular electrophysiology recording technique
  2487. schemaKey: MeasurementTechniqueType
  2488. - name: surgical technique
  2489. schemaKey: MeasurementTechniqueType
  2490. - name: signal filtering technique
  2491. schemaKey: MeasurementTechniqueType
  2492. - name: analytical technique
  2493. schemaKey: MeasurementTechniqueType
  2494. path: sub-BH396/sub-BH396_ses-20221117T215447_ecephys.nwb
  2495. publishedBy:
  2496. endDate: '2025-07-11T17:56:14.021968+00:00'
  2497. id: urn:uuid:a6d32be0-41f2-4091-8b33-20bf1509a944
  2498. name: DANDI publish
  2499. schemaKey: PublishActivity
  2500. startDate: '2025-07-11T17:56:14.021968+00:00'
  2501. wasAssociatedWith:
  2502. - id: urn:uuid:5684ecd2-3431-45de-87f7-a157be3f7873
  2503. identifier: RRID:SCR_017571
  2504. name: DANDI API
  2505. schemaKey: Software
  2506. version: 0.1.0
  2507. schemaKey: Asset
  2508. schemaVersion: 0.6.4
  2509. variableMeasured:
  2510. - schemaKey: PropertyValue
  2511. value: ElectrodeGroup
  2512. - schemaKey: PropertyValue
  2513. value: LFP
  2514. - schemaKey: PropertyValue
  2515. value: ElectricalSeries
  2516. - schemaKey: PropertyValue
  2517. value: ProcessingModule
  2518. wasAttributedTo:
  2519. - age:
  2520. schemaKey: PropertyValue
  2521. unitText: ISO-8601 duration
  2522. value: P24W
  2523. valueReference:
  2524. schemaKey: PropertyValue
  2525. value: dandi:BirthReference
  2526. identifier: BH396
  2527. schemaKey: Participant
  2528. sex:
  2529. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2530. name: Male
  2531. schemaKey: SexType
  2532. species:
  2533. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2534. name: Rattus norvegicus - Norway rat
  2535. schemaKey: SpeciesType
  2536. wasGeneratedBy:
  2537. - description: Rat Ultrasound Array Stimulation
  2538. name: Acquisition session
  2539. schemaKey: Session
  2540. startDate: '2022-11-17T21:54:47-08:00'
  2541. - description: Metadata generated by DANDI cli
  2542. endDate: '2023-05-02T21:24:17.676944+00:00'
  2543. id: urn:uuid:8fd3903c-e909-4e89-8e8a-f9e86185dfad
  2544. name: Metadata generation
  2545. schemaKey: Activity
  2546. startDate: '2023-05-02T21:24:17.515776+00:00'
  2547. wasAssociatedWith:
  2548. - identifier: RRID:SCR_019009
  2549. name: DANDI Command Line Interface
  2550. schemaKey: Software
  2551. url: https://github.com/dandi/dandi-cli
  2552. version: 0.54.0
Tip!

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

Comments

Loading...