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 53 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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: electrophysiological approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2024-07-19T06:37:02.881511-07:00'
  9. contentSize: 103061265
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/ceefe07b-911c-46c0-b3e9-912c2601db11/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/ae3/e12/ae3e122c-7d46-41a1-84c0-0f4d667ee4ad
  13. dateModified: '2024-07-19T06:47:06.100005-07:00'
  14. digest:
  15. dandi:dandi-etag: 46681685fd3ab06b0aab13cccc07fcfd-2
  16. dandi:sha2-256: 9cd71ead5f3bd15ef4f680820f197261e87158967dcd68f53f2a86b1d0c8eb5c
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:ceefe07b-911c-46c0-b3e9-912c2601db11
  19. identifier: ceefe07b-911c-46c0-b3e9-912c2601db11
  20. keywords:
  21. - single neuron, human, intracranial
  22. measurementTechnique:
  23. - name: multi electrode extracellular electrophysiology recording technique
  24. schemaKey: MeasurementTechniqueType
  25. - name: surgical technique
  26. schemaKey: MeasurementTechniqueType
  27. - name: spike sorting technique
  28. schemaKey: MeasurementTechniqueType
  29. path: sub-11/sub-11_ecephys+image.nwb
  30. relatedResource: []
  31. schemaKey: Asset
  32. schemaVersion: 0.6.8
  33. variableMeasured:
  34. - schemaKey: PropertyValue
  35. value: ElectrodeGroup
  36. - schemaKey: PropertyValue
  37. value: ElectricalSeries
  38. - schemaKey: PropertyValue
  39. value: Units
  40. wasAttributedTo:
  41. - age:
  42. schemaKey: PropertyValue
  43. unitText: ISO-8601 duration
  44. value: P68Y
  45. valueReference:
  46. schemaKey: PropertyValue
  47. value: dandi:BirthReference
  48. identifier: '11'
  49. schemaKey: Participant
  50. sex:
  51. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  52. name: Female
  53. schemaKey: SexType
  54. species:
  55. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  56. name: Homo sapiens - Human
  57. schemaKey: SpeciesType
  58. wasGeneratedBy:
  59. - description: 'CBPP: 1 CBPPID: 11'
  60. identifier: '1'
  61. name: '1'
  62. schemaKey: Session
  63. startDate: '2018-01-01T00:00:00-08:00'
  64. - description: Metadata generated by DANDI cli
  65. endDate: '2024-07-19T06:47:06.099986-07:00'
  66. id: urn:uuid:4f606145-ac0c-4c2d-aa47-e0e1ac9c1905
  67. name: Metadata generation
  68. schemaKey: Activity
  69. startDate: '2024-07-19T06:47:06.012973-07:00'
  70. wasAssociatedWith:
  71. - identifier: RRID:SCR_019009
  72. name: DANDI Command Line Interface
  73. schemaKey: Software
  74. url: https://github.com/dandi/dandi-cli
  75. version: 0.62.4
  76. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  77. access:
  78. - schemaKey: AccessRequirements
  79. status: dandi:OpenAccess
  80. approach:
  81. - name: electrophysiological approach
  82. schemaKey: ApproachType
  83. blobDateModified: '2024-07-19T06:40:26.570841-07:00'
  84. contentSize: 63096185
  85. contentUrl:
  86. - https://api.dandiarchive.org/api/assets/612c80ff-c103-4725-88f5-12215598dcbe/download/
  87. - https://dandiarchive.s3.amazonaws.com/blobs/c8b/ae0/c8bae049-eb1e-4c28-ae21-2e4ecf79aaea
  88. dateModified: '2024-07-19T06:47:06.012825-07:00'
  89. digest:
  90. dandi:dandi-etag: bdb629b7ad375a36d36a0db1ef6b6b82-1
  91. dandi:sha2-256: eb8ca713ff7ac3fdbddf973ff10c5083156878b1d6253499e77d7fca5b5c9b13
  92. encodingFormat: application/x-nwb
  93. id: dandiasset:612c80ff-c103-4725-88f5-12215598dcbe
  94. identifier: 612c80ff-c103-4725-88f5-12215598dcbe
  95. keywords:
  96. - single neuron, human, intracranial
  97. measurementTechnique:
  98. - name: multi electrode extracellular electrophysiology recording technique
  99. schemaKey: MeasurementTechniqueType
  100. - name: surgical technique
  101. schemaKey: MeasurementTechniqueType
  102. - name: spike sorting technique
  103. schemaKey: MeasurementTechniqueType
  104. path: sub-1/sub-1_ecephys+image.nwb
  105. relatedResource: []
  106. schemaKey: Asset
  107. schemaVersion: 0.6.8
  108. variableMeasured:
  109. - schemaKey: PropertyValue
  110. value: ElectrodeGroup
  111. - schemaKey: PropertyValue
  112. value: ElectricalSeries
  113. - schemaKey: PropertyValue
  114. value: Units
  115. wasAttributedTo:
  116. - age:
  117. schemaKey: PropertyValue
  118. unitText: ISO-8601 duration
  119. value: P67Y
  120. valueReference:
  121. schemaKey: PropertyValue
  122. value: dandi:BirthReference
  123. identifier: '1'
  124. schemaKey: Participant
  125. sex:
  126. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  127. name: Male
  128. schemaKey: SexType
  129. species:
  130. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  131. name: Homo sapiens - Human
  132. schemaKey: SpeciesType
  133. wasGeneratedBy:
  134. - description: 'CBPP: 1 CBPPID: 1'
  135. identifier: '1'
  136. name: '1'
  137. schemaKey: Session
  138. startDate: '2018-01-01T00:00:00-08:00'
  139. - description: Metadata generated by DANDI cli
  140. endDate: '2024-07-19T06:47:06.012800-07:00'
  141. id: urn:uuid:62f37edf-e5d9-47b1-afb2-95a6bd79e94e
  142. name: Metadata generation
  143. schemaKey: Activity
  144. startDate: '2024-07-19T06:47:05.842269-07:00'
  145. wasAssociatedWith:
  146. - identifier: RRID:SCR_019009
  147. name: DANDI Command Line Interface
  148. schemaKey: Software
  149. url: https://github.com/dandi/dandi-cli
  150. version: 0.62.4
  151. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  152. access:
  153. - schemaKey: AccessRequirements
  154. status: dandi:OpenAccess
  155. approach:
  156. - name: electrophysiological approach
  157. schemaKey: ApproachType
  158. blobDateModified: '2024-07-19T06:36:55.850780-07:00'
  159. contentSize: 101895876
  160. contentUrl:
  161. - https://api.dandiarchive.org/api/assets/fda43ae8-3b74-40ec-b1c3-0a98ca01db4d/download/
  162. - https://dandiarchive.s3.amazonaws.com/blobs/963/512/9635120e-1d19-44fb-8f3e-2f04a7e257f8
  163. dateModified: '2024-07-19T06:47:06.601371-07:00'
  164. digest:
  165. dandi:dandi-etag: ce08c8cec99511b14b23be9dae922aa1-2
  166. dandi:sha2-256: dd899cf2a3376fa264e14eaa7e33355742d2443371cdc08f920ad64e8d4e8e3b
  167. encodingFormat: application/x-nwb
  168. id: dandiasset:fda43ae8-3b74-40ec-b1c3-0a98ca01db4d
  169. identifier: fda43ae8-3b74-40ec-b1c3-0a98ca01db4d
  170. keywords:
  171. - single neuron, human, intracranial
  172. measurementTechnique:
  173. - name: multi electrode extracellular electrophysiology recording technique
  174. schemaKey: MeasurementTechniqueType
  175. - name: surgical technique
  176. schemaKey: MeasurementTechniqueType
  177. - name: spike sorting technique
  178. schemaKey: MeasurementTechniqueType
  179. path: sub-10/sub-10_ecephys+image.nwb
  180. relatedResource: []
  181. schemaKey: Asset
  182. schemaVersion: 0.6.8
  183. variableMeasured:
  184. - schemaKey: PropertyValue
  185. value: ElectrodeGroup
  186. - schemaKey: PropertyValue
  187. value: ElectricalSeries
  188. - schemaKey: PropertyValue
  189. value: Units
  190. wasAttributedTo:
  191. - age:
  192. schemaKey: PropertyValue
  193. unitText: ISO-8601 duration
  194. value: P25Y
  195. valueReference:
  196. schemaKey: PropertyValue
  197. value: dandi:BirthReference
  198. identifier: '10'
  199. schemaKey: Participant
  200. sex:
  201. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  202. name: Female
  203. schemaKey: SexType
  204. species:
  205. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  206. name: Homo sapiens - Human
  207. schemaKey: SpeciesType
  208. wasGeneratedBy:
  209. - description: 'CBPP: 1 CBPPID: 10'
  210. identifier: '1'
  211. name: '1'
  212. schemaKey: Session
  213. startDate: '2018-01-01T00:00:00-08:00'
  214. - description: Metadata generated by DANDI cli
  215. endDate: '2024-07-19T06:47:06.601353-07:00'
  216. id: urn:uuid:a270d9a2-c126-4e0c-aa4a-3e48ce19cfc0
  217. name: Metadata generation
  218. schemaKey: Activity
  219. startDate: '2024-07-19T06:47:06.425901-07:00'
  220. wasAssociatedWith:
  221. - identifier: RRID:SCR_019009
  222. name: DANDI Command Line Interface
  223. schemaKey: Software
  224. url: https://github.com/dandi/dandi-cli
  225. version: 0.62.4
  226. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  227. access:
  228. - schemaKey: AccessRequirements
  229. status: dandi:OpenAccess
  230. approach:
  231. - name: electrophysiological approach
  232. schemaKey: ApproachType
  233. blobDateModified: '2024-07-19T06:37:17.018179-07:00'
  234. contentSize: 243515559
  235. contentUrl:
  236. - https://api.dandiarchive.org/api/assets/32ddc282-420b-41f7-8d5d-576241d56d72/download/
  237. - https://dandiarchive.s3.amazonaws.com/blobs/b1d/3de/b1d3de3c-00fd-4cb0-ae57-b3ece2148478
  238. dateModified: '2024-07-19T06:47:09.878265-07:00'
  239. digest:
  240. dandi:dandi-etag: ec7887a7e2a403fae3d7b4dfabc9af06-4
  241. dandi:sha2-256: 0b27cad1c6e4f67199c72ca1f96be2f23f601c07612ebccb288eab4781f3e852
  242. encodingFormat: application/x-nwb
  243. id: dandiasset:32ddc282-420b-41f7-8d5d-576241d56d72
  244. identifier: 32ddc282-420b-41f7-8d5d-576241d56d72
  245. keywords:
  246. - single neuron, human, intracranial
  247. measurementTechnique:
  248. - name: multi electrode extracellular electrophysiology recording technique
  249. schemaKey: MeasurementTechniqueType
  250. - name: surgical technique
  251. schemaKey: MeasurementTechniqueType
  252. - name: spike sorting technique
  253. schemaKey: MeasurementTechniqueType
  254. path: sub-12/sub-12_ecephys+image.nwb
  255. relatedResource: []
  256. schemaKey: Asset
  257. schemaVersion: 0.6.8
  258. variableMeasured:
  259. - schemaKey: PropertyValue
  260. value: ElectrodeGroup
  261. - schemaKey: PropertyValue
  262. value: ElectricalSeries
  263. - schemaKey: PropertyValue
  264. value: Units
  265. wasAttributedTo:
  266. - age:
  267. schemaKey: PropertyValue
  268. unitText: ISO-8601 duration
  269. value: P63Y
  270. valueReference:
  271. schemaKey: PropertyValue
  272. value: dandi:BirthReference
  273. identifier: '12'
  274. schemaKey: Participant
  275. sex:
  276. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  277. name: Female
  278. schemaKey: SexType
  279. species:
  280. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  281. name: Homo sapiens - Human
  282. schemaKey: SpeciesType
  283. wasGeneratedBy:
  284. - description: 'CBPP: 1 CBPPID: 12'
  285. identifier: '1'
  286. name: '1'
  287. schemaKey: Session
  288. startDate: '2018-01-01T00:00:00-08:00'
  289. - description: Metadata generated by DANDI cli
  290. endDate: '2024-07-19T06:47:09.878247-07:00'
  291. id: urn:uuid:7e0d2d19-f768-42de-ab24-404689925faf
  292. name: Metadata generation
  293. schemaKey: Activity
  294. startDate: '2024-07-19T06:47:09.845889-07:00'
  295. wasAssociatedWith:
  296. - identifier: RRID:SCR_019009
  297. name: DANDI Command Line Interface
  298. schemaKey: Software
  299. url: https://github.com/dandi/dandi-cli
  300. version: 0.62.4
  301. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  302. access:
  303. - schemaKey: AccessRequirements
  304. status: dandi:OpenAccess
  305. approach:
  306. - name: electrophysiological approach
  307. schemaKey: ApproachType
  308. blobDateModified: '2024-07-19T06:37:34.025861-07:00'
  309. contentSize: 292801226
  310. contentUrl:
  311. - https://api.dandiarchive.org/api/assets/ccbbeaf6-c58a-4847-a7b2-df592407d340/download/
  312. - https://dandiarchive.s3.amazonaws.com/blobs/7da/c72/7dac729d-58fc-4c56-a48d-5f2779688084
  313. dateModified: '2024-07-19T06:47:09.783588-07:00'
  314. digest:
  315. dandi:dandi-etag: 7d6547a597ed34059a17c3dd8d830f7c-5
  316. dandi:sha2-256: ba6e08280e3715af40f5ea1843fc1e44c27949a1eaa162cf2ae7e31b8e532d79
  317. encodingFormat: application/x-nwb
  318. id: dandiasset:ccbbeaf6-c58a-4847-a7b2-df592407d340
  319. identifier: ccbbeaf6-c58a-4847-a7b2-df592407d340
  320. keywords:
  321. - single neuron, human, intracranial
  322. measurementTechnique:
  323. - name: multi electrode extracellular electrophysiology recording technique
  324. schemaKey: MeasurementTechniqueType
  325. - name: surgical technique
  326. schemaKey: MeasurementTechniqueType
  327. - name: spike sorting technique
  328. schemaKey: MeasurementTechniqueType
  329. path: sub-13/sub-13_ecephys+image.nwb
  330. relatedResource: []
  331. schemaKey: Asset
  332. schemaVersion: 0.6.8
  333. variableMeasured:
  334. - schemaKey: PropertyValue
  335. value: ElectrodeGroup
  336. - schemaKey: PropertyValue
  337. value: ElectricalSeries
  338. - schemaKey: PropertyValue
  339. value: Units
  340. wasAttributedTo:
  341. - age:
  342. schemaKey: PropertyValue
  343. unitText: ISO-8601 duration
  344. value: P55Y
  345. valueReference:
  346. schemaKey: PropertyValue
  347. value: dandi:BirthReference
  348. identifier: '13'
  349. schemaKey: Participant
  350. sex:
  351. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  352. name: Female
  353. schemaKey: SexType
  354. species:
  355. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  356. name: Homo sapiens - Human
  357. schemaKey: SpeciesType
  358. wasGeneratedBy:
  359. - description: 'CBPP: 1 CBPPID: 13'
  360. identifier: '1'
  361. name: '1'
  362. schemaKey: Session
  363. startDate: '2018-01-01T00:00:00-08:00'
  364. - description: Metadata generated by DANDI cli
  365. endDate: '2024-07-19T06:47:09.783570-07:00'
  366. id: urn:uuid:fbd41c1d-eec0-4608-a889-5e4a46816fdd
  367. name: Metadata generation
  368. schemaKey: Activity
  369. startDate: '2024-07-19T06:47:09.782273-07:00'
  370. wasAssociatedWith:
  371. - identifier: RRID:SCR_019009
  372. name: DANDI Command Line Interface
  373. schemaKey: Software
  374. url: https://github.com/dandi/dandi-cli
  375. version: 0.62.4
  376. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  377. access:
  378. - schemaKey: AccessRequirements
  379. status: dandi:OpenAccess
  380. approach:
  381. - name: electrophysiological approach
  382. schemaKey: ApproachType
  383. blobDateModified: '2024-07-19T06:37:40.987712-07:00'
  384. contentSize: 101448084
  385. contentUrl:
  386. - https://api.dandiarchive.org/api/assets/d5e59b04-55ee-4702-9ecb-b33fcb91755d/download/
  387. - https://dandiarchive.s3.amazonaws.com/blobs/02c/815/02c81543-7e37-4d62-9e57-9bee750bede7
  388. dateModified: '2024-07-19T06:50:48.059809-07:00'
  389. digest:
  390. dandi:dandi-etag: b7f5d76770e2daad6b7e2e1db4f43bfd-2
  391. dandi:sha2-256: 3570611c71a5161a6b83f03dce8fa1dbcf0ae41180f797104de27e2ccdf0c472
  392. encodingFormat: application/x-nwb
  393. id: dandiasset:d5e59b04-55ee-4702-9ecb-b33fcb91755d
  394. identifier: d5e59b04-55ee-4702-9ecb-b33fcb91755d
  395. keywords:
  396. - single neuron, human, intracranial
  397. measurementTechnique:
  398. - name: multi electrode extracellular electrophysiology recording technique
  399. schemaKey: MeasurementTechniqueType
  400. - name: surgical technique
  401. schemaKey: MeasurementTechniqueType
  402. - name: spike sorting technique
  403. schemaKey: MeasurementTechniqueType
  404. path: sub-14/sub-14_ecephys+image.nwb
  405. relatedResource: []
  406. schemaKey: Asset
  407. schemaVersion: 0.6.8
  408. variableMeasured:
  409. - schemaKey: PropertyValue
  410. value: ElectrodeGroup
  411. - schemaKey: PropertyValue
  412. value: ElectricalSeries
  413. - schemaKey: PropertyValue
  414. value: Units
  415. wasAttributedTo:
  416. - age:
  417. schemaKey: PropertyValue
  418. unitText: ISO-8601 duration
  419. value: P25Y
  420. valueReference:
  421. schemaKey: PropertyValue
  422. value: dandi:BirthReference
  423. identifier: '14'
  424. schemaKey: Participant
  425. sex:
  426. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  427. name: Female
  428. schemaKey: SexType
  429. species:
  430. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  431. name: Homo sapiens - Human
  432. schemaKey: SpeciesType
  433. wasGeneratedBy:
  434. - description: 'CBPP: 1 CBPPID: 14'
  435. identifier: '1'
  436. name: '1'
  437. schemaKey: Session
  438. startDate: '2018-01-01T00:00:00-08:00'
  439. - description: Metadata generated by DANDI cli
  440. endDate: '2024-07-19T06:50:48.059793-07:00'
  441. id: urn:uuid:4d8ca0c1-6cd9-4417-9bc2-b7092c2ae660
  442. name: Metadata generation
  443. schemaKey: Activity
  444. startDate: '2024-07-19T06:50:48.058575-07:00'
  445. wasAssociatedWith:
  446. - identifier: RRID:SCR_019009
  447. name: DANDI Command Line Interface
  448. schemaKey: Software
  449. url: https://github.com/dandi/dandi-cli
  450. version: 0.62.4
  451. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  452. access:
  453. - schemaKey: AccessRequirements
  454. status: dandi:OpenAccess
  455. approach:
  456. - name: electrophysiological approach
  457. schemaKey: ApproachType
  458. blobDateModified: '2024-07-19T06:37:52.781364-07:00'
  459. contentSize: 174038356
  460. contentUrl:
  461. - https://api.dandiarchive.org/api/assets/2fcddcec-531a-423e-99f8-36dc719a0fe0/download/
  462. - https://dandiarchive.s3.amazonaws.com/blobs/d57/0c0/d570c0d2-8ea7-478a-9ef6-f82486eb6204
  463. dateModified: '2024-07-19T06:51:30.754150-07:00'
  464. digest:
  465. dandi:dandi-etag: 3659a3967cf6b17ac4fee22e95b4cdaa-3
  466. dandi:sha2-256: 329b7e5786fb23c627cb52ca9fb5c2b768c52edd0c17a657d5687ff1b1d64bae
  467. encodingFormat: application/x-nwb
  468. id: dandiasset:2fcddcec-531a-423e-99f8-36dc719a0fe0
  469. identifier: 2fcddcec-531a-423e-99f8-36dc719a0fe0
  470. keywords:
  471. - single neuron, human, intracranial
  472. measurementTechnique:
  473. - name: multi electrode extracellular electrophysiology recording technique
  474. schemaKey: MeasurementTechniqueType
  475. - name: surgical technique
  476. schemaKey: MeasurementTechniqueType
  477. - name: spike sorting technique
  478. schemaKey: MeasurementTechniqueType
  479. path: sub-15/sub-15_ecephys+image.nwb
  480. relatedResource: []
  481. schemaKey: Asset
  482. schemaVersion: 0.6.8
  483. variableMeasured:
  484. - schemaKey: PropertyValue
  485. value: ElectrodeGroup
  486. - schemaKey: PropertyValue
  487. value: ElectricalSeries
  488. - schemaKey: PropertyValue
  489. value: Units
  490. wasAttributedTo:
  491. - age:
  492. schemaKey: PropertyValue
  493. unitText: ISO-8601 duration
  494. value: P24Y
  495. valueReference:
  496. schemaKey: PropertyValue
  497. value: dandi:BirthReference
  498. identifier: '15'
  499. schemaKey: Participant
  500. sex:
  501. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  502. name: Male
  503. schemaKey: SexType
  504. species:
  505. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  506. name: Homo sapiens - Human
  507. schemaKey: SpeciesType
  508. wasGeneratedBy:
  509. - description: 'CBPP: 1 CBPPID: 15'
  510. identifier: '1'
  511. name: '1'
  512. schemaKey: Session
  513. startDate: '2018-01-01T00:00:00-08:00'
  514. - description: Metadata generated by DANDI cli
  515. endDate: '2024-07-19T06:51:30.754131-07:00'
  516. id: urn:uuid:f895e066-08b1-44f3-86f1-f468e031f966
  517. name: Metadata generation
  518. schemaKey: Activity
  519. startDate: '2024-07-19T06:51:30.752839-07:00'
  520. wasAssociatedWith:
  521. - identifier: RRID:SCR_019009
  522. name: DANDI Command Line Interface
  523. schemaKey: Software
  524. url: https://github.com/dandi/dandi-cli
  525. version: 0.62.4
  526. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  527. access:
  528. - schemaKey: AccessRequirements
  529. status: dandi:OpenAccess
  530. approach:
  531. - name: electrophysiological approach
  532. schemaKey: ApproachType
  533. blobDateModified: '2024-07-19T06:38:05.971776-07:00'
  534. contentSize: 111171971
  535. contentUrl:
  536. - https://api.dandiarchive.org/api/assets/0317008f-90aa-45c1-9582-e42ddd13ca4d/download/
  537. - https://dandiarchive.s3.amazonaws.com/blobs/8b9/1f5/8b91f567-ae58-47c9-b1b0-3900f7f114b7
  538. dateModified: '2024-07-19T06:51:56.648966-07:00'
  539. digest:
  540. dandi:dandi-etag: 6dbd43091b35282930130b43302c92b6-2
  541. dandi:sha2-256: f0639a949f6cb0c24d496522e67c9bd1f76ced0208be755b1a78576de1d357e5
  542. encodingFormat: application/x-nwb
  543. id: dandiasset:0317008f-90aa-45c1-9582-e42ddd13ca4d
  544. identifier: 0317008f-90aa-45c1-9582-e42ddd13ca4d
  545. keywords:
  546. - single neuron, human, intracranial
  547. measurementTechnique:
  548. - name: multi electrode extracellular electrophysiology recording technique
  549. schemaKey: MeasurementTechniqueType
  550. - name: surgical technique
  551. schemaKey: MeasurementTechniqueType
  552. - name: spike sorting technique
  553. schemaKey: MeasurementTechniqueType
  554. path: sub-17/sub-17_ecephys+image.nwb
  555. relatedResource: []
  556. schemaKey: Asset
  557. schemaVersion: 0.6.8
  558. variableMeasured:
  559. - schemaKey: PropertyValue
  560. value: ElectrodeGroup
  561. - schemaKey: PropertyValue
  562. value: ElectricalSeries
  563. - schemaKey: PropertyValue
  564. value: Units
  565. wasAttributedTo:
  566. - age:
  567. schemaKey: PropertyValue
  568. unitText: ISO-8601 duration
  569. value: P28Y
  570. valueReference:
  571. schemaKey: PropertyValue
  572. value: dandi:BirthReference
  573. identifier: '17'
  574. schemaKey: Participant
  575. sex:
  576. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  577. name: Male
  578. schemaKey: SexType
  579. species:
  580. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  581. name: Homo sapiens - Human
  582. schemaKey: SpeciesType
  583. wasGeneratedBy:
  584. - description: 'CBPP: 1 CBPPID: 17'
  585. identifier: '1'
  586. name: '1'
  587. schemaKey: Session
  588. startDate: '2018-01-01T00:00:00-08:00'
  589. - description: Metadata generated by DANDI cli
  590. endDate: '2024-07-19T06:51:56.648949-07:00'
  591. id: urn:uuid:24d33a05-a6a9-499f-8521-44f88604b4b2
  592. name: Metadata generation
  593. schemaKey: Activity
  594. startDate: '2024-07-19T06:51:56.647671-07:00'
  595. wasAssociatedWith:
  596. - identifier: RRID:SCR_019009
  597. name: DANDI Command Line Interface
  598. schemaKey: Software
  599. url: https://github.com/dandi/dandi-cli
  600. version: 0.62.4
  601. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  602. access:
  603. - schemaKey: AccessRequirements
  604. status: dandi:OpenAccess
  605. approach:
  606. - name: electrophysiological approach
  607. schemaKey: ApproachType
  608. blobDateModified: '2024-07-19T06:37:58.978686-07:00'
  609. contentSize: 96661811
  610. contentUrl:
  611. - https://api.dandiarchive.org/api/assets/c311c893-9e1f-49b3-aa04-6a8a5613ba3e/download/
  612. - https://dandiarchive.s3.amazonaws.com/blobs/a25/b03/a25b03d0-2796-4e2a-ad21-b2a1da352615
  613. dateModified: '2024-07-19T06:51:38.109331-07:00'
  614. digest:
  615. dandi:dandi-etag: f42ca0fd26329a65435d1a36f9b24d0e-2
  616. dandi:sha2-256: df4760cc08d8c4629dd97c5e35e79c84414166e690e669a51fc9b92adc051dc1
  617. encodingFormat: application/x-nwb
  618. id: dandiasset:c311c893-9e1f-49b3-aa04-6a8a5613ba3e
  619. identifier: c311c893-9e1f-49b3-aa04-6a8a5613ba3e
  620. keywords:
  621. - single neuron, human, intracranial
  622. measurementTechnique:
  623. - name: multi electrode extracellular electrophysiology recording technique
  624. schemaKey: MeasurementTechniqueType
  625. - name: surgical technique
  626. schemaKey: MeasurementTechniqueType
  627. - name: spike sorting technique
  628. schemaKey: MeasurementTechniqueType
  629. path: sub-16/sub-16_ecephys+image.nwb
  630. relatedResource: []
  631. schemaKey: Asset
  632. schemaVersion: 0.6.8
  633. variableMeasured:
  634. - schemaKey: PropertyValue
  635. value: ElectrodeGroup
  636. - schemaKey: PropertyValue
  637. value: ElectricalSeries
  638. - schemaKey: PropertyValue
  639. value: Units
  640. wasAttributedTo:
  641. - age:
  642. schemaKey: PropertyValue
  643. unitText: ISO-8601 duration
  644. value: P25Y
  645. valueReference:
  646. schemaKey: PropertyValue
  647. value: dandi:BirthReference
  648. identifier: '16'
  649. schemaKey: Participant
  650. sex:
  651. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  652. name: Male
  653. schemaKey: SexType
  654. species:
  655. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  656. name: Homo sapiens - Human
  657. schemaKey: SpeciesType
  658. wasGeneratedBy:
  659. - description: 'CBPP: 1 CBPPID: 16'
  660. identifier: '1'
  661. name: '1'
  662. schemaKey: Session
  663. startDate: '2018-01-01T00:00:00-08:00'
  664. - description: Metadata generated by DANDI cli
  665. endDate: '2024-07-19T06:51:38.109308-07:00'
  666. id: urn:uuid:dc45f4cc-dbde-4840-b313-cc8df724c452
  667. name: Metadata generation
  668. schemaKey: Activity
  669. startDate: '2024-07-19T06:51:38.106564-07:00'
  670. wasAssociatedWith:
  671. - identifier: RRID:SCR_019009
  672. name: DANDI Command Line Interface
  673. schemaKey: Software
  674. url: https://github.com/dandi/dandi-cli
  675. version: 0.62.4
  676. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  677. access:
  678. - schemaKey: AccessRequirements
  679. status: dandi:OpenAccess
  680. approach:
  681. - name: electrophysiological approach
  682. schemaKey: ApproachType
  683. blobDateModified: '2024-07-19T06:38:18.055748-07:00'
  684. contentSize: 28145352
  685. contentUrl:
  686. - https://api.dandiarchive.org/api/assets/2c10b783-006f-47e6-8d84-5239ac642a6e/download/
  687. - https://dandiarchive.s3.amazonaws.com/blobs/80f/3a7/80f3a7a0-c1e0-4679-b7be-7a1518fafa30
  688. dateModified: '2024-07-19T06:54:31.573569-07:00'
  689. digest:
  690. dandi:dandi-etag: ebd01240aa39528598ead94ca80ea365-1
  691. dandi:sha2-256: a1f79b396bea4c5770c34b1bb5434dafcf4a2a3d70e737b7203bebb27a2b1d6d
  692. encodingFormat: application/x-nwb
  693. id: dandiasset:2c10b783-006f-47e6-8d84-5239ac642a6e
  694. identifier: 2c10b783-006f-47e6-8d84-5239ac642a6e
  695. keywords:
  696. - single neuron, human, intracranial
  697. measurementTechnique:
  698. - name: multi electrode extracellular electrophysiology recording technique
  699. schemaKey: MeasurementTechniqueType
  700. - name: surgical technique
  701. schemaKey: MeasurementTechniqueType
  702. - name: spike sorting technique
  703. schemaKey: MeasurementTechniqueType
  704. path: sub-19/sub-19_ecephys+image.nwb
  705. relatedResource: []
  706. schemaKey: Asset
  707. schemaVersion: 0.6.8
  708. variableMeasured:
  709. - schemaKey: PropertyValue
  710. value: ElectrodeGroup
  711. - schemaKey: PropertyValue
  712. value: ElectricalSeries
  713. - schemaKey: PropertyValue
  714. value: Units
  715. wasAttributedTo:
  716. - age:
  717. schemaKey: PropertyValue
  718. unitText: ISO-8601 duration
  719. value: P46Y
  720. valueReference:
  721. schemaKey: PropertyValue
  722. value: dandi:BirthReference
  723. identifier: '19'
  724. schemaKey: Participant
  725. sex:
  726. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  727. name: Female
  728. schemaKey: SexType
  729. species:
  730. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  731. name: Homo sapiens - Human
  732. schemaKey: SpeciesType
  733. wasGeneratedBy:
  734. - description: 'CBPP: 1 CBPPID: 19'
  735. identifier: '1'
  736. name: '1'
  737. schemaKey: Session
  738. startDate: '2018-01-01T00:00:00-08:00'
  739. - description: Metadata generated by DANDI cli
  740. endDate: '2024-07-19T06:54:31.573549-07:00'
  741. id: urn:uuid:0a650a73-4141-419e-b995-cf00bdea7d81
  742. name: Metadata generation
  743. schemaKey: Activity
  744. startDate: '2024-07-19T06:54:31.572186-07:00'
  745. wasAssociatedWith:
  746. - identifier: RRID:SCR_019009
  747. name: DANDI Command Line Interface
  748. schemaKey: Software
  749. url: https://github.com/dandi/dandi-cli
  750. version: 0.62.4
  751. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  752. access:
  753. - schemaKey: AccessRequirements
  754. status: dandi:OpenAccess
  755. approach:
  756. - name: electrophysiological approach
  757. schemaKey: ApproachType
  758. blobDateModified: '2024-07-19T06:38:13.899759-07:00'
  759. contentSize: 140508330
  760. contentUrl:
  761. - https://api.dandiarchive.org/api/assets/1681af72-8f59-403a-8930-c92a151393d7/download/
  762. - https://dandiarchive.s3.amazonaws.com/blobs/b78/a0e/b78a0e9d-93af-43c3-adde-3ff7f536206a
  763. dateModified: '2024-07-19T06:52:08.703445-07:00'
  764. digest:
  765. dandi:dandi-etag: 72a70ef9b52de7602a1f385e727a0adc-3
  766. dandi:sha2-256: 2fb94b6d86cbf389e9fefc0bfcf57e11a34bfa6c0207bd811856582707031e58
  767. encodingFormat: application/x-nwb
  768. id: dandiasset:1681af72-8f59-403a-8930-c92a151393d7
  769. identifier: 1681af72-8f59-403a-8930-c92a151393d7
  770. keywords:
  771. - single neuron, human, intracranial
  772. measurementTechnique:
  773. - name: multi electrode extracellular electrophysiology recording technique
  774. schemaKey: MeasurementTechniqueType
  775. - name: surgical technique
  776. schemaKey: MeasurementTechniqueType
  777. - name: spike sorting technique
  778. schemaKey: MeasurementTechniqueType
  779. path: sub-18/sub-18_ecephys+image.nwb
  780. relatedResource: []
  781. schemaKey: Asset
  782. schemaVersion: 0.6.8
  783. variableMeasured:
  784. - schemaKey: PropertyValue
  785. value: ElectrodeGroup
  786. - schemaKey: PropertyValue
  787. value: ElectricalSeries
  788. - schemaKey: PropertyValue
  789. value: Units
  790. wasAttributedTo:
  791. - age:
  792. schemaKey: PropertyValue
  793. unitText: ISO-8601 duration
  794. value: P25Y
  795. valueReference:
  796. schemaKey: PropertyValue
  797. value: dandi:BirthReference
  798. identifier: '18'
  799. schemaKey: Participant
  800. sex:
  801. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  802. name: Female
  803. schemaKey: SexType
  804. species:
  805. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  806. name: Homo sapiens - Human
  807. schemaKey: SpeciesType
  808. wasGeneratedBy:
  809. - description: 'CBPP: 1 CBPPID: 18'
  810. identifier: '1'
  811. name: '1'
  812. schemaKey: Session
  813. startDate: '2018-01-01T00:00:00-08:00'
  814. - description: Metadata generated by DANDI cli
  815. endDate: '2024-07-19T06:52:08.703427-07:00'
  816. id: urn:uuid:0f12ce77-9f5a-48c1-991e-314640c2ac02
  817. name: Metadata generation
  818. schemaKey: Activity
  819. startDate: '2024-07-19T06:52:08.702043-07:00'
  820. wasAssociatedWith:
  821. - identifier: RRID:SCR_019009
  822. name: DANDI Command Line Interface
  823. schemaKey: Software
  824. url: https://github.com/dandi/dandi-cli
  825. version: 0.62.4
  826. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  827. access:
  828. - schemaKey: AccessRequirements
  829. status: dandi:OpenAccess
  830. approach:
  831. - name: electrophysiological approach
  832. schemaKey: ApproachType
  833. blobDateModified: '2024-07-19T06:38:31.071758-07:00'
  834. contentSize: 243515559
  835. contentUrl:
  836. - https://api.dandiarchive.org/api/assets/0f42be53-3cef-4011-bb34-0c96b59e2def/download/
  837. - https://dandiarchive.s3.amazonaws.com/blobs/520/850/520850e5-d75e-4185-80cb-099840bef2a6
  838. dateModified: '2024-07-19T06:54:47.320881-07:00'
  839. digest:
  840. dandi:dandi-etag: 44bf7fbb4de666d84f08aadf8e43d618-4
  841. dandi:sha2-256: c627043827f3baaad57d6f95e9c5469bbe760b366783c38c94a5c1e71d7d1f40
  842. encodingFormat: application/x-nwb
  843. id: dandiasset:0f42be53-3cef-4011-bb34-0c96b59e2def
  844. identifier: 0f42be53-3cef-4011-bb34-0c96b59e2def
  845. keywords:
  846. - single neuron, human, intracranial
  847. measurementTechnique:
  848. - name: multi electrode extracellular electrophysiology recording technique
  849. schemaKey: MeasurementTechniqueType
  850. - name: surgical technique
  851. schemaKey: MeasurementTechniqueType
  852. - name: spike sorting technique
  853. schemaKey: MeasurementTechniqueType
  854. path: sub-20/sub-20_ecephys+image.nwb
  855. relatedResource: []
  856. schemaKey: Asset
  857. schemaVersion: 0.6.8
  858. variableMeasured:
  859. - schemaKey: PropertyValue
  860. value: ElectrodeGroup
  861. - schemaKey: PropertyValue
  862. value: ElectricalSeries
  863. - schemaKey: PropertyValue
  864. value: Units
  865. wasAttributedTo:
  866. - age:
  867. schemaKey: PropertyValue
  868. unitText: ISO-8601 duration
  869. value: P30Y
  870. valueReference:
  871. schemaKey: PropertyValue
  872. value: dandi:BirthReference
  873. identifier: '20'
  874. schemaKey: Participant
  875. sex:
  876. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  877. name: Female
  878. schemaKey: SexType
  879. species:
  880. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  881. name: Homo sapiens - Human
  882. schemaKey: SpeciesType
  883. wasGeneratedBy:
  884. - description: 'CBPP: 1 CBPPID: 20'
  885. identifier: '1'
  886. name: '1'
  887. schemaKey: Session
  888. startDate: '2018-01-01T00:00:00-08:00'
  889. - description: Metadata generated by DANDI cli
  890. endDate: '2024-07-19T06:54:47.320858-07:00'
  891. id: urn:uuid:70c9a388-e472-4f96-bb1d-7015d64fbaa2
  892. name: Metadata generation
  893. schemaKey: Activity
  894. startDate: '2024-07-19T06:54:47.318947-07:00'
  895. wasAssociatedWith:
  896. - identifier: RRID:SCR_019009
  897. name: DANDI Command Line Interface
  898. schemaKey: Software
  899. url: https://github.com/dandi/dandi-cli
  900. version: 0.62.4
  901. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  902. access:
  903. - schemaKey: AccessRequirements
  904. status: dandi:OpenAccess
  905. approach:
  906. - name: electrophysiological approach
  907. schemaKey: ApproachType
  908. blobDateModified: '2024-07-19T06:38:57.504037-07:00'
  909. contentSize: 140982963
  910. contentUrl:
  911. - https://api.dandiarchive.org/api/assets/388da111-38b1-40d5-a28b-cc4fbcc9b62d/download/
  912. - https://dandiarchive.s3.amazonaws.com/blobs/bc3/8f9/bc38f9f9-a944-4e9a-b8fd-dc7346013bff
  913. dateModified: '2024-07-19T06:55:10.592865-07:00'
  914. digest:
  915. dandi:dandi-etag: 67b0f4b8c8d35dab76c867479fb65f88-3
  916. dandi:sha2-256: e0d0d0878dbf78d5b9e8407c77fc8e7dc7d0b692b0cf672f40423cd8b6a6d72b
  917. encodingFormat: application/x-nwb
  918. id: dandiasset:388da111-38b1-40d5-a28b-cc4fbcc9b62d
  919. identifier: 388da111-38b1-40d5-a28b-cc4fbcc9b62d
  920. keywords:
  921. - single neuron, human, intracranial
  922. measurementTechnique:
  923. - name: multi electrode extracellular electrophysiology recording technique
  924. schemaKey: MeasurementTechniqueType
  925. - name: surgical technique
  926. schemaKey: MeasurementTechniqueType
  927. - name: spike sorting technique
  928. schemaKey: MeasurementTechniqueType
  929. path: sub-22/sub-22_ecephys+image.nwb
  930. relatedResource: []
  931. schemaKey: Asset
  932. schemaVersion: 0.6.8
  933. variableMeasured:
  934. - schemaKey: PropertyValue
  935. value: ElectrodeGroup
  936. - schemaKey: PropertyValue
  937. value: ElectricalSeries
  938. - schemaKey: PropertyValue
  939. value: Units
  940. wasAttributedTo:
  941. - age:
  942. schemaKey: PropertyValue
  943. unitText: ISO-8601 duration
  944. value: P24Y
  945. valueReference:
  946. schemaKey: PropertyValue
  947. value: dandi:BirthReference
  948. identifier: '22'
  949. schemaKey: Participant
  950. sex:
  951. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  952. name: Female
  953. schemaKey: SexType
  954. species:
  955. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  956. name: Homo sapiens - Human
  957. schemaKey: SpeciesType
  958. wasGeneratedBy:
  959. - description: 'CBPP: 1 CBPPID: 22'
  960. identifier: '1'
  961. name: '1'
  962. schemaKey: Session
  963. startDate: '2018-01-01T00:00:00-08:00'
  964. - description: Metadata generated by DANDI cli
  965. endDate: '2024-07-19T06:55:10.592844-07:00'
  966. id: urn:uuid:2814bc65-d8bd-49e6-beea-5b99c0fecec6
  967. name: Metadata generation
  968. schemaKey: Activity
  969. startDate: '2024-07-19T06:55:10.591544-07:00'
  970. wasAssociatedWith:
  971. - identifier: RRID:SCR_019009
  972. name: DANDI Command Line Interface
  973. schemaKey: Software
  974. url: https://github.com/dandi/dandi-cli
  975. version: 0.62.4
  976. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  977. access:
  978. - schemaKey: AccessRequirements
  979. status: dandi:OpenAccess
  980. approach:
  981. - name: electrophysiological approach
  982. schemaKey: ApproachType
  983. blobDateModified: '2024-07-19T06:38:48.682902-07:00'
  984. contentSize: 292801226
  985. contentUrl:
  986. - https://api.dandiarchive.org/api/assets/bdb8eef9-abd4-49b6-b5c6-799f2e3f9115/download/
  987. - https://dandiarchive.s3.amazonaws.com/blobs/84f/563/84f5634f-2094-4e9a-880e-1deb3b7e6df8
  988. dateModified: '2024-07-19T06:55:01.290490-07:00'
  989. digest:
  990. dandi:dandi-etag: 36713f5542bea671c020b076498f774a-5
  991. dandi:sha2-256: f96723d15681cc84be58634c063fca62ab04a496d2c00012b3d58f3b0b553fc7
  992. encodingFormat: application/x-nwb
  993. id: dandiasset:bdb8eef9-abd4-49b6-b5c6-799f2e3f9115
  994. identifier: bdb8eef9-abd4-49b6-b5c6-799f2e3f9115
  995. keywords:
  996. - single neuron, human, intracranial
  997. measurementTechnique:
  998. - name: multi electrode extracellular electrophysiology recording technique
  999. schemaKey: MeasurementTechniqueType
  1000. - name: surgical technique
  1001. schemaKey: MeasurementTechniqueType
  1002. - name: spike sorting technique
  1003. schemaKey: MeasurementTechniqueType
  1004. path: sub-21/sub-21_ecephys+image.nwb
  1005. relatedResource: []
  1006. schemaKey: Asset
  1007. schemaVersion: 0.6.8
  1008. variableMeasured:
  1009. - schemaKey: PropertyValue
  1010. value: ElectrodeGroup
  1011. - schemaKey: PropertyValue
  1012. value: ElectricalSeries
  1013. - schemaKey: PropertyValue
  1014. value: Units
  1015. wasAttributedTo:
  1016. - age:
  1017. schemaKey: PropertyValue
  1018. unitText: ISO-8601 duration
  1019. value: P40Y
  1020. valueReference:
  1021. schemaKey: PropertyValue
  1022. value: dandi:BirthReference
  1023. identifier: '21'
  1024. schemaKey: Participant
  1025. sex:
  1026. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1027. name: Male
  1028. schemaKey: SexType
  1029. species:
  1030. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1031. name: Homo sapiens - Human
  1032. schemaKey: SpeciesType
  1033. wasGeneratedBy:
  1034. - description: 'CBPP: 1 CBPPID: 21'
  1035. identifier: '1'
  1036. name: '1'
  1037. schemaKey: Session
  1038. startDate: '2018-01-01T00:00:00-08:00'
  1039. - description: Metadata generated by DANDI cli
  1040. endDate: '2024-07-19T06:55:01.290470-07:00'
  1041. id: urn:uuid:09c40c19-8c6c-4f5e-bbcb-80c9ca95e8cb
  1042. name: Metadata generation
  1043. schemaKey: Activity
  1044. startDate: '2024-07-19T06:55:01.289168-07:00'
  1045. wasAssociatedWith:
  1046. - identifier: RRID:SCR_019009
  1047. name: DANDI Command Line Interface
  1048. schemaKey: Software
  1049. url: https://github.com/dandi/dandi-cli
  1050. version: 0.62.4
  1051. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  1052. access:
  1053. - schemaKey: AccessRequirements
  1054. status: dandi:OpenAccess
  1055. approach:
  1056. - name: electrophysiological approach
  1057. schemaKey: ApproachType
  1058. blobDateModified: '2024-07-19T06:35:32.740838-07:00'
  1059. contentSize: 203719491
  1060. contentUrl:
  1061. - https://api.dandiarchive.org/api/assets/faaaf512-42b9-4e6e-8cbc-882651667674/download/
  1062. - https://dandiarchive.s3.amazonaws.com/blobs/050/0f1/0500f16b-f231-4bcf-99dc-f4cf5c5f5a86
  1063. dateModified: '2024-07-19T06:54:44.508317-07:00'
  1064. digest:
  1065. dandi:dandi-etag: 32de38c33fa5de8881209c180c1ee2ed-4
  1066. dandi:sha2-256: 155757b135044f78e4275b53411b3a902ba31d24d422357b68ac9dc8349b84a2
  1067. encodingFormat: application/x-nwb
  1068. id: dandiasset:faaaf512-42b9-4e6e-8cbc-882651667674
  1069. identifier: faaaf512-42b9-4e6e-8cbc-882651667674
  1070. keywords:
  1071. - single neuron, human, intracranial
  1072. measurementTechnique:
  1073. - name: multi electrode extracellular electrophysiology recording technique
  1074. schemaKey: MeasurementTechniqueType
  1075. - name: surgical technique
  1076. schemaKey: MeasurementTechniqueType
  1077. - name: spike sorting technique
  1078. schemaKey: MeasurementTechniqueType
  1079. path: sub-2/sub-2_ecephys+image.nwb
  1080. relatedResource: []
  1081. schemaKey: Asset
  1082. schemaVersion: 0.6.8
  1083. variableMeasured:
  1084. - schemaKey: PropertyValue
  1085. value: ElectrodeGroup
  1086. - schemaKey: PropertyValue
  1087. value: ElectricalSeries
  1088. - schemaKey: PropertyValue
  1089. value: Units
  1090. wasAttributedTo:
  1091. - age:
  1092. schemaKey: PropertyValue
  1093. unitText: ISO-8601 duration
  1094. value: P52Y
  1095. valueReference:
  1096. schemaKey: PropertyValue
  1097. value: dandi:BirthReference
  1098. identifier: '2'
  1099. schemaKey: Participant
  1100. sex:
  1101. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1102. name: Female
  1103. schemaKey: SexType
  1104. species:
  1105. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1106. name: Homo sapiens - Human
  1107. schemaKey: SpeciesType
  1108. wasGeneratedBy:
  1109. - description: 'CBPP: 1 CBPPID: 2'
  1110. identifier: '1'
  1111. name: '1'
  1112. schemaKey: Session
  1113. startDate: '2018-01-01T00:00:00-08:00'
  1114. - description: Metadata generated by DANDI cli
  1115. endDate: '2024-07-19T06:54:44.508295-07:00'
  1116. id: urn:uuid:fcc0e8ea-63ab-48d5-adfd-2535a06c3836
  1117. name: Metadata generation
  1118. schemaKey: Activity
  1119. startDate: '2024-07-19T06:54:44.506794-07:00'
  1120. wasAssociatedWith:
  1121. - identifier: RRID:SCR_019009
  1122. name: DANDI Command Line Interface
  1123. schemaKey: Software
  1124. url: https://github.com/dandi/dandi-cli
  1125. version: 0.62.4
  1126. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  1127. access:
  1128. - schemaKey: AccessRequirements
  1129. status: dandi:OpenAccess
  1130. approach:
  1131. - name: electrophysiological approach
  1132. schemaKey: ApproachType
  1133. blobDateModified: '2024-07-19T06:36:15.493367-07:00'
  1134. contentSize: 263660800
  1135. contentUrl:
  1136. - https://api.dandiarchive.org/api/assets/afb1390b-5e40-4460-8380-bdee1d8efedc/download/
  1137. - https://dandiarchive.s3.amazonaws.com/blobs/1bb/084/1bb084ac-4b83-4ff3-aea4-20dcc006d0ea
  1138. dateModified: '2024-07-19T07:00:11.927702-07:00'
  1139. digest:
  1140. dandi:dandi-etag: 4e3d8e2b77d3c080789b9fa1fa7ecf60-4
  1141. dandi:sha2-256: 3db17d8e9a831b4895eb4533c92b257e8794080220261c07cdd1300f9408f09b
  1142. encodingFormat: application/x-nwb
  1143. id: dandiasset:afb1390b-5e40-4460-8380-bdee1d8efedc
  1144. identifier: afb1390b-5e40-4460-8380-bdee1d8efedc
  1145. keywords:
  1146. - single neuron, human, intracranial
  1147. measurementTechnique:
  1148. - name: multi electrode extracellular electrophysiology recording technique
  1149. schemaKey: MeasurementTechniqueType
  1150. - name: surgical technique
  1151. schemaKey: MeasurementTechniqueType
  1152. - name: spike sorting technique
  1153. schemaKey: MeasurementTechniqueType
  1154. path: sub-5/sub-5_ecephys+image.nwb
  1155. relatedResource: []
  1156. schemaKey: Asset
  1157. schemaVersion: 0.6.8
  1158. variableMeasured:
  1159. - schemaKey: PropertyValue
  1160. value: ElectrodeGroup
  1161. - schemaKey: PropertyValue
  1162. value: ElectricalSeries
  1163. - schemaKey: PropertyValue
  1164. value: Units
  1165. wasAttributedTo:
  1166. - age:
  1167. schemaKey: PropertyValue
  1168. unitText: ISO-8601 duration
  1169. value: P28Y
  1170. valueReference:
  1171. schemaKey: PropertyValue
  1172. value: dandi:BirthReference
  1173. identifier: '5'
  1174. schemaKey: Participant
  1175. sex:
  1176. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1177. name: Male
  1178. schemaKey: SexType
  1179. species:
  1180. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1181. name: Homo sapiens - Human
  1182. schemaKey: SpeciesType
  1183. wasGeneratedBy:
  1184. - description: 'CBPP: 1 CBPPID: 5'
  1185. identifier: '1'
  1186. name: '1'
  1187. schemaKey: Session
  1188. startDate: '2018-01-01T00:00:00-08:00'
  1189. - description: Metadata generated by DANDI cli
  1190. endDate: '2024-07-19T07:00:11.927686-07:00'
  1191. id: urn:uuid:4557d58f-b552-4b69-9552-f282b1abd299
  1192. name: Metadata generation
  1193. schemaKey: Activity
  1194. startDate: '2024-07-19T07:00:11.926456-07:00'
  1195. wasAssociatedWith:
  1196. - identifier: RRID:SCR_019009
  1197. name: DANDI Command Line Interface
  1198. schemaKey: Software
  1199. url: https://github.com/dandi/dandi-cli
  1200. version: 0.62.4
  1201. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  1202. access:
  1203. - schemaKey: AccessRequirements
  1204. status: dandi:OpenAccess
  1205. approach:
  1206. - name: electrophysiological approach
  1207. schemaKey: ApproachType
  1208. blobDateModified: '2024-07-19T06:36:01.191565-07:00'
  1209. contentSize: 222794922
  1210. contentUrl:
  1211. - https://api.dandiarchive.org/api/assets/2ab9c83c-d446-4539-bf43-1a2e5c7b68af/download/
  1212. - https://dandiarchive.s3.amazonaws.com/blobs/051/8bf/0518bf54-c768-4ab0-bdde-2532b4f32cb3
  1213. dateModified: '2024-07-19T07:00:00.069240-07:00'
  1214. digest:
  1215. dandi:dandi-etag: e15f0e9786b4f8c96136effea3e66db7-4
  1216. dandi:sha2-256: 14a8c3cdcd9cc1b698cf13a083d020c8c6a71f8714aa912a8752e83a27bb1f7f
  1217. encodingFormat: application/x-nwb
  1218. id: dandiasset:2ab9c83c-d446-4539-bf43-1a2e5c7b68af
  1219. identifier: 2ab9c83c-d446-4539-bf43-1a2e5c7b68af
  1220. keywords:
  1221. - single neuron, human, intracranial
  1222. measurementTechnique:
  1223. - name: multi electrode extracellular electrophysiology recording technique
  1224. schemaKey: MeasurementTechniqueType
  1225. - name: surgical technique
  1226. schemaKey: MeasurementTechniqueType
  1227. - name: spike sorting technique
  1228. schemaKey: MeasurementTechniqueType
  1229. path: sub-4/sub-4_ecephys+image.nwb
  1230. relatedResource: []
  1231. schemaKey: Asset
  1232. schemaVersion: 0.6.8
  1233. variableMeasured:
  1234. - schemaKey: PropertyValue
  1235. value: ElectrodeGroup
  1236. - schemaKey: PropertyValue
  1237. value: ElectricalSeries
  1238. - schemaKey: PropertyValue
  1239. value: Units
  1240. wasAttributedTo:
  1241. - age:
  1242. schemaKey: PropertyValue
  1243. unitText: ISO-8601 duration
  1244. value: P49Y
  1245. valueReference:
  1246. schemaKey: PropertyValue
  1247. value: dandi:BirthReference
  1248. identifier: '4'
  1249. schemaKey: Participant
  1250. sex:
  1251. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1252. name: Male
  1253. schemaKey: SexType
  1254. species:
  1255. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1256. name: Homo sapiens - Human
  1257. schemaKey: SpeciesType
  1258. wasGeneratedBy:
  1259. - description: 'CBPP: 1 CBPPID: 4'
  1260. identifier: '1'
  1261. name: '1'
  1262. schemaKey: Session
  1263. startDate: '2018-01-01T00:00:00-08:00'
  1264. - description: Metadata generated by DANDI cli
  1265. endDate: '2024-07-19T07:00:00.069221-07:00'
  1266. id: urn:uuid:8cbfd118-7f78-4cfb-ac64-d8bf94e9a421
  1267. name: Metadata generation
  1268. schemaKey: Activity
  1269. startDate: '2024-07-19T07:00:00.067923-07:00'
  1270. wasAssociatedWith:
  1271. - identifier: RRID:SCR_019009
  1272. name: DANDI Command Line Interface
  1273. schemaKey: Software
  1274. url: https://github.com/dandi/dandi-cli
  1275. version: 0.62.4
  1276. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  1277. access:
  1278. - schemaKey: AccessRequirements
  1279. status: dandi:OpenAccess
  1280. approach:
  1281. - name: electrophysiological approach
  1282. schemaKey: ApproachType
  1283. blobDateModified: '2024-07-19T06:36:37.163983-07:00'
  1284. contentSize: 191986474
  1285. contentUrl:
  1286. - https://api.dandiarchive.org/api/assets/e94f17f8-596d-474b-9566-c213767ba17a/download/
  1287. - https://dandiarchive.s3.amazonaws.com/blobs/50d/51a/50d51a99-fd36-402e-8c67-b954f46d6aac
  1288. dateModified: '2024-07-19T07:00:57.146330-07:00'
  1289. digest:
  1290. dandi:dandi-etag: 1796cfc6fa0476aa468051d83666fc5d-3
  1291. dandi:sha2-256: b777c0766b437c4d4babbb8a9d866ac1615f3c4709405064a539034d283e73c7
  1292. encodingFormat: application/x-nwb
  1293. id: dandiasset:e94f17f8-596d-474b-9566-c213767ba17a
  1294. identifier: e94f17f8-596d-474b-9566-c213767ba17a
  1295. keywords:
  1296. - single neuron, human, intracranial
  1297. measurementTechnique:
  1298. - name: multi electrode extracellular electrophysiology recording technique
  1299. schemaKey: MeasurementTechniqueType
  1300. - name: surgical technique
  1301. schemaKey: MeasurementTechniqueType
  1302. - name: spike sorting technique
  1303. schemaKey: MeasurementTechniqueType
  1304. path: sub-8/sub-8_ecephys+image.nwb
  1305. relatedResource: []
  1306. schemaKey: Asset
  1307. schemaVersion: 0.6.8
  1308. variableMeasured:
  1309. - schemaKey: PropertyValue
  1310. value: ElectrodeGroup
  1311. - schemaKey: PropertyValue
  1312. value: ElectricalSeries
  1313. - schemaKey: PropertyValue
  1314. value: Units
  1315. wasAttributedTo:
  1316. - age:
  1317. schemaKey: PropertyValue
  1318. unitText: ISO-8601 duration
  1319. value: P36Y
  1320. valueReference:
  1321. schemaKey: PropertyValue
  1322. value: dandi:BirthReference
  1323. identifier: '8'
  1324. schemaKey: Participant
  1325. sex:
  1326. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1327. name: Male
  1328. schemaKey: SexType
  1329. species:
  1330. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1331. name: Homo sapiens - Human
  1332. schemaKey: SpeciesType
  1333. wasGeneratedBy:
  1334. - description: 'CBPP: 1 CBPPID: 8'
  1335. identifier: '1'
  1336. name: '1'
  1337. schemaKey: Session
  1338. startDate: '2018-01-01T00:00:00-08:00'
  1339. - description: Metadata generated by DANDI cli
  1340. endDate: '2024-07-19T07:00:57.146313-07:00'
  1341. id: urn:uuid:33228fff-7758-49da-8f8a-67565e8f45cb
  1342. name: Metadata generation
  1343. schemaKey: Activity
  1344. startDate: '2024-07-19T07:00:57.145036-07:00'
  1345. wasAssociatedWith:
  1346. - identifier: RRID:SCR_019009
  1347. name: DANDI Command Line Interface
  1348. schemaKey: Software
  1349. url: https://github.com/dandi/dandi-cli
  1350. version: 0.62.4
  1351. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  1352. access:
  1353. - schemaKey: AccessRequirements
  1354. status: dandi:OpenAccess
  1355. approach:
  1356. - name: electrophysiological approach
  1357. schemaKey: ApproachType
  1358. blobDateModified: '2024-07-19T06:35:48.175329-07:00'
  1359. contentSize: 242681988
  1360. contentUrl:
  1361. - https://api.dandiarchive.org/api/assets/597f8a03-0244-41c5-af0e-4f6856c09e19/download/
  1362. - https://dandiarchive.s3.amazonaws.com/blobs/893/0ec/8930ec9e-1809-4468-b1b9-af2a791e1473
  1363. dateModified: '2024-07-19T06:59:25.238739-07:00'
  1364. digest:
  1365. dandi:dandi-etag: eaa8232e439b71530e5017dc6894bce9-4
  1366. dandi:sha2-256: ffccd0b1adb4699dd1fd44e81f3625f3d33a425a7fc6a423f0d23f5c9f6586af
  1367. encodingFormat: application/x-nwb
  1368. id: dandiasset:597f8a03-0244-41c5-af0e-4f6856c09e19
  1369. identifier: 597f8a03-0244-41c5-af0e-4f6856c09e19
  1370. keywords:
  1371. - single neuron, human, intracranial
  1372. measurementTechnique:
  1373. - name: multi electrode extracellular electrophysiology recording technique
  1374. schemaKey: MeasurementTechniqueType
  1375. - name: surgical technique
  1376. schemaKey: MeasurementTechniqueType
  1377. - name: spike sorting technique
  1378. schemaKey: MeasurementTechniqueType
  1379. path: sub-3/sub-3_ecephys+image.nwb
  1380. relatedResource: []
  1381. schemaKey: Asset
  1382. schemaVersion: 0.6.8
  1383. variableMeasured:
  1384. - schemaKey: PropertyValue
  1385. value: ElectrodeGroup
  1386. - schemaKey: PropertyValue
  1387. value: ElectricalSeries
  1388. - schemaKey: PropertyValue
  1389. value: Units
  1390. wasAttributedTo:
  1391. - age:
  1392. schemaKey: PropertyValue
  1393. unitText: ISO-8601 duration
  1394. value: P25Y
  1395. valueReference:
  1396. schemaKey: PropertyValue
  1397. value: dandi:BirthReference
  1398. identifier: '3'
  1399. schemaKey: Participant
  1400. sex:
  1401. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1402. name: Female
  1403. schemaKey: SexType
  1404. species:
  1405. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1406. name: Homo sapiens - Human
  1407. schemaKey: SpeciesType
  1408. wasGeneratedBy:
  1409. - description: 'CBPP: 1 CBPPID: 3'
  1410. identifier: '1'
  1411. name: '1'
  1412. schemaKey: Session
  1413. startDate: '2018-01-01T00:00:00-08:00'
  1414. - description: Metadata generated by DANDI cli
  1415. endDate: '2024-07-19T06:59:25.238719-07:00'
  1416. id: urn:uuid:f3f90fce-dd07-424d-b943-4ad1cb06ee44
  1417. name: Metadata generation
  1418. schemaKey: Activity
  1419. startDate: '2024-07-19T06:59:25.237401-07:00'
  1420. wasAssociatedWith:
  1421. - identifier: RRID:SCR_019009
  1422. name: DANDI Command Line Interface
  1423. schemaKey: Software
  1424. url: https://github.com/dandi/dandi-cli
  1425. version: 0.62.4
  1426. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  1427. access:
  1428. - schemaKey: AccessRequirements
  1429. status: dandi:OpenAccess
  1430. approach:
  1431. - name: electrophysiological approach
  1432. schemaKey: ApproachType
  1433. blobDateModified: '2024-07-19T06:36:27.124111-07:00'
  1434. contentSize: 197321036
  1435. contentUrl:
  1436. - https://api.dandiarchive.org/api/assets/40a4818a-d8b9-4ce0-bc70-207eced95ba9/download/
  1437. - https://dandiarchive.s3.amazonaws.com/blobs/f9e/d74/f9ed7402-bd4f-460c-8a22-7f736336c263
  1438. dateModified: '2024-07-19T07:00:47.081451-07:00'
  1439. digest:
  1440. dandi:dandi-etag: 06b7853dfdee7c52c29130239aa11e59-3
  1441. dandi:sha2-256: 409e4d00f85642f70dc6a45cbe846772e4dbc73bed1c2bc2715ed129558d102d
  1442. encodingFormat: application/x-nwb
  1443. id: dandiasset:40a4818a-d8b9-4ce0-bc70-207eced95ba9
  1444. identifier: 40a4818a-d8b9-4ce0-bc70-207eced95ba9
  1445. keywords:
  1446. - single neuron, human, intracranial
  1447. measurementTechnique:
  1448. - name: multi electrode extracellular electrophysiology recording technique
  1449. schemaKey: MeasurementTechniqueType
  1450. - name: surgical technique
  1451. schemaKey: MeasurementTechniqueType
  1452. - name: spike sorting technique
  1453. schemaKey: MeasurementTechniqueType
  1454. path: sub-7/sub-7_ecephys+image.nwb
  1455. relatedResource: []
  1456. schemaKey: Asset
  1457. schemaVersion: 0.6.8
  1458. variableMeasured:
  1459. - schemaKey: PropertyValue
  1460. value: ElectrodeGroup
  1461. - schemaKey: PropertyValue
  1462. value: ElectricalSeries
  1463. - schemaKey: PropertyValue
  1464. value: Units
  1465. wasAttributedTo:
  1466. - age:
  1467. schemaKey: PropertyValue
  1468. unitText: ISO-8601 duration
  1469. value: P63Y
  1470. valueReference:
  1471. schemaKey: PropertyValue
  1472. value: dandi:BirthReference
  1473. identifier: '7'
  1474. schemaKey: Participant
  1475. sex:
  1476. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1477. name: Female
  1478. schemaKey: SexType
  1479. species:
  1480. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1481. name: Homo sapiens - Human
  1482. schemaKey: SpeciesType
  1483. wasGeneratedBy:
  1484. - description: 'CBPP: 1 CBPPID: 7'
  1485. identifier: '1'
  1486. name: '1'
  1487. schemaKey: Session
  1488. startDate: '2018-01-01T00:00:00-08:00'
  1489. - description: Metadata generated by DANDI cli
  1490. endDate: '2024-07-19T07:00:47.081431-07:00'
  1491. id: urn:uuid:b0fa31b6-94ea-48ab-b28d-5bcb77e4bcd3
  1492. name: Metadata generation
  1493. schemaKey: Activity
  1494. startDate: '2024-07-19T07:00:47.079540-07:00'
  1495. wasAssociatedWith:
  1496. - identifier: RRID:SCR_019009
  1497. name: DANDI Command Line Interface
  1498. schemaKey: Software
  1499. url: https://github.com/dandi/dandi-cli
  1500. version: 0.62.4
  1501. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.8/context.json
  1502. access:
  1503. - schemaKey: AccessRequirements
  1504. status: dandi:OpenAccess
  1505. approach:
  1506. - name: electrophysiological approach
  1507. schemaKey: ApproachType
  1508. blobDateModified: '2024-07-19T06:36:45.815268-07:00'
  1509. contentSize: 140982963
  1510. contentUrl:
  1511. - https://api.dandiarchive.org/api/assets/6a4d3d3c-d82f-4001-abb1-6a7204b5928f/download/
  1512. - https://dandiarchive.s3.amazonaws.com/blobs/702/bff/702bff77-5842-4b8f-8c7c-3b6d818e57e6
  1513. dateModified: '2024-07-19T07:06:05.467258-07:00'
  1514. digest:
  1515. dandi:dandi-etag: 9d94953510af7bb38011dd3137ca0572-3
  1516. dandi:sha2-256: 0f14b1e4ca7eda6fb8b6f85de170afeb9e26a66b771f0771c5ad774df3b3b74e
  1517. encodingFormat: application/x-nwb
  1518. id: dandiasset:6a4d3d3c-d82f-4001-abb1-6a7204b5928f
  1519. identifier: 6a4d3d3c-d82f-4001-abb1-6a7204b5928f
  1520. keywords:
  1521. - single neuron, human, intracranial
  1522. measurementTechnique:
  1523. - name: multi electrode extracellular electrophysiology recording technique
  1524. schemaKey: MeasurementTechniqueType
  1525. - name: surgical technique
  1526. schemaKey: MeasurementTechniqueType
  1527. - name: spike sorting technique
  1528. schemaKey: MeasurementTechniqueType
  1529. path: sub-9/sub-9_ecephys+image.nwb
  1530. relatedResource: []
  1531. schemaKey: Asset
  1532. schemaVersion: 0.6.8
  1533. variableMeasured:
  1534. - schemaKey: PropertyValue
  1535. value: ElectrodeGroup
  1536. - schemaKey: PropertyValue
  1537. value: ElectricalSeries
  1538. - schemaKey: PropertyValue
  1539. value: Units
  1540. wasAttributedTo:
  1541. - age:
  1542. schemaKey: PropertyValue
  1543. unitText: ISO-8601 duration
  1544. value: P25Y
  1545. valueReference:
  1546. schemaKey: PropertyValue
  1547. value: dandi:BirthReference
  1548. identifier: '9'
  1549. schemaKey: Participant
  1550. sex:
  1551. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1552. name: Female
  1553. schemaKey: SexType
  1554. species:
  1555. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1556. name: Homo sapiens - Human
  1557. schemaKey: SpeciesType
  1558. wasGeneratedBy:
  1559. - description: 'CBPP: 1 CBPPID: 9'
  1560. identifier: '1'
  1561. name: '1'
  1562. schemaKey: Session
  1563. startDate: '2018-01-01T00:00:00-08:00'
  1564. - description: Metadata generated by DANDI cli
  1565. endDate: '2024-07-19T07:06:05.467242-07:00'
  1566. id: urn:uuid:494d87e2-132a-4946-af34-8f4108cf572d
  1567. name: Metadata generation
  1568. schemaKey: Activity
  1569. startDate: '2024-07-19T07:06:05.465982-07:00'
  1570. wasAssociatedWith:
  1571. - identifier: RRID:SCR_019009
  1572. name: DANDI Command Line Interface
  1573. schemaKey: Software
  1574. url: https://github.com/dandi/dandi-cli
  1575. version: 0.62.4
Tip!

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

Comments

Loading...