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 74 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: electrophysiological approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2024-03-11T10:57:00.134827-07:00'
  9. contentSize: 45282632
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/f048de45-e8e3-413b-a3e8-885b32b6b093/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/bae/79b/bae79b98-0484-469b-ab50-aa6f96eed831
  13. dateModified: '2024-03-11T11:08:56.119781-07:00'
  14. digest:
  15. dandi:dandi-etag: 367318539d7cab1e453a4017de41e23c-1
  16. dandi:sha2-256: 59476dc0035ab2b660c2a8087f69801c52d07fe5741d8af2acffc2d5dbc9fc3b
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:f048de45-e8e3-413b-a3e8-885b32b6b093
  19. identifier: f048de45-e8e3-413b-a3e8-885b32b6b093
  20. measurementTechnique:
  21. - name: analytical technique
  22. schemaKey: MeasurementTechniqueType
  23. - name: voltage clamp technique
  24. schemaKey: MeasurementTechniqueType
  25. - name: current clamp technique
  26. schemaKey: MeasurementTechniqueType
  27. path: sub-1295011705/sub-1295011705_ses-1296715466_icephys.nwb
  28. schemaKey: Asset
  29. schemaVersion: 0.6.6
  30. variableMeasured:
  31. - schemaKey: PropertyValue
  32. value: VoltageClampStimulusSeries
  33. - schemaKey: PropertyValue
  34. value: CurrentClampStimulusSeries
  35. - schemaKey: PropertyValue
  36. value: ProcessingModule
  37. - schemaKey: PropertyValue
  38. value: VoltageClampSeries
  39. - schemaKey: PropertyValue
  40. value: CurrentClampSeries
  41. wasAttributedTo:
  42. - age:
  43. schemaKey: PropertyValue
  44. unitText: ISO-8601 duration
  45. value: P10585.0D
  46. valueReference:
  47. schemaKey: PropertyValue
  48. value: dandi:BirthReference
  49. genotype: ''
  50. identifier: '1295011705'
  51. schemaKey: Participant
  52. sex:
  53. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  54. name: Male
  55. schemaKey: SexType
  56. species:
  57. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  58. name: Homo sapiens - Human
  59. schemaKey: SpeciesType
  60. wasGeneratedBy:
  61. - description: PLACEHOLDER
  62. identifier: '1296715466'
  63. name: '1296715466'
  64. schemaKey: Session
  65. startDate: '2023-09-13T21:47:47.977000Z'
  66. - description: Metadata generated by DANDI cli
  67. endDate: '2024-03-11T11:08:56.119764-07:00'
  68. id: urn:uuid:0d85a93f-7e49-42fd-aff8-72ec373c535e
  69. name: Metadata generation
  70. schemaKey: Activity
  71. startDate: '2024-03-11T11:08:48.312767-07:00'
  72. wasAssociatedWith:
  73. - identifier: RRID:SCR_019009
  74. name: DANDI Command Line Interface
  75. schemaKey: Software
  76. url: https://github.com/dandi/dandi-cli
  77. version: 0.60.0
  78. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  79. access:
  80. - schemaKey: AccessRequirements
  81. status: dandi:OpenAccess
  82. approach:
  83. - name: electrophysiological approach
  84. schemaKey: ApproachType
  85. blobDateModified: '2024-03-11T10:56:18.427268-07:00'
  86. contentSize: 53234006
  87. contentUrl:
  88. - https://api.dandiarchive.org/api/assets/02abc905-540f-4afe-ac49-a64e57eaf500/download/
  89. - https://dandiarchive.s3.amazonaws.com/blobs/bfa/ee8/bfaee80c-1a02-4f81-ae04-ce9a61f71dfa
  90. dateModified: '2024-03-11T11:08:58.892986-07:00'
  91. digest:
  92. dandi:dandi-etag: 9d4cd118a1dbc020f778058a851b5f29-1
  93. dandi:sha2-256: 24f4e59bf07108f5c2eea9ab60fdd337b69979bfed9106a68a4d226d045f94c1
  94. encodingFormat: application/x-nwb
  95. id: dandiasset:02abc905-540f-4afe-ac49-a64e57eaf500
  96. identifier: 02abc905-540f-4afe-ac49-a64e57eaf500
  97. measurementTechnique:
  98. - name: analytical technique
  99. schemaKey: MeasurementTechniqueType
  100. - name: voltage clamp technique
  101. schemaKey: MeasurementTechniqueType
  102. - name: current clamp technique
  103. schemaKey: MeasurementTechniqueType
  104. path: sub-1295011705/sub-1295011705_ses-1296877011_icephys.nwb
  105. schemaKey: Asset
  106. schemaVersion: 0.6.6
  107. variableMeasured:
  108. - schemaKey: PropertyValue
  109. value: VoltageClampStimulusSeries
  110. - schemaKey: PropertyValue
  111. value: CurrentClampStimulusSeries
  112. - schemaKey: PropertyValue
  113. value: ProcessingModule
  114. - schemaKey: PropertyValue
  115. value: VoltageClampSeries
  116. - schemaKey: PropertyValue
  117. value: CurrentClampSeries
  118. wasAttributedTo:
  119. - age:
  120. schemaKey: PropertyValue
  121. unitText: ISO-8601 duration
  122. value: P10585.0D
  123. valueReference:
  124. schemaKey: PropertyValue
  125. value: dandi:BirthReference
  126. genotype: ''
  127. identifier: '1295011705'
  128. schemaKey: Participant
  129. sex:
  130. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  131. name: Male
  132. schemaKey: SexType
  133. species:
  134. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  135. name: Homo sapiens - Human
  136. schemaKey: SpeciesType
  137. wasGeneratedBy:
  138. - description: PLACEHOLDER
  139. identifier: '1296877011'
  140. name: '1296877011'
  141. schemaKey: Session
  142. startDate: '2023-09-14T19:08:08.506000Z'
  143. - description: Metadata generated by DANDI cli
  144. endDate: '2024-03-11T11:08:58.892962-07:00'
  145. id: urn:uuid:6840d7fe-f926-4eab-8fe8-7aaf51c545fd
  146. name: Metadata generation
  147. schemaKey: Activity
  148. startDate: '2024-03-11T11:08:49.646504-07:00'
  149. wasAssociatedWith:
  150. - identifier: RRID:SCR_019009
  151. name: DANDI Command Line Interface
  152. schemaKey: Software
  153. url: https://github.com/dandi/dandi-cli
  154. version: 0.60.0
  155. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  156. access:
  157. - schemaKey: AccessRequirements
  158. status: dandi:OpenAccess
  159. approach:
  160. - name: electrophysiological approach
  161. schemaKey: ApproachType
  162. blobDateModified: '2024-03-11T10:57:57.856758-07:00'
  163. contentSize: 58980412
  164. contentUrl:
  165. - https://api.dandiarchive.org/api/assets/8d8c4974-a247-429e-b28d-1dd530185b92/download/
  166. - https://dandiarchive.s3.amazonaws.com/blobs/b43/e0f/b43e0f38-43bb-4a21-a7b7-8e7f513c6474
  167. dateModified: '2024-03-11T11:08:59.459098-07:00'
  168. digest:
  169. dandi:dandi-etag: 0e2362108e5e356c28caf0d7d193bb05-1
  170. dandi:sha2-256: 3b2c26a8f2c36faffeead0b7cfc38f8f1b4f1f72467893a3c8bd4b2852f3b7bb
  171. encodingFormat: application/x-nwb
  172. id: dandiasset:8d8c4974-a247-429e-b28d-1dd530185b92
  173. identifier: 8d8c4974-a247-429e-b28d-1dd530185b92
  174. measurementTechnique:
  175. - name: analytical technique
  176. schemaKey: MeasurementTechniqueType
  177. - name: voltage clamp technique
  178. schemaKey: MeasurementTechniqueType
  179. - name: current clamp technique
  180. schemaKey: MeasurementTechniqueType
  181. path: sub-1295011705/sub-1295011705_ses-1296727703_icephys.nwb
  182. schemaKey: Asset
  183. schemaVersion: 0.6.6
  184. variableMeasured:
  185. - schemaKey: PropertyValue
  186. value: VoltageClampStimulusSeries
  187. - schemaKey: PropertyValue
  188. value: CurrentClampStimulusSeries
  189. - schemaKey: PropertyValue
  190. value: ProcessingModule
  191. - schemaKey: PropertyValue
  192. value: VoltageClampSeries
  193. - schemaKey: PropertyValue
  194. value: CurrentClampSeries
  195. wasAttributedTo:
  196. - age:
  197. schemaKey: PropertyValue
  198. unitText: ISO-8601 duration
  199. value: P10585.0D
  200. valueReference:
  201. schemaKey: PropertyValue
  202. value: dandi:BirthReference
  203. genotype: ''
  204. identifier: '1295011705'
  205. schemaKey: Participant
  206. sex:
  207. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  208. name: Male
  209. schemaKey: SexType
  210. species:
  211. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  212. name: Homo sapiens - Human
  213. schemaKey: SpeciesType
  214. wasGeneratedBy:
  215. - description: PLACEHOLDER
  216. identifier: '1296727703'
  217. name: '1296727703'
  218. schemaKey: Session
  219. startDate: '2023-09-13T22:38:16.385000Z'
  220. - description: Metadata generated by DANDI cli
  221. endDate: '2024-03-11T11:08:59.459082-07:00'
  222. id: urn:uuid:c35b8d52-b33f-4415-88ce-0c65287008e4
  223. name: Metadata generation
  224. schemaKey: Activity
  225. startDate: '2024-03-11T11:08:51.191940-07:00'
  226. wasAssociatedWith:
  227. - identifier: RRID:SCR_019009
  228. name: DANDI Command Line Interface
  229. schemaKey: Software
  230. url: https://github.com/dandi/dandi-cli
  231. version: 0.60.0
  232. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  233. access:
  234. - schemaKey: AccessRequirements
  235. status: dandi:OpenAccess
  236. approach:
  237. - name: electrophysiological approach
  238. schemaKey: ApproachType
  239. blobDateModified: '2024-03-11T10:58:19.846818-07:00'
  240. contentSize: 56657623
  241. contentUrl:
  242. - https://api.dandiarchive.org/api/assets/1d9009c3-ff95-4378-999e-ce813eace55c/download/
  243. - https://dandiarchive.s3.amazonaws.com/blobs/24a/9c2/24a9c2d8-c9b1-46f4-a4f2-e0eadee421d2
  244. dateModified: '2024-03-11T11:09:06.241595-07:00'
  245. digest:
  246. dandi:dandi-etag: 434288c922f555cc445b51e8c733a89c-1
  247. dandi:sha2-256: b92821426c2bdd11a5e411b83ce2697151fb1b246622fe0fc82d58ba3568df34
  248. encodingFormat: application/x-nwb
  249. id: dandiasset:1d9009c3-ff95-4378-999e-ce813eace55c
  250. identifier: 1d9009c3-ff95-4378-999e-ce813eace55c
  251. measurementTechnique:
  252. - name: analytical technique
  253. schemaKey: MeasurementTechniqueType
  254. - name: voltage clamp technique
  255. schemaKey: MeasurementTechniqueType
  256. - name: current clamp technique
  257. schemaKey: MeasurementTechniqueType
  258. path: sub-1295011705/sub-1295011705_ses-1296931992_icephys.nwb
  259. schemaKey: Asset
  260. schemaVersion: 0.6.6
  261. variableMeasured:
  262. - schemaKey: PropertyValue
  263. value: VoltageClampStimulusSeries
  264. - schemaKey: PropertyValue
  265. value: CurrentClampStimulusSeries
  266. - schemaKey: PropertyValue
  267. value: ProcessingModule
  268. - schemaKey: PropertyValue
  269. value: VoltageClampSeries
  270. - schemaKey: PropertyValue
  271. value: CurrentClampSeries
  272. wasAttributedTo:
  273. - age:
  274. schemaKey: PropertyValue
  275. unitText: ISO-8601 duration
  276. value: P10585.0D
  277. valueReference:
  278. schemaKey: PropertyValue
  279. value: dandi:BirthReference
  280. genotype: ''
  281. identifier: '1295011705'
  282. schemaKey: Participant
  283. sex:
  284. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  285. name: Male
  286. schemaKey: SexType
  287. species:
  288. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  289. name: Homo sapiens - Human
  290. schemaKey: SpeciesType
  291. wasGeneratedBy:
  292. - description: PLACEHOLDER
  293. identifier: '1296931992'
  294. name: '1296931992'
  295. schemaKey: Session
  296. startDate: '2023-09-14T23:15:25.817000Z'
  297. - description: Metadata generated by DANDI cli
  298. endDate: '2024-03-11T11:09:06.241574-07:00'
  299. id: urn:uuid:3bc17a40-b5e8-455a-a1a3-38939c502f6f
  300. name: Metadata generation
  301. schemaKey: Activity
  302. startDate: '2024-03-11T11:09:04.375351-07:00'
  303. wasAssociatedWith:
  304. - identifier: RRID:SCR_019009
  305. name: DANDI Command Line Interface
  306. schemaKey: Software
  307. url: https://github.com/dandi/dandi-cli
  308. version: 0.60.0
  309. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  310. access:
  311. - schemaKey: AccessRequirements
  312. status: dandi:OpenAccess
  313. approach:
  314. - name: electrophysiological approach
  315. schemaKey: ApproachType
  316. blobDateModified: '2024-03-11T10:56:26.365885-07:00'
  317. contentSize: 83359153
  318. contentUrl:
  319. - https://api.dandiarchive.org/api/assets/71562199-82ca-4ba8-b231-99a82703599e/download/
  320. - https://dandiarchive.s3.amazonaws.com/blobs/e9a/590/e9a590b4-079e-43fc-954d-099eb863be05
  321. dateModified: '2024-03-11T11:08:59.026770-07:00'
  322. digest:
  323. dandi:dandi-etag: 3c8517a4481fea85d80073284d00c4c6-2
  324. dandi:sha2-256: 61cedc3e3262db08eebe20ed7f95d4658805bfc4f30063dd28c0d243c2b6bb18
  325. encodingFormat: application/x-nwb
  326. id: dandiasset:71562199-82ca-4ba8-b231-99a82703599e
  327. identifier: 71562199-82ca-4ba8-b231-99a82703599e
  328. measurementTechnique:
  329. - name: analytical technique
  330. schemaKey: MeasurementTechniqueType
  331. - name: voltage clamp technique
  332. schemaKey: MeasurementTechniqueType
  333. - name: current clamp technique
  334. schemaKey: MeasurementTechniqueType
  335. path: sub-1295011705/sub-1295011705_ses-1296874712_icephys.nwb
  336. schemaKey: Asset
  337. schemaVersion: 0.6.6
  338. variableMeasured:
  339. - schemaKey: PropertyValue
  340. value: VoltageClampStimulusSeries
  341. - schemaKey: PropertyValue
  342. value: CurrentClampStimulusSeries
  343. - schemaKey: PropertyValue
  344. value: ProcessingModule
  345. - schemaKey: PropertyValue
  346. value: VoltageClampSeries
  347. - schemaKey: PropertyValue
  348. value: CurrentClampSeries
  349. wasAttributedTo:
  350. - age:
  351. schemaKey: PropertyValue
  352. unitText: ISO-8601 duration
  353. value: P10585.0D
  354. valueReference:
  355. schemaKey: PropertyValue
  356. value: dandi:BirthReference
  357. genotype: ''
  358. identifier: '1295011705'
  359. schemaKey: Participant
  360. sex:
  361. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  362. name: Male
  363. schemaKey: SexType
  364. species:
  365. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  366. name: Homo sapiens - Human
  367. schemaKey: SpeciesType
  368. wasGeneratedBy:
  369. - description: PLACEHOLDER
  370. identifier: '1296874712'
  371. name: '1296874712'
  372. schemaKey: Session
  373. startDate: '2023-09-14T18:27:22.258000Z'
  374. - description: Metadata generated by DANDI cli
  375. endDate: '2024-03-11T11:08:59.026757-07:00'
  376. id: urn:uuid:6729e55f-b51d-4a26-9d6d-8c9db9016f05
  377. name: Metadata generation
  378. schemaKey: Activity
  379. startDate: '2024-03-11T11:08:50.637964-07:00'
  380. wasAssociatedWith:
  381. - identifier: RRID:SCR_019009
  382. name: DANDI Command Line Interface
  383. schemaKey: Software
  384. url: https://github.com/dandi/dandi-cli
  385. version: 0.60.0
  386. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  387. access:
  388. - schemaKey: AccessRequirements
  389. status: dandi:OpenAccess
  390. approach:
  391. - name: electrophysiological approach
  392. schemaKey: ApproachType
  393. blobDateModified: '2024-03-11T10:57:13.262141-07:00'
  394. contentSize: 52495594
  395. contentUrl:
  396. - https://api.dandiarchive.org/api/assets/85809dec-40e5-4df1-a568-04a111e18a1d/download/
  397. - https://dandiarchive.s3.amazonaws.com/blobs/74d/07c/74d07cc8-606f-4cde-8e65-08533e852108
  398. dateModified: '2024-03-11T11:09:32.789055-07:00'
  399. digest:
  400. dandi:dandi-etag: bb28976608d29ec4f3f7174e92bc75c2-1
  401. dandi:sha2-256: b0496a1ab26f23919bfdac2d3bae116179dfb440118c552002c56f11a6adce12
  402. encodingFormat: application/x-nwb
  403. id: dandiasset:85809dec-40e5-4df1-a568-04a111e18a1d
  404. identifier: 85809dec-40e5-4df1-a568-04a111e18a1d
  405. measurementTechnique:
  406. - name: analytical technique
  407. schemaKey: MeasurementTechniqueType
  408. - name: voltage clamp technique
  409. schemaKey: MeasurementTechniqueType
  410. - name: current clamp technique
  411. schemaKey: MeasurementTechniqueType
  412. path: sub-1295011705/sub-1295011705_ses-1297083509_icephys.nwb
  413. schemaKey: Asset
  414. schemaVersion: 0.6.6
  415. variableMeasured:
  416. - schemaKey: PropertyValue
  417. value: VoltageClampStimulusSeries
  418. - schemaKey: PropertyValue
  419. value: CurrentClampStimulusSeries
  420. - schemaKey: PropertyValue
  421. value: ProcessingModule
  422. - schemaKey: PropertyValue
  423. value: VoltageClampSeries
  424. - schemaKey: PropertyValue
  425. value: CurrentClampSeries
  426. wasAttributedTo:
  427. - age:
  428. schemaKey: PropertyValue
  429. unitText: ISO-8601 duration
  430. value: P10585.0D
  431. valueReference:
  432. schemaKey: PropertyValue
  433. value: dandi:BirthReference
  434. genotype: ''
  435. identifier: '1295011705'
  436. schemaKey: Participant
  437. sex:
  438. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  439. name: Male
  440. schemaKey: SexType
  441. species:
  442. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  443. name: Homo sapiens - Human
  444. schemaKey: SpeciesType
  445. wasGeneratedBy:
  446. - description: PLACEHOLDER
  447. identifier: '1297083509'
  448. name: '1297083509'
  449. schemaKey: Session
  450. startDate: '2023-09-15T17:02:12Z'
  451. - description: Metadata generated by DANDI cli
  452. endDate: '2024-03-11T11:09:32.789037-07:00'
  453. id: urn:uuid:9400148e-2f5e-46fe-9e1a-21f1d90eb648
  454. name: Metadata generation
  455. schemaKey: Activity
  456. startDate: '2024-03-11T11:09:31.269458-07:00'
  457. wasAssociatedWith:
  458. - identifier: RRID:SCR_019009
  459. name: DANDI Command Line Interface
  460. schemaKey: Software
  461. url: https://github.com/dandi/dandi-cli
  462. version: 0.60.0
  463. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  464. access:
  465. - schemaKey: AccessRequirements
  466. status: dandi:OpenAccess
  467. approach:
  468. - name: electrophysiological approach
  469. schemaKey: ApproachType
  470. blobDateModified: '2024-03-11T10:56:55.117535-07:00'
  471. contentSize: 98265224
  472. contentUrl:
  473. - https://api.dandiarchive.org/api/assets/894a5018-ad53-4ca2-89ec-dcbdd8b3ca0e/download/
  474. - https://dandiarchive.s3.amazonaws.com/blobs/995/3f2/9953f223-9547-4148-be81-76ef1773c66e
  475. dateModified: '2024-03-11T11:09:00.206934-07:00'
  476. digest:
  477. dandi:dandi-etag: 3c38944f6b34a06b675b3f881d471225-2
  478. dandi:sha2-256: 4699ff127d57583e7e50a49da5d76872ef1e0427736aa8cd366b1e7fbc8f3a72
  479. encodingFormat: application/x-nwb
  480. id: dandiasset:894a5018-ad53-4ca2-89ec-dcbdd8b3ca0e
  481. identifier: 894a5018-ad53-4ca2-89ec-dcbdd8b3ca0e
  482. measurementTechnique:
  483. - name: analytical technique
  484. schemaKey: MeasurementTechniqueType
  485. - name: voltage clamp technique
  486. schemaKey: MeasurementTechniqueType
  487. - name: current clamp technique
  488. schemaKey: MeasurementTechniqueType
  489. path: sub-1295011705/sub-1295011705_ses-1296900023_icephys.nwb
  490. schemaKey: Asset
  491. schemaVersion: 0.6.6
  492. variableMeasured:
  493. - schemaKey: PropertyValue
  494. value: VoltageClampStimulusSeries
  495. - schemaKey: PropertyValue
  496. value: CurrentClampStimulusSeries
  497. - schemaKey: PropertyValue
  498. value: ProcessingModule
  499. - schemaKey: PropertyValue
  500. value: VoltageClampSeries
  501. - schemaKey: PropertyValue
  502. value: CurrentClampSeries
  503. wasAttributedTo:
  504. - age:
  505. schemaKey: PropertyValue
  506. unitText: ISO-8601 duration
  507. value: P10585.0D
  508. valueReference:
  509. schemaKey: PropertyValue
  510. value: dandi:BirthReference
  511. genotype: ''
  512. identifier: '1295011705'
  513. schemaKey: Participant
  514. sex:
  515. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  516. name: Male
  517. schemaKey: SexType
  518. species:
  519. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  520. name: Homo sapiens - Human
  521. schemaKey: SpeciesType
  522. wasGeneratedBy:
  523. - description: PLACEHOLDER
  524. identifier: '1296900023'
  525. name: '1296900023'
  526. schemaKey: Session
  527. startDate: '2023-09-14T19:33:34.441000Z'
  528. - description: Metadata generated by DANDI cli
  529. endDate: '2024-03-11T11:09:00.206919-07:00'
  530. id: urn:uuid:e43ee6cc-945d-4c35-94f8-e5b3abcd7bdc
  531. name: Metadata generation
  532. schemaKey: Activity
  533. startDate: '2024-03-11T11:08:55.619718-07:00'
  534. wasAssociatedWith:
  535. - identifier: RRID:SCR_019009
  536. name: DANDI Command Line Interface
  537. schemaKey: Software
  538. url: https://github.com/dandi/dandi-cli
  539. version: 0.60.0
  540. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  541. access:
  542. - schemaKey: AccessRequirements
  543. status: dandi:OpenAccess
  544. approach:
  545. - name: electrophysiological approach
  546. schemaKey: ApproachType
  547. blobDateModified: '2024-03-11T10:56:44.396662-07:00'
  548. contentSize: 51664522
  549. contentUrl:
  550. - https://api.dandiarchive.org/api/assets/a2d784ad-b910-46f6-bcc0-843e80744614/download/
  551. - https://dandiarchive.s3.amazonaws.com/blobs/0cf/c37/0cfc3768-9d7b-4a4b-a2c5-411df7771b05
  552. dateModified: '2024-03-11T11:09:51.612717-07:00'
  553. digest:
  554. dandi:dandi-etag: 4059aa50af0b5a3d51fc1e1aab8343c5-1
  555. dandi:sha2-256: 179760af4b6f23900f01e8427adc1b329980f1c1b5858117e3b254c0e13520ea
  556. encodingFormat: application/x-nwb
  557. id: dandiasset:a2d784ad-b910-46f6-bcc0-843e80744614
  558. identifier: a2d784ad-b910-46f6-bcc0-843e80744614
  559. measurementTechnique:
  560. - name: analytical technique
  561. schemaKey: MeasurementTechniqueType
  562. - name: voltage clamp technique
  563. schemaKey: MeasurementTechniqueType
  564. - name: current clamp technique
  565. schemaKey: MeasurementTechniqueType
  566. path: sub-1295011705/sub-1295011705_ses-1297154502_icephys.nwb
  567. schemaKey: Asset
  568. schemaVersion: 0.6.6
  569. variableMeasured:
  570. - schemaKey: PropertyValue
  571. value: VoltageClampStimulusSeries
  572. - schemaKey: PropertyValue
  573. value: CurrentClampStimulusSeries
  574. - schemaKey: PropertyValue
  575. value: ProcessingModule
  576. - schemaKey: PropertyValue
  577. value: VoltageClampSeries
  578. - schemaKey: PropertyValue
  579. value: CurrentClampSeries
  580. wasAttributedTo:
  581. - age:
  582. schemaKey: PropertyValue
  583. unitText: ISO-8601 duration
  584. value: P10585.0D
  585. valueReference:
  586. schemaKey: PropertyValue
  587. value: dandi:BirthReference
  588. genotype: ''
  589. identifier: '1295011705'
  590. schemaKey: Participant
  591. sex:
  592. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  593. name: Male
  594. schemaKey: SexType
  595. species:
  596. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  597. name: Homo sapiens - Human
  598. schemaKey: SpeciesType
  599. wasGeneratedBy:
  600. - description: PLACEHOLDER
  601. identifier: '1297154502'
  602. name: '1297154502'
  603. schemaKey: Session
  604. startDate: '2023-09-15T21:31:56.065000Z'
  605. - description: Metadata generated by DANDI cli
  606. endDate: '2024-03-11T11:09:51.612704-07:00'
  607. id: urn:uuid:02cefb04-c089-43d1-86c7-e5c941315f3b
  608. name: Metadata generation
  609. schemaKey: Activity
  610. startDate: '2024-03-11T11:09:46.236808-07:00'
  611. wasAssociatedWith:
  612. - identifier: RRID:SCR_019009
  613. name: DANDI Command Line Interface
  614. schemaKey: Software
  615. url: https://github.com/dandi/dandi-cli
  616. version: 0.60.0
  617. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  618. access:
  619. - schemaKey: AccessRequirements
  620. status: dandi:OpenAccess
  621. approach:
  622. - name: electrophysiological approach
  623. schemaKey: ApproachType
  624. blobDateModified: '2024-03-11T10:57:17.502514-07:00'
  625. contentSize: 43887708
  626. contentUrl:
  627. - https://api.dandiarchive.org/api/assets/68ddd3ca-8b67-4d57-ba49-9b1d70a363b5/download/
  628. - https://dandiarchive.s3.amazonaws.com/blobs/0ca/b15/0cab1578-d520-433a-9dac-acee68dfb0d9
  629. dateModified: '2024-03-11T11:09:53.678689-07:00'
  630. digest:
  631. dandi:dandi-etag: 32bf909d99fc5fdcfe96ee2760655d52-1
  632. dandi:sha2-256: 58a7edee8fd5670acb317b5fe2412a0a092227580477cb2112b064f9197fdc9b
  633. encodingFormat: application/x-nwb
  634. id: dandiasset:68ddd3ca-8b67-4d57-ba49-9b1d70a363b5
  635. identifier: 68ddd3ca-8b67-4d57-ba49-9b1d70a363b5
  636. measurementTechnique:
  637. - name: analytical technique
  638. schemaKey: MeasurementTechniqueType
  639. - name: voltage clamp technique
  640. schemaKey: MeasurementTechniqueType
  641. - name: current clamp technique
  642. schemaKey: MeasurementTechniqueType
  643. path: sub-1295011705/sub-1295011705_ses-1297162982_icephys.nwb
  644. schemaKey: Asset
  645. schemaVersion: 0.6.6
  646. variableMeasured:
  647. - schemaKey: PropertyValue
  648. value: VoltageClampStimulusSeries
  649. - schemaKey: PropertyValue
  650. value: CurrentClampStimulusSeries
  651. - schemaKey: PropertyValue
  652. value: ProcessingModule
  653. - schemaKey: PropertyValue
  654. value: VoltageClampSeries
  655. - schemaKey: PropertyValue
  656. value: CurrentClampSeries
  657. wasAttributedTo:
  658. - age:
  659. schemaKey: PropertyValue
  660. unitText: ISO-8601 duration
  661. value: P10585.0D
  662. valueReference:
  663. schemaKey: PropertyValue
  664. value: dandi:BirthReference
  665. genotype: ''
  666. identifier: '1295011705'
  667. schemaKey: Participant
  668. sex:
  669. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  670. name: Male
  671. schemaKey: SexType
  672. species:
  673. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  674. name: Homo sapiens - Human
  675. schemaKey: SpeciesType
  676. wasGeneratedBy:
  677. - description: PLACEHOLDER
  678. identifier: '1297162982'
  679. name: '1297162982'
  680. schemaKey: Session
  681. startDate: '2023-09-15T22:16:47.674000Z'
  682. - description: Metadata generated by DANDI cli
  683. endDate: '2024-03-11T11:09:53.678676-07:00'
  684. id: urn:uuid:b8d52c8f-d2f3-48f7-9ffd-59a1975dc126
  685. name: Metadata generation
  686. schemaKey: Activity
  687. startDate: '2024-03-11T11:09:48.696605-07:00'
  688. wasAssociatedWith:
  689. - identifier: RRID:SCR_019009
  690. name: DANDI Command Line Interface
  691. schemaKey: Software
  692. url: https://github.com/dandi/dandi-cli
  693. version: 0.60.0
  694. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  695. access:
  696. - schemaKey: AccessRequirements
  697. status: dandi:OpenAccess
  698. approach:
  699. - name: electrophysiological approach
  700. schemaKey: ApproachType
  701. blobDateModified: '2024-03-11T10:57:29.238811-07:00'
  702. contentSize: 67930273
  703. contentUrl:
  704. - https://api.dandiarchive.org/api/assets/c58afb1f-b837-4e8b-9ad1-1f16b6bc0fdb/download/
  705. - https://dandiarchive.s3.amazonaws.com/blobs/120/a27/120a27e8-f074-41fd-80be-513db971a0dc
  706. dateModified: '2024-03-11T11:09:51.479481-07:00'
  707. digest:
  708. dandi:dandi-etag: 01f1842a8ac2e3d14b496755c1574cc0-2
  709. dandi:sha2-256: 20cd2c154d50ebc09f27073db1f1d3837d87b0820b2d6941b90071874d00f798
  710. encodingFormat: application/x-nwb
  711. id: dandiasset:c58afb1f-b837-4e8b-9ad1-1f16b6bc0fdb
  712. identifier: c58afb1f-b837-4e8b-9ad1-1f16b6bc0fdb
  713. measurementTechnique:
  714. - name: analytical technique
  715. schemaKey: MeasurementTechniqueType
  716. - name: voltage clamp technique
  717. schemaKey: MeasurementTechniqueType
  718. - name: current clamp technique
  719. schemaKey: MeasurementTechniqueType
  720. path: sub-1295011705/sub-1295011705_ses-1297106824_icephys.nwb
  721. schemaKey: Asset
  722. schemaVersion: 0.6.6
  723. variableMeasured:
  724. - schemaKey: PropertyValue
  725. value: VoltageClampStimulusSeries
  726. - schemaKey: PropertyValue
  727. value: CurrentClampStimulusSeries
  728. - schemaKey: PropertyValue
  729. value: ProcessingModule
  730. - schemaKey: PropertyValue
  731. value: VoltageClampSeries
  732. - schemaKey: PropertyValue
  733. value: CurrentClampSeries
  734. wasAttributedTo:
  735. - age:
  736. schemaKey: PropertyValue
  737. unitText: ISO-8601 duration
  738. value: P10585.0D
  739. valueReference:
  740. schemaKey: PropertyValue
  741. value: dandi:BirthReference
  742. genotype: ''
  743. identifier: '1295011705'
  744. schemaKey: Participant
  745. sex:
  746. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  747. name: Male
  748. schemaKey: SexType
  749. species:
  750. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  751. name: Homo sapiens - Human
  752. schemaKey: SpeciesType
  753. wasGeneratedBy:
  754. - description: PLACEHOLDER
  755. identifier: '1297106824'
  756. name: '1297106824'
  757. schemaKey: Session
  758. startDate: '2023-09-15T18:31:16.535000Z'
  759. - description: Metadata generated by DANDI cli
  760. endDate: '2024-03-11T11:09:51.479465-07:00'
  761. id: urn:uuid:daf6bc12-5689-4e03-871c-1338ee72202a
  762. name: Metadata generation
  763. schemaKey: Activity
  764. startDate: '2024-03-11T11:09:39.074810-07:00'
  765. wasAssociatedWith:
  766. - identifier: RRID:SCR_019009
  767. name: DANDI Command Line Interface
  768. schemaKey: Software
  769. url: https://github.com/dandi/dandi-cli
  770. version: 0.60.0
  771. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  772. access:
  773. - schemaKey: AccessRequirements
  774. status: dandi:OpenAccess
  775. approach:
  776. - name: electrophysiological approach
  777. schemaKey: ApproachType
  778. blobDateModified: '2024-03-11T10:57:22.992762-07:00'
  779. contentSize: 59017757
  780. contentUrl:
  781. - https://api.dandiarchive.org/api/assets/a04c34ab-4981-42af-9520-90786837fdf8/download/
  782. - https://dandiarchive.s3.amazonaws.com/blobs/095/76f/09576f3b-3072-4a7e-a5dc-9832a6d28cb8
  783. dateModified: '2024-03-11T11:09:54.193652-07:00'
  784. digest:
  785. dandi:dandi-etag: 10ffea074a68c38c0ac8969f825f140e-1
  786. dandi:sha2-256: acb36b8e378c61307694936b79916573f28724f3af3ddaf9f12496e126e6ded9
  787. encodingFormat: application/x-nwb
  788. id: dandiasset:a04c34ab-4981-42af-9520-90786837fdf8
  789. identifier: a04c34ab-4981-42af-9520-90786837fdf8
  790. measurementTechnique:
  791. - name: analytical technique
  792. schemaKey: MeasurementTechniqueType
  793. - name: voltage clamp technique
  794. schemaKey: MeasurementTechniqueType
  795. - name: current clamp technique
  796. schemaKey: MeasurementTechniqueType
  797. path: sub-1295011705/sub-1295011705_ses-1297160609_icephys.nwb
  798. schemaKey: Asset
  799. schemaVersion: 0.6.6
  800. variableMeasured:
  801. - schemaKey: PropertyValue
  802. value: VoltageClampStimulusSeries
  803. - schemaKey: PropertyValue
  804. value: CurrentClampStimulusSeries
  805. - schemaKey: PropertyValue
  806. value: ProcessingModule
  807. - schemaKey: PropertyValue
  808. value: VoltageClampSeries
  809. - schemaKey: PropertyValue
  810. value: CurrentClampSeries
  811. wasAttributedTo:
  812. - age:
  813. schemaKey: PropertyValue
  814. unitText: ISO-8601 duration
  815. value: P10585.0D
  816. valueReference:
  817. schemaKey: PropertyValue
  818. value: dandi:BirthReference
  819. genotype: ''
  820. identifier: '1295011705'
  821. schemaKey: Participant
  822. sex:
  823. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  824. name: Male
  825. schemaKey: SexType
  826. species:
  827. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  828. name: Homo sapiens - Human
  829. schemaKey: SpeciesType
  830. wasGeneratedBy:
  831. - description: PLACEHOLDER
  832. identifier: '1297160609'
  833. name: '1297160609'
  834. schemaKey: Session
  835. startDate: '2023-09-15T21:44:38.466000Z'
  836. - description: Metadata generated by DANDI cli
  837. endDate: '2024-03-11T11:09:54.193636-07:00'
  838. id: urn:uuid:04549434-7b21-4a82-90de-62fd280b9238
  839. name: Metadata generation
  840. schemaKey: Activity
  841. startDate: '2024-03-11T11:09:51.521767-07:00'
  842. wasAssociatedWith:
  843. - identifier: RRID:SCR_019009
  844. name: DANDI Command Line Interface
  845. schemaKey: Software
  846. url: https://github.com/dandi/dandi-cli
  847. version: 0.60.0
  848. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  849. access:
  850. - schemaKey: AccessRequirements
  851. status: dandi:OpenAccess
  852. approach:
  853. - name: electrophysiological approach
  854. schemaKey: ApproachType
  855. blobDateModified: '2024-03-11T10:57:38.591185-07:00'
  856. contentSize: 96051674
  857. contentUrl:
  858. - https://api.dandiarchive.org/api/assets/cc3b9562-5545-4c90-8679-9d2d6b5850dc/download/
  859. - https://dandiarchive.s3.amazonaws.com/blobs/a5f/8b0/a5f8b0fc-8b82-4e0a-8547-f6aa3acedd8f
  860. dateModified: '2024-03-11T11:09:51.738428-07:00'
  861. digest:
  862. dandi:dandi-etag: 3dcebb28b9b918257975d164b590598e-2
  863. dandi:sha2-256: 6e9c2fbfb68f40cca83f130d88e3e3a940197cbedbb80db2c7d740670bfdc53f
  864. encodingFormat: application/x-nwb
  865. id: dandiasset:cc3b9562-5545-4c90-8679-9d2d6b5850dc
  866. identifier: cc3b9562-5545-4c90-8679-9d2d6b5850dc
  867. measurementTechnique:
  868. - name: analytical technique
  869. schemaKey: MeasurementTechniqueType
  870. - name: voltage clamp technique
  871. schemaKey: MeasurementTechniqueType
  872. - name: current clamp technique
  873. schemaKey: MeasurementTechniqueType
  874. path: sub-1295011705/sub-1295011705_ses-1297146806_icephys.nwb
  875. schemaKey: Asset
  876. schemaVersion: 0.6.6
  877. variableMeasured:
  878. - schemaKey: PropertyValue
  879. value: VoltageClampStimulusSeries
  880. - schemaKey: PropertyValue
  881. value: CurrentClampStimulusSeries
  882. - schemaKey: PropertyValue
  883. value: ProcessingModule
  884. - schemaKey: PropertyValue
  885. value: VoltageClampSeries
  886. - schemaKey: PropertyValue
  887. value: CurrentClampSeries
  888. wasAttributedTo:
  889. - age:
  890. schemaKey: PropertyValue
  891. unitText: ISO-8601 duration
  892. value: P10585.0D
  893. valueReference:
  894. schemaKey: PropertyValue
  895. value: dandi:BirthReference
  896. genotype: ''
  897. identifier: '1295011705'
  898. schemaKey: Participant
  899. sex:
  900. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  901. name: Male
  902. schemaKey: SexType
  903. species:
  904. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  905. name: Homo sapiens - Human
  906. schemaKey: SpeciesType
  907. wasGeneratedBy:
  908. - description: PLACEHOLDER
  909. identifier: '1297146806'
  910. name: '1297146806'
  911. schemaKey: Session
  912. startDate: '2023-09-15T21:09:45.918000Z'
  913. - description: Metadata generated by DANDI cli
  914. endDate: '2024-03-11T11:09:51.738415-07:00'
  915. id: urn:uuid:6998c5af-b8f7-41f4-b257-9bbb96f6db53
  916. name: Metadata generation
  917. schemaKey: Activity
  918. startDate: '2024-03-11T11:09:39.796379-07:00'
  919. wasAssociatedWith:
  920. - identifier: RRID:SCR_019009
  921. name: DANDI Command Line Interface
  922. schemaKey: Software
  923. url: https://github.com/dandi/dandi-cli
  924. version: 0.60.0
  925. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  926. access:
  927. - schemaKey: AccessRequirements
  928. status: dandi:OpenAccess
  929. approach:
  930. - name: electrophysiological approach
  931. schemaKey: ApproachType
  932. blobDateModified: '2024-03-11T10:56:13.301597-07:00'
  933. contentSize: 71885811
  934. contentUrl:
  935. - https://api.dandiarchive.org/api/assets/f246ed50-4acd-4e2b-b235-1bf03e6acce1/download/
  936. - https://dandiarchive.s3.amazonaws.com/blobs/164/91e/16491e54-9636-426e-bac8-04f66c1f4df3
  937. dateModified: '2024-03-11T11:10:10.114164-07:00'
  938. digest:
  939. dandi:dandi-etag: 750f7d28d7a8f356b1392840927a3dae-2
  940. dandi:sha2-256: da4d5c819ca7acc8b83d54fa912558cdc11f05c29bd5f66fdd2028be140eeef8
  941. encodingFormat: application/x-nwb
  942. id: dandiasset:f246ed50-4acd-4e2b-b235-1bf03e6acce1
  943. identifier: f246ed50-4acd-4e2b-b235-1bf03e6acce1
  944. measurementTechnique:
  945. - name: analytical technique
  946. schemaKey: MeasurementTechniqueType
  947. - name: voltage clamp technique
  948. schemaKey: MeasurementTechniqueType
  949. - name: current clamp technique
  950. schemaKey: MeasurementTechniqueType
  951. path: sub-1295011705/sub-1295011705_ses-1297174496_icephys.nwb
  952. schemaKey: Asset
  953. schemaVersion: 0.6.6
  954. variableMeasured:
  955. - schemaKey: PropertyValue
  956. value: VoltageClampStimulusSeries
  957. - schemaKey: PropertyValue
  958. value: CurrentClampStimulusSeries
  959. - schemaKey: PropertyValue
  960. value: ProcessingModule
  961. - schemaKey: PropertyValue
  962. value: VoltageClampSeries
  963. - schemaKey: PropertyValue
  964. value: CurrentClampSeries
  965. wasAttributedTo:
  966. - age:
  967. schemaKey: PropertyValue
  968. unitText: ISO-8601 duration
  969. value: P10585.0D
  970. valueReference:
  971. schemaKey: PropertyValue
  972. value: dandi:BirthReference
  973. genotype: ''
  974. identifier: '1295011705'
  975. schemaKey: Participant
  976. sex:
  977. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  978. name: Male
  979. schemaKey: SexType
  980. species:
  981. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  982. name: Homo sapiens - Human
  983. schemaKey: SpeciesType
  984. wasGeneratedBy:
  985. - description: PLACEHOLDER
  986. identifier: '1297174496'
  987. name: '1297174496'
  988. schemaKey: Session
  989. startDate: '2023-09-15T23:10:31.275000Z'
  990. - description: Metadata generated by DANDI cli
  991. endDate: '2024-03-11T11:10:10.114150-07:00'
  992. id: urn:uuid:dcf222d5-4cf2-4e4b-9d28-170fbebef91d
  993. name: Metadata generation
  994. schemaKey: Activity
  995. startDate: '2024-03-11T11:10:08.635613-07:00'
  996. wasAssociatedWith:
  997. - identifier: RRID:SCR_019009
  998. name: DANDI Command Line Interface
  999. schemaKey: Software
  1000. url: https://github.com/dandi/dandi-cli
  1001. version: 0.60.0
  1002. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1003. access:
  1004. - schemaKey: AccessRequirements
  1005. status: dandi:OpenAccess
  1006. approach:
  1007. - name: electrophysiological approach
  1008. schemaKey: ApproachType
  1009. blobDateModified: '2024-03-11T10:57:07.835334-07:00'
  1010. contentSize: 75934277
  1011. contentUrl:
  1012. - https://api.dandiarchive.org/api/assets/ef09d734-d0c3-4a5e-b0b5-342fcf6c1e9b/download/
  1013. - https://dandiarchive.s3.amazonaws.com/blobs/a65/26c/a6526c17-f664-4448-b337-591696966a93
  1014. dateModified: '2024-03-11T11:10:28.248021-07:00'
  1015. digest:
  1016. dandi:dandi-etag: 6cc569feb92c3adc45583aaf9794e61a-2
  1017. dandi:sha2-256: 09dabed773dfe41966e59d2262b4a16167e3e0959a98b9b1722a908d323e5c07
  1018. encodingFormat: application/x-nwb
  1019. id: dandiasset:ef09d734-d0c3-4a5e-b0b5-342fcf6c1e9b
  1020. identifier: ef09d734-d0c3-4a5e-b0b5-342fcf6c1e9b
  1021. measurementTechnique:
  1022. - name: analytical technique
  1023. schemaKey: MeasurementTechniqueType
  1024. - name: voltage clamp technique
  1025. schemaKey: MeasurementTechniqueType
  1026. - name: current clamp technique
  1027. schemaKey: MeasurementTechniqueType
  1028. path: sub-1295011705/sub-1295011705_ses-1298063931_icephys.nwb
  1029. schemaKey: Asset
  1030. schemaVersion: 0.6.6
  1031. variableMeasured:
  1032. - schemaKey: PropertyValue
  1033. value: VoltageClampStimulusSeries
  1034. - schemaKey: PropertyValue
  1035. value: CurrentClampStimulusSeries
  1036. - schemaKey: PropertyValue
  1037. value: ProcessingModule
  1038. - schemaKey: PropertyValue
  1039. value: VoltageClampSeries
  1040. - schemaKey: PropertyValue
  1041. value: CurrentClampSeries
  1042. wasAttributedTo:
  1043. - age:
  1044. schemaKey: PropertyValue
  1045. unitText: ISO-8601 duration
  1046. value: P10585.0D
  1047. valueReference:
  1048. schemaKey: PropertyValue
  1049. value: dandi:BirthReference
  1050. genotype: ''
  1051. identifier: '1295011705'
  1052. schemaKey: Participant
  1053. sex:
  1054. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1055. name: Male
  1056. schemaKey: SexType
  1057. species:
  1058. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1059. name: Homo sapiens - Human
  1060. schemaKey: SpeciesType
  1061. wasGeneratedBy:
  1062. - description: PLACEHOLDER
  1063. identifier: '1298063931'
  1064. name: '1298063931'
  1065. schemaKey: Session
  1066. startDate: '2023-09-19T21:19:05.862000Z'
  1067. - description: Metadata generated by DANDI cli
  1068. endDate: '2024-03-11T11:10:28.247980-07:00'
  1069. id: urn:uuid:6cdcb2c9-c937-4d60-930a-fc203d184ce3
  1070. name: Metadata generation
  1071. schemaKey: Activity
  1072. startDate: '2024-03-11T11:10:21.917445-07:00'
  1073. wasAssociatedWith:
  1074. - identifier: RRID:SCR_019009
  1075. name: DANDI Command Line Interface
  1076. schemaKey: Software
  1077. url: https://github.com/dandi/dandi-cli
  1078. version: 0.60.0
  1079. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1080. access:
  1081. - schemaKey: AccessRequirements
  1082. status: dandi:OpenAccess
  1083. approach:
  1084. - name: electrophysiological approach
  1085. schemaKey: ApproachType
  1086. blobDateModified: '2024-03-11T10:58:04.001274-07:00'
  1087. contentSize: 61535048
  1088. contentUrl:
  1089. - https://api.dandiarchive.org/api/assets/4c8721e8-d8dd-4842-9362-10450226de0f/download/
  1090. - https://dandiarchive.s3.amazonaws.com/blobs/0b2/134/0b21341a-ee4b-4668-9851-1ee13ab53209
  1091. dateModified: '2024-03-11T11:10:32.410158-07:00'
  1092. digest:
  1093. dandi:dandi-etag: 4c0367f65d871fdc61d80a5fa60e7ec1-1
  1094. dandi:sha2-256: b0d5441405da738ec4e43729c16d258baf71a22f94e5731c052a45b1115f03ce
  1095. encodingFormat: application/x-nwb
  1096. id: dandiasset:4c8721e8-d8dd-4842-9362-10450226de0f
  1097. identifier: 4c8721e8-d8dd-4842-9362-10450226de0f
  1098. measurementTechnique:
  1099. - name: analytical technique
  1100. schemaKey: MeasurementTechniqueType
  1101. - name: voltage clamp technique
  1102. schemaKey: MeasurementTechniqueType
  1103. - name: current clamp technique
  1104. schemaKey: MeasurementTechniqueType
  1105. path: sub-1295011705/sub-1295011705_ses-1298081966_icephys.nwb
  1106. schemaKey: Asset
  1107. schemaVersion: 0.6.6
  1108. variableMeasured:
  1109. - schemaKey: PropertyValue
  1110. value: VoltageClampStimulusSeries
  1111. - schemaKey: PropertyValue
  1112. value: CurrentClampStimulusSeries
  1113. - schemaKey: PropertyValue
  1114. value: ProcessingModule
  1115. - schemaKey: PropertyValue
  1116. value: VoltageClampSeries
  1117. - schemaKey: PropertyValue
  1118. value: CurrentClampSeries
  1119. wasAttributedTo:
  1120. - age:
  1121. schemaKey: PropertyValue
  1122. unitText: ISO-8601 duration
  1123. value: P10585.0D
  1124. valueReference:
  1125. schemaKey: PropertyValue
  1126. value: dandi:BirthReference
  1127. genotype: ''
  1128. identifier: '1295011705'
  1129. schemaKey: Participant
  1130. sex:
  1131. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1132. name: Male
  1133. schemaKey: SexType
  1134. species:
  1135. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1136. name: Homo sapiens - Human
  1137. schemaKey: SpeciesType
  1138. wasGeneratedBy:
  1139. - description: PLACEHOLDER
  1140. identifier: '1298081966'
  1141. name: '1298081966'
  1142. schemaKey: Session
  1143. startDate: '2023-09-19T21:51:16.981000Z'
  1144. - description: Metadata generated by DANDI cli
  1145. endDate: '2024-03-11T11:10:32.410141-07:00'
  1146. id: urn:uuid:12cff019-e2f3-4975-a33d-69d275d1e305
  1147. name: Metadata generation
  1148. schemaKey: Activity
  1149. startDate: '2024-03-11T11:10:25.784600-07:00'
  1150. wasAssociatedWith:
  1151. - identifier: RRID:SCR_019009
  1152. name: DANDI Command Line Interface
  1153. schemaKey: Software
  1154. url: https://github.com/dandi/dandi-cli
  1155. version: 0.60.0
  1156. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1157. access:
  1158. - schemaKey: AccessRequirements
  1159. status: dandi:OpenAccess
  1160. approach:
  1161. - name: electrophysiological approach
  1162. schemaKey: ApproachType
  1163. blobDateModified: '2024-03-11T10:56:31.256995-07:00'
  1164. contentSize: 45787121
  1165. contentUrl:
  1166. - https://api.dandiarchive.org/api/assets/bf094be1-38dc-4b4c-989f-22933ab6a8a4/download/
  1167. - https://dandiarchive.s3.amazonaws.com/blobs/9fd/56b/9fd56b35-a108-4807-bf8a-da8a8f65bc9e
  1168. dateModified: '2024-03-11T11:10:29.689879-07:00'
  1169. digest:
  1170. dandi:dandi-etag: c1c8accd3e5ff19255008eeeb73dc4cf-1
  1171. dandi:sha2-256: 40c5f6c6f553abcdf73a2822633bc4d457c5570c76cf13663f3e31949eefa85d
  1172. encodingFormat: application/x-nwb
  1173. id: dandiasset:bf094be1-38dc-4b4c-989f-22933ab6a8a4
  1174. identifier: bf094be1-38dc-4b4c-989f-22933ab6a8a4
  1175. measurementTechnique:
  1176. - name: analytical technique
  1177. schemaKey: MeasurementTechniqueType
  1178. - name: voltage clamp technique
  1179. schemaKey: MeasurementTechniqueType
  1180. - name: current clamp technique
  1181. schemaKey: MeasurementTechniqueType
  1182. path: sub-1295011705/sub-1295011705_ses-1298034217_icephys.nwb
  1183. schemaKey: Asset
  1184. schemaVersion: 0.6.6
  1185. variableMeasured:
  1186. - schemaKey: PropertyValue
  1187. value: VoltageClampStimulusSeries
  1188. - schemaKey: PropertyValue
  1189. value: CurrentClampStimulusSeries
  1190. - schemaKey: PropertyValue
  1191. value: ProcessingModule
  1192. - schemaKey: PropertyValue
  1193. value: VoltageClampSeries
  1194. - schemaKey: PropertyValue
  1195. value: CurrentClampSeries
  1196. wasAttributedTo:
  1197. - age:
  1198. schemaKey: PropertyValue
  1199. unitText: ISO-8601 duration
  1200. value: P10585.0D
  1201. valueReference:
  1202. schemaKey: PropertyValue
  1203. value: dandi:BirthReference
  1204. genotype: ''
  1205. identifier: '1295011705'
  1206. schemaKey: Participant
  1207. sex:
  1208. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1209. name: Male
  1210. schemaKey: SexType
  1211. species:
  1212. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1213. name: Homo sapiens - Human
  1214. schemaKey: SpeciesType
  1215. wasGeneratedBy:
  1216. - description: PLACEHOLDER
  1217. identifier: '1298034217'
  1218. name: '1298034217'
  1219. schemaKey: Session
  1220. startDate: '2023-09-19T19:41:22.176000Z'
  1221. - description: Metadata generated by DANDI cli
  1222. endDate: '2024-03-11T11:10:29.689863-07:00'
  1223. id: urn:uuid:5c327af1-1263-497d-83f9-6b3ca78159ff
  1224. name: Metadata generation
  1225. schemaKey: Activity
  1226. startDate: '2024-03-11T11:10:19.791008-07:00'
  1227. wasAssociatedWith:
  1228. - identifier: RRID:SCR_019009
  1229. name: DANDI Command Line Interface
  1230. schemaKey: Software
  1231. url: https://github.com/dandi/dandi-cli
  1232. version: 0.60.0
  1233. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1234. access:
  1235. - schemaKey: AccessRequirements
  1236. status: dandi:OpenAccess
  1237. approach:
  1238. - name: electrophysiological approach
  1239. schemaKey: ApproachType
  1240. blobDateModified: '2024-03-11T10:57:48.334278-07:00'
  1241. contentSize: 92981776
  1242. contentUrl:
  1243. - https://api.dandiarchive.org/api/assets/d2c1a674-ad7d-4b4d-aba8-c029c7128b21/download/
  1244. - https://dandiarchive.s3.amazonaws.com/blobs/e98/d10/e98d10ce-b41e-4fc0-bb8f-b3dd0d596932
  1245. dateModified: '2024-03-11T11:10:35.593340-07:00'
  1246. digest:
  1247. dandi:dandi-etag: 041dd0c3d4fb510a21bb81819df59445-2
  1248. dandi:sha2-256: 41dbf30457f7e518a5f3dc22eba0f3d58e90e912a41d1d534a0ed62347a88512
  1249. encodingFormat: application/x-nwb
  1250. id: dandiasset:d2c1a674-ad7d-4b4d-aba8-c029c7128b21
  1251. identifier: d2c1a674-ad7d-4b4d-aba8-c029c7128b21
  1252. measurementTechnique:
  1253. - name: analytical technique
  1254. schemaKey: MeasurementTechniqueType
  1255. - name: voltage clamp technique
  1256. schemaKey: MeasurementTechniqueType
  1257. - name: current clamp technique
  1258. schemaKey: MeasurementTechniqueType
  1259. path: sub-1295011705/sub-1295011705_ses-1298087442_icephys.nwb
  1260. schemaKey: Asset
  1261. schemaVersion: 0.6.6
  1262. variableMeasured:
  1263. - schemaKey: PropertyValue
  1264. value: VoltageClampStimulusSeries
  1265. - schemaKey: PropertyValue
  1266. value: CurrentClampStimulusSeries
  1267. - schemaKey: PropertyValue
  1268. value: ProcessingModule
  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: P10585.0D
  1278. valueReference:
  1279. schemaKey: PropertyValue
  1280. value: dandi:BirthReference
  1281. genotype: ''
  1282. identifier: '1295011705'
  1283. schemaKey: Participant
  1284. sex:
  1285. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1286. name: Male
  1287. schemaKey: SexType
  1288. species:
  1289. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1290. name: Homo sapiens - Human
  1291. schemaKey: SpeciesType
  1292. wasGeneratedBy:
  1293. - description: PLACEHOLDER
  1294. identifier: '1298087442'
  1295. name: '1298087442'
  1296. schemaKey: Session
  1297. startDate: '2023-09-19T23:00:15.057000Z'
  1298. - description: Metadata generated by DANDI cli
  1299. endDate: '2024-03-11T11:10:35.593318-07:00'
  1300. id: urn:uuid:4b5a7ba8-6bec-4ffb-bb7b-20420c856045
  1301. name: Metadata generation
  1302. schemaKey: Activity
  1303. startDate: '2024-03-11T11:10:33.576684-07:00'
  1304. wasAssociatedWith:
  1305. - identifier: RRID:SCR_019009
  1306. name: DANDI Command Line Interface
  1307. schemaKey: Software
  1308. url: https://github.com/dandi/dandi-cli
  1309. version: 0.60.0
  1310. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1311. access:
  1312. - schemaKey: AccessRequirements
  1313. status: dandi:OpenAccess
  1314. approach:
  1315. - name: electrophysiological approach
  1316. schemaKey: ApproachType
  1317. blobDateModified: '2024-03-11T10:56:38.395777-07:00'
  1318. contentSize: 68414660
  1319. contentUrl:
  1320. - https://api.dandiarchive.org/api/assets/01a19964-ee21-41a9-b172-531b0f756f1c/download/
  1321. - https://dandiarchive.s3.amazonaws.com/blobs/2ad/6ab/2ad6ab42-4830-4bc6-a9c1-a51d8cc57b8e
  1322. dateModified: '2024-03-11T11:10:33.509974-07:00'
  1323. digest:
  1324. dandi:dandi-etag: 7719e916d39486a12a75a0249710f5f0-2
  1325. dandi:sha2-256: 97deb24e0c1e366eace72dc1a990a147a42557942172fb1cfdc32c1c30211c15
  1326. encodingFormat: application/x-nwb
  1327. id: dandiasset:01a19964-ee21-41a9-b172-531b0f756f1c
  1328. identifier: 01a19964-ee21-41a9-b172-531b0f756f1c
  1329. measurementTechnique:
  1330. - name: analytical technique
  1331. schemaKey: MeasurementTechniqueType
  1332. - name: voltage clamp technique
  1333. schemaKey: MeasurementTechniqueType
  1334. - name: current clamp technique
  1335. schemaKey: MeasurementTechniqueType
  1336. path: sub-1295011705/sub-1295011705_ses-1298065117_icephys.nwb
  1337. schemaKey: Asset
  1338. schemaVersion: 0.6.6
  1339. variableMeasured:
  1340. - schemaKey: PropertyValue
  1341. value: VoltageClampStimulusSeries
  1342. - schemaKey: PropertyValue
  1343. value: CurrentClampStimulusSeries
  1344. - schemaKey: PropertyValue
  1345. value: ProcessingModule
  1346. - schemaKey: PropertyValue
  1347. value: VoltageClampSeries
  1348. - schemaKey: PropertyValue
  1349. value: CurrentClampSeries
  1350. wasAttributedTo:
  1351. - age:
  1352. schemaKey: PropertyValue
  1353. unitText: ISO-8601 duration
  1354. value: P10585.0D
  1355. valueReference:
  1356. schemaKey: PropertyValue
  1357. value: dandi:BirthReference
  1358. genotype: ''
  1359. identifier: '1295011705'
  1360. schemaKey: Participant
  1361. sex:
  1362. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1363. name: Male
  1364. schemaKey: SexType
  1365. species:
  1366. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1367. name: Homo sapiens - Human
  1368. schemaKey: SpeciesType
  1369. wasGeneratedBy:
  1370. - description: PLACEHOLDER
  1371. identifier: '1298065117'
  1372. name: '1298065117'
  1373. schemaKey: Session
  1374. startDate: '2023-09-19T20:16:57.553000Z'
  1375. - description: Metadata generated by DANDI cli
  1376. endDate: '2024-03-11T11:10:33.509960-07:00'
  1377. id: urn:uuid:9c83e6ba-8aa7-4fb2-8519-1361fcc96f64
  1378. name: Metadata generation
  1379. schemaKey: Activity
  1380. startDate: '2024-03-11T11:10:26.497982-07:00'
  1381. wasAssociatedWith:
  1382. - identifier: RRID:SCR_019009
  1383. name: DANDI Command Line Interface
  1384. schemaKey: Software
  1385. url: https://github.com/dandi/dandi-cli
  1386. version: 0.60.0
  1387. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1388. access:
  1389. - schemaKey: AccessRequirements
  1390. status: dandi:OpenAccess
  1391. approach:
  1392. - name: electrophysiological approach
  1393. schemaKey: ApproachType
  1394. blobDateModified: '2024-03-11T10:58:14.420980-07:00'
  1395. contentSize: 52416265
  1396. contentUrl:
  1397. - https://api.dandiarchive.org/api/assets/5e9037df-6c4c-4312-80e5-89cfcf45503a/download/
  1398. - https://dandiarchive.s3.amazonaws.com/blobs/194/f38/194f38f2-0c3f-469e-8b98-147cbc176e37
  1399. dateModified: '2024-03-11T11:10:44.396960-07:00'
  1400. digest:
  1401. dandi:dandi-etag: 9550665fe17c010bb19b61243e09d67f-1
  1402. dandi:sha2-256: 9b89c23287857c48226fc241a5907dbe3808b02815cbfd0030c980d90692807b
  1403. encodingFormat: application/x-nwb
  1404. id: dandiasset:5e9037df-6c4c-4312-80e5-89cfcf45503a
  1405. identifier: 5e9037df-6c4c-4312-80e5-89cfcf45503a
  1406. measurementTechnique:
  1407. - name: analytical technique
  1408. schemaKey: MeasurementTechniqueType
  1409. - name: voltage clamp technique
  1410. schemaKey: MeasurementTechniqueType
  1411. - name: current clamp technique
  1412. schemaKey: MeasurementTechniqueType
  1413. path: sub-1295011705/sub-1295011705_ses-1298257785_icephys.nwb
  1414. schemaKey: Asset
  1415. schemaVersion: 0.6.6
  1416. variableMeasured:
  1417. - schemaKey: PropertyValue
  1418. value: VoltageClampStimulusSeries
  1419. - schemaKey: PropertyValue
  1420. value: CurrentClampStimulusSeries
  1421. - schemaKey: PropertyValue
  1422. value: ProcessingModule
  1423. - schemaKey: PropertyValue
  1424. value: VoltageClampSeries
  1425. - schemaKey: PropertyValue
  1426. value: CurrentClampSeries
  1427. wasAttributedTo:
  1428. - age:
  1429. schemaKey: PropertyValue
  1430. unitText: ISO-8601 duration
  1431. value: P10585.0D
  1432. valueReference:
  1433. schemaKey: PropertyValue
  1434. value: dandi:BirthReference
  1435. genotype: ''
  1436. identifier: '1295011705'
  1437. schemaKey: Participant
  1438. sex:
  1439. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1440. name: Male
  1441. schemaKey: SexType
  1442. species:
  1443. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1444. name: Homo sapiens - Human
  1445. schemaKey: SpeciesType
  1446. wasGeneratedBy:
  1447. - description: PLACEHOLDER
  1448. identifier: '1298257785'
  1449. name: '1298257785'
  1450. schemaKey: Session
  1451. startDate: '2023-09-20T19:02:44.856000Z'
  1452. - description: Metadata generated by DANDI cli
  1453. endDate: '2024-03-11T11:10:44.396947-07:00'
  1454. id: urn:uuid:19bca920-2807-4577-9cbb-9be66393c3bf
  1455. name: Metadata generation
  1456. schemaKey: Activity
  1457. startDate: '2024-03-11T11:10:42.409325-07:00'
  1458. wasAssociatedWith:
  1459. - identifier: RRID:SCR_019009
  1460. name: DANDI Command Line Interface
  1461. schemaKey: Software
  1462. url: https://github.com/dandi/dandi-cli
  1463. version: 0.60.0
  1464. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1465. access:
  1466. - schemaKey: AccessRequirements
  1467. status: dandi:OpenAccess
  1468. approach:
  1469. - name: electrophysiological approach
  1470. schemaKey: ApproachType
  1471. blobDateModified: '2024-03-11T10:57:52.073110-07:00'
  1472. contentSize: 41752832
  1473. contentUrl:
  1474. - https://api.dandiarchive.org/api/assets/65a30190-7e3a-4dcc-ac08-5d3c0d5720da/download/
  1475. - https://dandiarchive.s3.amazonaws.com/blobs/17d/740/17d74085-5baf-4693-b064-6a33ec3fabf5
  1476. dateModified: '2024-03-11T11:11:02.645906-07:00'
  1477. digest:
  1478. dandi:dandi-etag: bbccfe3337f808bbdcd7b781836896ec-1
  1479. dandi:sha2-256: 0419e520d25ed03f482f0ef18178b2de626df508441db3c6c411962ffeb2ee0d
  1480. encodingFormat: application/x-nwb
  1481. id: dandiasset:65a30190-7e3a-4dcc-ac08-5d3c0d5720da
  1482. identifier: 65a30190-7e3a-4dcc-ac08-5d3c0d5720da
  1483. measurementTechnique:
  1484. - name: analytical technique
  1485. schemaKey: MeasurementTechniqueType
  1486. - name: voltage clamp technique
  1487. schemaKey: MeasurementTechniqueType
  1488. - name: current clamp technique
  1489. schemaKey: MeasurementTechniqueType
  1490. path: sub-1295011705/sub-1295011705_ses-1298530094_icephys.nwb
  1491. schemaKey: Asset
  1492. schemaVersion: 0.6.6
  1493. variableMeasured:
  1494. - schemaKey: PropertyValue
  1495. value: VoltageClampStimulusSeries
  1496. - schemaKey: PropertyValue
  1497. value: CurrentClampStimulusSeries
  1498. - schemaKey: PropertyValue
  1499. value: ProcessingModule
  1500. - schemaKey: PropertyValue
  1501. value: VoltageClampSeries
  1502. - schemaKey: PropertyValue
  1503. value: CurrentClampSeries
  1504. wasAttributedTo:
  1505. - age:
  1506. schemaKey: PropertyValue
  1507. unitText: ISO-8601 duration
  1508. value: P10585.0D
  1509. valueReference:
  1510. schemaKey: PropertyValue
  1511. value: dandi:BirthReference
  1512. genotype: ''
  1513. identifier: '1295011705'
  1514. schemaKey: Participant
  1515. sex:
  1516. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1517. name: Male
  1518. schemaKey: SexType
  1519. species:
  1520. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1521. name: Homo sapiens - Human
  1522. schemaKey: SpeciesType
  1523. wasGeneratedBy:
  1524. - description: PLACEHOLDER
  1525. identifier: '1298530094'
  1526. name: '1298530094'
  1527. schemaKey: Session
  1528. startDate: '2023-09-21T22:52:04.035000Z'
  1529. - description: Metadata generated by DANDI cli
  1530. endDate: '2024-03-11T11:11:02.645892-07:00'
  1531. id: urn:uuid:df0f5630-162a-42ca-b4d9-f718871e78bc
  1532. name: Metadata generation
  1533. schemaKey: Activity
  1534. startDate: '2024-03-11T11:11:01.254023-07:00'
  1535. wasAssociatedWith:
  1536. - identifier: RRID:SCR_019009
  1537. name: DANDI Command Line Interface
  1538. schemaKey: Software
  1539. url: https://github.com/dandi/dandi-cli
  1540. version: 0.60.0
  1541. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1542. access:
  1543. - schemaKey: AccessRequirements
  1544. status: dandi:OpenAccess
  1545. approach:
  1546. - name: electrophysiological approach
  1547. schemaKey: ApproachType
  1548. blobDateModified: '2024-03-11T10:58:09.365066-07:00'
  1549. contentSize: 53886773
  1550. contentUrl:
  1551. - https://api.dandiarchive.org/api/assets/eac16ea5-9b0a-4301-ac2e-20f839a4c1d8/download/
  1552. - https://dandiarchive.s3.amazonaws.com/blobs/883/49c/88349ccb-6b2b-4aec-aee2-949ba9905703
  1553. dateModified: '2024-03-11T11:10:58.089302-07:00'
  1554. digest:
  1555. dandi:dandi-etag: 7cf727be951d9709b1efd6d4df8b3c39-1
  1556. dandi:sha2-256: 95ee2b4295c0201db61d4a1fd91a3ea6da7f9d3028fee6e190a6910fee99577b
  1557. encodingFormat: application/x-nwb
  1558. id: dandiasset:eac16ea5-9b0a-4301-ac2e-20f839a4c1d8
  1559. identifier: eac16ea5-9b0a-4301-ac2e-20f839a4c1d8
  1560. measurementTechnique:
  1561. - name: analytical technique
  1562. schemaKey: MeasurementTechniqueType
  1563. - name: voltage clamp technique
  1564. schemaKey: MeasurementTechniqueType
  1565. - name: current clamp technique
  1566. schemaKey: MeasurementTechniqueType
  1567. path: sub-1295011705/sub-1295011705_ses-1298320190_icephys.nwb
  1568. schemaKey: Asset
  1569. schemaVersion: 0.6.6
  1570. variableMeasured:
  1571. - schemaKey: PropertyValue
  1572. value: VoltageClampStimulusSeries
  1573. - schemaKey: PropertyValue
  1574. value: CurrentClampStimulusSeries
  1575. - schemaKey: PropertyValue
  1576. value: ProcessingModule
  1577. - schemaKey: PropertyValue
  1578. value: VoltageClampSeries
  1579. - schemaKey: PropertyValue
  1580. value: CurrentClampSeries
  1581. wasAttributedTo:
  1582. - age:
  1583. schemaKey: PropertyValue
  1584. unitText: ISO-8601 duration
  1585. value: P10585.0D
  1586. valueReference:
  1587. schemaKey: PropertyValue
  1588. value: dandi:BirthReference
  1589. genotype: ''
  1590. identifier: '1295011705'
  1591. schemaKey: Participant
  1592. sex:
  1593. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1594. name: Male
  1595. schemaKey: SexType
  1596. species:
  1597. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1598. name: Homo sapiens - Human
  1599. schemaKey: SpeciesType
  1600. wasGeneratedBy:
  1601. - description: PLACEHOLDER
  1602. identifier: '1298320190'
  1603. name: '1298320190'
  1604. schemaKey: Session
  1605. startDate: '2023-09-20T23:47:29.393000Z'
  1606. - description: Metadata generated by DANDI cli
  1607. endDate: '2024-03-11T11:10:58.089288-07:00'
  1608. id: urn:uuid:b2ed382a-c821-46d5-b65a-a313b2f3041b
  1609. name: Metadata generation
  1610. schemaKey: Activity
  1611. startDate: '2024-03-11T11:10:56.197574-07:00'
  1612. wasAssociatedWith:
  1613. - identifier: RRID:SCR_019009
  1614. name: DANDI Command Line Interface
  1615. schemaKey: Software
  1616. url: https://github.com/dandi/dandi-cli
  1617. version: 0.60.0
  1618. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1619. access:
  1620. - schemaKey: AccessRequirements
  1621. status: dandi:OpenAccess
  1622. approach:
  1623. - name: electrophysiological approach
  1624. schemaKey: ApproachType
  1625. blobDateModified: '2024-03-11T10:58:33.433522-07:00'
  1626. contentSize: 49437821
  1627. contentUrl:
  1628. - https://api.dandiarchive.org/api/assets/84be4a63-6087-4899-b08f-8ee520921980/download/
  1629. - https://dandiarchive.s3.amazonaws.com/blobs/bdc/154/bdc154e6-a6b8-40fc-b03c-4261f56463c3
  1630. dateModified: '2024-03-11T11:11:14.965002-07:00'
  1631. digest:
  1632. dandi:dandi-etag: 6414ad055cc85d9c4689c7ff120ca200-1
  1633. dandi:sha2-256: 04a4a5228962c5bda3c411c4a537ef777398d592a3596c4741c451ab027795f6
  1634. encodingFormat: application/x-nwb
  1635. id: dandiasset:84be4a63-6087-4899-b08f-8ee520921980
  1636. identifier: 84be4a63-6087-4899-b08f-8ee520921980
  1637. measurementTechnique:
  1638. - name: analytical technique
  1639. schemaKey: MeasurementTechniqueType
  1640. - name: voltage clamp technique
  1641. schemaKey: MeasurementTechniqueType
  1642. - name: current clamp technique
  1643. schemaKey: MeasurementTechniqueType
  1644. path: sub-1303030608/sub-1303030608_ses-1303080158_icephys.nwb
  1645. schemaKey: Asset
  1646. schemaVersion: 0.6.6
  1647. variableMeasured:
  1648. - schemaKey: PropertyValue
  1649. value: VoltageClampStimulusSeries
  1650. - schemaKey: PropertyValue
  1651. value: CurrentClampStimulusSeries
  1652. - schemaKey: PropertyValue
  1653. value: ProcessingModule
  1654. - schemaKey: PropertyValue
  1655. value: VoltageClampSeries
  1656. - schemaKey: PropertyValue
  1657. value: CurrentClampSeries
  1658. wasAttributedTo:
  1659. - age:
  1660. schemaKey: PropertyValue
  1661. unitText: ISO-8601 duration
  1662. value: P14600.0D
  1663. valueReference:
  1664. schemaKey: PropertyValue
  1665. value: dandi:BirthReference
  1666. genotype: ''
  1667. identifier: '1303030608'
  1668. schemaKey: Participant
  1669. sex:
  1670. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1671. name: Female
  1672. schemaKey: SexType
  1673. species:
  1674. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1675. name: Homo sapiens - Human
  1676. schemaKey: SpeciesType
  1677. wasGeneratedBy:
  1678. - description: PLACEHOLDER
  1679. identifier: '1303080158'
  1680. name: '1303080158'
  1681. schemaKey: Session
  1682. startDate: '2023-10-12T00:43:32.102000Z'
  1683. - description: Metadata generated by DANDI cli
  1684. endDate: '2024-03-11T11:11:14.964988-07:00'
  1685. id: urn:uuid:58261fd7-c54f-4542-8b98-a07c55f58799
  1686. name: Metadata generation
  1687. schemaKey: Activity
  1688. startDate: '2024-03-11T11:11:08.314045-07:00'
  1689. wasAssociatedWith:
  1690. - identifier: RRID:SCR_019009
  1691. name: DANDI Command Line Interface
  1692. schemaKey: Software
  1693. url: https://github.com/dandi/dandi-cli
  1694. version: 0.60.0
  1695. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1696. access:
  1697. - schemaKey: AccessRequirements
  1698. status: dandi:OpenAccess
  1699. approach:
  1700. - name: electrophysiological approach
  1701. schemaKey: ApproachType
  1702. blobDateModified: '2024-03-11T10:58:38.285279-07:00'
  1703. contentSize: 42272767
  1704. contentUrl:
  1705. - https://api.dandiarchive.org/api/assets/98d30393-d216-4654-8b61-ab1bcbfc7940/download/
  1706. - https://dandiarchive.s3.amazonaws.com/blobs/650/0ac/6500ac97-c7e8-41d9-8361-aa796dbddc95
  1707. dateModified: '2024-03-11T11:11:18.693569-07:00'
  1708. digest:
  1709. dandi:dandi-etag: fbcf8d99656065f36f45991cac456fc9-1
  1710. dandi:sha2-256: 8a631189adbb118b52829be427ef9ee9579c5616d9df56e22a33f44c4f63c07e
  1711. encodingFormat: application/x-nwb
  1712. id: dandiasset:98d30393-d216-4654-8b61-ab1bcbfc7940
  1713. identifier: 98d30393-d216-4654-8b61-ab1bcbfc7940
  1714. measurementTechnique:
  1715. - name: analytical technique
  1716. schemaKey: MeasurementTechniqueType
  1717. - name: voltage clamp technique
  1718. schemaKey: MeasurementTechniqueType
  1719. - name: current clamp technique
  1720. schemaKey: MeasurementTechniqueType
  1721. path: sub-1306905154/sub-1306905154_ses-1306941150_icephys.nwb
  1722. schemaKey: Asset
  1723. schemaVersion: 0.6.6
  1724. variableMeasured:
  1725. - schemaKey: PropertyValue
  1726. value: VoltageClampStimulusSeries
  1727. - schemaKey: PropertyValue
  1728. value: CurrentClampStimulusSeries
  1729. - schemaKey: PropertyValue
  1730. value: ProcessingModule
  1731. - schemaKey: PropertyValue
  1732. value: VoltageClampSeries
  1733. - schemaKey: PropertyValue
  1734. value: CurrentClampSeries
  1735. wasAttributedTo:
  1736. - age:
  1737. schemaKey: PropertyValue
  1738. unitText: ISO-8601 duration
  1739. value: P16790.0D
  1740. valueReference:
  1741. schemaKey: PropertyValue
  1742. value: dandi:BirthReference
  1743. genotype: ''
  1744. identifier: '1306905154'
  1745. schemaKey: Participant
  1746. sex:
  1747. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1748. name: Male
  1749. schemaKey: SexType
  1750. species:
  1751. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1752. name: Homo sapiens - Human
  1753. schemaKey: SpeciesType
  1754. wasGeneratedBy:
  1755. - description: PLACEHOLDER
  1756. identifier: '1306941150'
  1757. name: '1306941150'
  1758. schemaKey: Session
  1759. startDate: '2023-10-27T21:25:07.041000Z'
  1760. - description: Metadata generated by DANDI cli
  1761. endDate: '2024-03-11T11:11:18.693553-07:00'
  1762. id: urn:uuid:7c54bdee-f1e8-44ff-93e0-3ee379991b06
  1763. name: Metadata generation
  1764. schemaKey: Activity
  1765. startDate: '2024-03-11T11:11:11.146135-07:00'
  1766. wasAssociatedWith:
  1767. - identifier: RRID:SCR_019009
  1768. name: DANDI Command Line Interface
  1769. schemaKey: Software
  1770. url: https://github.com/dandi/dandi-cli
  1771. version: 0.60.0
  1772. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1773. access:
  1774. - schemaKey: AccessRequirements
  1775. status: dandi:OpenAccess
  1776. approach:
  1777. - name: electrophysiological approach
  1778. schemaKey: ApproachType
  1779. blobDateModified: '2024-03-11T10:58:45.153365-07:00'
  1780. contentSize: 64032502
  1781. contentUrl:
  1782. - https://api.dandiarchive.org/api/assets/5f0620c1-342b-4cad-84c7-d5d484f3f85a/download/
  1783. - https://dandiarchive.s3.amazonaws.com/blobs/ec5/653/ec565320-a411-49a6-8340-5818574178e9
  1784. dateModified: '2024-03-11T11:11:29.251961-07:00'
  1785. digest:
  1786. dandi:dandi-etag: c7f646c7052271467c1e34c51a487f0c-1
  1787. dandi:sha2-256: 31b3b7c52df4af299a4971f8b17a043b598a401a7f6a13e52834122999f04151
  1788. encodingFormat: application/x-nwb
  1789. id: dandiasset:5f0620c1-342b-4cad-84c7-d5d484f3f85a
  1790. identifier: 5f0620c1-342b-4cad-84c7-d5d484f3f85a
  1791. measurementTechnique:
  1792. - name: analytical technique
  1793. schemaKey: MeasurementTechniqueType
  1794. - name: voltage clamp technique
  1795. schemaKey: MeasurementTechniqueType
  1796. - name: current clamp technique
  1797. schemaKey: MeasurementTechniqueType
  1798. path: sub-1307828346/sub-1307828346_ses-1309514920_icephys.nwb
  1799. schemaKey: Asset
  1800. schemaVersion: 0.6.6
  1801. variableMeasured:
  1802. - schemaKey: PropertyValue
  1803. value: VoltageClampStimulusSeries
  1804. - schemaKey: PropertyValue
  1805. value: CurrentClampStimulusSeries
  1806. - schemaKey: PropertyValue
  1807. value: ProcessingModule
  1808. - schemaKey: PropertyValue
  1809. value: VoltageClampSeries
  1810. - schemaKey: PropertyValue
  1811. value: CurrentClampSeries
  1812. wasAttributedTo:
  1813. - age:
  1814. schemaKey: PropertyValue
  1815. unitText: ISO-8601 duration
  1816. value: P16790.0D
  1817. valueReference:
  1818. schemaKey: PropertyValue
  1819. value: dandi:BirthReference
  1820. genotype: ''
  1821. identifier: '1307828346'
  1822. schemaKey: Participant
  1823. sex:
  1824. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1825. name: Female
  1826. schemaKey: SexType
  1827. species:
  1828. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1829. name: Homo sapiens - Human
  1830. schemaKey: SpeciesType
  1831. wasGeneratedBy:
  1832. - description: PLACEHOLDER
  1833. identifier: '1309514920'
  1834. name: '1309514920'
  1835. schemaKey: Session
  1836. startDate: '2023-11-08T19:18:47.858000Z'
  1837. - description: Metadata generated by DANDI cli
  1838. endDate: '2024-03-11T11:11:29.251947-07:00'
  1839. id: urn:uuid:2e27d820-501f-468e-b223-37f5262051d4
  1840. name: Metadata generation
  1841. schemaKey: Activity
  1842. startDate: '2024-03-11T11:11:18.924745-07:00'
  1843. wasAssociatedWith:
  1844. - identifier: RRID:SCR_019009
  1845. name: DANDI Command Line Interface
  1846. schemaKey: Software
  1847. url: https://github.com/dandi/dandi-cli
  1848. version: 0.60.0
  1849. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1850. access:
  1851. - schemaKey: AccessRequirements
  1852. status: dandi:OpenAccess
  1853. approach:
  1854. - name: electrophysiological approach
  1855. schemaKey: ApproachType
  1856. blobDateModified: '2024-03-11T10:58:28.465673-07:00'
  1857. contentSize: 80897676
  1858. contentUrl:
  1859. - https://api.dandiarchive.org/api/assets/8ffa178f-657c-4caf-be52-03c8313e2629/download/
  1860. - https://dandiarchive.s3.amazonaws.com/blobs/65b/144/65b144ca-e424-46a1-a98b-d5609ad2f2ca
  1861. dateModified: '2024-03-11T11:11:29.345099-07:00'
  1862. digest:
  1863. dandi:dandi-etag: 1bc467ec4f579a5124e3c5267ae1361f-2
  1864. dandi:sha2-256: 6084e1f66ad89ab5323b3b1715a55af0c6c73138967b63153310bc5e3522908c
  1865. encodingFormat: application/x-nwb
  1866. id: dandiasset:8ffa178f-657c-4caf-be52-03c8313e2629
  1867. identifier: 8ffa178f-657c-4caf-be52-03c8313e2629
  1868. measurementTechnique:
  1869. - name: analytical technique
  1870. schemaKey: MeasurementTechniqueType
  1871. - name: voltage clamp technique
  1872. schemaKey: MeasurementTechniqueType
  1873. - name: current clamp technique
  1874. schemaKey: MeasurementTechniqueType
  1875. path: sub-1303030608/sub-1303030608_ses-1303058096_icephys.nwb
  1876. schemaKey: Asset
  1877. schemaVersion: 0.6.6
  1878. variableMeasured:
  1879. - schemaKey: PropertyValue
  1880. value: VoltageClampStimulusSeries
  1881. - schemaKey: PropertyValue
  1882. value: CurrentClampStimulusSeries
  1883. - schemaKey: PropertyValue
  1884. value: ProcessingModule
  1885. - schemaKey: PropertyValue
  1886. value: VoltageClampSeries
  1887. - schemaKey: PropertyValue
  1888. value: CurrentClampSeries
  1889. wasAttributedTo:
  1890. - age:
  1891. schemaKey: PropertyValue
  1892. unitText: ISO-8601 duration
  1893. value: P14600.0D
  1894. valueReference:
  1895. schemaKey: PropertyValue
  1896. value: dandi:BirthReference
  1897. genotype: ''
  1898. identifier: '1303030608'
  1899. schemaKey: Participant
  1900. sex:
  1901. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1902. name: Female
  1903. schemaKey: SexType
  1904. species:
  1905. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1906. name: Homo sapiens - Human
  1907. schemaKey: SpeciesType
  1908. wasGeneratedBy:
  1909. - description: PLACEHOLDER
  1910. identifier: '1303058096'
  1911. name: '1303058096'
  1912. schemaKey: Session
  1913. startDate: '2023-10-11T22:58:15.414000Z'
  1914. - description: Metadata generated by DANDI cli
  1915. endDate: '2024-03-11T11:11:29.345082-07:00'
  1916. id: urn:uuid:eaf85a05-51bc-4f7e-b4de-af1c8862dcc0
  1917. name: Metadata generation
  1918. schemaKey: Activity
  1919. startDate: '2024-03-11T11:11:15.384886-07:00'
  1920. wasAssociatedWith:
  1921. - identifier: RRID:SCR_019009
  1922. name: DANDI Command Line Interface
  1923. schemaKey: Software
  1924. url: https://github.com/dandi/dandi-cli
  1925. version: 0.60.0
  1926. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1927. access:
  1928. - schemaKey: AccessRequirements
  1929. status: dandi:OpenAccess
  1930. approach:
  1931. - name: electrophysiological approach
  1932. schemaKey: ApproachType
  1933. blobDateModified: '2024-03-11T10:58:56.870053-07:00'
  1934. contentSize: 46232665
  1935. contentUrl:
  1936. - https://api.dandiarchive.org/api/assets/00fa039f-4e4f-4e7c-8b66-dc19061b4696/download/
  1937. - https://dandiarchive.s3.amazonaws.com/blobs/8f3/eed/8f3eed10-1081-440e-89d7-76cd9303f1fe
  1938. dateModified: '2024-03-11T11:11:32.469661-07:00'
  1939. digest:
  1940. dandi:dandi-etag: 32418cface41dea8a84e809837152211-1
  1941. dandi:sha2-256: 0d1eb134985ebaa0b0872b222f5b22cc1e41659a55d54a15512e264cec9d4a8b
  1942. encodingFormat: application/x-nwb
  1943. id: dandiasset:00fa039f-4e4f-4e7c-8b66-dc19061b4696
  1944. identifier: 00fa039f-4e4f-4e7c-8b66-dc19061b4696
  1945. measurementTechnique:
  1946. - name: analytical technique
  1947. schemaKey: MeasurementTechniqueType
  1948. - name: voltage clamp technique
  1949. schemaKey: MeasurementTechniqueType
  1950. - name: current clamp technique
  1951. schemaKey: MeasurementTechniqueType
  1952. path: sub-1307828346/sub-1307828346_ses-1310113951_icephys.nwb
  1953. schemaKey: Asset
  1954. schemaVersion: 0.6.6
  1955. variableMeasured:
  1956. - schemaKey: PropertyValue
  1957. value: VoltageClampStimulusSeries
  1958. - schemaKey: PropertyValue
  1959. value: CurrentClampStimulusSeries
  1960. - schemaKey: PropertyValue
  1961. value: ProcessingModule
  1962. - schemaKey: PropertyValue
  1963. value: VoltageClampSeries
  1964. - schemaKey: PropertyValue
  1965. value: CurrentClampSeries
  1966. wasAttributedTo:
  1967. - age:
  1968. schemaKey: PropertyValue
  1969. unitText: ISO-8601 duration
  1970. value: P16790.0D
  1971. valueReference:
  1972. schemaKey: PropertyValue
  1973. value: dandi:BirthReference
  1974. genotype: ''
  1975. identifier: '1307828346'
  1976. schemaKey: Participant
  1977. sex:
  1978. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1979. name: Female
  1980. schemaKey: SexType
  1981. species:
  1982. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  1983. name: Homo sapiens - Human
  1984. schemaKey: SpeciesType
  1985. wasGeneratedBy:
  1986. - description: PLACEHOLDER
  1987. identifier: '1310113951'
  1988. name: '1310113951'
  1989. schemaKey: Session
  1990. startDate: '2023-11-10T21:12:21.794000Z'
  1991. - description: Metadata generated by DANDI cli
  1992. endDate: '2024-03-11T11:11:32.469645-07:00'
  1993. id: urn:uuid:481bc2dd-4b18-4014-8ab5-70c0a3b82f24
  1994. name: Metadata generation
  1995. schemaKey: Activity
  1996. startDate: '2024-03-11T11:11:30.162565-07:00'
  1997. wasAssociatedWith:
  1998. - identifier: RRID:SCR_019009
  1999. name: DANDI Command Line Interface
  2000. schemaKey: Software
  2001. url: https://github.com/dandi/dandi-cli
  2002. version: 0.60.0
  2003. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  2004. access:
  2005. - schemaKey: AccessRequirements
  2006. status: dandi:OpenAccess
  2007. approach:
  2008. - name: electrophysiological approach
  2009. schemaKey: ApproachType
  2010. blobDateModified: '2024-03-11T10:59:00.185053-07:00'
  2011. contentSize: 35108420
  2012. contentUrl:
  2013. - https://api.dandiarchive.org/api/assets/4a930ff8-07e1-4370-a317-2c220e21a162/download/
  2014. - https://dandiarchive.s3.amazonaws.com/blobs/639/37b/63937b59-f5a6-4eb5-82b2-92cfc7065a7e
  2015. dateModified: '2024-03-11T11:11:29.454597-07:00'
  2016. digest:
  2017. dandi:dandi-etag: 17530e7e6e4b2caf4c2a22b92a33c906-1
  2018. dandi:sha2-256: e528a31766fdffd9edfbff089115bed1441a6bb651eb98469144be94c836e561
  2019. encodingFormat: application/x-nwb
  2020. id: dandiasset:4a930ff8-07e1-4370-a317-2c220e21a162
  2021. identifier: 4a930ff8-07e1-4370-a317-2c220e21a162
  2022. measurementTechnique:
  2023. - name: analytical technique
  2024. schemaKey: MeasurementTechniqueType
  2025. - name: voltage clamp technique
  2026. schemaKey: MeasurementTechniqueType
  2027. - name: current clamp technique
  2028. schemaKey: MeasurementTechniqueType
  2029. path: sub-1307828346/sub-1307828346_ses-1309543028_icephys.nwb
  2030. schemaKey: Asset
  2031. schemaVersion: 0.6.6
  2032. variableMeasured:
  2033. - schemaKey: PropertyValue
  2034. value: VoltageClampStimulusSeries
  2035. - schemaKey: PropertyValue
  2036. value: CurrentClampStimulusSeries
  2037. - schemaKey: PropertyValue
  2038. value: ProcessingModule
  2039. - schemaKey: PropertyValue
  2040. value: VoltageClampSeries
  2041. - schemaKey: PropertyValue
  2042. value: CurrentClampSeries
  2043. wasAttributedTo:
  2044. - age:
  2045. schemaKey: PropertyValue
  2046. unitText: ISO-8601 duration
  2047. value: P16790.0D
  2048. valueReference:
  2049. schemaKey: PropertyValue
  2050. value: dandi:BirthReference
  2051. genotype: ''
  2052. identifier: '1307828346'
  2053. schemaKey: Participant
  2054. sex:
  2055. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2056. name: Female
  2057. schemaKey: SexType
  2058. species:
  2059. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2060. name: Homo sapiens - Human
  2061. schemaKey: SpeciesType
  2062. wasGeneratedBy:
  2063. - description: PLACEHOLDER
  2064. identifier: '1309543028'
  2065. name: '1309543028'
  2066. schemaKey: Session
  2067. startDate: '2023-11-08T20:43:11.250000Z'
  2068. - description: Metadata generated by DANDI cli
  2069. endDate: '2024-03-11T11:11:29.454582-07:00'
  2070. id: urn:uuid:ac9984a2-c5a6-454e-a468-ae58a81f7a91
  2071. name: Metadata generation
  2072. schemaKey: Activity
  2073. startDate: '2024-03-11T11:11:25.506506-07:00'
  2074. wasAssociatedWith:
  2075. - identifier: RRID:SCR_019009
  2076. name: DANDI Command Line Interface
  2077. schemaKey: Software
  2078. url: https://github.com/dandi/dandi-cli
  2079. version: 0.60.0
  2080. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  2081. access:
  2082. - schemaKey: AccessRequirements
  2083. status: dandi:OpenAccess
  2084. approach:
  2085. - name: electrophysiological approach
  2086. schemaKey: ApproachType
  2087. blobDateModified: '2024-03-11T10:58:52.044687-07:00'
  2088. contentSize: 66153225
  2089. contentUrl:
  2090. - https://api.dandiarchive.org/api/assets/caf3ceca-57b9-496f-a9a7-0fcabcf06004/download/
  2091. - https://dandiarchive.s3.amazonaws.com/blobs/32f/d67/32fd67e9-fe06-4037-951c-d47333011f2e
  2092. dateModified: '2024-03-11T11:11:31.832751-07:00'
  2093. digest:
  2094. dandi:dandi-etag: fff358c6f5eefdaf86d019810e815c0c-1
  2095. dandi:sha2-256: f1b7900a64dc5579bb508b96bbe9b5f5e1c4dd5f0ed58758d3b7247015521cd9
  2096. encodingFormat: application/x-nwb
  2097. id: dandiasset:caf3ceca-57b9-496f-a9a7-0fcabcf06004
  2098. identifier: caf3ceca-57b9-496f-a9a7-0fcabcf06004
  2099. measurementTechnique:
  2100. - name: analytical technique
  2101. schemaKey: MeasurementTechniqueType
  2102. - name: voltage clamp technique
  2103. schemaKey: MeasurementTechniqueType
  2104. - name: current clamp technique
  2105. schemaKey: MeasurementTechniqueType
  2106. path: sub-1307828346/sub-1307828346_ses-1309476217_icephys.nwb
  2107. schemaKey: Asset
  2108. schemaVersion: 0.6.6
  2109. variableMeasured:
  2110. - schemaKey: PropertyValue
  2111. value: VoltageClampStimulusSeries
  2112. - schemaKey: PropertyValue
  2113. value: CurrentClampStimulusSeries
  2114. - schemaKey: PropertyValue
  2115. value: ProcessingModule
  2116. - schemaKey: PropertyValue
  2117. value: VoltageClampSeries
  2118. - schemaKey: PropertyValue
  2119. value: CurrentClampSeries
  2120. wasAttributedTo:
  2121. - age:
  2122. schemaKey: PropertyValue
  2123. unitText: ISO-8601 duration
  2124. value: P16790.0D
  2125. valueReference:
  2126. schemaKey: PropertyValue
  2127. value: dandi:BirthReference
  2128. genotype: ''
  2129. identifier: '1307828346'
  2130. schemaKey: Participant
  2131. sex:
  2132. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2133. name: Female
  2134. schemaKey: SexType
  2135. species:
  2136. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
  2137. name: Homo sapiens - Human
  2138. schemaKey: SpeciesType
  2139. wasGeneratedBy:
  2140. - description: PLACEHOLDER
  2141. identifier: '1309476217'
  2142. name: '1309476217'
  2143. schemaKey: Session
  2144. startDate: '2023-11-08T18:29:57.652000Z'
  2145. - description: Metadata generated by DANDI cli
  2146. endDate: '2024-03-11T11:11:31.832736-07:00'
  2147. id: urn:uuid:cb0d916d-173f-4088-b4fa-527d4299b51d
  2148. name: Metadata generation
  2149. schemaKey: Activity
  2150. startDate: '2024-03-11T11:11:22.284648-07:00'
  2151. wasAssociatedWith:
  2152. - identifier: RRID:SCR_019009
  2153. name: DANDI Command Line Interface
  2154. schemaKey: Software
  2155. url: https://github.com/dandi/dandi-cli
  2156. version: 0.60.0
Tip!

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

Comments

Loading...