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 50 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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: electrophysiological approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2022-09-17T23:48:35.310390-07:00'
  9. contentSize: 29799567
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/5e32b8af-e756-406f-a195-67889b611fe3/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/351/4cb/3514cbf4-37c3-4a71-be79-9edb70bbfed5
  13. dateModified: '2022-09-17T23:55:32.631466-07:00'
  14. digest:
  15. dandi:dandi-etag: 9448956a2a3ab8c7c77012d1589d97b1-1
  16. dandi:sha2-256: 7d86fa407d3148bf822720c3ff8985b1eb1359205cdefc5db12a225d9bc9691b
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:5e32b8af-e756-406f-a195-67889b611fe3
  19. identifier: 5e32b8af-e756-406f-a195-67889b611fe3
  20. measurementTechnique:
  21. - name: current clamp technique
  22. schemaKey: MeasurementTechniqueType
  23. path: sub-701201569/sub-701201569_ses-PLACEHOLDER_icephys.nwb
  24. schemaKey: Asset
  25. schemaVersion: 0.6.3
  26. variableMeasured:
  27. - schemaKey: PropertyValue
  28. value: CurrentClampStimulusSeries
  29. - schemaKey: PropertyValue
  30. value: CurrentClampSeries
  31. wasAttributedTo:
  32. - age:
  33. schemaKey: PropertyValue
  34. unitText: ISO-8601 duration
  35. value: P28.0Y
  36. valueReference:
  37. schemaKey: PropertyValue
  38. value: dandi:BirthReference
  39. identifier: '701201569'
  40. schemaKey: Participant
  41. sex:
  42. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  43. name: Male
  44. schemaKey: SexType
  45. species:
  46. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  47. name: Homo sapiens - Human
  48. schemaKey: SpeciesType
  49. wasGeneratedBy:
  50. - description: PLACEHOLDER
  51. identifier: PLACEHOLDER
  52. name: PLACEHOLDER
  53. schemaKey: Session
  54. startDate: '2018-05-09T19:00:26.784000+02:00'
  55. - description: Metadata generated by DANDI cli
  56. id: urn:uuid:2f67ddd9-8d63-47f3-bda3-004ddc526a0d
  57. name: Metadata generation
  58. schemaKey: Activity
  59. wasAssociatedWith:
  60. - identifier: RRID:SCR_019009
  61. name: DANDI Command Line Interface
  62. schemaKey: Software
  63. url: https://github.com/dandi/dandi-cli
  64. version: 0.41.0+5.g259ae0d
  65. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  66. access:
  67. - schemaKey: AccessRequirements
  68. status: dandi:OpenAccess
  69. approach:
  70. - name: electrophysiological approach
  71. schemaKey: ApproachType
  72. blobDateModified: '2022-09-17T23:49:43.270311-07:00'
  73. contentSize: 65662567
  74. contentUrl:
  75. - https://api.dandiarchive.org/api/assets/a68df04e-72dc-4baa-94e6-7a9489804855/download/
  76. - https://dandiarchive.s3.amazonaws.com/blobs/d7c/6ec/d7c6ece9-fcf4-44e2-a9b3-ee5390bbebbc
  77. dateModified: '2022-09-17T23:55:32.797181-07:00'
  78. digest:
  79. dandi:dandi-etag: 33343d56b50c10c288e35c0f29814d25-1
  80. dandi:sha2-256: 58c56721819a6713e5d878eeabb384750cc9299238051ed74d3670722d500f54
  81. encodingFormat: application/x-nwb
  82. id: dandiasset:a68df04e-72dc-4baa-94e6-7a9489804855
  83. identifier: a68df04e-72dc-4baa-94e6-7a9489804855
  84. measurementTechnique:
  85. - name: current clamp technique
  86. schemaKey: MeasurementTechniqueType
  87. - name: voltage clamp technique
  88. schemaKey: MeasurementTechniqueType
  89. path: sub-971847052/sub-971847052_ses-971847789_icephys.nwb
  90. schemaKey: Asset
  91. schemaVersion: 0.6.3
  92. variableMeasured:
  93. - schemaKey: PropertyValue
  94. value: VoltageClampStimulusSeries
  95. - schemaKey: PropertyValue
  96. value: CurrentClampStimulusSeries
  97. - schemaKey: PropertyValue
  98. value: VoltageClampSeries
  99. - schemaKey: PropertyValue
  100. value: CurrentClampSeries
  101. wasAttributedTo:
  102. - age:
  103. schemaKey: PropertyValue
  104. unitText: ISO-8601 duration
  105. value: P70.0Y
  106. valueReference:
  107. schemaKey: PropertyValue
  108. value: dandi:BirthReference
  109. identifier: '971847052'
  110. schemaKey: Participant
  111. sex:
  112. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  113. name: Female
  114. schemaKey: SexType
  115. species:
  116. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  117. name: Homo sapiens - Human
  118. schemaKey: SpeciesType
  119. wasGeneratedBy:
  120. - description: PLACEHOLDER
  121. identifier: '971847789'
  122. name: '971847789'
  123. schemaKey: Session
  124. startDate: '2019-10-16T08:56:19.187000+00:00'
  125. - description: Metadata generated by DANDI cli
  126. id: urn:uuid:359eb379-ff28-40e4-88b8-b819e4f8a5d8
  127. name: Metadata generation
  128. schemaKey: Activity
  129. wasAssociatedWith:
  130. - identifier: RRID:SCR_019009
  131. name: DANDI Command Line Interface
  132. schemaKey: Software
  133. url: https://github.com/dandi/dandi-cli
  134. version: 0.41.0+5.g259ae0d
  135. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  136. access:
  137. - schemaKey: AccessRequirements
  138. status: dandi:OpenAccess
  139. approach:
  140. - name: electrophysiological approach
  141. schemaKey: ApproachType
  142. blobDateModified: '2022-09-17T23:50:10.574458-07:00'
  143. contentSize: 58147512
  144. contentUrl:
  145. - https://api.dandiarchive.org/api/assets/48963cbe-0a89-40f2-aeb6-f3f5d07400d8/download/
  146. - https://dandiarchive.s3.amazonaws.com/blobs/b62/300/b62300c1-cca6-4691-9d16-cb420578d948
  147. dateModified: '2022-09-17T23:55:32.971211-07:00'
  148. digest:
  149. dandi:dandi-etag: 0493e97f2ff06ce044fc84f871e9b5f0-1
  150. dandi:sha2-256: cb411588ffd05aeb5347a31a4d278f74dae0d0a7897240461407e72060d6c386
  151. encodingFormat: application/x-nwb
  152. id: dandiasset:48963cbe-0a89-40f2-aeb6-f3f5d07400d8
  153. identifier: 48963cbe-0a89-40f2-aeb6-f3f5d07400d8
  154. measurementTechnique:
  155. - name: current clamp technique
  156. schemaKey: MeasurementTechniqueType
  157. - name: voltage clamp technique
  158. schemaKey: MeasurementTechniqueType
  159. path: sub-1089230952/sub-1089230952_ses-1089232011_icephys.nwb
  160. schemaKey: Asset
  161. schemaVersion: 0.6.3
  162. variableMeasured:
  163. - schemaKey: PropertyValue
  164. value: VoltageClampStimulusSeries
  165. - schemaKey: PropertyValue
  166. value: CurrentClampStimulusSeries
  167. - schemaKey: PropertyValue
  168. value: VoltageClampSeries
  169. - schemaKey: PropertyValue
  170. value: CurrentClampSeries
  171. wasAttributedTo:
  172. - age:
  173. schemaKey: PropertyValue
  174. unitText: ISO-8601 duration
  175. value: P21.0Y
  176. valueReference:
  177. schemaKey: PropertyValue
  178. value: dandi:BirthReference
  179. identifier: '1089230952'
  180. schemaKey: Participant
  181. sex:
  182. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  183. name: Female
  184. schemaKey: SexType
  185. species:
  186. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  187. name: Homo sapiens - Human
  188. schemaKey: SpeciesType
  189. wasGeneratedBy:
  190. - description: PLACEHOLDER
  191. identifier: '1089232011'
  192. name: '1089232011'
  193. schemaKey: Session
  194. startDate: '2020-10-21T18:54:57.065000+00:00'
  195. - description: Metadata generated by DANDI cli
  196. id: urn:uuid:5ba6b227-b954-416d-9b19-6385dd69d450
  197. name: Metadata generation
  198. schemaKey: Activity
  199. wasAssociatedWith:
  200. - identifier: RRID:SCR_019009
  201. name: DANDI Command Line Interface
  202. schemaKey: Software
  203. url: https://github.com/dandi/dandi-cli
  204. version: 0.41.0+5.g259ae0d
  205. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  206. access:
  207. - schemaKey: AccessRequirements
  208. status: dandi:OpenAccess
  209. approach:
  210. - name: electrophysiological approach
  211. schemaKey: ApproachType
  212. blobDateModified: '2022-09-17T23:48:44.049110-07:00'
  213. contentSize: 33835979
  214. contentUrl:
  215. - https://api.dandiarchive.org/api/assets/921d9b72-502f-439b-9304-c627325c93d3/download/
  216. - https://dandiarchive.s3.amazonaws.com/blobs/c49/1a4/c491a48d-288a-4c45-baaf-bdd613ff3ee6
  217. dateModified: '2022-09-17T23:55:32.968953-07:00'
  218. digest:
  219. dandi:dandi-etag: d490f77e497a172f153251c28d4e76d6-1
  220. dandi:sha2-256: 246dfa68ed2d8954cfaf011cc3551658b79a232fafee1902e3d9a6c0f8006baa
  221. encodingFormat: application/x-nwb
  222. id: dandiasset:921d9b72-502f-439b-9304-c627325c93d3
  223. identifier: 921d9b72-502f-439b-9304-c627325c93d3
  224. measurementTechnique:
  225. - name: current clamp technique
  226. schemaKey: MeasurementTechniqueType
  227. - name: voltage clamp technique
  228. schemaKey: MeasurementTechniqueType
  229. path: sub-791205802/sub-791205802_ses-PLACEHOLDER_obj-g7j7bb_icephys.nwb
  230. schemaKey: Asset
  231. schemaVersion: 0.6.3
  232. variableMeasured:
  233. - schemaKey: PropertyValue
  234. value: VoltageClampStimulusSeries
  235. - schemaKey: PropertyValue
  236. value: CurrentClampStimulusSeries
  237. - schemaKey: PropertyValue
  238. value: VoltageClampSeries
  239. - schemaKey: PropertyValue
  240. value: CurrentClampSeries
  241. wasAttributedTo:
  242. - age:
  243. schemaKey: PropertyValue
  244. unitText: ISO-8601 duration
  245. value: P55.0Y
  246. valueReference:
  247. schemaKey: PropertyValue
  248. value: dandi:BirthReference
  249. identifier: '791205802'
  250. schemaKey: Participant
  251. sex:
  252. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  253. name: Female
  254. schemaKey: SexType
  255. species:
  256. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  257. name: Homo sapiens - Human
  258. schemaKey: SpeciesType
  259. wasGeneratedBy:
  260. - description: PLACEHOLDER
  261. identifier: PLACEHOLDER
  262. name: PLACEHOLDER
  263. schemaKey: Session
  264. startDate: '2018-12-03T22:56:55.158000+01:00'
  265. - description: Metadata generated by DANDI cli
  266. id: urn:uuid:ed102703-9c82-497e-8270-e77a1f92bb6f
  267. name: Metadata generation
  268. schemaKey: Activity
  269. wasAssociatedWith:
  270. - identifier: RRID:SCR_019009
  271. name: DANDI Command Line Interface
  272. schemaKey: Software
  273. url: https://github.com/dandi/dandi-cli
  274. version: 0.41.0+5.g259ae0d
  275. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  276. access:
  277. - schemaKey: AccessRequirements
  278. status: dandi:OpenAccess
  279. approach:
  280. - name: electrophysiological approach
  281. schemaKey: ApproachType
  282. blobDateModified: '2022-09-17T23:48:38.172991-07:00'
  283. contentSize: 34512064
  284. contentUrl:
  285. - https://api.dandiarchive.org/api/assets/139f2ce0-ca26-4417-996e-515e1e1de0a3/download/
  286. - https://dandiarchive.s3.amazonaws.com/blobs/a76/e9e/a76e9e08-d27a-42b1-9b2e-dcda868ff0fc
  287. dateModified: '2022-09-17T23:56:11.053461-07:00'
  288. digest:
  289. dandi:dandi-etag: 6b8e99786e903c7c77b2cad563c70cc1-1
  290. dandi:sha2-256: ede0772de865fc1517c9aa9717870611e7f772762aaae8a06f55ebf5c9691245
  291. encodingFormat: application/x-nwb
  292. id: dandiasset:139f2ce0-ca26-4417-996e-515e1e1de0a3
  293. identifier: 139f2ce0-ca26-4417-996e-515e1e1de0a3
  294. measurementTechnique:
  295. - name: current clamp technique
  296. schemaKey: MeasurementTechniqueType
  297. - name: voltage clamp technique
  298. schemaKey: MeasurementTechniqueType
  299. path: sub-791205802/sub-791205802_ses-PLACEHOLDER_obj-10r9ed6_icephys.nwb
  300. schemaKey: Asset
  301. schemaVersion: 0.6.3
  302. variableMeasured:
  303. - schemaKey: PropertyValue
  304. value: VoltageClampStimulusSeries
  305. - schemaKey: PropertyValue
  306. value: CurrentClampStimulusSeries
  307. - schemaKey: PropertyValue
  308. value: VoltageClampSeries
  309. - schemaKey: PropertyValue
  310. value: CurrentClampSeries
  311. wasAttributedTo:
  312. - age:
  313. schemaKey: PropertyValue
  314. unitText: ISO-8601 duration
  315. value: P55.0Y
  316. valueReference:
  317. schemaKey: PropertyValue
  318. value: dandi:BirthReference
  319. identifier: '791205802'
  320. schemaKey: Participant
  321. sex:
  322. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  323. name: Female
  324. schemaKey: SexType
  325. species:
  326. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  327. name: Homo sapiens - Human
  328. schemaKey: SpeciesType
  329. wasGeneratedBy:
  330. - description: PLACEHOLDER
  331. identifier: PLACEHOLDER
  332. name: PLACEHOLDER
  333. schemaKey: Session
  334. startDate: '2018-12-03T18:04:20.485000+01:00'
  335. - description: Metadata generated by DANDI cli
  336. id: urn:uuid:e6e73cd0-8554-4d88-b799-561f04dd8f09
  337. name: Metadata generation
  338. schemaKey: Activity
  339. wasAssociatedWith:
  340. - identifier: RRID:SCR_019009
  341. name: DANDI Command Line Interface
  342. schemaKey: Software
  343. url: https://github.com/dandi/dandi-cli
  344. version: 0.41.0+5.g259ae0d
  345. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  346. access:
  347. - schemaKey: AccessRequirements
  348. status: dandi:OpenAccess
  349. approach:
  350. - name: electrophysiological approach
  351. schemaKey: ApproachType
  352. blobDateModified: '2022-09-17T23:48:41.182199-07:00'
  353. contentSize: 31954512
  354. contentUrl:
  355. - https://api.dandiarchive.org/api/assets/608ca70b-1b3e-4b09-9b18-a9e41330c456/download/
  356. - https://dandiarchive.s3.amazonaws.com/blobs/22b/31a/22b31a67-2d63-4ff7-87e6-e75b1a70f656
  357. dateModified: '2022-09-17T23:56:17.451585-07:00'
  358. digest:
  359. dandi:dandi-etag: 2ad450035af1aa404b65801d49adbd17-1
  360. dandi:sha2-256: 3818eee049e629e0b69bec9c8264b8d44926073ebbccbb7090af26ed0ab11065
  361. encodingFormat: application/x-nwb
  362. id: dandiasset:608ca70b-1b3e-4b09-9b18-a9e41330c456
  363. identifier: 608ca70b-1b3e-4b09-9b18-a9e41330c456
  364. measurementTechnique:
  365. - name: current clamp technique
  366. schemaKey: MeasurementTechniqueType
  367. - name: voltage clamp technique
  368. schemaKey: MeasurementTechniqueType
  369. path: sub-791205802/sub-791205802_ses-PLACEHOLDER_obj-xdlohj_icephys.nwb
  370. schemaKey: Asset
  371. schemaVersion: 0.6.3
  372. variableMeasured:
  373. - schemaKey: PropertyValue
  374. value: VoltageClampStimulusSeries
  375. - schemaKey: PropertyValue
  376. value: CurrentClampStimulusSeries
  377. - schemaKey: PropertyValue
  378. value: VoltageClampSeries
  379. - schemaKey: PropertyValue
  380. value: CurrentClampSeries
  381. wasAttributedTo:
  382. - age:
  383. schemaKey: PropertyValue
  384. unitText: ISO-8601 duration
  385. value: P55.0Y
  386. valueReference:
  387. schemaKey: PropertyValue
  388. value: dandi:BirthReference
  389. identifier: '791205802'
  390. schemaKey: Participant
  391. sex:
  392. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  393. name: Female
  394. schemaKey: SexType
  395. species:
  396. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  397. name: Homo sapiens - Human
  398. schemaKey: SpeciesType
  399. wasGeneratedBy:
  400. - description: PLACEHOLDER
  401. identifier: PLACEHOLDER
  402. name: PLACEHOLDER
  403. schemaKey: Session
  404. startDate: '2018-12-03T20:51:50.030000+01:00'
  405. - description: Metadata generated by DANDI cli
  406. id: urn:uuid:2831bf6f-24e7-4fa3-b816-f0b13684c477
  407. name: Metadata generation
  408. schemaKey: Activity
  409. wasAssociatedWith:
  410. - identifier: RRID:SCR_019009
  411. name: DANDI Command Line Interface
  412. schemaKey: Software
  413. url: https://github.com/dandi/dandi-cli
  414. version: 0.41.0+5.g259ae0d
  415. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  416. access:
  417. - schemaKey: AccessRequirements
  418. status: dandi:OpenAccess
  419. approach:
  420. - name: electrophysiological approach
  421. schemaKey: ApproachType
  422. blobDateModified: '2022-09-17T23:49:56.720235-07:00'
  423. contentSize: 71389636
  424. contentUrl:
  425. - https://api.dandiarchive.org/api/assets/16db9528-b64b-49b6-8596-ea2fb74459f4/download/
  426. - https://dandiarchive.s3.amazonaws.com/blobs/102/e43/102e4397-5c85-4f61-a095-3635703ab2e9
  427. dateModified: '2022-09-17T23:56:19.504992-07:00'
  428. digest:
  429. dandi:dandi-etag: fb1021944d11241aaa3e23d857bc26ed-2
  430. dandi:sha2-256: 2685a9eed7f891d18786f14bc789346e55e6336c203da6b5c7fc5e0786370677
  431. encodingFormat: application/x-nwb
  432. id: dandiasset:16db9528-b64b-49b6-8596-ea2fb74459f4
  433. identifier: 16db9528-b64b-49b6-8596-ea2fb74459f4
  434. measurementTechnique:
  435. - name: current clamp technique
  436. schemaKey: MeasurementTechniqueType
  437. - name: voltage clamp technique
  438. schemaKey: MeasurementTechniqueType
  439. path: sub-1047717119/sub-1047717119_ses-1053917650_icephys.nwb
  440. schemaKey: Asset
  441. schemaVersion: 0.6.3
  442. variableMeasured:
  443. - schemaKey: PropertyValue
  444. value: VoltageClampStimulusSeries
  445. - schemaKey: PropertyValue
  446. value: CurrentClampStimulusSeries
  447. - schemaKey: PropertyValue
  448. value: VoltageClampSeries
  449. - schemaKey: PropertyValue
  450. value: CurrentClampSeries
  451. wasAttributedTo:
  452. - age:
  453. schemaKey: PropertyValue
  454. unitText: ISO-8601 duration
  455. value: P32.0Y
  456. valueReference:
  457. schemaKey: PropertyValue
  458. value: dandi:BirthReference
  459. identifier: '1047717119'
  460. schemaKey: Participant
  461. sex:
  462. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  463. name: Male
  464. schemaKey: SexType
  465. species:
  466. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  467. name: Homo sapiens - Human
  468. schemaKey: SpeciesType
  469. wasGeneratedBy:
  470. - description: PLACEHOLDER
  471. identifier: '1053917650'
  472. name: '1053917650'
  473. schemaKey: Session
  474. startDate: '2020-03-05T03:10:34.505000+00:00'
  475. - description: Metadata generated by DANDI cli
  476. id: urn:uuid:39d40598-441b-455a-a925-7207f3d6bfce
  477. name: Metadata generation
  478. schemaKey: Activity
  479. wasAssociatedWith:
  480. - identifier: RRID:SCR_019009
  481. name: DANDI Command Line Interface
  482. schemaKey: Software
  483. url: https://github.com/dandi/dandi-cli
  484. version: 0.41.0+5.g259ae0d
  485. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  486. access:
  487. - schemaKey: AccessRequirements
  488. status: dandi:OpenAccess
  489. approach:
  490. - name: electrophysiological approach
  491. schemaKey: ApproachType
  492. blobDateModified: '2022-09-17T23:49:49.522143-07:00'
  493. contentSize: 65010263
  494. contentUrl:
  495. - https://api.dandiarchive.org/api/assets/1e5010bb-f005-49ec-aa01-5cbb8c71a935/download/
  496. - https://dandiarchive.s3.amazonaws.com/blobs/50a/7dd/50a7ddef-2916-41a0-8878-7082b3db6f0d
  497. dateModified: '2022-09-17T23:56:17.379485-07:00'
  498. digest:
  499. dandi:dandi-etag: 342e1954f645f82b124fc4b07caee6a7-1
  500. dandi:sha2-256: 13f0fb8bd393bd7f85416932f8b0018f304197bf672f8973aabbde1b14004193
  501. encodingFormat: application/x-nwb
  502. id: dandiasset:1e5010bb-f005-49ec-aa01-5cbb8c71a935
  503. identifier: 1e5010bb-f005-49ec-aa01-5cbb8c71a935
  504. measurementTechnique:
  505. - name: current clamp technique
  506. schemaKey: MeasurementTechniqueType
  507. - name: voltage clamp technique
  508. schemaKey: MeasurementTechniqueType
  509. path: sub-1047717119/sub-1047717119_ses-1053917889_icephys.nwb
  510. schemaKey: Asset
  511. schemaVersion: 0.6.3
  512. variableMeasured:
  513. - schemaKey: PropertyValue
  514. value: VoltageClampStimulusSeries
  515. - schemaKey: PropertyValue
  516. value: CurrentClampStimulusSeries
  517. - schemaKey: PropertyValue
  518. value: VoltageClampSeries
  519. - schemaKey: PropertyValue
  520. value: CurrentClampSeries
  521. wasAttributedTo:
  522. - age:
  523. schemaKey: PropertyValue
  524. unitText: ISO-8601 duration
  525. value: P32.0Y
  526. valueReference:
  527. schemaKey: PropertyValue
  528. value: dandi:BirthReference
  529. identifier: '1047717119'
  530. schemaKey: Participant
  531. sex:
  532. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  533. name: Male
  534. schemaKey: SexType
  535. species:
  536. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  537. name: Homo sapiens - Human
  538. schemaKey: SpeciesType
  539. wasGeneratedBy:
  540. - description: PLACEHOLDER
  541. identifier: '1053917889'
  542. name: '1053917889'
  543. schemaKey: Session
  544. startDate: '2020-03-04T16:42:58+00:00'
  545. - description: Metadata generated by DANDI cli
  546. id: urn:uuid:4d20ff89-b778-40b2-924e-a4dd971406b5
  547. name: Metadata generation
  548. schemaKey: Activity
  549. wasAssociatedWith:
  550. - identifier: RRID:SCR_019009
  551. name: DANDI Command Line Interface
  552. schemaKey: Software
  553. url: https://github.com/dandi/dandi-cli
  554. version: 0.41.0+5.g259ae0d
  555. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  556. access:
  557. - schemaKey: AccessRequirements
  558. status: dandi:OpenAccess
  559. approach:
  560. - name: electrophysiological approach
  561. schemaKey: ApproachType
  562. blobDateModified: '2022-09-17T23:48:31.142731-07:00'
  563. contentSize: 34319780
  564. contentUrl:
  565. - https://api.dandiarchive.org/api/assets/459a45a3-0070-49aa-981a-4f2a46d3ff5a/download/
  566. - https://dandiarchive.s3.amazonaws.com/blobs/9d6/a91/9d6a917f-4627-4c32-b31f-aaf058498515
  567. dateModified: '2022-09-17T23:56:49.766494-07:00'
  568. digest:
  569. dandi:dandi-etag: b70dd66d4f0b66a8f00773864b20afaa-1
  570. dandi:sha2-256: 797933570058ed182bce2dec73d302585529acd09e87dff6580178651c2c15b8
  571. encodingFormat: application/x-nwb
  572. id: dandiasset:459a45a3-0070-49aa-981a-4f2a46d3ff5a
  573. identifier: 459a45a3-0070-49aa-981a-4f2a46d3ff5a
  574. measurementTechnique:
  575. - name: current clamp technique
  576. schemaKey: MeasurementTechniqueType
  577. path: sub-681539651/sub-681539651_ses-PLACEHOLDER_obj-taag8t_icephys.nwb
  578. schemaKey: Asset
  579. schemaVersion: 0.6.3
  580. variableMeasured:
  581. - schemaKey: PropertyValue
  582. value: CurrentClampStimulusSeries
  583. - schemaKey: PropertyValue
  584. value: CurrentClampSeries
  585. wasAttributedTo:
  586. - age:
  587. schemaKey: PropertyValue
  588. unitText: ISO-8601 duration
  589. value: P22.0Y
  590. valueReference:
  591. schemaKey: PropertyValue
  592. value: dandi:BirthReference
  593. identifier: '681539651'
  594. schemaKey: Participant
  595. sex:
  596. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  597. name: Female
  598. schemaKey: SexType
  599. species:
  600. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  601. name: Homo sapiens - Human
  602. schemaKey: SpeciesType
  603. wasGeneratedBy:
  604. - description: PLACEHOLDER
  605. identifier: PLACEHOLDER
  606. name: PLACEHOLDER
  607. schemaKey: Session
  608. startDate: '2018-03-20T21:20:50.744000+01:00'
  609. - description: Metadata generated by DANDI cli
  610. id: urn:uuid:edce53d5-7a54-4462-9a00-215a2a64aa87
  611. name: Metadata generation
  612. schemaKey: Activity
  613. wasAssociatedWith:
  614. - identifier: RRID:SCR_019009
  615. name: DANDI Command Line Interface
  616. schemaKey: Software
  617. url: https://github.com/dandi/dandi-cli
  618. version: 0.41.0+5.g259ae0d
  619. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  620. access:
  621. - schemaKey: AccessRequirements
  622. status: dandi:OpenAccess
  623. approach:
  624. - name: electrophysiological approach
  625. schemaKey: ApproachType
  626. blobDateModified: '2022-09-17T23:49:29.420693-07:00'
  627. contentSize: 126751190
  628. contentUrl:
  629. - https://api.dandiarchive.org/api/assets/71a5e6dc-6c09-45f4-9125-c27039659b26/download/
  630. - https://dandiarchive.s3.amazonaws.com/blobs/405/a38/405a3891-2e1a-48ad-8bef-493c5023dfde
  631. dateModified: '2022-09-17T23:56:49.538004-07:00'
  632. digest:
  633. dandi:dandi-etag: fe998d4d919878ee09ffaf10aec260a0-2
  634. dandi:sha2-256: 083bd613eef16ddf0201b0ccda53ddb094acbeafc3e7a30902ba18e705880378
  635. encodingFormat: application/x-nwb
  636. id: dandiasset:71a5e6dc-6c09-45f4-9125-c27039659b26
  637. identifier: 71a5e6dc-6c09-45f4-9125-c27039659b26
  638. measurementTechnique:
  639. - name: current clamp technique
  640. schemaKey: MeasurementTechniqueType
  641. - name: voltage clamp technique
  642. schemaKey: MeasurementTechniqueType
  643. path: sub-893495139/sub-893495139_ses-901315954_icephys.nwb
  644. schemaKey: Asset
  645. schemaVersion: 0.6.3
  646. variableMeasured:
  647. - schemaKey: PropertyValue
  648. value: VoltageClampStimulusSeries
  649. - schemaKey: PropertyValue
  650. value: CurrentClampStimulusSeries
  651. - schemaKey: PropertyValue
  652. value: VoltageClampSeries
  653. - schemaKey: PropertyValue
  654. value: CurrentClampSeries
  655. wasAttributedTo:
  656. - age:
  657. schemaKey: PropertyValue
  658. unitText: ISO-8601 duration
  659. value: P67.0Y
  660. valueReference:
  661. schemaKey: PropertyValue
  662. value: dandi:BirthReference
  663. identifier: '893495139'
  664. schemaKey: Participant
  665. sex:
  666. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  667. name: Male
  668. schemaKey: SexType
  669. species:
  670. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  671. name: Homo sapiens - Human
  672. schemaKey: SpeciesType
  673. wasGeneratedBy:
  674. - description: PLACEHOLDER
  675. identifier: '901315954'
  676. name: '901315954'
  677. schemaKey: Session
  678. startDate: '2019-06-19T14:18:10+00:00'
  679. - description: Metadata generated by DANDI cli
  680. id: urn:uuid:15905c99-515b-463f-8fd4-18d564ca10b7
  681. name: Metadata generation
  682. schemaKey: Activity
  683. wasAssociatedWith:
  684. - identifier: RRID:SCR_019009
  685. name: DANDI Command Line Interface
  686. schemaKey: Software
  687. url: https://github.com/dandi/dandi-cli
  688. version: 0.41.0+5.g259ae0d
  689. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  690. access:
  691. - schemaKey: AccessRequirements
  692. status: dandi:OpenAccess
  693. approach:
  694. - name: electrophysiological approach
  695. schemaKey: ApproachType
  696. blobDateModified: '2022-09-17T23:48:28.936843-07:00'
  697. contentSize: 32568220
  698. contentUrl:
  699. - https://api.dandiarchive.org/api/assets/fa3fcba5-b7e3-45c5-a0b9-8f93daaefff8/download/
  700. - https://dandiarchive.s3.amazonaws.com/blobs/95d/d5b/95dd5b57-c8d8-41d1-8793-6b6a1afcdc14
  701. dateModified: '2022-09-17T23:56:56.120401-07:00'
  702. digest:
  703. dandi:dandi-etag: 1d09bc4c2a1041dc2e206eb889379ce9-1
  704. dandi:sha2-256: 0fcdab534db86a8b93395c1a918f5993cff6c10caec07d758c5e0c0494d0a04b
  705. encodingFormat: application/x-nwb
  706. id: dandiasset:fa3fcba5-b7e3-45c5-a0b9-8f93daaefff8
  707. identifier: fa3fcba5-b7e3-45c5-a0b9-8f93daaefff8
  708. measurementTechnique:
  709. - name: current clamp technique
  710. schemaKey: MeasurementTechniqueType
  711. path: sub-681539651/sub-681539651_ses-PLACEHOLDER_obj-v5bwie_icephys.nwb
  712. schemaKey: Asset
  713. schemaVersion: 0.6.3
  714. variableMeasured:
  715. - schemaKey: PropertyValue
  716. value: CurrentClampStimulusSeries
  717. - schemaKey: PropertyValue
  718. value: CurrentClampSeries
  719. wasAttributedTo:
  720. - age:
  721. schemaKey: PropertyValue
  722. unitText: ISO-8601 duration
  723. value: P22.0Y
  724. valueReference:
  725. schemaKey: PropertyValue
  726. value: dandi:BirthReference
  727. identifier: '681539651'
  728. schemaKey: Participant
  729. sex:
  730. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  731. name: Female
  732. schemaKey: SexType
  733. species:
  734. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  735. name: Homo sapiens - Human
  736. schemaKey: SpeciesType
  737. wasGeneratedBy:
  738. - description: PLACEHOLDER
  739. identifier: PLACEHOLDER
  740. name: PLACEHOLDER
  741. schemaKey: Session
  742. startDate: '2018-03-20T20:39:33.397000+01:00'
  743. - description: Metadata generated by DANDI cli
  744. id: urn:uuid:4a16bb2c-cc35-4bd2-b451-f245d52159bf
  745. name: Metadata generation
  746. schemaKey: Activity
  747. wasAssociatedWith:
  748. - identifier: RRID:SCR_019009
  749. name: DANDI Command Line Interface
  750. schemaKey: Software
  751. url: https://github.com/dandi/dandi-cli
  752. version: 0.41.0+5.g259ae0d
  753. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  754. access:
  755. - schemaKey: AccessRequirements
  756. status: dandi:OpenAccess
  757. approach:
  758. - name: electrophysiological approach
  759. schemaKey: ApproachType
  760. blobDateModified: '2022-09-17T23:49:21.752237-07:00'
  761. contentSize: 127601020
  762. contentUrl:
  763. - https://api.dandiarchive.org/api/assets/27f953fc-b72e-49fb-bd10-f6c6e1c8f616/download/
  764. - https://dandiarchive.s3.amazonaws.com/blobs/0e1/79f/0e179fb8-4ece-44da-bb7d-c44fa5a682ac
  765. dateModified: '2022-09-17T23:56:58.002508-07:00'
  766. digest:
  767. dandi:dandi-etag: c06fb49c2b69a8927ca09d3e18649aa2-2
  768. dandi:sha2-256: 454ca277b2be93fec0e79ad53c7777e4fa65682815b5d547d3fd58c70e1a8b54
  769. encodingFormat: application/x-nwb
  770. id: dandiasset:27f953fc-b72e-49fb-bd10-f6c6e1c8f616
  771. identifier: 27f953fc-b72e-49fb-bd10-f6c6e1c8f616
  772. measurementTechnique:
  773. - name: current clamp technique
  774. schemaKey: MeasurementTechniqueType
  775. - name: voltage clamp technique
  776. schemaKey: MeasurementTechniqueType
  777. path: sub-859638045/sub-859638045_ses-872843906_icephys.nwb
  778. schemaKey: Asset
  779. schemaVersion: 0.6.3
  780. variableMeasured:
  781. - schemaKey: PropertyValue
  782. value: VoltageClampStimulusSeries
  783. - schemaKey: PropertyValue
  784. value: CurrentClampStimulusSeries
  785. - schemaKey: PropertyValue
  786. value: VoltageClampSeries
  787. - schemaKey: PropertyValue
  788. value: CurrentClampSeries
  789. wasAttributedTo:
  790. - age:
  791. schemaKey: PropertyValue
  792. unitText: ISO-8601 duration
  793. value: P66.0Y
  794. valueReference:
  795. schemaKey: PropertyValue
  796. value: dandi:BirthReference
  797. identifier: '859638045'
  798. schemaKey: Participant
  799. sex:
  800. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  801. name: Female
  802. schemaKey: SexType
  803. species:
  804. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  805. name: Homo sapiens - Human
  806. schemaKey: SpeciesType
  807. wasGeneratedBy:
  808. - description: PLACEHOLDER
  809. identifier: '872843906'
  810. name: '872843906'
  811. schemaKey: Session
  812. startDate: '2019-04-16T12:56:07+00:00'
  813. - description: Metadata generated by DANDI cli
  814. id: urn:uuid:f9c4d455-594b-4f2a-852d-3c425f9208b2
  815. name: Metadata generation
  816. schemaKey: Activity
  817. wasAssociatedWith:
  818. - identifier: RRID:SCR_019009
  819. name: DANDI Command Line Interface
  820. schemaKey: Software
  821. url: https://github.com/dandi/dandi-cli
  822. version: 0.41.0+5.g259ae0d
  823. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  824. access:
  825. - schemaKey: AccessRequirements
  826. status: dandi:OpenAccess
  827. approach:
  828. - name: electrophysiological approach
  829. schemaKey: ApproachType
  830. blobDateModified: '2022-09-17T23:48:47.014340-07:00'
  831. contentSize: 33022563
  832. contentUrl:
  833. - https://api.dandiarchive.org/api/assets/53204ecc-ba78-450d-a663-e4047456ac8a/download/
  834. - https://dandiarchive.s3.amazonaws.com/blobs/581/4d8/5814d895-dc13-4468-9513-fcda7a6aaeb2
  835. dateModified: '2022-09-17T23:57:21.439669-07:00'
  836. digest:
  837. dandi:dandi-etag: 83ada077cfca5f4d37850a726d3ccb5d-1
  838. dandi:sha2-256: 1a879b4000ae67ddbe52900926339ebd4b9fedb5e18dfa91e9c502cad2546acc
  839. encodingFormat: application/x-nwb
  840. id: dandiasset:53204ecc-ba78-450d-a663-e4047456ac8a
  841. identifier: 53204ecc-ba78-450d-a663-e4047456ac8a
  842. measurementTechnique:
  843. - name: current clamp technique
  844. schemaKey: MeasurementTechniqueType
  845. - name: voltage clamp technique
  846. schemaKey: MeasurementTechniqueType
  847. path: sub-825455761/sub-825455761_ses-PLACEHOLDER_icephys.nwb
  848. schemaKey: Asset
  849. schemaVersion: 0.6.3
  850. variableMeasured:
  851. - schemaKey: PropertyValue
  852. value: VoltageClampStimulusSeries
  853. - schemaKey: PropertyValue
  854. value: CurrentClampStimulusSeries
  855. - schemaKey: PropertyValue
  856. value: VoltageClampSeries
  857. - schemaKey: PropertyValue
  858. value: CurrentClampSeries
  859. wasAttributedTo:
  860. - age:
  861. schemaKey: PropertyValue
  862. unitText: ISO-8601 duration
  863. value: P65.0Y
  864. valueReference:
  865. schemaKey: PropertyValue
  866. value: dandi:BirthReference
  867. identifier: '825455761'
  868. schemaKey: Participant
  869. sex:
  870. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  871. name: Female
  872. schemaKey: SexType
  873. species:
  874. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  875. name: Homo sapiens - Human
  876. schemaKey: SpeciesType
  877. wasGeneratedBy:
  878. - description: PLACEHOLDER
  879. identifier: PLACEHOLDER
  880. name: PLACEHOLDER
  881. schemaKey: Session
  882. startDate: '2019-02-11T17:55:40.882000+01:00'
  883. - description: Metadata generated by DANDI cli
  884. id: urn:uuid:c6affcc5-1473-4192-8e85-28f7293d8fca
  885. name: Metadata generation
  886. schemaKey: Activity
  887. wasAssociatedWith:
  888. - identifier: RRID:SCR_019009
  889. name: DANDI Command Line Interface
  890. schemaKey: Software
  891. url: https://github.com/dandi/dandi-cli
  892. version: 0.41.0+5.g259ae0d
  893. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  894. access:
  895. - schemaKey: AccessRequirements
  896. status: dandi:OpenAccess
  897. approach:
  898. - name: electrophysiological approach
  899. schemaKey: ApproachType
  900. blobDateModified: '2022-09-17T23:50:16.289957-07:00'
  901. contentSize: 15020083
  902. contentUrl:
  903. - https://api.dandiarchive.org/api/assets/1412229e-ca1c-43b7-8a89-89c503698fab/download/
  904. - https://dandiarchive.s3.amazonaws.com/blobs/d22/444/d224449d-2b97-471c-b26b-72004ba500eb
  905. dateModified: '2022-09-17T23:57:29.737163-07:00'
  906. digest:
  907. dandi:dandi-etag: 251df862a7c98d91e286aa05dbbf13c1-1
  908. dandi:sha2-256: d6e493d062100f7061522ac3985582e9d6e9e7b2c3068885949bf297b3c23b30
  909. encodingFormat: application/x-nwb
  910. id: dandiasset:1412229e-ca1c-43b7-8a89-89c503698fab
  911. identifier: 1412229e-ca1c-43b7-8a89-89c503698fab
  912. measurementTechnique:
  913. - name: current clamp technique
  914. schemaKey: MeasurementTechniqueType
  915. - name: voltage clamp technique
  916. schemaKey: MeasurementTechniqueType
  917. path: sub-1089233462/sub-1089233462_ses-1089235110_icephys.nwb
  918. schemaKey: Asset
  919. schemaVersion: 0.6.3
  920. variableMeasured:
  921. - schemaKey: PropertyValue
  922. value: VoltageClampStimulusSeries
  923. - schemaKey: PropertyValue
  924. value: CurrentClampStimulusSeries
  925. - schemaKey: PropertyValue
  926. value: VoltageClampSeries
  927. - schemaKey: PropertyValue
  928. value: CurrentClampSeries
  929. wasAttributedTo:
  930. - age:
  931. schemaKey: PropertyValue
  932. unitText: ISO-8601 duration
  933. value: P68.0Y
  934. valueReference:
  935. schemaKey: PropertyValue
  936. value: dandi:BirthReference
  937. identifier: '1089233462'
  938. schemaKey: Participant
  939. sex:
  940. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  941. name: Male
  942. schemaKey: SexType
  943. species:
  944. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  945. name: Homo sapiens - Human
  946. schemaKey: SpeciesType
  947. wasGeneratedBy:
  948. - description: PLACEHOLDER
  949. identifier: '1089235110'
  950. name: '1089235110'
  951. schemaKey: Session
  952. startDate: '2019-08-27T14:29:58+00:00'
  953. - description: Metadata generated by DANDI cli
  954. id: urn:uuid:50565d1e-0b07-49cc-a02c-7c153c374cfb
  955. name: Metadata generation
  956. schemaKey: Activity
  957. wasAssociatedWith:
  958. - identifier: RRID:SCR_019009
  959. name: DANDI Command Line Interface
  960. schemaKey: Software
  961. url: https://github.com/dandi/dandi-cli
  962. version: 0.41.0+5.g259ae0d
  963. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  964. access:
  965. - schemaKey: AccessRequirements
  966. status: dandi:OpenAccess
  967. approach:
  968. - name: electrophysiological approach
  969. schemaKey: ApproachType
  970. blobDateModified: '2022-09-17T23:50:21.785425-07:00'
  971. contentSize: 27458265
  972. contentUrl:
  973. - https://api.dandiarchive.org/api/assets/44998ede-ef66-4017-bb7c-8be8a77bfba8/download/
  974. - https://dandiarchive.s3.amazonaws.com/blobs/544/9c4/5449c43b-5a53-4eaa-8c6c-27651639aca4
  975. dateModified: '2022-09-17T23:57:30.527161-07:00'
  976. digest:
  977. dandi:dandi-etag: 1a84a8196de3a6983fb149e5013cdf22-1
  978. dandi:sha2-256: 3c949dfec884a19ee3cfbe2a64055fea3d767d63a746dc7ccdf4fbed9c146d14
  979. encodingFormat: application/x-nwb
  980. id: dandiasset:44998ede-ef66-4017-bb7c-8be8a77bfba8
  981. identifier: 44998ede-ef66-4017-bb7c-8be8a77bfba8
  982. measurementTechnique:
  983. - name: current clamp technique
  984. schemaKey: MeasurementTechniqueType
  985. - name: voltage clamp technique
  986. schemaKey: MeasurementTechniqueType
  987. path: sub-1089233462/sub-1089233462_ses-1089235664_icephys.nwb
  988. schemaKey: Asset
  989. schemaVersion: 0.6.3
  990. variableMeasured:
  991. - schemaKey: PropertyValue
  992. value: VoltageClampStimulusSeries
  993. - schemaKey: PropertyValue
  994. value: CurrentClampStimulusSeries
  995. - schemaKey: PropertyValue
  996. value: VoltageClampSeries
  997. - schemaKey: PropertyValue
  998. value: CurrentClampSeries
  999. wasAttributedTo:
  1000. - age:
  1001. schemaKey: PropertyValue
  1002. unitText: ISO-8601 duration
  1003. value: P68.0Y
  1004. valueReference:
  1005. schemaKey: PropertyValue
  1006. value: dandi:BirthReference
  1007. identifier: '1089233462'
  1008. schemaKey: Participant
  1009. sex:
  1010. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1011. name: Male
  1012. schemaKey: SexType
  1013. species:
  1014. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1015. name: Homo sapiens - Human
  1016. schemaKey: SpeciesType
  1017. wasGeneratedBy:
  1018. - description: PLACEHOLDER
  1019. identifier: '1089235664'
  1020. name: '1089235664'
  1021. schemaKey: Session
  1022. startDate: '2019-08-27T14:29:58+00:00'
  1023. - description: Metadata generated by DANDI cli
  1024. id: urn:uuid:91f5a2ae-96ed-488f-bcc5-32d256e2a696
  1025. name: Metadata generation
  1026. schemaKey: Activity
  1027. wasAssociatedWith:
  1028. - identifier: RRID:SCR_019009
  1029. name: DANDI Command Line Interface
  1030. schemaKey: Software
  1031. url: https://github.com/dandi/dandi-cli
  1032. version: 0.41.0+5.g259ae0d
  1033. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1034. access:
  1035. - schemaKey: AccessRequirements
  1036. status: dandi:OpenAccess
  1037. approach:
  1038. - name: electrophysiological approach
  1039. schemaKey: ApproachType
  1040. blobDateModified: '2022-09-17T23:48:55.384020-07:00'
  1041. contentSize: 232373862
  1042. contentUrl:
  1043. - https://api.dandiarchive.org/api/assets/0900a305-6993-4f2a-88b5-00ec85cfd263/download/
  1044. - https://dandiarchive.s3.amazonaws.com/blobs/573/309/5733098b-f046-4d26-a1d1-cdef30220f82
  1045. dateModified: '2022-09-17T23:57:37.720528-07:00'
  1046. digest:
  1047. dandi:dandi-etag: dd0919a6a9d099d455b61d38da19e457-4
  1048. dandi:sha2-256: d5f7f625bf873ba5a9d2287c26d47ecbab83faf5d05a6d5a07ca56efd7837633
  1049. encodingFormat: application/x-nwb
  1050. id: dandiasset:0900a305-6993-4f2a-88b5-00ec85cfd263
  1051. identifier: 0900a305-6993-4f2a-88b5-00ec85cfd263
  1052. measurementTechnique:
  1053. - name: current clamp technique
  1054. schemaKey: MeasurementTechniqueType
  1055. - name: voltage clamp technique
  1056. schemaKey: MeasurementTechniqueType
  1057. path: sub-847868497/sub-847868497_ses-847870147_icephys.nwb
  1058. schemaKey: Asset
  1059. schemaVersion: 0.6.3
  1060. variableMeasured:
  1061. - schemaKey: PropertyValue
  1062. value: VoltageClampStimulusSeries
  1063. - schemaKey: PropertyValue
  1064. value: CurrentClampStimulusSeries
  1065. - schemaKey: PropertyValue
  1066. value: VoltageClampSeries
  1067. - schemaKey: PropertyValue
  1068. value: CurrentClampSeries
  1069. wasAttributedTo:
  1070. - age:
  1071. schemaKey: PropertyValue
  1072. unitText: ISO-8601 duration
  1073. value: P70.0Y
  1074. valueReference:
  1075. schemaKey: PropertyValue
  1076. value: dandi:BirthReference
  1077. identifier: '847868497'
  1078. schemaKey: Participant
  1079. sex:
  1080. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1081. name: Female
  1082. schemaKey: SexType
  1083. species:
  1084. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1085. name: Homo sapiens - Human
  1086. schemaKey: SpeciesType
  1087. wasGeneratedBy:
  1088. - description: PLACEHOLDER
  1089. identifier: '847870147'
  1090. name: '847870147'
  1091. schemaKey: Session
  1092. startDate: '2019-04-02T15:33:50+00:00'
  1093. - description: Metadata generated by DANDI cli
  1094. id: urn:uuid:caf0693d-c40d-4306-a562-e6d1d584f49a
  1095. name: Metadata generation
  1096. schemaKey: Activity
  1097. wasAssociatedWith:
  1098. - identifier: RRID:SCR_019009
  1099. name: DANDI Command Line Interface
  1100. schemaKey: Software
  1101. url: https://github.com/dandi/dandi-cli
  1102. version: 0.41.0+5.g259ae0d
  1103. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1104. access:
  1105. - schemaKey: AccessRequirements
  1106. status: dandi:OpenAccess
  1107. approach:
  1108. - name: electrophysiological approach
  1109. schemaKey: ApproachType
  1110. blobDateModified: '2022-09-17T23:49:04.214142-07:00'
  1111. contentSize: 153924122
  1112. contentUrl:
  1113. - https://api.dandiarchive.org/api/assets/5f8285e4-69fe-407f-b8e6-91d2520c963c/download/
  1114. - https://dandiarchive.s3.amazonaws.com/blobs/5a4/141/5a41410a-5db3-4081-a21c-6d7551aafeca
  1115. dateModified: '2022-09-17T23:58:09.212656-07:00'
  1116. digest:
  1117. dandi:dandi-etag: e4ae227f43c1ee822c0b356287341797-3
  1118. dandi:sha2-256: fb9efab202d4ba6ee2cf13d54d312e54adea56bbbb99f241422f7d01f1551e73
  1119. encodingFormat: application/x-nwb
  1120. id: dandiasset:5f8285e4-69fe-407f-b8e6-91d2520c963c
  1121. identifier: 5f8285e4-69fe-407f-b8e6-91d2520c963c
  1122. measurementTechnique:
  1123. - name: current clamp technique
  1124. schemaKey: MeasurementTechniqueType
  1125. - name: voltage clamp technique
  1126. schemaKey: MeasurementTechniqueType
  1127. path: sub-847868497/sub-847868497_ses-847870440_icephys.nwb
  1128. schemaKey: Asset
  1129. schemaVersion: 0.6.3
  1130. variableMeasured:
  1131. - schemaKey: PropertyValue
  1132. value: VoltageClampStimulusSeries
  1133. - schemaKey: PropertyValue
  1134. value: CurrentClampStimulusSeries
  1135. - schemaKey: PropertyValue
  1136. value: VoltageClampSeries
  1137. - schemaKey: PropertyValue
  1138. value: CurrentClampSeries
  1139. wasAttributedTo:
  1140. - age:
  1141. schemaKey: PropertyValue
  1142. unitText: ISO-8601 duration
  1143. value: P70.0Y
  1144. valueReference:
  1145. schemaKey: PropertyValue
  1146. value: dandi:BirthReference
  1147. identifier: '847868497'
  1148. schemaKey: Participant
  1149. sex:
  1150. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1151. name: Female
  1152. schemaKey: SexType
  1153. species:
  1154. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1155. name: Homo sapiens - Human
  1156. schemaKey: SpeciesType
  1157. wasGeneratedBy:
  1158. - description: PLACEHOLDER
  1159. identifier: '847870440'
  1160. name: '847870440'
  1161. schemaKey: Session
  1162. startDate: '2019-04-02T17:19:57+00:00'
  1163. - description: Metadata generated by DANDI cli
  1164. id: urn:uuid:f929eb5a-b53b-42c2-99d2-e8ce3cf7c3c4
  1165. name: Metadata generation
  1166. schemaKey: Activity
  1167. wasAssociatedWith:
  1168. - identifier: RRID:SCR_019009
  1169. name: DANDI Command Line Interface
  1170. schemaKey: Software
  1171. url: https://github.com/dandi/dandi-cli
  1172. version: 0.41.0+5.g259ae0d
  1173. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1174. access:
  1175. - schemaKey: AccessRequirements
  1176. status: dandi:OpenAccess
  1177. approach:
  1178. - name: electrophysiological approach
  1179. schemaKey: ApproachType
  1180. blobDateModified: '2022-09-17T23:48:33.352807-07:00'
  1181. contentSize: 32194622
  1182. contentUrl:
  1183. - https://api.dandiarchive.org/api/assets/da48c2f9-a5a3-4b61-96b5-9f31ceb95e1f/download/
  1184. - https://dandiarchive.s3.amazonaws.com/blobs/1a8/62c/1a862c6c-b179-4d83-ba29-ba8f9cf536df
  1185. dateModified: '2022-09-17T23:58:15.719714-07:00'
  1186. digest:
  1187. dandi:dandi-etag: 5788c489333c2c16acfedc8598a9a18c-1
  1188. dandi:sha2-256: 2d26692707df7c04ea1d791f63262a58633f241dd307535ffd1377c2b033e932
  1189. encodingFormat: application/x-nwb
  1190. id: dandiasset:da48c2f9-a5a3-4b61-96b5-9f31ceb95e1f
  1191. identifier: da48c2f9-a5a3-4b61-96b5-9f31ceb95e1f
  1192. measurementTechnique:
  1193. - name: current clamp technique
  1194. schemaKey: MeasurementTechniqueType
  1195. path: sub-681561759/sub-681561759_ses-PLACEHOLDER_icephys.nwb
  1196. schemaKey: Asset
  1197. schemaVersion: 0.6.3
  1198. variableMeasured:
  1199. - schemaKey: PropertyValue
  1200. value: CurrentClampStimulusSeries
  1201. - schemaKey: PropertyValue
  1202. value: CurrentClampSeries
  1203. wasAttributedTo:
  1204. - age:
  1205. schemaKey: PropertyValue
  1206. unitText: ISO-8601 duration
  1207. value: P44.0Y
  1208. valueReference:
  1209. schemaKey: PropertyValue
  1210. value: dandi:BirthReference
  1211. identifier: '681561759'
  1212. schemaKey: Participant
  1213. sex:
  1214. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1215. name: Male
  1216. schemaKey: SexType
  1217. species:
  1218. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1219. name: Homo sapiens - Human
  1220. schemaKey: SpeciesType
  1221. wasGeneratedBy:
  1222. - description: PLACEHOLDER
  1223. identifier: PLACEHOLDER
  1224. name: PLACEHOLDER
  1225. schemaKey: Session
  1226. startDate: '2018-03-21T18:06:19.290000+01:00'
  1227. - description: Metadata generated by DANDI cli
  1228. id: urn:uuid:df583745-ec3a-4b90-bb92-76847835d6d3
  1229. name: Metadata generation
  1230. schemaKey: Activity
  1231. wasAssociatedWith:
  1232. - identifier: RRID:SCR_019009
  1233. name: DANDI Command Line Interface
  1234. schemaKey: Software
  1235. url: https://github.com/dandi/dandi-cli
  1236. version: 0.41.0+5.g259ae0d
  1237. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1238. access:
  1239. - schemaKey: AccessRequirements
  1240. status: dandi:OpenAccess
  1241. approach:
  1242. - name: electrophysiological approach
  1243. schemaKey: ApproachType
  1244. blobDateModified: '2022-09-17T23:49:13.400484-07:00'
  1245. contentSize: 145059908
  1246. contentUrl:
  1247. - https://api.dandiarchive.org/api/assets/b38bb32e-c4ff-4875-9ccc-9985d4ad6cd1/download/
  1248. - https://dandiarchive.s3.amazonaws.com/blobs/22f/3b5/22f3b5af-6f71-4550-a5d7-e04a53b33bd4
  1249. dateModified: '2022-09-17T23:58:17.540333-07:00'
  1250. digest:
  1251. dandi:dandi-etag: 8252e9e7f11504f4e9b5303c083e9791-3
  1252. dandi:sha2-256: 1b7049659afe69a1e53aabd1f40484a8d0c47a1a48ac726ca8d1f89c7513bf95
  1253. encodingFormat: application/x-nwb
  1254. id: dandiasset:b38bb32e-c4ff-4875-9ccc-9985d4ad6cd1
  1255. identifier: b38bb32e-c4ff-4875-9ccc-9985d4ad6cd1
  1256. measurementTechnique:
  1257. - name: current clamp technique
  1258. schemaKey: MeasurementTechniqueType
  1259. - name: voltage clamp technique
  1260. schemaKey: MeasurementTechniqueType
  1261. path: sub-847868497/sub-847868497_ses-847870571_icephys.nwb
  1262. schemaKey: Asset
  1263. schemaVersion: 0.6.3
  1264. variableMeasured:
  1265. - schemaKey: PropertyValue
  1266. value: VoltageClampStimulusSeries
  1267. - schemaKey: PropertyValue
  1268. value: CurrentClampStimulusSeries
  1269. - schemaKey: PropertyValue
  1270. value: VoltageClampSeries
  1271. - schemaKey: PropertyValue
  1272. value: CurrentClampSeries
  1273. wasAttributedTo:
  1274. - age:
  1275. schemaKey: PropertyValue
  1276. unitText: ISO-8601 duration
  1277. value: P70.0Y
  1278. valueReference:
  1279. schemaKey: PropertyValue
  1280. value: dandi:BirthReference
  1281. identifier: '847868497'
  1282. schemaKey: Participant
  1283. sex:
  1284. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1285. name: Female
  1286. schemaKey: SexType
  1287. species:
  1288. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1289. name: Homo sapiens - Human
  1290. schemaKey: SpeciesType
  1291. wasGeneratedBy:
  1292. - description: PLACEHOLDER
  1293. identifier: '847870571'
  1294. name: '847870571'
  1295. schemaKey: Session
  1296. startDate: '2019-04-02T18:55:14+00:00'
  1297. - description: Metadata generated by DANDI cli
  1298. id: urn:uuid:8585ca6d-a026-43aa-8905-274a71de5294
  1299. name: Metadata generation
  1300. schemaKey: Activity
  1301. wasAssociatedWith:
  1302. - identifier: RRID:SCR_019009
  1303. name: DANDI Command Line Interface
  1304. schemaKey: Software
  1305. url: https://github.com/dandi/dandi-cli
  1306. version: 0.41.0+5.g259ae0d
  1307. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1308. access:
  1309. - schemaKey: AccessRequirements
  1310. status: dandi:OpenAccess
  1311. approach:
  1312. - name: electrophysiological approach
  1313. schemaKey: ApproachType
  1314. blobDateModified: '2022-09-17T23:50:03.806123-07:00'
  1315. contentSize: 57495097
  1316. contentUrl:
  1317. - https://api.dandiarchive.org/api/assets/14a5bb03-94ad-4adc-aaa5-bf8c63f80326/download/
  1318. - https://dandiarchive.s3.amazonaws.com/blobs/9ca/81a/9ca81a7d-abe4-4a8c-8070-cbf1c4e522e1
  1319. dateModified: '2022-09-18T00:02:57.177965-07:00'
  1320. digest:
  1321. dandi:dandi-etag: 9ff452225cfac300812fc7b5e1d514d1-1
  1322. dandi:sha2-256: a0b5c456f6865938eba0fd3449bb181009284d36e2ae2d1a95a36ebf9950fece
  1323. encodingFormat: application/x-nwb
  1324. id: dandiasset:14a5bb03-94ad-4adc-aaa5-bf8c63f80326
  1325. identifier: 14a5bb03-94ad-4adc-aaa5-bf8c63f80326
  1326. measurementTechnique:
  1327. - name: current clamp technique
  1328. schemaKey: MeasurementTechniqueType
  1329. - name: voltage clamp technique
  1330. schemaKey: MeasurementTechniqueType
  1331. path: sub-1089230952/sub-1089230952_ses-1089231177_icephys.nwb
  1332. schemaKey: Asset
  1333. schemaVersion: 0.6.3
  1334. variableMeasured:
  1335. - schemaKey: PropertyValue
  1336. value: CurrentClampStimulusSeries
  1337. - schemaKey: PropertyValue
  1338. value: VoltageClampSeries
  1339. - schemaKey: PropertyValue
  1340. value: VoltageClampStimulusSeries
  1341. - schemaKey: PropertyValue
  1342. value: CurrentClampSeries
  1343. wasAttributedTo:
  1344. - age:
  1345. schemaKey: PropertyValue
  1346. unitText: ISO-8601 duration
  1347. value: P21.0Y
  1348. valueReference:
  1349. schemaKey: PropertyValue
  1350. value: dandi:BirthReference
  1351. identifier: '1089230952'
  1352. schemaKey: Participant
  1353. sex:
  1354. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1355. name: Female
  1356. schemaKey: SexType
  1357. species:
  1358. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1359. name: Homo sapiens - Human
  1360. schemaKey: SpeciesType
  1361. wasGeneratedBy:
  1362. - description: PLACEHOLDER
  1363. identifier: '1089231177'
  1364. name: '1089231177'
  1365. schemaKey: Session
  1366. startDate: '2020-10-21T13:55:00+00:00'
  1367. - description: Metadata generated by DANDI cli
  1368. id: urn:uuid:f9bf4d59-e4ce-47d1-b7cc-42d96373514b
  1369. name: Metadata generation
  1370. schemaKey: Activity
  1371. wasAssociatedWith:
  1372. - identifier: RRID:SCR_019009
  1373. name: DANDI Command Line Interface
  1374. schemaKey: Software
  1375. url: https://github.com/dandi/dandi-cli
  1376. version: 0.41.0+5.g259ae0d
  1377. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1378. access:
  1379. - schemaKey: AccessRequirements
  1380. status: dandi:OpenAccess
  1381. approach:
  1382. - name: electrophysiological approach
  1383. schemaKey: ApproachType
  1384. blobDateModified: '2022-09-17T23:49:37.083470-07:00'
  1385. contentSize: 123956959
  1386. contentUrl:
  1387. - https://api.dandiarchive.org/api/assets/37d6be2e-d152-4909-aa27-fa7b957bf79a/download/
  1388. - https://dandiarchive.s3.amazonaws.com/blobs/a00/22c/a0022c95-da35-424d-98c3-0b174ee69412
  1389. dateModified: '2022-09-18T00:02:52.233335-07:00'
  1390. digest:
  1391. dandi:dandi-etag: fad4b0d9047aadd2000dd7ffc681d751-2
  1392. dandi:sha2-256: 008bb5ffc6195018ffe5ec0256a1a2954dde8bf9f3bca82295ac50bd810ae329
  1393. encodingFormat: application/x-nwb
  1394. id: dandiasset:37d6be2e-d152-4909-aa27-fa7b957bf79a
  1395. identifier: 37d6be2e-d152-4909-aa27-fa7b957bf79a
  1396. measurementTechnique:
  1397. - name: current clamp technique
  1398. schemaKey: MeasurementTechniqueType
  1399. - name: voltage clamp technique
  1400. schemaKey: MeasurementTechniqueType
  1401. path: sub-971847052/sub-971847052_ses-971847307_icephys.nwb
  1402. schemaKey: Asset
  1403. schemaVersion: 0.6.3
  1404. variableMeasured:
  1405. - schemaKey: PropertyValue
  1406. value: CurrentClampStimulusSeries
  1407. - schemaKey: PropertyValue
  1408. value: VoltageClampSeries
  1409. - schemaKey: PropertyValue
  1410. value: VoltageClampStimulusSeries
  1411. - schemaKey: PropertyValue
  1412. value: CurrentClampSeries
  1413. wasAttributedTo:
  1414. - age:
  1415. schemaKey: PropertyValue
  1416. unitText: ISO-8601 duration
  1417. value: P70.0Y
  1418. valueReference:
  1419. schemaKey: PropertyValue
  1420. value: dandi:BirthReference
  1421. identifier: '971847052'
  1422. schemaKey: Participant
  1423. sex:
  1424. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1425. name: Female
  1426. schemaKey: SexType
  1427. species:
  1428. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1429. name: Homo sapiens - Human
  1430. schemaKey: SpeciesType
  1431. wasGeneratedBy:
  1432. - description: PLACEHOLDER
  1433. identifier: '971847307'
  1434. name: '971847307'
  1435. schemaKey: Session
  1436. startDate: '2019-10-15T13:44:31.925000+00:00'
  1437. - description: Metadata generated by DANDI cli
  1438. id: urn:uuid:1831f507-0ee2-4355-8eb8-c5968d09e4f7
  1439. name: Metadata generation
  1440. schemaKey: Activity
  1441. wasAssociatedWith:
  1442. - identifier: RRID:SCR_019009
  1443. name: DANDI Command Line Interface
  1444. schemaKey: Software
  1445. url: https://github.com/dandi/dandi-cli
  1446. version: 0.41.0+5.g259ae0d
Tip!

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

Comments

Loading...