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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:48:35.310390-07:00'
contentSize: 29799567
contentUrl:
- https://api.dandiarchive.org/api/assets/5e32b8af-e756-406f-a195-67889b611fe3/download/
- https://dandiarchive.s3.amazonaws.com/blobs/351/4cb/3514cbf4-37c3-4a71-be79-9edb70bbfed5
dateModified: '2022-09-17T23:55:32.631466-07:00'
digest:
dandi:dandi-etag: 9448956a2a3ab8c7c77012d1589d97b1-1
dandi:sha2-256: 7d86fa407d3148bf822720c3ff8985b1eb1359205cdefc5db12a225d9bc9691b
encodingFormat: application/x-nwb
id: dandiasset:5e32b8af-e756-406f-a195-67889b611fe3
identifier: 5e32b8af-e756-406f-a195-67889b611fe3
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
path: sub-701201569/sub-701201569_ses-PLACEHOLDER_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P28.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '701201569'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: PLACEHOLDER
name: PLACEHOLDER
schemaKey: Session
startDate: '2018-05-09T19:00:26.784000+02:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:2f67ddd9-8d63-47f3-bda3-004ddc526a0d
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:49:43.270311-07:00'
contentSize: 65662567
contentUrl:
- https://api.dandiarchive.org/api/assets/a68df04e-72dc-4baa-94e6-7a9489804855/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d7c/6ec/d7c6ece9-fcf4-44e2-a9b3-ee5390bbebbc
dateModified: '2022-09-17T23:55:32.797181-07:00'
digest:
dandi:dandi-etag: 33343d56b50c10c288e35c0f29814d25-1
dandi:sha2-256: 58c56721819a6713e5d878eeabb384750cc9299238051ed74d3670722d500f54
encodingFormat: application/x-nwb
id: dandiasset:a68df04e-72dc-4baa-94e6-7a9489804855
identifier: a68df04e-72dc-4baa-94e6-7a9489804855
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-971847052/sub-971847052_ses-971847789_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P70.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '971847052'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '971847789'
name: '971847789'
schemaKey: Session
startDate: '2019-10-16T08:56:19.187000+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:359eb379-ff28-40e4-88b8-b819e4f8a5d8
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:50:10.574458-07:00'
contentSize: 58147512
contentUrl:
- https://api.dandiarchive.org/api/assets/48963cbe-0a89-40f2-aeb6-f3f5d07400d8/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b62/300/b62300c1-cca6-4691-9d16-cb420578d948
dateModified: '2022-09-17T23:55:32.971211-07:00'
digest:
dandi:dandi-etag: 0493e97f2ff06ce044fc84f871e9b5f0-1
dandi:sha2-256: cb411588ffd05aeb5347a31a4d278f74dae0d0a7897240461407e72060d6c386
encodingFormat: application/x-nwb
id: dandiasset:48963cbe-0a89-40f2-aeb6-f3f5d07400d8
identifier: 48963cbe-0a89-40f2-aeb6-f3f5d07400d8
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-1089230952/sub-1089230952_ses-1089232011_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P21.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '1089230952'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '1089232011'
name: '1089232011'
schemaKey: Session
startDate: '2020-10-21T18:54:57.065000+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:5ba6b227-b954-416d-9b19-6385dd69d450
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:48:44.049110-07:00'
contentSize: 33835979
contentUrl:
- https://api.dandiarchive.org/api/assets/921d9b72-502f-439b-9304-c627325c93d3/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c49/1a4/c491a48d-288a-4c45-baaf-bdd613ff3ee6
dateModified: '2022-09-17T23:55:32.968953-07:00'
digest:
dandi:dandi-etag: d490f77e497a172f153251c28d4e76d6-1
dandi:sha2-256: 246dfa68ed2d8954cfaf011cc3551658b79a232fafee1902e3d9a6c0f8006baa
encodingFormat: application/x-nwb
id: dandiasset:921d9b72-502f-439b-9304-c627325c93d3
identifier: 921d9b72-502f-439b-9304-c627325c93d3
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-791205802/sub-791205802_ses-PLACEHOLDER_obj-g7j7bb_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P55.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '791205802'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: PLACEHOLDER
name: PLACEHOLDER
schemaKey: Session
startDate: '2018-12-03T22:56:55.158000+01:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:ed102703-9c82-497e-8270-e77a1f92bb6f
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:48:38.172991-07:00'
contentSize: 34512064
contentUrl:
- https://api.dandiarchive.org/api/assets/139f2ce0-ca26-4417-996e-515e1e1de0a3/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a76/e9e/a76e9e08-d27a-42b1-9b2e-dcda868ff0fc
dateModified: '2022-09-17T23:56:11.053461-07:00'
digest:
dandi:dandi-etag: 6b8e99786e903c7c77b2cad563c70cc1-1
dandi:sha2-256: ede0772de865fc1517c9aa9717870611e7f772762aaae8a06f55ebf5c9691245
encodingFormat: application/x-nwb
id: dandiasset:139f2ce0-ca26-4417-996e-515e1e1de0a3
identifier: 139f2ce0-ca26-4417-996e-515e1e1de0a3
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-791205802/sub-791205802_ses-PLACEHOLDER_obj-10r9ed6_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P55.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '791205802'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: PLACEHOLDER
name: PLACEHOLDER
schemaKey: Session
startDate: '2018-12-03T18:04:20.485000+01:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:e6e73cd0-8554-4d88-b799-561f04dd8f09
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:48:41.182199-07:00'
contentSize: 31954512
contentUrl:
- https://api.dandiarchive.org/api/assets/608ca70b-1b3e-4b09-9b18-a9e41330c456/download/
- https://dandiarchive.s3.amazonaws.com/blobs/22b/31a/22b31a67-2d63-4ff7-87e6-e75b1a70f656
dateModified: '2022-09-17T23:56:17.451585-07:00'
digest:
dandi:dandi-etag: 2ad450035af1aa404b65801d49adbd17-1
dandi:sha2-256: 3818eee049e629e0b69bec9c8264b8d44926073ebbccbb7090af26ed0ab11065
encodingFormat: application/x-nwb
id: dandiasset:608ca70b-1b3e-4b09-9b18-a9e41330c456
identifier: 608ca70b-1b3e-4b09-9b18-a9e41330c456
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-791205802/sub-791205802_ses-PLACEHOLDER_obj-xdlohj_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P55.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '791205802'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: PLACEHOLDER
name: PLACEHOLDER
schemaKey: Session
startDate: '2018-12-03T20:51:50.030000+01:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:2831bf6f-24e7-4fa3-b816-f0b13684c477
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:49:56.720235-07:00'
contentSize: 71389636
contentUrl:
- https://api.dandiarchive.org/api/assets/16db9528-b64b-49b6-8596-ea2fb74459f4/download/
- https://dandiarchive.s3.amazonaws.com/blobs/102/e43/102e4397-5c85-4f61-a095-3635703ab2e9
dateModified: '2022-09-17T23:56:19.504992-07:00'
digest:
dandi:dandi-etag: fb1021944d11241aaa3e23d857bc26ed-2
dandi:sha2-256: 2685a9eed7f891d18786f14bc789346e55e6336c203da6b5c7fc5e0786370677
encodingFormat: application/x-nwb
id: dandiasset:16db9528-b64b-49b6-8596-ea2fb74459f4
identifier: 16db9528-b64b-49b6-8596-ea2fb74459f4
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-1047717119/sub-1047717119_ses-1053917650_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P32.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '1047717119'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '1053917650'
name: '1053917650'
schemaKey: Session
startDate: '2020-03-05T03:10:34.505000+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:39d40598-441b-455a-a925-7207f3d6bfce
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:49:49.522143-07:00'
contentSize: 65010263
contentUrl:
- https://api.dandiarchive.org/api/assets/1e5010bb-f005-49ec-aa01-5cbb8c71a935/download/
- https://dandiarchive.s3.amazonaws.com/blobs/50a/7dd/50a7ddef-2916-41a0-8878-7082b3db6f0d
dateModified: '2022-09-17T23:56:17.379485-07:00'
digest:
dandi:dandi-etag: 342e1954f645f82b124fc4b07caee6a7-1
dandi:sha2-256: 13f0fb8bd393bd7f85416932f8b0018f304197bf672f8973aabbde1b14004193
encodingFormat: application/x-nwb
id: dandiasset:1e5010bb-f005-49ec-aa01-5cbb8c71a935
identifier: 1e5010bb-f005-49ec-aa01-5cbb8c71a935
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-1047717119/sub-1047717119_ses-1053917889_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P32.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '1047717119'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '1053917889'
name: '1053917889'
schemaKey: Session
startDate: '2020-03-04T16:42:58+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:4d20ff89-b778-40b2-924e-a4dd971406b5
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:48:31.142731-07:00'
contentSize: 34319780
contentUrl:
- https://api.dandiarchive.org/api/assets/459a45a3-0070-49aa-981a-4f2a46d3ff5a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/9d6/a91/9d6a917f-4627-4c32-b31f-aaf058498515
dateModified: '2022-09-17T23:56:49.766494-07:00'
digest:
dandi:dandi-etag: b70dd66d4f0b66a8f00773864b20afaa-1
dandi:sha2-256: 797933570058ed182bce2dec73d302585529acd09e87dff6580178651c2c15b8
encodingFormat: application/x-nwb
id: dandiasset:459a45a3-0070-49aa-981a-4f2a46d3ff5a
identifier: 459a45a3-0070-49aa-981a-4f2a46d3ff5a
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
path: sub-681539651/sub-681539651_ses-PLACEHOLDER_obj-taag8t_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P22.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '681539651'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: PLACEHOLDER
name: PLACEHOLDER
schemaKey: Session
startDate: '2018-03-20T21:20:50.744000+01:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:edce53d5-7a54-4462-9a00-215a2a64aa87
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:49:29.420693-07:00'
contentSize: 126751190
contentUrl:
- https://api.dandiarchive.org/api/assets/71a5e6dc-6c09-45f4-9125-c27039659b26/download/
- https://dandiarchive.s3.amazonaws.com/blobs/405/a38/405a3891-2e1a-48ad-8bef-493c5023dfde
dateModified: '2022-09-17T23:56:49.538004-07:00'
digest:
dandi:dandi-etag: fe998d4d919878ee09ffaf10aec260a0-2
dandi:sha2-256: 083bd613eef16ddf0201b0ccda53ddb094acbeafc3e7a30902ba18e705880378
encodingFormat: application/x-nwb
id: dandiasset:71a5e6dc-6c09-45f4-9125-c27039659b26
identifier: 71a5e6dc-6c09-45f4-9125-c27039659b26
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-893495139/sub-893495139_ses-901315954_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P67.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '893495139'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '901315954'
name: '901315954'
schemaKey: Session
startDate: '2019-06-19T14:18:10+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:15905c99-515b-463f-8fd4-18d564ca10b7
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:48:28.936843-07:00'
contentSize: 32568220
contentUrl:
- https://api.dandiarchive.org/api/assets/fa3fcba5-b7e3-45c5-a0b9-8f93daaefff8/download/
- https://dandiarchive.s3.amazonaws.com/blobs/95d/d5b/95dd5b57-c8d8-41d1-8793-6b6a1afcdc14
dateModified: '2022-09-17T23:56:56.120401-07:00'
digest:
dandi:dandi-etag: 1d09bc4c2a1041dc2e206eb889379ce9-1
dandi:sha2-256: 0fcdab534db86a8b93395c1a918f5993cff6c10caec07d758c5e0c0494d0a04b
encodingFormat: application/x-nwb
id: dandiasset:fa3fcba5-b7e3-45c5-a0b9-8f93daaefff8
identifier: fa3fcba5-b7e3-45c5-a0b9-8f93daaefff8
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
path: sub-681539651/sub-681539651_ses-PLACEHOLDER_obj-v5bwie_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P22.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '681539651'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: PLACEHOLDER
name: PLACEHOLDER
schemaKey: Session
startDate: '2018-03-20T20:39:33.397000+01:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:4a16bb2c-cc35-4bd2-b451-f245d52159bf
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:49:21.752237-07:00'
contentSize: 127601020
contentUrl:
- https://api.dandiarchive.org/api/assets/27f953fc-b72e-49fb-bd10-f6c6e1c8f616/download/
- https://dandiarchive.s3.amazonaws.com/blobs/0e1/79f/0e179fb8-4ece-44da-bb7d-c44fa5a682ac
dateModified: '2022-09-17T23:56:58.002508-07:00'
digest:
dandi:dandi-etag: c06fb49c2b69a8927ca09d3e18649aa2-2
dandi:sha2-256: 454ca277b2be93fec0e79ad53c7777e4fa65682815b5d547d3fd58c70e1a8b54
encodingFormat: application/x-nwb
id: dandiasset:27f953fc-b72e-49fb-bd10-f6c6e1c8f616
identifier: 27f953fc-b72e-49fb-bd10-f6c6e1c8f616
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-859638045/sub-859638045_ses-872843906_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P66.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '859638045'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '872843906'
name: '872843906'
schemaKey: Session
startDate: '2019-04-16T12:56:07+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:f9c4d455-594b-4f2a-852d-3c425f9208b2
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:48:47.014340-07:00'
contentSize: 33022563
contentUrl:
- https://api.dandiarchive.org/api/assets/53204ecc-ba78-450d-a663-e4047456ac8a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/581/4d8/5814d895-dc13-4468-9513-fcda7a6aaeb2
dateModified: '2022-09-17T23:57:21.439669-07:00'
digest:
dandi:dandi-etag: 83ada077cfca5f4d37850a726d3ccb5d-1
dandi:sha2-256: 1a879b4000ae67ddbe52900926339ebd4b9fedb5e18dfa91e9c502cad2546acc
encodingFormat: application/x-nwb
id: dandiasset:53204ecc-ba78-450d-a663-e4047456ac8a
identifier: 53204ecc-ba78-450d-a663-e4047456ac8a
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-825455761/sub-825455761_ses-PLACEHOLDER_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P65.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '825455761'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: PLACEHOLDER
name: PLACEHOLDER
schemaKey: Session
startDate: '2019-02-11T17:55:40.882000+01:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:c6affcc5-1473-4192-8e85-28f7293d8fca
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:50:16.289957-07:00'
contentSize: 15020083
contentUrl:
- https://api.dandiarchive.org/api/assets/1412229e-ca1c-43b7-8a89-89c503698fab/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d22/444/d224449d-2b97-471c-b26b-72004ba500eb
dateModified: '2022-09-17T23:57:29.737163-07:00'
digest:
dandi:dandi-etag: 251df862a7c98d91e286aa05dbbf13c1-1
dandi:sha2-256: d6e493d062100f7061522ac3985582e9d6e9e7b2c3068885949bf297b3c23b30
encodingFormat: application/x-nwb
id: dandiasset:1412229e-ca1c-43b7-8a89-89c503698fab
identifier: 1412229e-ca1c-43b7-8a89-89c503698fab
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-1089233462/sub-1089233462_ses-1089235110_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P68.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '1089233462'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '1089235110'
name: '1089235110'
schemaKey: Session
startDate: '2019-08-27T14:29:58+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:50565d1e-0b07-49cc-a02c-7c153c374cfb
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:50:21.785425-07:00'
contentSize: 27458265
contentUrl:
- https://api.dandiarchive.org/api/assets/44998ede-ef66-4017-bb7c-8be8a77bfba8/download/
- https://dandiarchive.s3.amazonaws.com/blobs/544/9c4/5449c43b-5a53-4eaa-8c6c-27651639aca4
dateModified: '2022-09-17T23:57:30.527161-07:00'
digest:
dandi:dandi-etag: 1a84a8196de3a6983fb149e5013cdf22-1
dandi:sha2-256: 3c949dfec884a19ee3cfbe2a64055fea3d767d63a746dc7ccdf4fbed9c146d14
encodingFormat: application/x-nwb
id: dandiasset:44998ede-ef66-4017-bb7c-8be8a77bfba8
identifier: 44998ede-ef66-4017-bb7c-8be8a77bfba8
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-1089233462/sub-1089233462_ses-1089235664_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P68.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '1089233462'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '1089235664'
name: '1089235664'
schemaKey: Session
startDate: '2019-08-27T14:29:58+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:91f5a2ae-96ed-488f-bcc5-32d256e2a696
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:48:55.384020-07:00'
contentSize: 232373862
contentUrl:
- https://api.dandiarchive.org/api/assets/0900a305-6993-4f2a-88b5-00ec85cfd263/download/
- https://dandiarchive.s3.amazonaws.com/blobs/573/309/5733098b-f046-4d26-a1d1-cdef30220f82
dateModified: '2022-09-17T23:57:37.720528-07:00'
digest:
dandi:dandi-etag: dd0919a6a9d099d455b61d38da19e457-4
dandi:sha2-256: d5f7f625bf873ba5a9d2287c26d47ecbab83faf5d05a6d5a07ca56efd7837633
encodingFormat: application/x-nwb
id: dandiasset:0900a305-6993-4f2a-88b5-00ec85cfd263
identifier: 0900a305-6993-4f2a-88b5-00ec85cfd263
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-847868497/sub-847868497_ses-847870147_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P70.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '847868497'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '847870147'
name: '847870147'
schemaKey: Session
startDate: '2019-04-02T15:33:50+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:caf0693d-c40d-4306-a562-e6d1d584f49a
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:49:04.214142-07:00'
contentSize: 153924122
contentUrl:
- https://api.dandiarchive.org/api/assets/5f8285e4-69fe-407f-b8e6-91d2520c963c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/5a4/141/5a41410a-5db3-4081-a21c-6d7551aafeca
dateModified: '2022-09-17T23:58:09.212656-07:00'
digest:
dandi:dandi-etag: e4ae227f43c1ee822c0b356287341797-3
dandi:sha2-256: fb9efab202d4ba6ee2cf13d54d312e54adea56bbbb99f241422f7d01f1551e73
encodingFormat: application/x-nwb
id: dandiasset:5f8285e4-69fe-407f-b8e6-91d2520c963c
identifier: 5f8285e4-69fe-407f-b8e6-91d2520c963c
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-847868497/sub-847868497_ses-847870440_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P70.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '847868497'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '847870440'
name: '847870440'
schemaKey: Session
startDate: '2019-04-02T17:19:57+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:f929eb5a-b53b-42c2-99d2-e8ce3cf7c3c4
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:48:33.352807-07:00'
contentSize: 32194622
contentUrl:
- https://api.dandiarchive.org/api/assets/da48c2f9-a5a3-4b61-96b5-9f31ceb95e1f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/1a8/62c/1a862c6c-b179-4d83-ba29-ba8f9cf536df
dateModified: '2022-09-17T23:58:15.719714-07:00'
digest:
dandi:dandi-etag: 5788c489333c2c16acfedc8598a9a18c-1
dandi:sha2-256: 2d26692707df7c04ea1d791f63262a58633f241dd307535ffd1377c2b033e932
encodingFormat: application/x-nwb
id: dandiasset:da48c2f9-a5a3-4b61-96b5-9f31ceb95e1f
identifier: da48c2f9-a5a3-4b61-96b5-9f31ceb95e1f
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
path: sub-681561759/sub-681561759_ses-PLACEHOLDER_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P44.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '681561759'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: PLACEHOLDER
name: PLACEHOLDER
schemaKey: Session
startDate: '2018-03-21T18:06:19.290000+01:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:df583745-ec3a-4b90-bb92-76847835d6d3
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:49:13.400484-07:00'
contentSize: 145059908
contentUrl:
- https://api.dandiarchive.org/api/assets/b38bb32e-c4ff-4875-9ccc-9985d4ad6cd1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/22f/3b5/22f3b5af-6f71-4550-a5d7-e04a53b33bd4
dateModified: '2022-09-17T23:58:17.540333-07:00'
digest:
dandi:dandi-etag: 8252e9e7f11504f4e9b5303c083e9791-3
dandi:sha2-256: 1b7049659afe69a1e53aabd1f40484a8d0c47a1a48ac726ca8d1f89c7513bf95
encodingFormat: application/x-nwb
id: dandiasset:b38bb32e-c4ff-4875-9ccc-9985d4ad6cd1
identifier: b38bb32e-c4ff-4875-9ccc-9985d4ad6cd1
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-847868497/sub-847868497_ses-847870571_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P70.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '847868497'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '847870571'
name: '847870571'
schemaKey: Session
startDate: '2019-04-02T18:55:14+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:8585ca6d-a026-43aa-8905-274a71de5294
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:50:03.806123-07:00'
contentSize: 57495097
contentUrl:
- https://api.dandiarchive.org/api/assets/14a5bb03-94ad-4adc-aaa5-bf8c63f80326/download/
- https://dandiarchive.s3.amazonaws.com/blobs/9ca/81a/9ca81a7d-abe4-4a8c-8070-cbf1c4e522e1
dateModified: '2022-09-18T00:02:57.177965-07:00'
digest:
dandi:dandi-etag: 9ff452225cfac300812fc7b5e1d514d1-1
dandi:sha2-256: a0b5c456f6865938eba0fd3449bb181009284d36e2ae2d1a95a36ebf9950fece
encodingFormat: application/x-nwb
id: dandiasset:14a5bb03-94ad-4adc-aaa5-bf8c63f80326
identifier: 14a5bb03-94ad-4adc-aaa5-bf8c63f80326
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-1089230952/sub-1089230952_ses-1089231177_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P21.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '1089230952'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '1089231177'
name: '1089231177'
schemaKey: Session
startDate: '2020-10-21T13:55:00+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:f9bf4d59-e4ce-47d1-b7cc-42d96373514b
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2022-09-17T23:49:37.083470-07:00'
contentSize: 123956959
contentUrl:
- https://api.dandiarchive.org/api/assets/37d6be2e-d152-4909-aa27-fa7b957bf79a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a00/22c/a0022c95-da35-424d-98c3-0b174ee69412
dateModified: '2022-09-18T00:02:52.233335-07:00'
digest:
dandi:dandi-etag: fad4b0d9047aadd2000dd7ffc681d751-2
dandi:sha2-256: 008bb5ffc6195018ffe5ec0256a1a2954dde8bf9f3bca82295ac50bd810ae329
encodingFormat: application/x-nwb
id: dandiasset:37d6be2e-d152-4909-aa27-fa7b957bf79a
identifier: 37d6be2e-d152-4909-aa27-fa7b957bf79a
measurementTechnique:
- name: current clamp technique
schemaKey: MeasurementTechniqueType
- name: voltage clamp technique
schemaKey: MeasurementTechniqueType
path: sub-971847052/sub-971847052_ses-971847307_icephys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: CurrentClampStimulusSeries
- schemaKey: PropertyValue
value: VoltageClampSeries
- schemaKey: PropertyValue
value: VoltageClampStimulusSeries
- schemaKey: PropertyValue
value: CurrentClampSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P70.0Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '971847052'
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: PLACEHOLDER
identifier: '971847307'
name: '971847307'
schemaKey: Session
startDate: '2019-10-15T13:44:31.925000+00:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:1831f507-0ee2-4355-8eb8-c5968d09e4f7
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.41.0+5.g259ae0d
Tip!
Press p or to see the previous file or,
n or to see the next file