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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-10T04:57:28.848249Z'
contentSize: 17868652630
contentUrl:
- https://api.dandiarchive.org/api/assets/175f92fe-c90e-4e77-81f8-95fee4e80617/download/
- https://dandiarchive.s3.amazonaws.com/blobs/882/456/882456ef-447f-410a-926b-3609cb9ee5a0
dateModified: '2025-06-10T04:58:30.972337Z'
digest:
dandi:dandi-etag: fd2671fa90ffb0bf95a47ee1bd4387ab-267
dandi:sha2-256: cd075f84d94f085dbd8f3ce32f49c40561c729f50b56601dd2923cbbf45899fa
encodingFormat: application/x-nwb
id: dandiasset:175f92fe-c90e-4e77-81f8-95fee4e80617
identifier: 175f92fe-c90e-4e77-81f8-95fee4e80617
measurementTechnique:
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-752309/sub-752309_ses-ecephys-752309-2025-02-11-14-00-40_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: ElectrodeGroup
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P220DT50860S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '752309'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_752309_2025-02-11_14-00-40
name: ecephys_752309_2025-02-11_14-00-40
schemaKey: Session
startDate: '2025-02-11T14:00:40-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-10T04:58:30.972295Z'
id: urn:uuid:869b73c9-586a-493c-b410-4949d445ab4a
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-10T04:58:28.275630Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-10T04:58:24.324821Z'
contentSize: 17664211765
contentUrl:
- https://api.dandiarchive.org/api/assets/75ebc511-7e0f-48c3-991f-e94353fe8c77/download/
- https://dandiarchive.s3.amazonaws.com/blobs/551/1c3/5511c3af-5912-4fe2-b48b-313698cf1adf
dateModified: '2025-06-10T04:59:25.894286Z'
digest:
dandi:dandi-etag: c8618b5da880a7f4b30682ab534f28da-264
dandi:sha2-256: 0e3868c52243a42c9f2194586a5e2cd0fda49c7febc059cdf41ba9cce6ee243d
encodingFormat: application/x-nwb
id: dandiasset:75ebc511-7e0f-48c3-991f-e94353fe8c77
identifier: 75ebc511-7e0f-48c3-991f-e94353fe8c77
measurementTechnique:
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-767925/sub-767925_ses-ecephys-767925-2025-02-13-11-40-19_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P144DT42439S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '767925'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_767925_2025-02-13_11-40-19
name: ecephys_767925_2025-02-13_11-40-19
schemaKey: Session
startDate: '2025-02-13T11:40:19-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-10T04:59:25.894244Z'
id: urn:uuid:fd84e22b-9a4f-41ea-a439-b72a1d97acd3
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-10T04:59:23.213244Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-10T05:23:09.643390Z'
contentSize: 17755423230
contentUrl:
- https://api.dandiarchive.org/api/assets/2faab302-45ad-4a04-a3da-8c632cf60d0c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c71/802/c71802f8-5ab4-45af-8c73-ceb49d93a2f5
dateModified: '2025-06-10T05:23:51.391788Z'
digest:
dandi:dandi-etag: 77cf707fdd6b37cf3752ce2486430e4b-265
dandi:sha2-256: 6a4001b2fd5f8908fbebfb727a6cb00a7d3139b49daeb0cc7a736d8400867f66
encodingFormat: application/x-nwb
id: dandiasset:2faab302-45ad-4a04-a3da-8c632cf60d0c
identifier: 2faab302-45ad-4a04-a3da-8c632cf60d0c
measurementTechnique:
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-767926/sub-767926_ses-ecephys-767926-2025-02-27-15-12-01_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: ElectrodeGroup
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P158DT55141S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '767926'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_767926_2025-02-27_15-12-01
name: ecephys_767926_2025-02-27_15-12-01
schemaKey: Session
startDate: '2025-02-27T15:12:01-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-10T05:23:51.391762Z'
id: urn:uuid:4debe879-581e-4e06-8852-43c159427427
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-10T05:23:50.163027Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-10T05:27:25.559118Z'
contentSize: 18493559503
contentUrl:
- https://api.dandiarchive.org/api/assets/32152e48-ec68-472c-88c8-78326b91bb1a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/e87/e7a/e87e7a55-2836-4174-8e8f-41e131afa228
dateModified: '2025-06-10T05:28:08.936305Z'
digest:
dandi:dandi-etag: 3f601c082cc8ccbb8ba4f8c311b492f7-276
dandi:sha2-256: bec368e45e9dfeea4395907de36d17887b6ba42840485f9262f24bf917ccdef4
encodingFormat: application/x-nwb
id: dandiasset:32152e48-ec68-472c-88c8-78326b91bb1a
identifier: 32152e48-ec68-472c-88c8-78326b91bb1a
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-760322/sub-760322_ses-ecephys-760322-2025-02-06-14-07-25_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ElectrodeGroup
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P176DT51265S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '760322'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_760322_2025-02-06_14-07-25
name: ecephys_760322_2025-02-06_14-07-25
schemaKey: Session
startDate: '2025-02-06T14:07:25-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-10T05:28:08.936279Z'
id: urn:uuid:fe73ca33-c49a-4c9c-9a7d-09e50456fcb3
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-10T05:28:07.675032Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-10T05:30:00.288507Z'
contentSize: 17204635831
contentUrl:
- https://api.dandiarchive.org/api/assets/b54b07df-b88b-40eb-a688-91603c166af0/download/
- https://dandiarchive.s3.amazonaws.com/blobs/7a0/cfa/7a0cfa7e-8529-4297-b8be-b15d7f7facdb
dateModified: '2025-06-10T05:30:41.450896Z'
digest:
dandi:dandi-etag: 2285cacd856f53dc0de139b9e25d0eaf-257
dandi:sha2-256: 0287c359a4fc555e5a10e9391bc243f0e672ea390c16de00870a1d4eabfb004f
encodingFormat: application/x-nwb
id: dandiasset:b54b07df-b88b-40eb-a688-91603c166af0
identifier: b54b07df-b88b-40eb-a688-91603c166af0
measurementTechnique:
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-767925/sub-767925_ses-ecephys-767925-2025-02-14-11-04-33_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P145DT40293S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '767925'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_767925_2025-02-14_11-04-33
name: ecephys_767925_2025-02-14_11-04-33
schemaKey: Session
startDate: '2025-02-14T11:04:33-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-10T05:30:41.450873Z'
id: urn:uuid:efece3e8-7a6d-40fd-828c-f7bcf010dd8c
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-10T05:30:40.292475Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-10T05:31:27.642874Z'
contentSize: 18938289149
contentUrl:
- https://api.dandiarchive.org/api/assets/62a8e052-cb0c-4e2f-9de1-3d0a99025141/download/
- https://dandiarchive.s3.amazonaws.com/blobs/e64/b3d/e64b3d7f-1b4c-4315-9899-dc584fe64f3f
dateModified: '2025-06-10T05:32:11.621543Z'
digest:
dandi:dandi-etag: 9cc4dbd756cce287cb33a27f19ec5bb8-283
dandi:sha2-256: 002cd9e0f6bb32813d7725cef0c1909b347329c7b2a7ba0eba7c11a68b30e197
encodingFormat: application/x-nwb
id: dandiasset:62a8e052-cb0c-4e2f-9de1-3d0a99025141
identifier: 62a8e052-cb0c-4e2f-9de1-3d0a99025141
measurementTechnique:
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-760322/sub-760322_ses-ecephys-760322-2025-02-05-14-30-46_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P175DT52666S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '760322'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_760322_2025-02-05_14-30-46
name: ecephys_760322_2025-02-05_14-30-46
schemaKey: Session
startDate: '2025-02-05T14:30:46-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-10T05:32:11.621518Z'
id: urn:uuid:8ce0a937-9087-4902-b834-7c6daf512980
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-10T05:32:10.396812Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-10T05:49:26.635444Z'
contentSize: 18241001759
contentUrl:
- https://api.dandiarchive.org/api/assets/38bbc105-5d6b-484d-8f9b-6f60bdfb8871/download/
- https://dandiarchive.s3.amazonaws.com/blobs/7ed/d18/7edd188c-621c-4ffa-a4ba-113ab475ac9e
dateModified: '2025-06-10T05:50:11.121024Z'
digest:
dandi:dandi-etag: 1257a10ee07bfe70d209f43bca87b27f-272
dandi:sha2-256: 69b4879af30d1810ec908a000282216d27c930cd9c2185da135e40f3557bad24
encodingFormat: application/x-nwb
id: dandiasset:38bbc105-5d6b-484d-8f9b-6f60bdfb8871
identifier: 38bbc105-5d6b-484d-8f9b-6f60bdfb8871
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-760324/sub-760324_ses-ecephys-760324-2025-02-20-11-31-01_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P190DT41881S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '760324'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_760324_2025-02-20_11-31-01
name: ecephys_760324_2025-02-20_11-31-01
schemaKey: Session
startDate: '2025-02-20T11:31:01-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-10T05:50:11.120992Z'
id: urn:uuid:26a543a5-49a1-4873-8887-7eff35b92c5f
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-10T05:50:09.645349Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-10T05:51:01.838700Z'
contentSize: 18968292061
contentUrl:
- https://api.dandiarchive.org/api/assets/e802515e-8c00-4fae-af74-228ab6cb797e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/3e9/420/3e9420a2-e5c6-4b4a-a312-a2d33aef8629
dateModified: '2025-06-10T05:51:52.428357Z'
digest:
dandi:dandi-etag: bf36fce882e06d7b7d5cf2d84bdba3a2-283
dandi:sha2-256: ef806581bf8797b359ca61365fcbda4bf749cb727400a52d930bfec398045887
encodingFormat: application/x-nwb
id: dandiasset:e802515e-8c00-4fae-af74-228ab6cb797e
identifier: e802515e-8c00-4fae-af74-228ab6cb797e
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-767926/sub-767926_ses-ecephys-767926-2025-02-26-15-49-35_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P157DT57395S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '767926'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_767926_2025-02-26_15-49-35
name: ecephys_767926_2025-02-26_15-49-35
schemaKey: Session
startDate: '2025-02-26T15:49:35-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-10T05:51:52.428327Z'
id: urn:uuid:0f56680b-89ea-46b0-b95a-2ee120462a9d
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-10T05:51:50.751710Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-10T07:40:30.671454Z'
contentSize: 17692098150
contentUrl:
- https://api.dandiarchive.org/api/assets/ad55ddcd-f696-4275-8d70-93327c2b60bd/download/
- https://dandiarchive.s3.amazonaws.com/blobs/27f/01e/27f01e65-c6d3-4d57-8f87-d22d666786cc
dateModified: '2025-06-10T07:41:26.612060Z'
digest:
dandi:dandi-etag: 94c7be7c59437a3b6f76c39340e20228-264
dandi:sha2-256: 2bc7fd1ff8ab098da1917ff13d9e972a65216f87a79beb3e9c823caf5a084369
encodingFormat: application/x-nwb
id: dandiasset:ad55ddcd-f696-4275-8d70-93327c2b60bd
identifier: ad55ddcd-f696-4275-8d70-93327c2b60bd
measurementTechnique:
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-752309/sub-752309_ses-ecephys-752309-2025-02-12-13-53-52_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: LFP
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P221DT50452S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '752309'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_752309_2025-02-12_13-53-52
name: ecephys_752309_2025-02-12_13-53-52
schemaKey: Session
startDate: '2025-02-12T13:53:52-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-10T07:41:26.612014Z'
id: urn:uuid:1d00c146-b0c5-4949-8062-54e482954992
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-10T07:41:24.148565Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-10T07:40:30.587453Z'
contentSize: 17959247635
contentUrl:
- https://api.dandiarchive.org/api/assets/8b24b405-cb77-4c2b-9f13-5b50245dea37/download/
- https://dandiarchive.s3.amazonaws.com/blobs/cf3/148/cf314835-77e4-4bef-b84b-4a458ab5fc80
dateModified: '2025-06-10T07:41:26.600239Z'
digest:
dandi:dandi-etag: 227755c549882c69666191d9d8649630-268
dandi:sha2-256: efb54726477631fba3fee3365f150b46affc21c1d907e022e716cde6afd5c82f
encodingFormat: application/x-nwb
id: dandiasset:8b24b405-cb77-4c2b-9f13-5b50245dea37
identifier: 8b24b405-cb77-4c2b-9f13-5b50245dea37
measurementTechnique:
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-753316/sub-753316_ses-ecephys-753316-2025-01-28-13-57-06_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: LFP
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P201DT50646S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '753316'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_753316_2025-01-28_13-57-06
name: ecephys_753316_2025-01-28_13-57-06
schemaKey: Session
startDate: '2025-01-28T13:57:06-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-10T07:41:26.600193Z'
id: urn:uuid:48c9b8bd-a9d2-4b7c-b129-9ff1f24be6d3
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-10T07:41:24.335437Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-10T07:52:37.279719Z'
contentSize: 18619126984
contentUrl:
- https://api.dandiarchive.org/api/assets/514e91c0-1d25-4baf-b11a-aae0db7ad501/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c45/d36/c45d36b5-6d89-4998-99bd-8a863e9d1e69
dateModified: '2025-06-10T07:53:21.241669Z'
digest:
dandi:dandi-etag: 6438ccd1521584c0045063aa681ba03f-278
dandi:sha2-256: 749afceaec4c34e2d87a51dea82bd962647500f98d6cc7dd15c4a9692c437e71
encodingFormat: application/x-nwb
id: dandiasset:514e91c0-1d25-4baf-b11a-aae0db7ad501
identifier: 514e91c0-1d25-4baf-b11a-aae0db7ad501
measurementTechnique:
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-760324/sub-760324_ses-ecephys-760324-2025-02-19-10-56-40_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P189DT39820S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '760324'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_760324_2025-02-19_10-56-40
name: ecephys_760324_2025-02-19_10-56-40
schemaKey: Session
startDate: '2025-02-19T10:56:40-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-10T07:53:21.241643Z'
id: urn:uuid:a88b9ba0-a0d7-4c36-bb00-f9f7b4040613
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-10T07:53:20.009450Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-10T08:08:14.525458Z'
contentSize: 17274686799
contentUrl:
- https://api.dandiarchive.org/api/assets/a0579e62-67e2-47cf-bd53-a877a320dacb/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ad1/7f6/ad17f6fb-6e78-4501-b69e-02016bd3e376
dateModified: '2025-06-10T08:08:56.215490Z'
digest:
dandi:dandi-etag: 9369f4f0ad512f5227705a25bbd597d6-258
dandi:sha2-256: 3e6d8f947b8e8cd6647756d84df8ab0555273f5b97fcde53845119929d5cabf8
encodingFormat: application/x-nwb
id: dandiasset:a0579e62-67e2-47cf-bd53-a877a320dacb
identifier: a0579e62-67e2-47cf-bd53-a877a320dacb
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-753316/sub-753316_ses-ecephys-753316-2025-01-29-13-57-16_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: LFP
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P202DT50656S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '753316'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_753316_2025-01-29_13-57-16
name: ecephys_753316_2025-01-29_13-57-16
schemaKey: Session
startDate: '2025-01-29T13:57:16-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-10T08:08:56.215463Z'
id: urn:uuid:e6bea090-5e49-4a0f-8047-547b513657aa
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-10T08:08:54.897560Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-11T02:58:33.416437Z'
contentSize: 17136355202
contentUrl:
- https://api.dandiarchive.org/api/assets/89b971d9-655a-45a2-8a16-bc5d886ab47f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c8a/a1c/c8aa1cdd-1cb8-4a99-a3fb-24a46e37b977
dateModified: '2025-06-11T02:59:34.482280Z'
digest:
dandi:dandi-etag: b12aece3ec87b9647a62c3ccb40ac8ee-256
dandi:sha2-256: acab0ae1729cdbdd4e5986294efed2e77d51bf591e2ae480aa2faab0205eb8e0
encodingFormat: application/x-nwb
id: dandiasset:89b971d9-655a-45a2-8a16-bc5d886ab47f
identifier: 89b971d9-655a-45a2-8a16-bc5d886ab47f
measurementTechnique:
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-752312/sub-752312_ses-ecephys-752312-2025-01-30-11-44-04_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P208DT42664S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '752312'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_752312_2025-01-30_11-44-04
name: ecephys_752312_2025-01-30_11-44-04
schemaKey: Session
startDate: '2025-01-30T11:44:04-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-11T02:59:34.482243Z'
id: urn:uuid:5d557208-e05e-46f4-9185-02b714870a9d
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-11T02:59:31.521574Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-11T03:02:00.536814Z'
contentSize: 16768288291
contentUrl:
- https://api.dandiarchive.org/api/assets/dd96d933-c4f2-4d6e-90f9-187b778eb06b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/2a7/2e6/2a72e60d-0ecb-420b-b332-6f211c996c8b
dateModified: '2025-06-11T03:02:36.272336Z'
digest:
dandi:dandi-etag: da6740804a2070c121669460b9a182a7-250
dandi:sha2-256: 75689437b582ee974e11326f44dab2ea58351527592f1a17f38c65582562cebf
encodingFormat: application/x-nwb
id: dandiasset:dd96d933-c4f2-4d6e-90f9-187b778eb06b
identifier: dd96d933-c4f2-4d6e-90f9-187b778eb06b
measurementTechnique:
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
path: sub-767932/sub-767932_ses-ecephys-767932-2025-03-26-14-07-06_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P185DT47646S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '767932'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_767932_2025-03-26_14-07-06
name: ecephys_767932_2025-03-26_14-07-06
schemaKey: Session
startDate: '2025-03-26T14:07:06-07:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-11T03:02:36.272312Z'
id: urn:uuid:6940354e-ed0f-4883-bd3c-e984c02b5d7e
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-11T03:02:35.188113Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-11T03:34:41.137473Z'
contentSize: 17529144070
contentUrl:
- https://api.dandiarchive.org/api/assets/42ef8a35-3626-425b-92bb-6cbec49c8ae6/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ce4/18d/ce418de0-e74b-4efe-8b65-23fe4fa0f526
dateModified: '2025-06-11T03:35:32.970352Z'
digest:
dandi:dandi-etag: a485034db2133c09df00de38edcffa98-262
dandi:sha2-256: b84fd9d8f333acb6e8e23da10d0b43e89dd103e9d4b6f67e2458d0d2b6624cc0
encodingFormat: application/x-nwb
id: dandiasset:42ef8a35-3626-425b-92bb-6cbec49c8ae6
identifier: 42ef8a35-3626-425b-92bb-6cbec49c8ae6
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-767932/sub-767932_ses-ecephys-767932-2025-03-25-14-35-45_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P184DT49365S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '767932'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_767932_2025-03-25_14-35-45
name: ecephys_767932_2025-03-25_14-35-45
schemaKey: Session
startDate: '2025-03-25T14:35:45-07:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-11T03:35:32.970321Z'
id: urn:uuid:2d099bd3-8130-4d95-8352-316b4dbb2d2c
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-11T03:35:30.883832Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-12T19:52:19.297187Z'
contentSize: 18619805461
contentUrl:
- https://api.dandiarchive.org/api/assets/49f630bd-b4ba-4092-8125-11c2e1e2441f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ddd/036/ddd036ca-ac07-4d85-8028-ca87bf4adc8c
dateModified: '2025-06-12T19:53:13.931225Z'
digest:
dandi:dandi-etag: 98562db11905800d7a28c0a074d563af-278
dandi:sha2-256: 4f3f9b01faf00f77c4d30000ce94039b52fa58ded6ed6198fecb0aacff104e26
encodingFormat: application/x-nwb
id: dandiasset:49f630bd-b4ba-4092-8125-11c2e1e2441f
identifier: 49f630bd-b4ba-4092-8125-11c2e1e2441f
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-752312/sub-752312_ses-ecephys-752312-2025-01-31-11-02-20_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: LFP
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P209DT40160S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '752312'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_752312_2025-01-31_11-02-20
name: ecephys_752312_2025-01-31_11-02-20
schemaKey: Session
startDate: '2025-01-31T11:02:20-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-12T19:53:13.931193Z'
id: urn:uuid:4532c2b2-7214-4770-9c06-c94276a42682
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-12T19:53:11.852276Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-12T20:18:21.044659Z'
contentSize: 16999067947
contentUrl:
- https://api.dandiarchive.org/api/assets/69bb24d0-fba9-4ecb-ac6d-46698fdecf90/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a0f/4c3/a0f4c3fd-18e3-4a50-9e78-63c9cd9f00aa
dateModified: '2025-06-12T20:19:13.554928Z'
digest:
dandi:dandi-etag: 7487771a66072ba06d7b1d4f878a3d6e-254
dandi:sha2-256: 0522f93bf9ebc60a39047dbd76274cfb678207a4bb4439a2c4d30053502b075f
encodingFormat: application/x-nwb
id: dandiasset:69bb24d0-fba9-4ecb-ac6d-46698fdecf90
identifier: 69bb24d0-fba9-4ecb-ac6d-46698fdecf90
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-773206/sub-773206_ses-ecephys-773206-2025-04-02-11-46-05_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: Units
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P164DT39185S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '773206'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_773206_2025-04-02_11-46-05
name: ecephys_773206_2025-04-02_11-46-05
schemaKey: Session
startDate: '2025-04-02T11:46:05-07:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-12T20:19:13.554896Z'
id: urn:uuid:fcc5c6f0-2e0b-4d67-99ba-7a36d7e84b45
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-12T20:19:11.419481Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-06-16T22:28:19.441448Z'
contentSize: 18355689337
contentUrl:
- https://api.dandiarchive.org/api/assets/50db3d58-21d9-4db1-b089-b8dd4724d65f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/003/040/003040ca-362a-40c2-afec-ab2572401bc5
dateModified: '2025-06-16T22:29:03.030435Z'
digest:
dandi:dandi-etag: 159282bb253cefa6aa8240e619364256-274
dandi:sha2-256: 78ffda3bf7fa525354ef7adfe3c0021ec6e2f66544a1bb067d126d41b9da76f9
encodingFormat: application/x-nwb
id: dandiasset:50db3d58-21d9-4db1-b089-b8dd4724d65f
identifier: 50db3d58-21d9-4db1-b089-b8dd4724d65f
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
path: sub-752311/sub-752311_ses-ecephys-752311-2025-01-22-14-05-21_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P200DT51141S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '752311'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_752311_2025-01-22_14-05-21
name: ecephys_752311_2025-01-22_14-05-21
schemaKey: Session
startDate: '2025-01-22T14:05:21-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-06-16T22:29:03.030413Z'
id: urn:uuid:1465c5f4-6d0e-47f0-a5e1-3c64f80eb3e5
name: Metadata generation
schemaKey: Activity
startDate: '2025-06-16T22:29:01.822964Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-07-16T22:51:44.103431Z'
contentSize: 18037066968
contentUrl:
- https://api.dandiarchive.org/api/assets/1aa6ee57-2ea1-4367-9439-67c2143c32af/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d22/99f/d2299f2d-fc49-4aa9-a204-4a5ca86af9c4
dateModified: '2025-07-16T22:52:34.611198Z'
digest:
dandi:dandi-etag: c901fd757ddf4989a6c2ad30898bb0d0-269
dandi:sha2-256: f76c07436ab94564e45f01afcbea9baf0e7458c207434212ec6720d7acd6d361
encodingFormat: application/x-nwb
id: dandiasset:1aa6ee57-2ea1-4367-9439-67c2143c32af
identifier: 1aa6ee57-2ea1-4367-9439-67c2143c32af
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-752311/sub-752311_ses-ecephys-752311-2025-01-23-14-00-04_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P201DT50824S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '752311'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_752311_2025-01-23_14-00-04
name: ecephys_752311_2025-01-23_14-00-04
schemaKey: Session
startDate: '2025-01-23T14:00:04-08:00'
- description: Metadata generated by DANDI cli
endDate: '2025-07-16T22:52:34.611169Z'
id: urn:uuid:5d33ed9c-bedb-4a59-b8e0-4a90c1f33abb
name: Metadata generation
schemaKey: Activity
startDate: '2025-07-16T22:52:32.778095Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.10/context.json
access:
- schemaKey: AccessRequirements
status: dandi:EmbargoedAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2025-07-31T08:39:15.476616Z'
contentSize: 16800501027
contentUrl:
- https://api.dandiarchive.org/api/assets/32ec34a9-f588-43ef-9782-ece94d80933d/download/
- https://dandiarchive.s3.amazonaws.com/blobs/cca/36e/cca36e9d-b22f-4e29-9e9f-383057eeedea
dateModified: '2025-07-31T08:40:05.843870Z'
digest:
dandi:dandi-etag: 5ee70aba31fd422dfedcb9c7d61bd3e4-251
encodingFormat: application/x-nwb
id: dandiasset:32ec34a9-f588-43ef-9782-ece94d80933d
identifier: 32ec34a9-f588-43ef-9782-ece94d80933d
measurementTechnique:
- name: signal filtering technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-773206/sub-773206_ses-ecephys-773206-2025-04-01-10-47-58_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.10
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: ElectricalSeries
- schemaKey: PropertyValue
value: LFP
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P163DT35698S
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
genotype: Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt
identifier: '773206'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: NWB file generated by AIND pipeline
identifier: ecephys_773206_2025-04-01_10-47-58
name: ecephys_773206_2025-04-01_10-47-58
schemaKey: Session
startDate: '2025-04-01T10:47:58-07:00'
- description: Metadata generated by DANDI cli
endDate: '2025-07-31T08:40:05.843839Z'
id: urn:uuid:52e01c6a-d15b-488d-874f-deeabb59f51a
name: Metadata generation
schemaKey: Activity
startDate: '2025-07-31T08:40:03.688564Z'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.69.3
Tip!
Press p or to see the previous file or,
n or to see the next file