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 58 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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:EmbargoedAccess
  5. approach:
  6. - name: electrophysiological approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2025-06-10T04:57:28.848249Z'
  9. contentSize: 17868652630
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/175f92fe-c90e-4e77-81f8-95fee4e80617/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/882/456/882456ef-447f-410a-926b-3609cb9ee5a0
  13. dateModified: '2025-06-10T04:58:30.972337Z'
  14. digest:
  15. dandi:dandi-etag: fd2671fa90ffb0bf95a47ee1bd4387ab-267
  16. dandi:sha2-256: cd075f84d94f085dbd8f3ce32f49c40561c729f50b56601dd2923cbbf45899fa
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:175f92fe-c90e-4e77-81f8-95fee4e80617
  19. identifier: 175f92fe-c90e-4e77-81f8-95fee4e80617
  20. measurementTechnique:
  21. - name: signal filtering technique
  22. schemaKey: MeasurementTechniqueType
  23. - name: multi electrode extracellular electrophysiology recording technique
  24. schemaKey: MeasurementTechniqueType
  25. - name: surgical technique
  26. schemaKey: MeasurementTechniqueType
  27. - name: analytical technique
  28. schemaKey: MeasurementTechniqueType
  29. - name: spike sorting technique
  30. schemaKey: MeasurementTechniqueType
  31. path: sub-752309/sub-752309_ses-ecephys-752309-2025-02-11-14-00-40_ecephys.nwb
  32. schemaKey: Asset
  33. schemaVersion: 0.6.10
  34. variableMeasured:
  35. - schemaKey: PropertyValue
  36. value: ProcessingModule
  37. - schemaKey: PropertyValue
  38. value: LFP
  39. - schemaKey: PropertyValue
  40. value: Units
  41. - schemaKey: PropertyValue
  42. value: ElectricalSeries
  43. - schemaKey: PropertyValue
  44. value: ElectrodeGroup
  45. wasAttributedTo:
  46. - age:
  47. schemaKey: PropertyValue
  48. unitText: ISO-8601 duration
  49. value: P220DT50860S
  50. valueReference:
  51. schemaKey: PropertyValue
  52. value: dandi:BirthReference
  53. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  54. identifier: '752309'
  55. schemaKey: Participant
  56. sex:
  57. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  58. name: Female
  59. schemaKey: SexType
  60. species:
  61. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  62. name: Mus musculus - House mouse
  63. schemaKey: SpeciesType
  64. wasGeneratedBy:
  65. - description: NWB file generated by AIND pipeline
  66. identifier: ecephys_752309_2025-02-11_14-00-40
  67. name: ecephys_752309_2025-02-11_14-00-40
  68. schemaKey: Session
  69. startDate: '2025-02-11T14:00:40-08:00'
  70. - description: Metadata generated by DANDI cli
  71. endDate: '2025-06-10T04:58:30.972295Z'
  72. id: urn:uuid:869b73c9-586a-493c-b410-4949d445ab4a
  73. name: Metadata generation
  74. schemaKey: Activity
  75. startDate: '2025-06-10T04:58:28.275630Z'
  76. wasAssociatedWith:
  77. - identifier: RRID:SCR_019009
  78. name: DANDI Command Line Interface
  79. schemaKey: Software
  80. url: https://github.com/dandi/dandi-cli
  81. version: 0.69.3
  82. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  83. access:
  84. - schemaKey: AccessRequirements
  85. status: dandi:EmbargoedAccess
  86. approach:
  87. - name: electrophysiological approach
  88. schemaKey: ApproachType
  89. blobDateModified: '2025-06-10T04:58:24.324821Z'
  90. contentSize: 17664211765
  91. contentUrl:
  92. - https://api.dandiarchive.org/api/assets/75ebc511-7e0f-48c3-991f-e94353fe8c77/download/
  93. - https://dandiarchive.s3.amazonaws.com/blobs/551/1c3/5511c3af-5912-4fe2-b48b-313698cf1adf
  94. dateModified: '2025-06-10T04:59:25.894286Z'
  95. digest:
  96. dandi:dandi-etag: c8618b5da880a7f4b30682ab534f28da-264
  97. dandi:sha2-256: 0e3868c52243a42c9f2194586a5e2cd0fda49c7febc059cdf41ba9cce6ee243d
  98. encodingFormat: application/x-nwb
  99. id: dandiasset:75ebc511-7e0f-48c3-991f-e94353fe8c77
  100. identifier: 75ebc511-7e0f-48c3-991f-e94353fe8c77
  101. measurementTechnique:
  102. - name: signal filtering technique
  103. schemaKey: MeasurementTechniqueType
  104. - name: multi electrode extracellular electrophysiology recording technique
  105. schemaKey: MeasurementTechniqueType
  106. - name: spike sorting technique
  107. schemaKey: MeasurementTechniqueType
  108. - name: analytical technique
  109. schemaKey: MeasurementTechniqueType
  110. - name: surgical technique
  111. schemaKey: MeasurementTechniqueType
  112. path: sub-767925/sub-767925_ses-ecephys-767925-2025-02-13-11-40-19_ecephys.nwb
  113. schemaKey: Asset
  114. schemaVersion: 0.6.10
  115. variableMeasured:
  116. - schemaKey: PropertyValue
  117. value: ProcessingModule
  118. - schemaKey: PropertyValue
  119. value: LFP
  120. - schemaKey: PropertyValue
  121. value: ElectricalSeries
  122. - schemaKey: PropertyValue
  123. value: ElectrodeGroup
  124. - schemaKey: PropertyValue
  125. value: Units
  126. wasAttributedTo:
  127. - age:
  128. schemaKey: PropertyValue
  129. unitText: ISO-8601 duration
  130. value: P144DT42439S
  131. valueReference:
  132. schemaKey: PropertyValue
  133. value: dandi:BirthReference
  134. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  135. identifier: '767925'
  136. schemaKey: Participant
  137. sex:
  138. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  139. name: Male
  140. schemaKey: SexType
  141. species:
  142. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  143. name: Mus musculus - House mouse
  144. schemaKey: SpeciesType
  145. wasGeneratedBy:
  146. - description: NWB file generated by AIND pipeline
  147. identifier: ecephys_767925_2025-02-13_11-40-19
  148. name: ecephys_767925_2025-02-13_11-40-19
  149. schemaKey: Session
  150. startDate: '2025-02-13T11:40:19-08:00'
  151. - description: Metadata generated by DANDI cli
  152. endDate: '2025-06-10T04:59:25.894244Z'
  153. id: urn:uuid:fd84e22b-9a4f-41ea-a439-b72a1d97acd3
  154. name: Metadata generation
  155. schemaKey: Activity
  156. startDate: '2025-06-10T04:59:23.213244Z'
  157. wasAssociatedWith:
  158. - identifier: RRID:SCR_019009
  159. name: DANDI Command Line Interface
  160. schemaKey: Software
  161. url: https://github.com/dandi/dandi-cli
  162. version: 0.69.3
  163. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  164. access:
  165. - schemaKey: AccessRequirements
  166. status: dandi:EmbargoedAccess
  167. approach:
  168. - name: electrophysiological approach
  169. schemaKey: ApproachType
  170. blobDateModified: '2025-06-10T05:23:09.643390Z'
  171. contentSize: 17755423230
  172. contentUrl:
  173. - https://api.dandiarchive.org/api/assets/2faab302-45ad-4a04-a3da-8c632cf60d0c/download/
  174. - https://dandiarchive.s3.amazonaws.com/blobs/c71/802/c71802f8-5ab4-45af-8c73-ceb49d93a2f5
  175. dateModified: '2025-06-10T05:23:51.391788Z'
  176. digest:
  177. dandi:dandi-etag: 77cf707fdd6b37cf3752ce2486430e4b-265
  178. dandi:sha2-256: 6a4001b2fd5f8908fbebfb727a6cb00a7d3139b49daeb0cc7a736d8400867f66
  179. encodingFormat: application/x-nwb
  180. id: dandiasset:2faab302-45ad-4a04-a3da-8c632cf60d0c
  181. identifier: 2faab302-45ad-4a04-a3da-8c632cf60d0c
  182. measurementTechnique:
  183. - name: multi electrode extracellular electrophysiology recording technique
  184. schemaKey: MeasurementTechniqueType
  185. - name: signal filtering technique
  186. schemaKey: MeasurementTechniqueType
  187. - name: analytical technique
  188. schemaKey: MeasurementTechniqueType
  189. - name: surgical technique
  190. schemaKey: MeasurementTechniqueType
  191. - name: spike sorting technique
  192. schemaKey: MeasurementTechniqueType
  193. path: sub-767926/sub-767926_ses-ecephys-767926-2025-02-27-15-12-01_ecephys.nwb
  194. schemaKey: Asset
  195. schemaVersion: 0.6.10
  196. variableMeasured:
  197. - schemaKey: PropertyValue
  198. value: Units
  199. - schemaKey: PropertyValue
  200. value: ElectricalSeries
  201. - schemaKey: PropertyValue
  202. value: LFP
  203. - schemaKey: PropertyValue
  204. value: ProcessingModule
  205. - schemaKey: PropertyValue
  206. value: ElectrodeGroup
  207. wasAttributedTo:
  208. - age:
  209. schemaKey: PropertyValue
  210. unitText: ISO-8601 duration
  211. value: P158DT55141S
  212. valueReference:
  213. schemaKey: PropertyValue
  214. value: dandi:BirthReference
  215. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  216. identifier: '767926'
  217. schemaKey: Participant
  218. sex:
  219. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  220. name: Male
  221. schemaKey: SexType
  222. species:
  223. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  224. name: Mus musculus - House mouse
  225. schemaKey: SpeciesType
  226. wasGeneratedBy:
  227. - description: NWB file generated by AIND pipeline
  228. identifier: ecephys_767926_2025-02-27_15-12-01
  229. name: ecephys_767926_2025-02-27_15-12-01
  230. schemaKey: Session
  231. startDate: '2025-02-27T15:12:01-08:00'
  232. - description: Metadata generated by DANDI cli
  233. endDate: '2025-06-10T05:23:51.391762Z'
  234. id: urn:uuid:4debe879-581e-4e06-8852-43c159427427
  235. name: Metadata generation
  236. schemaKey: Activity
  237. startDate: '2025-06-10T05:23:50.163027Z'
  238. wasAssociatedWith:
  239. - identifier: RRID:SCR_019009
  240. name: DANDI Command Line Interface
  241. schemaKey: Software
  242. url: https://github.com/dandi/dandi-cli
  243. version: 0.69.3
  244. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  245. access:
  246. - schemaKey: AccessRequirements
  247. status: dandi:EmbargoedAccess
  248. approach:
  249. - name: electrophysiological approach
  250. schemaKey: ApproachType
  251. blobDateModified: '2025-06-10T05:27:25.559118Z'
  252. contentSize: 18493559503
  253. contentUrl:
  254. - https://api.dandiarchive.org/api/assets/32152e48-ec68-472c-88c8-78326b91bb1a/download/
  255. - https://dandiarchive.s3.amazonaws.com/blobs/e87/e7a/e87e7a55-2836-4174-8e8f-41e131afa228
  256. dateModified: '2025-06-10T05:28:08.936305Z'
  257. digest:
  258. dandi:dandi-etag: 3f601c082cc8ccbb8ba4f8c311b492f7-276
  259. dandi:sha2-256: bec368e45e9dfeea4395907de36d17887b6ba42840485f9262f24bf917ccdef4
  260. encodingFormat: application/x-nwb
  261. id: dandiasset:32152e48-ec68-472c-88c8-78326b91bb1a
  262. identifier: 32152e48-ec68-472c-88c8-78326b91bb1a
  263. measurementTechnique:
  264. - name: spike sorting technique
  265. schemaKey: MeasurementTechniqueType
  266. - name: surgical technique
  267. schemaKey: MeasurementTechniqueType
  268. - name: signal filtering technique
  269. schemaKey: MeasurementTechniqueType
  270. - name: analytical technique
  271. schemaKey: MeasurementTechniqueType
  272. - name: multi electrode extracellular electrophysiology recording technique
  273. schemaKey: MeasurementTechniqueType
  274. path: sub-760322/sub-760322_ses-ecephys-760322-2025-02-06-14-07-25_ecephys.nwb
  275. schemaKey: Asset
  276. schemaVersion: 0.6.10
  277. variableMeasured:
  278. - schemaKey: PropertyValue
  279. value: ProcessingModule
  280. - schemaKey: PropertyValue
  281. value: Units
  282. - schemaKey: PropertyValue
  283. value: ElectricalSeries
  284. - schemaKey: PropertyValue
  285. value: LFP
  286. - schemaKey: PropertyValue
  287. value: ElectrodeGroup
  288. wasAttributedTo:
  289. - age:
  290. schemaKey: PropertyValue
  291. unitText: ISO-8601 duration
  292. value: P176DT51265S
  293. valueReference:
  294. schemaKey: PropertyValue
  295. value: dandi:BirthReference
  296. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  297. identifier: '760322'
  298. schemaKey: Participant
  299. sex:
  300. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  301. name: Female
  302. schemaKey: SexType
  303. species:
  304. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  305. name: Mus musculus - House mouse
  306. schemaKey: SpeciesType
  307. wasGeneratedBy:
  308. - description: NWB file generated by AIND pipeline
  309. identifier: ecephys_760322_2025-02-06_14-07-25
  310. name: ecephys_760322_2025-02-06_14-07-25
  311. schemaKey: Session
  312. startDate: '2025-02-06T14:07:25-08:00'
  313. - description: Metadata generated by DANDI cli
  314. endDate: '2025-06-10T05:28:08.936279Z'
  315. id: urn:uuid:fe73ca33-c49a-4c9c-9a7d-09e50456fcb3
  316. name: Metadata generation
  317. schemaKey: Activity
  318. startDate: '2025-06-10T05:28:07.675032Z'
  319. wasAssociatedWith:
  320. - identifier: RRID:SCR_019009
  321. name: DANDI Command Line Interface
  322. schemaKey: Software
  323. url: https://github.com/dandi/dandi-cli
  324. version: 0.69.3
  325. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  326. access:
  327. - schemaKey: AccessRequirements
  328. status: dandi:EmbargoedAccess
  329. approach:
  330. - name: electrophysiological approach
  331. schemaKey: ApproachType
  332. blobDateModified: '2025-06-10T05:30:00.288507Z'
  333. contentSize: 17204635831
  334. contentUrl:
  335. - https://api.dandiarchive.org/api/assets/b54b07df-b88b-40eb-a688-91603c166af0/download/
  336. - https://dandiarchive.s3.amazonaws.com/blobs/7a0/cfa/7a0cfa7e-8529-4297-b8be-b15d7f7facdb
  337. dateModified: '2025-06-10T05:30:41.450896Z'
  338. digest:
  339. dandi:dandi-etag: 2285cacd856f53dc0de139b9e25d0eaf-257
  340. dandi:sha2-256: 0287c359a4fc555e5a10e9391bc243f0e672ea390c16de00870a1d4eabfb004f
  341. encodingFormat: application/x-nwb
  342. id: dandiasset:b54b07df-b88b-40eb-a688-91603c166af0
  343. identifier: b54b07df-b88b-40eb-a688-91603c166af0
  344. measurementTechnique:
  345. - name: multi electrode extracellular electrophysiology recording technique
  346. schemaKey: MeasurementTechniqueType
  347. - name: signal filtering technique
  348. schemaKey: MeasurementTechniqueType
  349. - name: analytical technique
  350. schemaKey: MeasurementTechniqueType
  351. - name: spike sorting technique
  352. schemaKey: MeasurementTechniqueType
  353. - name: surgical technique
  354. schemaKey: MeasurementTechniqueType
  355. path: sub-767925/sub-767925_ses-ecephys-767925-2025-02-14-11-04-33_ecephys.nwb
  356. schemaKey: Asset
  357. schemaVersion: 0.6.10
  358. variableMeasured:
  359. - schemaKey: PropertyValue
  360. value: ElectrodeGroup
  361. - schemaKey: PropertyValue
  362. value: Units
  363. - schemaKey: PropertyValue
  364. value: ElectricalSeries
  365. - schemaKey: PropertyValue
  366. value: LFP
  367. - schemaKey: PropertyValue
  368. value: ProcessingModule
  369. wasAttributedTo:
  370. - age:
  371. schemaKey: PropertyValue
  372. unitText: ISO-8601 duration
  373. value: P145DT40293S
  374. valueReference:
  375. schemaKey: PropertyValue
  376. value: dandi:BirthReference
  377. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  378. identifier: '767925'
  379. schemaKey: Participant
  380. sex:
  381. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  382. name: Male
  383. schemaKey: SexType
  384. species:
  385. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  386. name: Mus musculus - House mouse
  387. schemaKey: SpeciesType
  388. wasGeneratedBy:
  389. - description: NWB file generated by AIND pipeline
  390. identifier: ecephys_767925_2025-02-14_11-04-33
  391. name: ecephys_767925_2025-02-14_11-04-33
  392. schemaKey: Session
  393. startDate: '2025-02-14T11:04:33-08:00'
  394. - description: Metadata generated by DANDI cli
  395. endDate: '2025-06-10T05:30:41.450873Z'
  396. id: urn:uuid:efece3e8-7a6d-40fd-828c-f7bcf010dd8c
  397. name: Metadata generation
  398. schemaKey: Activity
  399. startDate: '2025-06-10T05:30:40.292475Z'
  400. wasAssociatedWith:
  401. - identifier: RRID:SCR_019009
  402. name: DANDI Command Line Interface
  403. schemaKey: Software
  404. url: https://github.com/dandi/dandi-cli
  405. version: 0.69.3
  406. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  407. access:
  408. - schemaKey: AccessRequirements
  409. status: dandi:EmbargoedAccess
  410. approach:
  411. - name: electrophysiological approach
  412. schemaKey: ApproachType
  413. blobDateModified: '2025-06-10T05:31:27.642874Z'
  414. contentSize: 18938289149
  415. contentUrl:
  416. - https://api.dandiarchive.org/api/assets/62a8e052-cb0c-4e2f-9de1-3d0a99025141/download/
  417. - https://dandiarchive.s3.amazonaws.com/blobs/e64/b3d/e64b3d7f-1b4c-4315-9899-dc584fe64f3f
  418. dateModified: '2025-06-10T05:32:11.621543Z'
  419. digest:
  420. dandi:dandi-etag: 9cc4dbd756cce287cb33a27f19ec5bb8-283
  421. dandi:sha2-256: 002cd9e0f6bb32813d7725cef0c1909b347329c7b2a7ba0eba7c11a68b30e197
  422. encodingFormat: application/x-nwb
  423. id: dandiasset:62a8e052-cb0c-4e2f-9de1-3d0a99025141
  424. identifier: 62a8e052-cb0c-4e2f-9de1-3d0a99025141
  425. measurementTechnique:
  426. - name: multi electrode extracellular electrophysiology recording technique
  427. schemaKey: MeasurementTechniqueType
  428. - name: spike sorting technique
  429. schemaKey: MeasurementTechniqueType
  430. - name: signal filtering technique
  431. schemaKey: MeasurementTechniqueType
  432. - name: surgical technique
  433. schemaKey: MeasurementTechniqueType
  434. - name: analytical technique
  435. schemaKey: MeasurementTechniqueType
  436. path: sub-760322/sub-760322_ses-ecephys-760322-2025-02-05-14-30-46_ecephys.nwb
  437. schemaKey: Asset
  438. schemaVersion: 0.6.10
  439. variableMeasured:
  440. - schemaKey: PropertyValue
  441. value: LFP
  442. - schemaKey: PropertyValue
  443. value: ElectricalSeries
  444. - schemaKey: PropertyValue
  445. value: ProcessingModule
  446. - schemaKey: PropertyValue
  447. value: ElectrodeGroup
  448. - schemaKey: PropertyValue
  449. value: Units
  450. wasAttributedTo:
  451. - age:
  452. schemaKey: PropertyValue
  453. unitText: ISO-8601 duration
  454. value: P175DT52666S
  455. valueReference:
  456. schemaKey: PropertyValue
  457. value: dandi:BirthReference
  458. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  459. identifier: '760322'
  460. schemaKey: Participant
  461. sex:
  462. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  463. name: Female
  464. schemaKey: SexType
  465. species:
  466. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  467. name: Mus musculus - House mouse
  468. schemaKey: SpeciesType
  469. wasGeneratedBy:
  470. - description: NWB file generated by AIND pipeline
  471. identifier: ecephys_760322_2025-02-05_14-30-46
  472. name: ecephys_760322_2025-02-05_14-30-46
  473. schemaKey: Session
  474. startDate: '2025-02-05T14:30:46-08:00'
  475. - description: Metadata generated by DANDI cli
  476. endDate: '2025-06-10T05:32:11.621518Z'
  477. id: urn:uuid:8ce0a937-9087-4902-b834-7c6daf512980
  478. name: Metadata generation
  479. schemaKey: Activity
  480. startDate: '2025-06-10T05:32:10.396812Z'
  481. wasAssociatedWith:
  482. - identifier: RRID:SCR_019009
  483. name: DANDI Command Line Interface
  484. schemaKey: Software
  485. url: https://github.com/dandi/dandi-cli
  486. version: 0.69.3
  487. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  488. access:
  489. - schemaKey: AccessRequirements
  490. status: dandi:EmbargoedAccess
  491. approach:
  492. - name: electrophysiological approach
  493. schemaKey: ApproachType
  494. blobDateModified: '2025-06-10T05:49:26.635444Z'
  495. contentSize: 18241001759
  496. contentUrl:
  497. - https://api.dandiarchive.org/api/assets/38bbc105-5d6b-484d-8f9b-6f60bdfb8871/download/
  498. - https://dandiarchive.s3.amazonaws.com/blobs/7ed/d18/7edd188c-621c-4ffa-a4ba-113ab475ac9e
  499. dateModified: '2025-06-10T05:50:11.121024Z'
  500. digest:
  501. dandi:dandi-etag: 1257a10ee07bfe70d209f43bca87b27f-272
  502. dandi:sha2-256: 69b4879af30d1810ec908a000282216d27c930cd9c2185da135e40f3557bad24
  503. encodingFormat: application/x-nwb
  504. id: dandiasset:38bbc105-5d6b-484d-8f9b-6f60bdfb8871
  505. identifier: 38bbc105-5d6b-484d-8f9b-6f60bdfb8871
  506. measurementTechnique:
  507. - name: analytical technique
  508. schemaKey: MeasurementTechniqueType
  509. - name: multi electrode extracellular electrophysiology recording technique
  510. schemaKey: MeasurementTechniqueType
  511. - name: surgical technique
  512. schemaKey: MeasurementTechniqueType
  513. - name: signal filtering technique
  514. schemaKey: MeasurementTechniqueType
  515. - name: spike sorting technique
  516. schemaKey: MeasurementTechniqueType
  517. path: sub-760324/sub-760324_ses-ecephys-760324-2025-02-20-11-31-01_ecephys.nwb
  518. schemaKey: Asset
  519. schemaVersion: 0.6.10
  520. variableMeasured:
  521. - schemaKey: PropertyValue
  522. value: Units
  523. - schemaKey: PropertyValue
  524. value: LFP
  525. - schemaKey: PropertyValue
  526. value: ElectrodeGroup
  527. - schemaKey: PropertyValue
  528. value: ElectricalSeries
  529. - schemaKey: PropertyValue
  530. value: ProcessingModule
  531. wasAttributedTo:
  532. - age:
  533. schemaKey: PropertyValue
  534. unitText: ISO-8601 duration
  535. value: P190DT41881S
  536. valueReference:
  537. schemaKey: PropertyValue
  538. value: dandi:BirthReference
  539. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  540. identifier: '760324'
  541. schemaKey: Participant
  542. sex:
  543. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  544. name: Female
  545. schemaKey: SexType
  546. species:
  547. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  548. name: Mus musculus - House mouse
  549. schemaKey: SpeciesType
  550. wasGeneratedBy:
  551. - description: NWB file generated by AIND pipeline
  552. identifier: ecephys_760324_2025-02-20_11-31-01
  553. name: ecephys_760324_2025-02-20_11-31-01
  554. schemaKey: Session
  555. startDate: '2025-02-20T11:31:01-08:00'
  556. - description: Metadata generated by DANDI cli
  557. endDate: '2025-06-10T05:50:11.120992Z'
  558. id: urn:uuid:26a543a5-49a1-4873-8887-7eff35b92c5f
  559. name: Metadata generation
  560. schemaKey: Activity
  561. startDate: '2025-06-10T05:50:09.645349Z'
  562. wasAssociatedWith:
  563. - identifier: RRID:SCR_019009
  564. name: DANDI Command Line Interface
  565. schemaKey: Software
  566. url: https://github.com/dandi/dandi-cli
  567. version: 0.69.3
  568. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  569. access:
  570. - schemaKey: AccessRequirements
  571. status: dandi:EmbargoedAccess
  572. approach:
  573. - name: electrophysiological approach
  574. schemaKey: ApproachType
  575. blobDateModified: '2025-06-10T05:51:01.838700Z'
  576. contentSize: 18968292061
  577. contentUrl:
  578. - https://api.dandiarchive.org/api/assets/e802515e-8c00-4fae-af74-228ab6cb797e/download/
  579. - https://dandiarchive.s3.amazonaws.com/blobs/3e9/420/3e9420a2-e5c6-4b4a-a312-a2d33aef8629
  580. dateModified: '2025-06-10T05:51:52.428357Z'
  581. digest:
  582. dandi:dandi-etag: bf36fce882e06d7b7d5cf2d84bdba3a2-283
  583. dandi:sha2-256: ef806581bf8797b359ca61365fcbda4bf749cb727400a52d930bfec398045887
  584. encodingFormat: application/x-nwb
  585. id: dandiasset:e802515e-8c00-4fae-af74-228ab6cb797e
  586. identifier: e802515e-8c00-4fae-af74-228ab6cb797e
  587. measurementTechnique:
  588. - name: spike sorting technique
  589. schemaKey: MeasurementTechniqueType
  590. - name: signal filtering technique
  591. schemaKey: MeasurementTechniqueType
  592. - name: analytical technique
  593. schemaKey: MeasurementTechniqueType
  594. - name: multi electrode extracellular electrophysiology recording technique
  595. schemaKey: MeasurementTechniqueType
  596. - name: surgical technique
  597. schemaKey: MeasurementTechniqueType
  598. path: sub-767926/sub-767926_ses-ecephys-767926-2025-02-26-15-49-35_ecephys.nwb
  599. schemaKey: Asset
  600. schemaVersion: 0.6.10
  601. variableMeasured:
  602. - schemaKey: PropertyValue
  603. value: LFP
  604. - schemaKey: PropertyValue
  605. value: ElectrodeGroup
  606. - schemaKey: PropertyValue
  607. value: ProcessingModule
  608. - schemaKey: PropertyValue
  609. value: Units
  610. - schemaKey: PropertyValue
  611. value: ElectricalSeries
  612. wasAttributedTo:
  613. - age:
  614. schemaKey: PropertyValue
  615. unitText: ISO-8601 duration
  616. value: P157DT57395S
  617. valueReference:
  618. schemaKey: PropertyValue
  619. value: dandi:BirthReference
  620. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  621. identifier: '767926'
  622. schemaKey: Participant
  623. sex:
  624. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  625. name: Male
  626. schemaKey: SexType
  627. species:
  628. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  629. name: Mus musculus - House mouse
  630. schemaKey: SpeciesType
  631. wasGeneratedBy:
  632. - description: NWB file generated by AIND pipeline
  633. identifier: ecephys_767926_2025-02-26_15-49-35
  634. name: ecephys_767926_2025-02-26_15-49-35
  635. schemaKey: Session
  636. startDate: '2025-02-26T15:49:35-08:00'
  637. - description: Metadata generated by DANDI cli
  638. endDate: '2025-06-10T05:51:52.428327Z'
  639. id: urn:uuid:0f56680b-89ea-46b0-b95a-2ee120462a9d
  640. name: Metadata generation
  641. schemaKey: Activity
  642. startDate: '2025-06-10T05:51:50.751710Z'
  643. wasAssociatedWith:
  644. - identifier: RRID:SCR_019009
  645. name: DANDI Command Line Interface
  646. schemaKey: Software
  647. url: https://github.com/dandi/dandi-cli
  648. version: 0.69.3
  649. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  650. access:
  651. - schemaKey: AccessRequirements
  652. status: dandi:EmbargoedAccess
  653. approach:
  654. - name: electrophysiological approach
  655. schemaKey: ApproachType
  656. blobDateModified: '2025-06-10T07:40:30.671454Z'
  657. contentSize: 17692098150
  658. contentUrl:
  659. - https://api.dandiarchive.org/api/assets/ad55ddcd-f696-4275-8d70-93327c2b60bd/download/
  660. - https://dandiarchive.s3.amazonaws.com/blobs/27f/01e/27f01e65-c6d3-4d57-8f87-d22d666786cc
  661. dateModified: '2025-06-10T07:41:26.612060Z'
  662. digest:
  663. dandi:dandi-etag: 94c7be7c59437a3b6f76c39340e20228-264
  664. dandi:sha2-256: 2bc7fd1ff8ab098da1917ff13d9e972a65216f87a79beb3e9c823caf5a084369
  665. encodingFormat: application/x-nwb
  666. id: dandiasset:ad55ddcd-f696-4275-8d70-93327c2b60bd
  667. identifier: ad55ddcd-f696-4275-8d70-93327c2b60bd
  668. measurementTechnique:
  669. - name: signal filtering technique
  670. schemaKey: MeasurementTechniqueType
  671. - name: surgical technique
  672. schemaKey: MeasurementTechniqueType
  673. - name: analytical technique
  674. schemaKey: MeasurementTechniqueType
  675. - name: spike sorting technique
  676. schemaKey: MeasurementTechniqueType
  677. - name: multi electrode extracellular electrophysiology recording technique
  678. schemaKey: MeasurementTechniqueType
  679. path: sub-752309/sub-752309_ses-ecephys-752309-2025-02-12-13-53-52_ecephys.nwb
  680. schemaKey: Asset
  681. schemaVersion: 0.6.10
  682. variableMeasured:
  683. - schemaKey: PropertyValue
  684. value: ProcessingModule
  685. - schemaKey: PropertyValue
  686. value: Units
  687. - schemaKey: PropertyValue
  688. value: ElectrodeGroup
  689. - schemaKey: PropertyValue
  690. value: ElectricalSeries
  691. - schemaKey: PropertyValue
  692. value: LFP
  693. wasAttributedTo:
  694. - age:
  695. schemaKey: PropertyValue
  696. unitText: ISO-8601 duration
  697. value: P221DT50452S
  698. valueReference:
  699. schemaKey: PropertyValue
  700. value: dandi:BirthReference
  701. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  702. identifier: '752309'
  703. schemaKey: Participant
  704. sex:
  705. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  706. name: Female
  707. schemaKey: SexType
  708. species:
  709. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  710. name: Mus musculus - House mouse
  711. schemaKey: SpeciesType
  712. wasGeneratedBy:
  713. - description: NWB file generated by AIND pipeline
  714. identifier: ecephys_752309_2025-02-12_13-53-52
  715. name: ecephys_752309_2025-02-12_13-53-52
  716. schemaKey: Session
  717. startDate: '2025-02-12T13:53:52-08:00'
  718. - description: Metadata generated by DANDI cli
  719. endDate: '2025-06-10T07:41:26.612014Z'
  720. id: urn:uuid:1d00c146-b0c5-4949-8062-54e482954992
  721. name: Metadata generation
  722. schemaKey: Activity
  723. startDate: '2025-06-10T07:41:24.148565Z'
  724. wasAssociatedWith:
  725. - identifier: RRID:SCR_019009
  726. name: DANDI Command Line Interface
  727. schemaKey: Software
  728. url: https://github.com/dandi/dandi-cli
  729. version: 0.69.3
  730. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  731. access:
  732. - schemaKey: AccessRequirements
  733. status: dandi:EmbargoedAccess
  734. approach:
  735. - name: electrophysiological approach
  736. schemaKey: ApproachType
  737. blobDateModified: '2025-06-10T07:40:30.587453Z'
  738. contentSize: 17959247635
  739. contentUrl:
  740. - https://api.dandiarchive.org/api/assets/8b24b405-cb77-4c2b-9f13-5b50245dea37/download/
  741. - https://dandiarchive.s3.amazonaws.com/blobs/cf3/148/cf314835-77e4-4bef-b84b-4a458ab5fc80
  742. dateModified: '2025-06-10T07:41:26.600239Z'
  743. digest:
  744. dandi:dandi-etag: 227755c549882c69666191d9d8649630-268
  745. dandi:sha2-256: efb54726477631fba3fee3365f150b46affc21c1d907e022e716cde6afd5c82f
  746. encodingFormat: application/x-nwb
  747. id: dandiasset:8b24b405-cb77-4c2b-9f13-5b50245dea37
  748. identifier: 8b24b405-cb77-4c2b-9f13-5b50245dea37
  749. measurementTechnique:
  750. - name: multi electrode extracellular electrophysiology recording technique
  751. schemaKey: MeasurementTechniqueType
  752. - name: spike sorting technique
  753. schemaKey: MeasurementTechniqueType
  754. - name: analytical technique
  755. schemaKey: MeasurementTechniqueType
  756. - name: signal filtering technique
  757. schemaKey: MeasurementTechniqueType
  758. - name: surgical technique
  759. schemaKey: MeasurementTechniqueType
  760. path: sub-753316/sub-753316_ses-ecephys-753316-2025-01-28-13-57-06_ecephys.nwb
  761. schemaKey: Asset
  762. schemaVersion: 0.6.10
  763. variableMeasured:
  764. - schemaKey: PropertyValue
  765. value: ElectricalSeries
  766. - schemaKey: PropertyValue
  767. value: Units
  768. - schemaKey: PropertyValue
  769. value: ElectrodeGroup
  770. - schemaKey: PropertyValue
  771. value: ProcessingModule
  772. - schemaKey: PropertyValue
  773. value: LFP
  774. wasAttributedTo:
  775. - age:
  776. schemaKey: PropertyValue
  777. unitText: ISO-8601 duration
  778. value: P201DT50646S
  779. valueReference:
  780. schemaKey: PropertyValue
  781. value: dandi:BirthReference
  782. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  783. identifier: '753316'
  784. schemaKey: Participant
  785. sex:
  786. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  787. name: Female
  788. schemaKey: SexType
  789. species:
  790. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  791. name: Mus musculus - House mouse
  792. schemaKey: SpeciesType
  793. wasGeneratedBy:
  794. - description: NWB file generated by AIND pipeline
  795. identifier: ecephys_753316_2025-01-28_13-57-06
  796. name: ecephys_753316_2025-01-28_13-57-06
  797. schemaKey: Session
  798. startDate: '2025-01-28T13:57:06-08:00'
  799. - description: Metadata generated by DANDI cli
  800. endDate: '2025-06-10T07:41:26.600193Z'
  801. id: urn:uuid:48c9b8bd-a9d2-4b7c-b129-9ff1f24be6d3
  802. name: Metadata generation
  803. schemaKey: Activity
  804. startDate: '2025-06-10T07:41:24.335437Z'
  805. wasAssociatedWith:
  806. - identifier: RRID:SCR_019009
  807. name: DANDI Command Line Interface
  808. schemaKey: Software
  809. url: https://github.com/dandi/dandi-cli
  810. version: 0.69.3
  811. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  812. access:
  813. - schemaKey: AccessRequirements
  814. status: dandi:EmbargoedAccess
  815. approach:
  816. - name: electrophysiological approach
  817. schemaKey: ApproachType
  818. blobDateModified: '2025-06-10T07:52:37.279719Z'
  819. contentSize: 18619126984
  820. contentUrl:
  821. - https://api.dandiarchive.org/api/assets/514e91c0-1d25-4baf-b11a-aae0db7ad501/download/
  822. - https://dandiarchive.s3.amazonaws.com/blobs/c45/d36/c45d36b5-6d89-4998-99bd-8a863e9d1e69
  823. dateModified: '2025-06-10T07:53:21.241669Z'
  824. digest:
  825. dandi:dandi-etag: 6438ccd1521584c0045063aa681ba03f-278
  826. dandi:sha2-256: 749afceaec4c34e2d87a51dea82bd962647500f98d6cc7dd15c4a9692c437e71
  827. encodingFormat: application/x-nwb
  828. id: dandiasset:514e91c0-1d25-4baf-b11a-aae0db7ad501
  829. identifier: 514e91c0-1d25-4baf-b11a-aae0db7ad501
  830. measurementTechnique:
  831. - name: multi electrode extracellular electrophysiology recording technique
  832. schemaKey: MeasurementTechniqueType
  833. - name: signal filtering technique
  834. schemaKey: MeasurementTechniqueType
  835. - name: surgical technique
  836. schemaKey: MeasurementTechniqueType
  837. - name: spike sorting technique
  838. schemaKey: MeasurementTechniqueType
  839. - name: analytical technique
  840. schemaKey: MeasurementTechniqueType
  841. path: sub-760324/sub-760324_ses-ecephys-760324-2025-02-19-10-56-40_ecephys.nwb
  842. schemaKey: Asset
  843. schemaVersion: 0.6.10
  844. variableMeasured:
  845. - schemaKey: PropertyValue
  846. value: LFP
  847. - schemaKey: PropertyValue
  848. value: ElectricalSeries
  849. - schemaKey: PropertyValue
  850. value: ElectrodeGroup
  851. - schemaKey: PropertyValue
  852. value: ProcessingModule
  853. - schemaKey: PropertyValue
  854. value: Units
  855. wasAttributedTo:
  856. - age:
  857. schemaKey: PropertyValue
  858. unitText: ISO-8601 duration
  859. value: P189DT39820S
  860. valueReference:
  861. schemaKey: PropertyValue
  862. value: dandi:BirthReference
  863. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  864. identifier: '760324'
  865. schemaKey: Participant
  866. sex:
  867. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  868. name: Female
  869. schemaKey: SexType
  870. species:
  871. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  872. name: Mus musculus - House mouse
  873. schemaKey: SpeciesType
  874. wasGeneratedBy:
  875. - description: NWB file generated by AIND pipeline
  876. identifier: ecephys_760324_2025-02-19_10-56-40
  877. name: ecephys_760324_2025-02-19_10-56-40
  878. schemaKey: Session
  879. startDate: '2025-02-19T10:56:40-08:00'
  880. - description: Metadata generated by DANDI cli
  881. endDate: '2025-06-10T07:53:21.241643Z'
  882. id: urn:uuid:a88b9ba0-a0d7-4c36-bb00-f9f7b4040613
  883. name: Metadata generation
  884. schemaKey: Activity
  885. startDate: '2025-06-10T07:53:20.009450Z'
  886. wasAssociatedWith:
  887. - identifier: RRID:SCR_019009
  888. name: DANDI Command Line Interface
  889. schemaKey: Software
  890. url: https://github.com/dandi/dandi-cli
  891. version: 0.69.3
  892. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  893. access:
  894. - schemaKey: AccessRequirements
  895. status: dandi:EmbargoedAccess
  896. approach:
  897. - name: electrophysiological approach
  898. schemaKey: ApproachType
  899. blobDateModified: '2025-06-10T08:08:14.525458Z'
  900. contentSize: 17274686799
  901. contentUrl:
  902. - https://api.dandiarchive.org/api/assets/a0579e62-67e2-47cf-bd53-a877a320dacb/download/
  903. - https://dandiarchive.s3.amazonaws.com/blobs/ad1/7f6/ad17f6fb-6e78-4501-b69e-02016bd3e376
  904. dateModified: '2025-06-10T08:08:56.215490Z'
  905. digest:
  906. dandi:dandi-etag: 9369f4f0ad512f5227705a25bbd597d6-258
  907. dandi:sha2-256: 3e6d8f947b8e8cd6647756d84df8ab0555273f5b97fcde53845119929d5cabf8
  908. encodingFormat: application/x-nwb
  909. id: dandiasset:a0579e62-67e2-47cf-bd53-a877a320dacb
  910. identifier: a0579e62-67e2-47cf-bd53-a877a320dacb
  911. measurementTechnique:
  912. - name: analytical technique
  913. schemaKey: MeasurementTechniqueType
  914. - name: signal filtering technique
  915. schemaKey: MeasurementTechniqueType
  916. - name: multi electrode extracellular electrophysiology recording technique
  917. schemaKey: MeasurementTechniqueType
  918. - name: surgical technique
  919. schemaKey: MeasurementTechniqueType
  920. - name: spike sorting technique
  921. schemaKey: MeasurementTechniqueType
  922. path: sub-753316/sub-753316_ses-ecephys-753316-2025-01-29-13-57-16_ecephys.nwb
  923. schemaKey: Asset
  924. schemaVersion: 0.6.10
  925. variableMeasured:
  926. - schemaKey: PropertyValue
  927. value: ElectrodeGroup
  928. - schemaKey: PropertyValue
  929. value: ProcessingModule
  930. - schemaKey: PropertyValue
  931. value: ElectricalSeries
  932. - schemaKey: PropertyValue
  933. value: Units
  934. - schemaKey: PropertyValue
  935. value: LFP
  936. wasAttributedTo:
  937. - age:
  938. schemaKey: PropertyValue
  939. unitText: ISO-8601 duration
  940. value: P202DT50656S
  941. valueReference:
  942. schemaKey: PropertyValue
  943. value: dandi:BirthReference
  944. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  945. identifier: '753316'
  946. schemaKey: Participant
  947. sex:
  948. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  949. name: Female
  950. schemaKey: SexType
  951. species:
  952. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  953. name: Mus musculus - House mouse
  954. schemaKey: SpeciesType
  955. wasGeneratedBy:
  956. - description: NWB file generated by AIND pipeline
  957. identifier: ecephys_753316_2025-01-29_13-57-16
  958. name: ecephys_753316_2025-01-29_13-57-16
  959. schemaKey: Session
  960. startDate: '2025-01-29T13:57:16-08:00'
  961. - description: Metadata generated by DANDI cli
  962. endDate: '2025-06-10T08:08:56.215463Z'
  963. id: urn:uuid:e6bea090-5e49-4a0f-8047-547b513657aa
  964. name: Metadata generation
  965. schemaKey: Activity
  966. startDate: '2025-06-10T08:08:54.897560Z'
  967. wasAssociatedWith:
  968. - identifier: RRID:SCR_019009
  969. name: DANDI Command Line Interface
  970. schemaKey: Software
  971. url: https://github.com/dandi/dandi-cli
  972. version: 0.69.3
  973. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  974. access:
  975. - schemaKey: AccessRequirements
  976. status: dandi:EmbargoedAccess
  977. approach:
  978. - name: electrophysiological approach
  979. schemaKey: ApproachType
  980. blobDateModified: '2025-06-11T02:58:33.416437Z'
  981. contentSize: 17136355202
  982. contentUrl:
  983. - https://api.dandiarchive.org/api/assets/89b971d9-655a-45a2-8a16-bc5d886ab47f/download/
  984. - https://dandiarchive.s3.amazonaws.com/blobs/c8a/a1c/c8aa1cdd-1cb8-4a99-a3fb-24a46e37b977
  985. dateModified: '2025-06-11T02:59:34.482280Z'
  986. digest:
  987. dandi:dandi-etag: b12aece3ec87b9647a62c3ccb40ac8ee-256
  988. dandi:sha2-256: acab0ae1729cdbdd4e5986294efed2e77d51bf591e2ae480aa2faab0205eb8e0
  989. encodingFormat: application/x-nwb
  990. id: dandiasset:89b971d9-655a-45a2-8a16-bc5d886ab47f
  991. identifier: 89b971d9-655a-45a2-8a16-bc5d886ab47f
  992. measurementTechnique:
  993. - name: signal filtering technique
  994. schemaKey: MeasurementTechniqueType
  995. - name: spike sorting technique
  996. schemaKey: MeasurementTechniqueType
  997. - name: surgical technique
  998. schemaKey: MeasurementTechniqueType
  999. - name: analytical technique
  1000. schemaKey: MeasurementTechniqueType
  1001. - name: multi electrode extracellular electrophysiology recording technique
  1002. schemaKey: MeasurementTechniqueType
  1003. path: sub-752312/sub-752312_ses-ecephys-752312-2025-01-30-11-44-04_ecephys.nwb
  1004. schemaKey: Asset
  1005. schemaVersion: 0.6.10
  1006. variableMeasured:
  1007. - schemaKey: PropertyValue
  1008. value: Units
  1009. - schemaKey: PropertyValue
  1010. value: ElectricalSeries
  1011. - schemaKey: PropertyValue
  1012. value: LFP
  1013. - schemaKey: PropertyValue
  1014. value: ElectrodeGroup
  1015. - schemaKey: PropertyValue
  1016. value: ProcessingModule
  1017. wasAttributedTo:
  1018. - age:
  1019. schemaKey: PropertyValue
  1020. unitText: ISO-8601 duration
  1021. value: P208DT42664S
  1022. valueReference:
  1023. schemaKey: PropertyValue
  1024. value: dandi:BirthReference
  1025. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  1026. identifier: '752312'
  1027. schemaKey: Participant
  1028. sex:
  1029. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1030. name: Female
  1031. schemaKey: SexType
  1032. species:
  1033. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1034. name: Mus musculus - House mouse
  1035. schemaKey: SpeciesType
  1036. wasGeneratedBy:
  1037. - description: NWB file generated by AIND pipeline
  1038. identifier: ecephys_752312_2025-01-30_11-44-04
  1039. name: ecephys_752312_2025-01-30_11-44-04
  1040. schemaKey: Session
  1041. startDate: '2025-01-30T11:44:04-08:00'
  1042. - description: Metadata generated by DANDI cli
  1043. endDate: '2025-06-11T02:59:34.482243Z'
  1044. id: urn:uuid:5d557208-e05e-46f4-9185-02b714870a9d
  1045. name: Metadata generation
  1046. schemaKey: Activity
  1047. startDate: '2025-06-11T02:59:31.521574Z'
  1048. wasAssociatedWith:
  1049. - identifier: RRID:SCR_019009
  1050. name: DANDI Command Line Interface
  1051. schemaKey: Software
  1052. url: https://github.com/dandi/dandi-cli
  1053. version: 0.69.3
  1054. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1055. access:
  1056. - schemaKey: AccessRequirements
  1057. status: dandi:EmbargoedAccess
  1058. approach:
  1059. - name: electrophysiological approach
  1060. schemaKey: ApproachType
  1061. blobDateModified: '2025-06-11T03:02:00.536814Z'
  1062. contentSize: 16768288291
  1063. contentUrl:
  1064. - https://api.dandiarchive.org/api/assets/dd96d933-c4f2-4d6e-90f9-187b778eb06b/download/
  1065. - https://dandiarchive.s3.amazonaws.com/blobs/2a7/2e6/2a72e60d-0ecb-420b-b332-6f211c996c8b
  1066. dateModified: '2025-06-11T03:02:36.272336Z'
  1067. digest:
  1068. dandi:dandi-etag: da6740804a2070c121669460b9a182a7-250
  1069. dandi:sha2-256: 75689437b582ee974e11326f44dab2ea58351527592f1a17f38c65582562cebf
  1070. encodingFormat: application/x-nwb
  1071. id: dandiasset:dd96d933-c4f2-4d6e-90f9-187b778eb06b
  1072. identifier: dd96d933-c4f2-4d6e-90f9-187b778eb06b
  1073. measurementTechnique:
  1074. - name: multi electrode extracellular electrophysiology recording technique
  1075. schemaKey: MeasurementTechniqueType
  1076. - name: analytical technique
  1077. schemaKey: MeasurementTechniqueType
  1078. - name: surgical technique
  1079. schemaKey: MeasurementTechniqueType
  1080. - name: spike sorting technique
  1081. schemaKey: MeasurementTechniqueType
  1082. - name: signal filtering technique
  1083. schemaKey: MeasurementTechniqueType
  1084. path: sub-767932/sub-767932_ses-ecephys-767932-2025-03-26-14-07-06_ecephys.nwb
  1085. schemaKey: Asset
  1086. schemaVersion: 0.6.10
  1087. variableMeasured:
  1088. - schemaKey: PropertyValue
  1089. value: ProcessingModule
  1090. - schemaKey: PropertyValue
  1091. value: LFP
  1092. - schemaKey: PropertyValue
  1093. value: ElectricalSeries
  1094. - schemaKey: PropertyValue
  1095. value: ElectrodeGroup
  1096. - schemaKey: PropertyValue
  1097. value: Units
  1098. wasAttributedTo:
  1099. - age:
  1100. schemaKey: PropertyValue
  1101. unitText: ISO-8601 duration
  1102. value: P185DT47646S
  1103. valueReference:
  1104. schemaKey: PropertyValue
  1105. value: dandi:BirthReference
  1106. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  1107. identifier: '767932'
  1108. schemaKey: Participant
  1109. sex:
  1110. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1111. name: Female
  1112. schemaKey: SexType
  1113. species:
  1114. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1115. name: Mus musculus - House mouse
  1116. schemaKey: SpeciesType
  1117. wasGeneratedBy:
  1118. - description: NWB file generated by AIND pipeline
  1119. identifier: ecephys_767932_2025-03-26_14-07-06
  1120. name: ecephys_767932_2025-03-26_14-07-06
  1121. schemaKey: Session
  1122. startDate: '2025-03-26T14:07:06-07:00'
  1123. - description: Metadata generated by DANDI cli
  1124. endDate: '2025-06-11T03:02:36.272312Z'
  1125. id: urn:uuid:6940354e-ed0f-4883-bd3c-e984c02b5d7e
  1126. name: Metadata generation
  1127. schemaKey: Activity
  1128. startDate: '2025-06-11T03:02:35.188113Z'
  1129. wasAssociatedWith:
  1130. - identifier: RRID:SCR_019009
  1131. name: DANDI Command Line Interface
  1132. schemaKey: Software
  1133. url: https://github.com/dandi/dandi-cli
  1134. version: 0.69.3
  1135. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1136. access:
  1137. - schemaKey: AccessRequirements
  1138. status: dandi:EmbargoedAccess
  1139. approach:
  1140. - name: electrophysiological approach
  1141. schemaKey: ApproachType
  1142. blobDateModified: '2025-06-11T03:34:41.137473Z'
  1143. contentSize: 17529144070
  1144. contentUrl:
  1145. - https://api.dandiarchive.org/api/assets/42ef8a35-3626-425b-92bb-6cbec49c8ae6/download/
  1146. - https://dandiarchive.s3.amazonaws.com/blobs/ce4/18d/ce418de0-e74b-4efe-8b65-23fe4fa0f526
  1147. dateModified: '2025-06-11T03:35:32.970352Z'
  1148. digest:
  1149. dandi:dandi-etag: a485034db2133c09df00de38edcffa98-262
  1150. dandi:sha2-256: b84fd9d8f333acb6e8e23da10d0b43e89dd103e9d4b6f67e2458d0d2b6624cc0
  1151. encodingFormat: application/x-nwb
  1152. id: dandiasset:42ef8a35-3626-425b-92bb-6cbec49c8ae6
  1153. identifier: 42ef8a35-3626-425b-92bb-6cbec49c8ae6
  1154. measurementTechnique:
  1155. - name: analytical technique
  1156. schemaKey: MeasurementTechniqueType
  1157. - name: signal filtering technique
  1158. schemaKey: MeasurementTechniqueType
  1159. - name: surgical technique
  1160. schemaKey: MeasurementTechniqueType
  1161. - name: multi electrode extracellular electrophysiology recording technique
  1162. schemaKey: MeasurementTechniqueType
  1163. - name: spike sorting technique
  1164. schemaKey: MeasurementTechniqueType
  1165. path: sub-767932/sub-767932_ses-ecephys-767932-2025-03-25-14-35-45_ecephys.nwb
  1166. schemaKey: Asset
  1167. schemaVersion: 0.6.10
  1168. variableMeasured:
  1169. - schemaKey: PropertyValue
  1170. value: ProcessingModule
  1171. - schemaKey: PropertyValue
  1172. value: Units
  1173. - schemaKey: PropertyValue
  1174. value: ElectrodeGroup
  1175. - schemaKey: PropertyValue
  1176. value: LFP
  1177. - schemaKey: PropertyValue
  1178. value: ElectricalSeries
  1179. wasAttributedTo:
  1180. - age:
  1181. schemaKey: PropertyValue
  1182. unitText: ISO-8601 duration
  1183. value: P184DT49365S
  1184. valueReference:
  1185. schemaKey: PropertyValue
  1186. value: dandi:BirthReference
  1187. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  1188. identifier: '767932'
  1189. schemaKey: Participant
  1190. sex:
  1191. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1192. name: Female
  1193. schemaKey: SexType
  1194. species:
  1195. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1196. name: Mus musculus - House mouse
  1197. schemaKey: SpeciesType
  1198. wasGeneratedBy:
  1199. - description: NWB file generated by AIND pipeline
  1200. identifier: ecephys_767932_2025-03-25_14-35-45
  1201. name: ecephys_767932_2025-03-25_14-35-45
  1202. schemaKey: Session
  1203. startDate: '2025-03-25T14:35:45-07:00'
  1204. - description: Metadata generated by DANDI cli
  1205. endDate: '2025-06-11T03:35:32.970321Z'
  1206. id: urn:uuid:2d099bd3-8130-4d95-8352-316b4dbb2d2c
  1207. name: Metadata generation
  1208. schemaKey: Activity
  1209. startDate: '2025-06-11T03:35:30.883832Z'
  1210. wasAssociatedWith:
  1211. - identifier: RRID:SCR_019009
  1212. name: DANDI Command Line Interface
  1213. schemaKey: Software
  1214. url: https://github.com/dandi/dandi-cli
  1215. version: 0.69.3
  1216. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1217. access:
  1218. - schemaKey: AccessRequirements
  1219. status: dandi:EmbargoedAccess
  1220. approach:
  1221. - name: electrophysiological approach
  1222. schemaKey: ApproachType
  1223. blobDateModified: '2025-06-12T19:52:19.297187Z'
  1224. contentSize: 18619805461
  1225. contentUrl:
  1226. - https://api.dandiarchive.org/api/assets/49f630bd-b4ba-4092-8125-11c2e1e2441f/download/
  1227. - https://dandiarchive.s3.amazonaws.com/blobs/ddd/036/ddd036ca-ac07-4d85-8028-ca87bf4adc8c
  1228. dateModified: '2025-06-12T19:53:13.931225Z'
  1229. digest:
  1230. dandi:dandi-etag: 98562db11905800d7a28c0a074d563af-278
  1231. dandi:sha2-256: 4f3f9b01faf00f77c4d30000ce94039b52fa58ded6ed6198fecb0aacff104e26
  1232. encodingFormat: application/x-nwb
  1233. id: dandiasset:49f630bd-b4ba-4092-8125-11c2e1e2441f
  1234. identifier: 49f630bd-b4ba-4092-8125-11c2e1e2441f
  1235. measurementTechnique:
  1236. - name: spike sorting technique
  1237. schemaKey: MeasurementTechniqueType
  1238. - name: signal filtering technique
  1239. schemaKey: MeasurementTechniqueType
  1240. - name: surgical technique
  1241. schemaKey: MeasurementTechniqueType
  1242. - name: multi electrode extracellular electrophysiology recording technique
  1243. schemaKey: MeasurementTechniqueType
  1244. - name: analytical technique
  1245. schemaKey: MeasurementTechniqueType
  1246. path: sub-752312/sub-752312_ses-ecephys-752312-2025-01-31-11-02-20_ecephys.nwb
  1247. schemaKey: Asset
  1248. schemaVersion: 0.6.10
  1249. variableMeasured:
  1250. - schemaKey: PropertyValue
  1251. value: ProcessingModule
  1252. - schemaKey: PropertyValue
  1253. value: ElectricalSeries
  1254. - schemaKey: PropertyValue
  1255. value: ElectrodeGroup
  1256. - schemaKey: PropertyValue
  1257. value: Units
  1258. - schemaKey: PropertyValue
  1259. value: LFP
  1260. wasAttributedTo:
  1261. - age:
  1262. schemaKey: PropertyValue
  1263. unitText: ISO-8601 duration
  1264. value: P209DT40160S
  1265. valueReference:
  1266. schemaKey: PropertyValue
  1267. value: dandi:BirthReference
  1268. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  1269. identifier: '752312'
  1270. schemaKey: Participant
  1271. sex:
  1272. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1273. name: Female
  1274. schemaKey: SexType
  1275. species:
  1276. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1277. name: Mus musculus - House mouse
  1278. schemaKey: SpeciesType
  1279. wasGeneratedBy:
  1280. - description: NWB file generated by AIND pipeline
  1281. identifier: ecephys_752312_2025-01-31_11-02-20
  1282. name: ecephys_752312_2025-01-31_11-02-20
  1283. schemaKey: Session
  1284. startDate: '2025-01-31T11:02:20-08:00'
  1285. - description: Metadata generated by DANDI cli
  1286. endDate: '2025-06-12T19:53:13.931193Z'
  1287. id: urn:uuid:4532c2b2-7214-4770-9c06-c94276a42682
  1288. name: Metadata generation
  1289. schemaKey: Activity
  1290. startDate: '2025-06-12T19:53:11.852276Z'
  1291. wasAssociatedWith:
  1292. - identifier: RRID:SCR_019009
  1293. name: DANDI Command Line Interface
  1294. schemaKey: Software
  1295. url: https://github.com/dandi/dandi-cli
  1296. version: 0.69.3
  1297. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1298. access:
  1299. - schemaKey: AccessRequirements
  1300. status: dandi:EmbargoedAccess
  1301. approach:
  1302. - name: electrophysiological approach
  1303. schemaKey: ApproachType
  1304. blobDateModified: '2025-06-12T20:18:21.044659Z'
  1305. contentSize: 16999067947
  1306. contentUrl:
  1307. - https://api.dandiarchive.org/api/assets/69bb24d0-fba9-4ecb-ac6d-46698fdecf90/download/
  1308. - https://dandiarchive.s3.amazonaws.com/blobs/a0f/4c3/a0f4c3fd-18e3-4a50-9e78-63c9cd9f00aa
  1309. dateModified: '2025-06-12T20:19:13.554928Z'
  1310. digest:
  1311. dandi:dandi-etag: 7487771a66072ba06d7b1d4f878a3d6e-254
  1312. dandi:sha2-256: 0522f93bf9ebc60a39047dbd76274cfb678207a4bb4439a2c4d30053502b075f
  1313. encodingFormat: application/x-nwb
  1314. id: dandiasset:69bb24d0-fba9-4ecb-ac6d-46698fdecf90
  1315. identifier: 69bb24d0-fba9-4ecb-ac6d-46698fdecf90
  1316. measurementTechnique:
  1317. - name: analytical technique
  1318. schemaKey: MeasurementTechniqueType
  1319. - name: multi electrode extracellular electrophysiology recording technique
  1320. schemaKey: MeasurementTechniqueType
  1321. - name: signal filtering technique
  1322. schemaKey: MeasurementTechniqueType
  1323. - name: spike sorting technique
  1324. schemaKey: MeasurementTechniqueType
  1325. - name: surgical technique
  1326. schemaKey: MeasurementTechniqueType
  1327. path: sub-773206/sub-773206_ses-ecephys-773206-2025-04-02-11-46-05_ecephys.nwb
  1328. schemaKey: Asset
  1329. schemaVersion: 0.6.10
  1330. variableMeasured:
  1331. - schemaKey: PropertyValue
  1332. value: LFP
  1333. - schemaKey: PropertyValue
  1334. value: ElectricalSeries
  1335. - schemaKey: PropertyValue
  1336. value: ElectrodeGroup
  1337. - schemaKey: PropertyValue
  1338. value: Units
  1339. - schemaKey: PropertyValue
  1340. value: ProcessingModule
  1341. wasAttributedTo:
  1342. - age:
  1343. schemaKey: PropertyValue
  1344. unitText: ISO-8601 duration
  1345. value: P164DT39185S
  1346. valueReference:
  1347. schemaKey: PropertyValue
  1348. value: dandi:BirthReference
  1349. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  1350. identifier: '773206'
  1351. schemaKey: Participant
  1352. sex:
  1353. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1354. name: Male
  1355. schemaKey: SexType
  1356. species:
  1357. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1358. name: Mus musculus - House mouse
  1359. schemaKey: SpeciesType
  1360. wasGeneratedBy:
  1361. - description: NWB file generated by AIND pipeline
  1362. identifier: ecephys_773206_2025-04-02_11-46-05
  1363. name: ecephys_773206_2025-04-02_11-46-05
  1364. schemaKey: Session
  1365. startDate: '2025-04-02T11:46:05-07:00'
  1366. - description: Metadata generated by DANDI cli
  1367. endDate: '2025-06-12T20:19:13.554896Z'
  1368. id: urn:uuid:fcc5c6f0-2e0b-4d67-99ba-7a36d7e84b45
  1369. name: Metadata generation
  1370. schemaKey: Activity
  1371. startDate: '2025-06-12T20:19:11.419481Z'
  1372. wasAssociatedWith:
  1373. - identifier: RRID:SCR_019009
  1374. name: DANDI Command Line Interface
  1375. schemaKey: Software
  1376. url: https://github.com/dandi/dandi-cli
  1377. version: 0.69.3
  1378. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1379. access:
  1380. - schemaKey: AccessRequirements
  1381. status: dandi:EmbargoedAccess
  1382. approach:
  1383. - name: electrophysiological approach
  1384. schemaKey: ApproachType
  1385. blobDateModified: '2025-06-16T22:28:19.441448Z'
  1386. contentSize: 18355689337
  1387. contentUrl:
  1388. - https://api.dandiarchive.org/api/assets/50db3d58-21d9-4db1-b089-b8dd4724d65f/download/
  1389. - https://dandiarchive.s3.amazonaws.com/blobs/003/040/003040ca-362a-40c2-afec-ab2572401bc5
  1390. dateModified: '2025-06-16T22:29:03.030435Z'
  1391. digest:
  1392. dandi:dandi-etag: 159282bb253cefa6aa8240e619364256-274
  1393. dandi:sha2-256: 78ffda3bf7fa525354ef7adfe3c0021ec6e2f66544a1bb067d126d41b9da76f9
  1394. encodingFormat: application/x-nwb
  1395. id: dandiasset:50db3d58-21d9-4db1-b089-b8dd4724d65f
  1396. identifier: 50db3d58-21d9-4db1-b089-b8dd4724d65f
  1397. measurementTechnique:
  1398. - name: analytical technique
  1399. schemaKey: MeasurementTechniqueType
  1400. - name: multi electrode extracellular electrophysiology recording technique
  1401. schemaKey: MeasurementTechniqueType
  1402. - name: spike sorting technique
  1403. schemaKey: MeasurementTechniqueType
  1404. - name: surgical technique
  1405. schemaKey: MeasurementTechniqueType
  1406. - name: signal filtering technique
  1407. schemaKey: MeasurementTechniqueType
  1408. path: sub-752311/sub-752311_ses-ecephys-752311-2025-01-22-14-05-21_ecephys.nwb
  1409. schemaKey: Asset
  1410. schemaVersion: 0.6.10
  1411. variableMeasured:
  1412. - schemaKey: PropertyValue
  1413. value: ElectricalSeries
  1414. - schemaKey: PropertyValue
  1415. value: LFP
  1416. - schemaKey: PropertyValue
  1417. value: ProcessingModule
  1418. - schemaKey: PropertyValue
  1419. value: ElectrodeGroup
  1420. - schemaKey: PropertyValue
  1421. value: Units
  1422. wasAttributedTo:
  1423. - age:
  1424. schemaKey: PropertyValue
  1425. unitText: ISO-8601 duration
  1426. value: P200DT51141S
  1427. valueReference:
  1428. schemaKey: PropertyValue
  1429. value: dandi:BirthReference
  1430. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  1431. identifier: '752311'
  1432. schemaKey: Participant
  1433. sex:
  1434. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1435. name: Female
  1436. schemaKey: SexType
  1437. species:
  1438. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1439. name: Mus musculus - House mouse
  1440. schemaKey: SpeciesType
  1441. wasGeneratedBy:
  1442. - description: NWB file generated by AIND pipeline
  1443. identifier: ecephys_752311_2025-01-22_14-05-21
  1444. name: ecephys_752311_2025-01-22_14-05-21
  1445. schemaKey: Session
  1446. startDate: '2025-01-22T14:05:21-08:00'
  1447. - description: Metadata generated by DANDI cli
  1448. endDate: '2025-06-16T22:29:03.030413Z'
  1449. id: urn:uuid:1465c5f4-6d0e-47f0-a5e1-3c64f80eb3e5
  1450. name: Metadata generation
  1451. schemaKey: Activity
  1452. startDate: '2025-06-16T22:29:01.822964Z'
  1453. wasAssociatedWith:
  1454. - identifier: RRID:SCR_019009
  1455. name: DANDI Command Line Interface
  1456. schemaKey: Software
  1457. url: https://github.com/dandi/dandi-cli
  1458. version: 0.69.3
  1459. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1460. access:
  1461. - schemaKey: AccessRequirements
  1462. status: dandi:EmbargoedAccess
  1463. approach:
  1464. - name: electrophysiological approach
  1465. schemaKey: ApproachType
  1466. blobDateModified: '2025-07-16T22:51:44.103431Z'
  1467. contentSize: 18037066968
  1468. contentUrl:
  1469. - https://api.dandiarchive.org/api/assets/1aa6ee57-2ea1-4367-9439-67c2143c32af/download/
  1470. - https://dandiarchive.s3.amazonaws.com/blobs/d22/99f/d2299f2d-fc49-4aa9-a204-4a5ca86af9c4
  1471. dateModified: '2025-07-16T22:52:34.611198Z'
  1472. digest:
  1473. dandi:dandi-etag: c901fd757ddf4989a6c2ad30898bb0d0-269
  1474. dandi:sha2-256: f76c07436ab94564e45f01afcbea9baf0e7458c207434212ec6720d7acd6d361
  1475. encodingFormat: application/x-nwb
  1476. id: dandiasset:1aa6ee57-2ea1-4367-9439-67c2143c32af
  1477. identifier: 1aa6ee57-2ea1-4367-9439-67c2143c32af
  1478. measurementTechnique:
  1479. - name: spike sorting technique
  1480. schemaKey: MeasurementTechniqueType
  1481. - name: multi electrode extracellular electrophysiology recording technique
  1482. schemaKey: MeasurementTechniqueType
  1483. - name: signal filtering technique
  1484. schemaKey: MeasurementTechniqueType
  1485. - name: analytical technique
  1486. schemaKey: MeasurementTechniqueType
  1487. - name: surgical technique
  1488. schemaKey: MeasurementTechniqueType
  1489. path: sub-752311/sub-752311_ses-ecephys-752311-2025-01-23-14-00-04_ecephys.nwb
  1490. schemaKey: Asset
  1491. schemaVersion: 0.6.10
  1492. variableMeasured:
  1493. - schemaKey: PropertyValue
  1494. value: ElectricalSeries
  1495. - schemaKey: PropertyValue
  1496. value: LFP
  1497. - schemaKey: PropertyValue
  1498. value: ElectrodeGroup
  1499. - schemaKey: PropertyValue
  1500. value: ProcessingModule
  1501. - schemaKey: PropertyValue
  1502. value: Units
  1503. wasAttributedTo:
  1504. - age:
  1505. schemaKey: PropertyValue
  1506. unitText: ISO-8601 duration
  1507. value: P201DT50824S
  1508. valueReference:
  1509. schemaKey: PropertyValue
  1510. value: dandi:BirthReference
  1511. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  1512. identifier: '752311'
  1513. schemaKey: Participant
  1514. sex:
  1515. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1516. name: Female
  1517. schemaKey: SexType
  1518. species:
  1519. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1520. name: Mus musculus - House mouse
  1521. schemaKey: SpeciesType
  1522. wasGeneratedBy:
  1523. - description: NWB file generated by AIND pipeline
  1524. identifier: ecephys_752311_2025-01-23_14-00-04
  1525. name: ecephys_752311_2025-01-23_14-00-04
  1526. schemaKey: Session
  1527. startDate: '2025-01-23T14:00:04-08:00'
  1528. - description: Metadata generated by DANDI cli
  1529. endDate: '2025-07-16T22:52:34.611169Z'
  1530. id: urn:uuid:5d33ed9c-bedb-4a59-b8e0-4a90c1f33abb
  1531. name: Metadata generation
  1532. schemaKey: Activity
  1533. startDate: '2025-07-16T22:52:32.778095Z'
  1534. wasAssociatedWith:
  1535. - identifier: RRID:SCR_019009
  1536. name: DANDI Command Line Interface
  1537. schemaKey: Software
  1538. url: https://github.com/dandi/dandi-cli
  1539. version: 0.69.3
  1540. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
  1541. access:
  1542. - schemaKey: AccessRequirements
  1543. status: dandi:EmbargoedAccess
  1544. approach:
  1545. - name: electrophysiological approach
  1546. schemaKey: ApproachType
  1547. blobDateModified: '2025-07-31T08:39:15.476616Z'
  1548. contentSize: 16800501027
  1549. contentUrl:
  1550. - https://api.dandiarchive.org/api/assets/32ec34a9-f588-43ef-9782-ece94d80933d/download/
  1551. - https://dandiarchive.s3.amazonaws.com/blobs/cca/36e/cca36e9d-b22f-4e29-9e9f-383057eeedea
  1552. dateModified: '2025-07-31T08:40:05.843870Z'
  1553. digest:
  1554. dandi:dandi-etag: 5ee70aba31fd422dfedcb9c7d61bd3e4-251
  1555. encodingFormat: application/x-nwb
  1556. id: dandiasset:32ec34a9-f588-43ef-9782-ece94d80933d
  1557. identifier: 32ec34a9-f588-43ef-9782-ece94d80933d
  1558. measurementTechnique:
  1559. - name: signal filtering technique
  1560. schemaKey: MeasurementTechniqueType
  1561. - name: surgical technique
  1562. schemaKey: MeasurementTechniqueType
  1563. - name: multi electrode extracellular electrophysiology recording technique
  1564. schemaKey: MeasurementTechniqueType
  1565. - name: spike sorting technique
  1566. schemaKey: MeasurementTechniqueType
  1567. - name: analytical technique
  1568. schemaKey: MeasurementTechniqueType
  1569. path: sub-773206/sub-773206_ses-ecephys-773206-2025-04-01-10-47-58_ecephys.nwb
  1570. schemaKey: Asset
  1571. schemaVersion: 0.6.10
  1572. variableMeasured:
  1573. - schemaKey: PropertyValue
  1574. value: ProcessingModule
  1575. - schemaKey: PropertyValue
  1576. value: ElectricalSeries
  1577. - schemaKey: PropertyValue
  1578. value: LFP
  1579. - schemaKey: PropertyValue
  1580. value: ElectrodeGroup
  1581. - schemaKey: PropertyValue
  1582. value: Units
  1583. wasAttributedTo:
  1584. - age:
  1585. schemaKey: PropertyValue
  1586. unitText: ISO-8601 duration
  1587. value: P163DT35698S
  1588. valueReference:
  1589. schemaKey: PropertyValue
  1590. value: dandi:BirthReference
  1591. genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
  1592. identifier: '773206'
  1593. schemaKey: Participant
  1594. sex:
  1595. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1596. name: Male
  1597. schemaKey: SexType
  1598. species:
  1599. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1600. name: Mus musculus - House mouse
  1601. schemaKey: SpeciesType
  1602. wasGeneratedBy:
  1603. - description: NWB file generated by AIND pipeline
  1604. identifier: ecephys_773206_2025-04-01_10-47-58
  1605. name: ecephys_773206_2025-04-01_10-47-58
  1606. schemaKey: Session
  1607. startDate: '2025-04-01T10:47:58-07:00'
  1608. - description: Metadata generated by DANDI cli
  1609. endDate: '2025-07-31T08:40:05.843839Z'
  1610. id: urn:uuid:52e01c6a-d15b-488d-874f-deeabb59f51a
  1611. name: Metadata generation
  1612. schemaKey: Activity
  1613. startDate: '2025-07-31T08:40:03.688564Z'
  1614. wasAssociatedWith:
  1615. - identifier: RRID:SCR_019009
  1616. name: DANDI Command Line Interface
  1617. schemaKey: Software
  1618. url: https://github.com/dandi/dandi-cli
  1619. version: 0.69.3
Tip!

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

Comments

Loading...