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 40 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
  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-11T11:00:00.753531-07:00'
  9. contentSize: 92294675
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/a06c86e3-042a-412d-a679-f6293f0deeb9/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/68b/d92/68bd92bd-037e-4b9f-b41c-6717c9120ff3
  13. dateModified: '2024-03-11T11:12:42.692800-07:00'
  14. datePublished: '2024-03-15T17:54:55.641222+00:00'
  15. digest:
  16. dandi:dandi-etag: 555d9c5ac1885dda6b24f13f54bf93e7-2
  17. dandi:sha2-256: aa7e169a81de3660c2c45e09649cc98d8ee0000e23be6d823ee27a338f594a82
  18. encodingFormat: application/x-nwb
  19. id: dandiasset:a06c86e3-042a-412d-a679-f6293f0deeb9
  20. identifier: a06c86e3-042a-412d-a679-f6293f0deeb9
  21. measurementTechnique:
  22. - name: analytical technique
  23. schemaKey: MeasurementTechniqueType
  24. - name: current clamp technique
  25. schemaKey: MeasurementTechniqueType
  26. - name: voltage clamp technique
  27. schemaKey: MeasurementTechniqueType
  28. path: sub-1288510508/sub-1288510508_ses-1288610002_icephys.nwb
  29. publishedBy:
  30. endDate: '2024-03-15T17:54:55.641222+00:00'
  31. id: urn:uuid:850276bb-eb4a-4183-8833-6d7103941470
  32. name: DANDI publish
  33. schemaKey: PublishActivity
  34. startDate: '2024-03-15T17:54:55.641222+00:00'
  35. wasAssociatedWith:
  36. - id: urn:uuid:03f705ca-fdcf-46a6-aee9-25f229724b80
  37. identifier: RRID:SCR_017571
  38. name: DANDI API
  39. schemaKey: Software
  40. version: 0.1.0
  41. schemaKey: Asset
  42. schemaVersion: 0.6.6
  43. variableMeasured:
  44. - schemaKey: PropertyValue
  45. value: VoltageClampSeries
  46. - schemaKey: PropertyValue
  47. value: CurrentClampStimulusSeries
  48. - schemaKey: PropertyValue
  49. value: VoltageClampStimulusSeries
  50. - schemaKey: PropertyValue
  51. value: CurrentClampSeries
  52. - schemaKey: PropertyValue
  53. value: ProcessingModule
  54. wasAttributedTo:
  55. - age:
  56. schemaKey: PropertyValue
  57. unitText: ISO-8601 duration
  58. value: P6570.0D
  59. valueReference:
  60. schemaKey: PropertyValue
  61. value: dandi:BirthReference
  62. genotype: ''
  63. identifier: '1288510508'
  64. schemaKey: Participant
  65. sex:
  66. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  67. name: Female
  68. schemaKey: SexType
  69. species:
  70. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  71. name: Macaca nemestrina
  72. schemaKey: SpeciesType
  73. wasGeneratedBy:
  74. - description: PLACEHOLDER
  75. identifier: '1288610002'
  76. name: '1288610002'
  77. schemaKey: Session
  78. startDate: '2023-08-08T23:24:32.294000Z'
  79. - description: Metadata generated by DANDI cli
  80. endDate: '2024-03-11T11:12:42.692786-07:00'
  81. id: urn:uuid:c324967b-5d32-4724-87d5-232c66cf49e5
  82. name: Metadata generation
  83. schemaKey: Activity
  84. startDate: '2024-03-11T11:12:34.427028-07:00'
  85. wasAssociatedWith:
  86. - identifier: RRID:SCR_019009
  87. name: DANDI Command Line Interface
  88. schemaKey: Software
  89. url: https://github.com/dandi/dandi-cli
  90. version: 0.60.0
  91. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  92. access:
  93. - schemaKey: AccessRequirements
  94. status: dandi:OpenAccess
  95. approach:
  96. - name: electrophysiological approach
  97. schemaKey: ApproachType
  98. blobDateModified: '2024-03-11T10:59:43.353660-07:00'
  99. contentSize: 67910032
  100. contentUrl:
  101. - https://api.dandiarchive.org/api/assets/2180b3fb-d5c1-4e56-99bb-1260d68cef4d/download/
  102. - https://dandiarchive.s3.amazonaws.com/blobs/062/b11/062b119c-f494-4efa-97b1-8461a0e1d5fd
  103. dateModified: '2024-03-11T11:12:42.412754-07:00'
  104. datePublished: '2024-03-15T17:54:56.138463+00:00'
  105. digest:
  106. dandi:dandi-etag: 3463ca06230d67b579d82a721da58d6b-2
  107. dandi:sha2-256: c84445895f15aa10271095449b2fc5047c056aca8a50f22ef9a703aeb5d8c860
  108. encodingFormat: application/x-nwb
  109. id: dandiasset:2180b3fb-d5c1-4e56-99bb-1260d68cef4d
  110. identifier: 2180b3fb-d5c1-4e56-99bb-1260d68cef4d
  111. measurementTechnique:
  112. - name: analytical technique
  113. schemaKey: MeasurementTechniqueType
  114. - name: current clamp technique
  115. schemaKey: MeasurementTechniqueType
  116. - name: voltage clamp technique
  117. schemaKey: MeasurementTechniqueType
  118. path: sub-1288510508/sub-1288510508_ses-1288626969_icephys.nwb
  119. publishedBy:
  120. endDate: '2024-03-15T17:54:56.138463+00:00'
  121. id: urn:uuid:4c508587-0a7f-4c4d-94a9-e534962decdc
  122. name: DANDI publish
  123. schemaKey: PublishActivity
  124. startDate: '2024-03-15T17:54:56.138463+00:00'
  125. wasAssociatedWith:
  126. - id: urn:uuid:5dfafaf1-f1ce-410b-8878-a3d92cd2120c
  127. identifier: RRID:SCR_017571
  128. name: DANDI API
  129. schemaKey: Software
  130. version: 0.1.0
  131. schemaKey: Asset
  132. schemaVersion: 0.6.6
  133. variableMeasured:
  134. - schemaKey: PropertyValue
  135. value: VoltageClampSeries
  136. - schemaKey: PropertyValue
  137. value: CurrentClampStimulusSeries
  138. - schemaKey: PropertyValue
  139. value: VoltageClampStimulusSeries
  140. - schemaKey: PropertyValue
  141. value: CurrentClampSeries
  142. - schemaKey: PropertyValue
  143. value: ProcessingModule
  144. wasAttributedTo:
  145. - age:
  146. schemaKey: PropertyValue
  147. unitText: ISO-8601 duration
  148. value: P6570.0D
  149. valueReference:
  150. schemaKey: PropertyValue
  151. value: dandi:BirthReference
  152. genotype: ''
  153. identifier: '1288510508'
  154. schemaKey: Participant
  155. sex:
  156. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  157. name: Female
  158. schemaKey: SexType
  159. species:
  160. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  161. name: Macaca nemestrina
  162. schemaKey: SpeciesType
  163. wasGeneratedBy:
  164. - description: PLACEHOLDER
  165. identifier: '1288626969'
  166. name: '1288626969'
  167. schemaKey: Session
  168. startDate: '2023-08-09T00:37:42.450000Z'
  169. - description: Metadata generated by DANDI cli
  170. endDate: '2024-03-11T11:12:42.412739-07:00'
  171. id: urn:uuid:601a24ba-e048-45e4-b3cd-21fb6e6b9eb7
  172. name: Metadata generation
  173. schemaKey: Activity
  174. startDate: '2024-03-11T11:12:33.835356-07:00'
  175. wasAssociatedWith:
  176. - identifier: RRID:SCR_019009
  177. name: DANDI Command Line Interface
  178. schemaKey: Software
  179. url: https://github.com/dandi/dandi-cli
  180. version: 0.60.0
  181. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  182. access:
  183. - schemaKey: AccessRequirements
  184. status: dandi:OpenAccess
  185. approach:
  186. - name: electrophysiological approach
  187. schemaKey: ApproachType
  188. blobDateModified: '2024-03-11T10:59:35.939216-07:00'
  189. contentSize: 46878971
  190. contentUrl:
  191. - https://api.dandiarchive.org/api/assets/3cb10378-81c5-4b74-afb4-3447983bc617/download/
  192. - https://dandiarchive.s3.amazonaws.com/blobs/d93/4a7/d934a781-1c1a-44b8-a6a1-0758ab661f0a
  193. dateModified: '2024-03-11T11:12:39.852987-07:00'
  194. datePublished: '2024-03-15T17:54:56.099702+00:00'
  195. digest:
  196. dandi:dandi-etag: cd11d3a63fc30376639bb27728e6243a-1
  197. dandi:sha2-256: 4dbdcdf4b9945e7fb1f250e43f58441359e93650b2c636048fc152a0197a4f1f
  198. encodingFormat: application/x-nwb
  199. id: dandiasset:3cb10378-81c5-4b74-afb4-3447983bc617
  200. identifier: 3cb10378-81c5-4b74-afb4-3447983bc617
  201. measurementTechnique:
  202. - name: analytical technique
  203. schemaKey: MeasurementTechniqueType
  204. - name: current clamp technique
  205. schemaKey: MeasurementTechniqueType
  206. - name: voltage clamp technique
  207. schemaKey: MeasurementTechniqueType
  208. path: sub-1288510508/sub-1288510508_ses-1288632588_icephys.nwb
  209. publishedBy:
  210. endDate: '2024-03-15T17:54:56.099702+00:00'
  211. id: urn:uuid:9ae634aa-0194-43aa-9a02-1406fc25fcc0
  212. name: DANDI publish
  213. schemaKey: PublishActivity
  214. startDate: '2024-03-15T17:54:56.099702+00:00'
  215. wasAssociatedWith:
  216. - id: urn:uuid:dd4b2bee-e360-481c-b3b5-9a282b0bd122
  217. identifier: RRID:SCR_017571
  218. name: DANDI API
  219. schemaKey: Software
  220. version: 0.1.0
  221. schemaKey: Asset
  222. schemaVersion: 0.6.6
  223. variableMeasured:
  224. - schemaKey: PropertyValue
  225. value: VoltageClampSeries
  226. - schemaKey: PropertyValue
  227. value: CurrentClampStimulusSeries
  228. - schemaKey: PropertyValue
  229. value: VoltageClampStimulusSeries
  230. - schemaKey: PropertyValue
  231. value: CurrentClampSeries
  232. - schemaKey: PropertyValue
  233. value: ProcessingModule
  234. wasAttributedTo:
  235. - age:
  236. schemaKey: PropertyValue
  237. unitText: ISO-8601 duration
  238. value: P6570.0D
  239. valueReference:
  240. schemaKey: PropertyValue
  241. value: dandi:BirthReference
  242. genotype: ''
  243. identifier: '1288510508'
  244. schemaKey: Participant
  245. sex:
  246. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  247. name: Female
  248. schemaKey: SexType
  249. species:
  250. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  251. name: Macaca nemestrina
  252. schemaKey: SpeciesType
  253. wasGeneratedBy:
  254. - description: PLACEHOLDER
  255. identifier: '1288632588'
  256. name: '1288632588'
  257. schemaKey: Session
  258. startDate: '2023-08-09T01:13:12.724000Z'
  259. - description: Metadata generated by DANDI cli
  260. endDate: '2024-03-11T11:12:39.852967-07:00'
  261. id: urn:uuid:a69b3caf-296e-41b2-bbf1-11bea2aa6b84
  262. name: Metadata generation
  263. schemaKey: Activity
  264. startDate: '2024-03-11T11:12:29.318840-07:00'
  265. wasAssociatedWith:
  266. - identifier: RRID:SCR_019009
  267. name: DANDI Command Line Interface
  268. schemaKey: Software
  269. url: https://github.com/dandi/dandi-cli
  270. version: 0.60.0
  271. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  272. access:
  273. - schemaKey: AccessRequirements
  274. status: dandi:OpenAccess
  275. approach:
  276. - name: electrophysiological approach
  277. schemaKey: ApproachType
  278. blobDateModified: '2024-03-11T10:59:25.450260-07:00'
  279. contentSize: 47217166
  280. contentUrl:
  281. - https://api.dandiarchive.org/api/assets/d68408f9-f460-4696-94d8-122ebd5a70aa/download/
  282. - https://dandiarchive.s3.amazonaws.com/blobs/606/f82/606f82cb-3ea5-49c1-99c1-1b33ba1dd0df
  283. dateModified: '2024-03-11T11:12:39.934142-07:00'
  284. datePublished: '2024-03-15T17:54:56.115074+00:00'
  285. digest:
  286. dandi:dandi-etag: 1b0730ca37116fd16fe32e309ce4cb86-1
  287. dandi:sha2-256: 6df7c743559fef8feff6cf99cba19402b48840e1fb5f33eb6029733d9f7e0d39
  288. encodingFormat: application/x-nwb
  289. id: dandiasset:d68408f9-f460-4696-94d8-122ebd5a70aa
  290. identifier: d68408f9-f460-4696-94d8-122ebd5a70aa
  291. measurementTechnique:
  292. - name: analytical technique
  293. schemaKey: MeasurementTechniqueType
  294. - name: current clamp technique
  295. schemaKey: MeasurementTechniqueType
  296. - name: voltage clamp technique
  297. schemaKey: MeasurementTechniqueType
  298. path: sub-1288510508/sub-1288510508_ses-1288604785_icephys.nwb
  299. publishedBy:
  300. endDate: '2024-03-15T17:54:56.115074+00:00'
  301. id: urn:uuid:79d491e9-6b72-46ec-9ada-c994dd6ba5de
  302. name: DANDI publish
  303. schemaKey: PublishActivity
  304. startDate: '2024-03-15T17:54:56.115074+00:00'
  305. wasAssociatedWith:
  306. - id: urn:uuid:92928034-8f8b-42a7-b6cc-5a8ecc270171
  307. identifier: RRID:SCR_017571
  308. name: DANDI API
  309. schemaKey: Software
  310. version: 0.1.0
  311. schemaKey: Asset
  312. schemaVersion: 0.6.6
  313. variableMeasured:
  314. - schemaKey: PropertyValue
  315. value: VoltageClampSeries
  316. - schemaKey: PropertyValue
  317. value: CurrentClampStimulusSeries
  318. - schemaKey: PropertyValue
  319. value: VoltageClampStimulusSeries
  320. - schemaKey: PropertyValue
  321. value: CurrentClampSeries
  322. - schemaKey: PropertyValue
  323. value: ProcessingModule
  324. wasAttributedTo:
  325. - age:
  326. schemaKey: PropertyValue
  327. unitText: ISO-8601 duration
  328. value: P6570.0D
  329. valueReference:
  330. schemaKey: PropertyValue
  331. value: dandi:BirthReference
  332. genotype: ''
  333. identifier: '1288510508'
  334. schemaKey: Participant
  335. sex:
  336. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  337. name: Female
  338. schemaKey: SexType
  339. species:
  340. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  341. name: Macaca nemestrina
  342. schemaKey: SpeciesType
  343. wasGeneratedBy:
  344. - description: PLACEHOLDER
  345. identifier: '1288604785'
  346. name: '1288604785'
  347. schemaKey: Session
  348. startDate: '2023-08-08T23:20:52.855000Z'
  349. - description: Metadata generated by DANDI cli
  350. endDate: '2024-03-11T11:12:39.934126-07:00'
  351. id: urn:uuid:ceced3e7-8cb1-4424-8ecc-4c9fdf51bb68
  352. name: Metadata generation
  353. schemaKey: Activity
  354. startDate: '2024-03-11T11:12:29.432432-07:00'
  355. wasAssociatedWith:
  356. - identifier: RRID:SCR_019009
  357. name: DANDI Command Line Interface
  358. schemaKey: Software
  359. url: https://github.com/dandi/dandi-cli
  360. version: 0.60.0
  361. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  362. access:
  363. - schemaKey: AccessRequirements
  364. status: dandi:OpenAccess
  365. approach:
  366. - name: electrophysiological approach
  367. schemaKey: ApproachType
  368. blobDateModified: '2024-03-11T10:59:50.589864-07:00'
  369. contentSize: 67177865
  370. contentUrl:
  371. - https://api.dandiarchive.org/api/assets/e797a34c-16e2-4779-bd07-244a9bec67a9/download/
  372. - https://dandiarchive.s3.amazonaws.com/blobs/e42/797/e4279744-2292-478a-8022-061fc86291e0
  373. dateModified: '2024-03-11T11:12:41.722745-07:00'
  374. datePublished: '2024-03-15T17:54:56.122318+00:00'
  375. digest:
  376. dandi:dandi-etag: 388ec43de5ff2aeaefd90706ff29a46f-2
  377. dandi:sha2-256: 167e5d3d4d4c9d0e41fa7845e3ddbeb02c5410f46ea45aba2644849def4011e7
  378. encodingFormat: application/x-nwb
  379. id: dandiasset:e797a34c-16e2-4779-bd07-244a9bec67a9
  380. identifier: e797a34c-16e2-4779-bd07-244a9bec67a9
  381. measurementTechnique:
  382. - name: analytical technique
  383. schemaKey: MeasurementTechniqueType
  384. - name: current clamp technique
  385. schemaKey: MeasurementTechniqueType
  386. - name: voltage clamp technique
  387. schemaKey: MeasurementTechniqueType
  388. path: sub-1288510508/sub-1288510508_ses-1288641681_icephys.nwb
  389. publishedBy:
  390. endDate: '2024-03-15T17:54:56.122318+00:00'
  391. id: urn:uuid:e305768e-d499-4abf-8637-ccba3799ef3c
  392. name: DANDI publish
  393. schemaKey: PublishActivity
  394. startDate: '2024-03-15T17:54:56.122318+00:00'
  395. wasAssociatedWith:
  396. - id: urn:uuid:3ada4655-7fc7-4336-a14f-e2b423095cc3
  397. identifier: RRID:SCR_017571
  398. name: DANDI API
  399. schemaKey: Software
  400. version: 0.1.0
  401. schemaKey: Asset
  402. schemaVersion: 0.6.6
  403. variableMeasured:
  404. - schemaKey: PropertyValue
  405. value: VoltageClampSeries
  406. - schemaKey: PropertyValue
  407. value: CurrentClampStimulusSeries
  408. - schemaKey: PropertyValue
  409. value: VoltageClampStimulusSeries
  410. - schemaKey: PropertyValue
  411. value: CurrentClampSeries
  412. - schemaKey: PropertyValue
  413. value: ProcessingModule
  414. wasAttributedTo:
  415. - age:
  416. schemaKey: PropertyValue
  417. unitText: ISO-8601 duration
  418. value: P6570.0D
  419. valueReference:
  420. schemaKey: PropertyValue
  421. value: dandi:BirthReference
  422. genotype: ''
  423. identifier: '1288510508'
  424. schemaKey: Participant
  425. sex:
  426. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  427. name: Female
  428. schemaKey: SexType
  429. species:
  430. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  431. name: Macaca nemestrina
  432. schemaKey: SpeciesType
  433. wasGeneratedBy:
  434. - description: PLACEHOLDER
  435. identifier: '1288641681'
  436. name: '1288641681'
  437. schemaKey: Session
  438. startDate: '2023-08-09T01:46:10.349000Z'
  439. - description: Metadata generated by DANDI cli
  440. endDate: '2024-03-11T11:12:41.722732-07:00'
  441. id: urn:uuid:b5897487-c102-4ffc-a4f4-16cf8e71a58a
  442. name: Metadata generation
  443. schemaKey: Activity
  444. startDate: '2024-03-11T11:12:32.884036-07:00'
  445. wasAssociatedWith:
  446. - identifier: RRID:SCR_019009
  447. name: DANDI Command Line Interface
  448. schemaKey: Software
  449. url: https://github.com/dandi/dandi-cli
  450. version: 0.60.0
  451. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  452. access:
  453. - schemaKey: AccessRequirements
  454. status: dandi:OpenAccess
  455. approach:
  456. - name: electrophysiological approach
  457. schemaKey: ApproachType
  458. blobDateModified: '2024-03-11T10:59:31.057163-07:00'
  459. contentSize: 49494698
  460. contentUrl:
  461. - https://api.dandiarchive.org/api/assets/86687a6b-2b7f-4b68-89f4-5ff0976b70a3/download/
  462. - https://dandiarchive.s3.amazonaws.com/blobs/fb9/e12/fb9e1208-b6cb-455a-8fcd-3b562137875e
  463. dateModified: '2024-03-11T11:13:10.789354-07:00'
  464. datePublished: '2024-03-15T17:54:56.107276+00:00'
  465. digest:
  466. dandi:dandi-etag: 6f2bde56cc091afb82b54c3dab4e0212-1
  467. dandi:sha2-256: 573e33346cb191d3ad08cae7945e85baad74103077d53f58039a969c2133b516
  468. encodingFormat: application/x-nwb
  469. id: dandiasset:86687a6b-2b7f-4b68-89f4-5ff0976b70a3
  470. identifier: 86687a6b-2b7f-4b68-89f4-5ff0976b70a3
  471. measurementTechnique:
  472. - name: analytical technique
  473. schemaKey: MeasurementTechniqueType
  474. - name: current clamp technique
  475. schemaKey: MeasurementTechniqueType
  476. - name: voltage clamp technique
  477. schemaKey: MeasurementTechniqueType
  478. path: sub-1288510508/sub-1288510508_ses-1288767594_icephys.nwb
  479. publishedBy:
  480. endDate: '2024-03-15T17:54:56.107276+00:00'
  481. id: urn:uuid:b890ec09-c77c-4dc6-ac9a-9709231dc601
  482. name: DANDI publish
  483. schemaKey: PublishActivity
  484. startDate: '2024-03-15T17:54:56.107276+00:00'
  485. wasAssociatedWith:
  486. - id: urn:uuid:8ef3c7a2-75e3-441f-af7c-c532f5463858
  487. identifier: RRID:SCR_017571
  488. name: DANDI API
  489. schemaKey: Software
  490. version: 0.1.0
  491. schemaKey: Asset
  492. schemaVersion: 0.6.6
  493. variableMeasured:
  494. - schemaKey: PropertyValue
  495. value: VoltageClampSeries
  496. - schemaKey: PropertyValue
  497. value: CurrentClampStimulusSeries
  498. - schemaKey: PropertyValue
  499. value: VoltageClampStimulusSeries
  500. - schemaKey: PropertyValue
  501. value: CurrentClampSeries
  502. - schemaKey: PropertyValue
  503. value: ProcessingModule
  504. wasAttributedTo:
  505. - age:
  506. schemaKey: PropertyValue
  507. unitText: ISO-8601 duration
  508. value: P6570.0D
  509. valueReference:
  510. schemaKey: PropertyValue
  511. value: dandi:BirthReference
  512. genotype: ''
  513. identifier: '1288510508'
  514. schemaKey: Participant
  515. sex:
  516. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  517. name: Female
  518. schemaKey: SexType
  519. species:
  520. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  521. name: Macaca nemestrina
  522. schemaKey: SpeciesType
  523. wasGeneratedBy:
  524. - description: PLACEHOLDER
  525. identifier: '1288767594'
  526. name: '1288767594'
  527. schemaKey: Session
  528. startDate: '2023-08-09T17:42:56.553000Z'
  529. - description: Metadata generated by DANDI cli
  530. endDate: '2024-03-11T11:13:10.789336-07:00'
  531. id: urn:uuid:176d0d7f-d6b6-4989-b8a1-ab99bf10cfd3
  532. name: Metadata generation
  533. schemaKey: Activity
  534. startDate: '2024-03-11T11:13:09.133767-07:00'
  535. wasAssociatedWith:
  536. - identifier: RRID:SCR_019009
  537. name: DANDI Command Line Interface
  538. schemaKey: Software
  539. url: https://github.com/dandi/dandi-cli
  540. version: 0.60.0
  541. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  542. access:
  543. - schemaKey: AccessRequirements
  544. status: dandi:OpenAccess
  545. approach:
  546. - name: electrophysiological approach
  547. schemaKey: ApproachType
  548. blobDateModified: '2024-03-11T11:00:08.402444-07:00'
  549. contentSize: 75094234
  550. contentUrl:
  551. - https://api.dandiarchive.org/api/assets/6fed9cdd-9673-44d7-b83e-413d0ecda97d/download/
  552. - https://dandiarchive.s3.amazonaws.com/blobs/eb2/d24/eb2d24eb-bbd6-4a21-85ee-a5dda4b1e61a
  553. dateModified: '2024-03-11T11:13:21.686536-07:00'
  554. datePublished: '2024-03-15T17:54:56.130164+00:00'
  555. digest:
  556. dandi:dandi-etag: 6af4aecc905246b87f8f6be12ef3c9c8-2
  557. dandi:sha2-256: 94897058669ec49b8850d8dcd19046448f80a4ed5cbdd2560c09f69a928499f3
  558. encodingFormat: application/x-nwb
  559. id: dandiasset:6fed9cdd-9673-44d7-b83e-413d0ecda97d
  560. identifier: 6fed9cdd-9673-44d7-b83e-413d0ecda97d
  561. measurementTechnique:
  562. - name: analytical technique
  563. schemaKey: MeasurementTechniqueType
  564. - name: current clamp technique
  565. schemaKey: MeasurementTechniqueType
  566. - name: voltage clamp technique
  567. schemaKey: MeasurementTechniqueType
  568. path: sub-1288510508/sub-1288510508_ses-1288777439_icephys.nwb
  569. publishedBy:
  570. endDate: '2024-03-15T17:54:56.130164+00:00'
  571. id: urn:uuid:aa8a8841-765e-4b7c-a7a8-89c01d8919b9
  572. name: DANDI publish
  573. schemaKey: PublishActivity
  574. startDate: '2024-03-15T17:54:56.130164+00:00'
  575. wasAssociatedWith:
  576. - id: urn:uuid:59802c8f-2d7e-4c17-b33c-9b8a91f25e3a
  577. identifier: RRID:SCR_017571
  578. name: DANDI API
  579. schemaKey: Software
  580. version: 0.1.0
  581. schemaKey: Asset
  582. schemaVersion: 0.6.6
  583. variableMeasured:
  584. - schemaKey: PropertyValue
  585. value: VoltageClampSeries
  586. - schemaKey: PropertyValue
  587. value: CurrentClampStimulusSeries
  588. - schemaKey: PropertyValue
  589. value: VoltageClampStimulusSeries
  590. - schemaKey: PropertyValue
  591. value: CurrentClampSeries
  592. - schemaKey: PropertyValue
  593. value: ProcessingModule
  594. wasAttributedTo:
  595. - age:
  596. schemaKey: PropertyValue
  597. unitText: ISO-8601 duration
  598. value: P6570.0D
  599. valueReference:
  600. schemaKey: PropertyValue
  601. value: dandi:BirthReference
  602. genotype: ''
  603. identifier: '1288510508'
  604. schemaKey: Participant
  605. sex:
  606. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  607. name: Female
  608. schemaKey: SexType
  609. species:
  610. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  611. name: Macaca nemestrina
  612. schemaKey: SpeciesType
  613. wasGeneratedBy:
  614. - description: PLACEHOLDER
  615. identifier: '1288777439'
  616. name: '1288777439'
  617. schemaKey: Session
  618. startDate: '2023-08-09T18:38:07.674000Z'
  619. - description: Metadata generated by DANDI cli
  620. endDate: '2024-03-11T11:13:21.686520-07:00'
  621. id: urn:uuid:78367a4c-2bac-4e41-b3e4-c1d06cdb37b2
  622. name: Metadata generation
  623. schemaKey: Activity
  624. startDate: '2024-03-11T11:13:12.972790-07:00'
  625. wasAssociatedWith:
  626. - identifier: RRID:SCR_019009
  627. name: DANDI Command Line Interface
  628. schemaKey: Software
  629. url: https://github.com/dandi/dandi-cli
  630. version: 0.60.0
  631. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  632. access:
  633. - schemaKey: AccessRequirements
  634. status: dandi:OpenAccess
  635. approach:
  636. - name: electrophysiological approach
  637. schemaKey: ApproachType
  638. blobDateModified: '2024-03-11T11:00:24.870476-07:00'
  639. contentSize: 47077336
  640. contentUrl:
  641. - https://api.dandiarchive.org/api/assets/b8b2cfe7-2df3-4d96-9007-ec06db3e1051/download/
  642. - https://dandiarchive.s3.amazonaws.com/blobs/06a/8e0/06a8e0cb-5d8e-47d4-b147-3851c5848d47
  643. dateModified: '2024-03-11T11:13:24.364363-07:00'
  644. datePublished: '2024-03-15T17:54:56.145724+00:00'
  645. digest:
  646. dandi:dandi-etag: 353951d4c5ca1d69b5468b59564e3675-1
  647. dandi:sha2-256: 7206c587c87fefa875c5e7027fe86bb39220daa06295e1284cd1c258bfdb826e
  648. encodingFormat: application/x-nwb
  649. id: dandiasset:b8b2cfe7-2df3-4d96-9007-ec06db3e1051
  650. identifier: b8b2cfe7-2df3-4d96-9007-ec06db3e1051
  651. measurementTechnique:
  652. - name: analytical technique
  653. schemaKey: MeasurementTechniqueType
  654. - name: current clamp technique
  655. schemaKey: MeasurementTechniqueType
  656. - name: voltage clamp technique
  657. schemaKey: MeasurementTechniqueType
  658. path: sub-1301204249/sub-1301204249_ses-1301773570_icephys.nwb
  659. publishedBy:
  660. endDate: '2024-03-15T17:54:56.145724+00:00'
  661. id: urn:uuid:8610b9d1-9fe6-47ab-a397-08cc05029178
  662. name: DANDI publish
  663. schemaKey: PublishActivity
  664. startDate: '2024-03-15T17:54:56.145724+00:00'
  665. wasAssociatedWith:
  666. - id: urn:uuid:8c38bbe6-a903-4e4d-9e85-1f7dd3969587
  667. identifier: RRID:SCR_017571
  668. name: DANDI API
  669. schemaKey: Software
  670. version: 0.1.0
  671. schemaKey: Asset
  672. schemaVersion: 0.6.6
  673. variableMeasured:
  674. - schemaKey: PropertyValue
  675. value: VoltageClampSeries
  676. - schemaKey: PropertyValue
  677. value: CurrentClampStimulusSeries
  678. - schemaKey: PropertyValue
  679. value: VoltageClampStimulusSeries
  680. - schemaKey: PropertyValue
  681. value: CurrentClampSeries
  682. - schemaKey: PropertyValue
  683. value: ProcessingModule
  684. wasAttributedTo:
  685. - age:
  686. schemaKey: PropertyValue
  687. unitText: ISO-8601 duration
  688. value: P2190.0D
  689. valueReference:
  690. schemaKey: PropertyValue
  691. value: dandi:BirthReference
  692. genotype: ''
  693. identifier: '1301204249'
  694. schemaKey: Participant
  695. sex:
  696. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  697. name: Female
  698. schemaKey: SexType
  699. species:
  700. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  701. name: Macaca nemestrina
  702. schemaKey: SpeciesType
  703. wasGeneratedBy:
  704. - description: PLACEHOLDER
  705. identifier: '1301773570'
  706. name: '1301773570'
  707. schemaKey: Session
  708. startDate: '2023-10-05T20:51:43.647000Z'
  709. - description: Metadata generated by DANDI cli
  710. endDate: '2024-03-11T11:13:24.364346-07:00'
  711. id: urn:uuid:3bb0d317-0ef2-4dab-98c4-684b8ec59dcb
  712. name: Metadata generation
  713. schemaKey: Activity
  714. startDate: '2024-03-11T11:13:19.571379-07:00'
  715. wasAssociatedWith:
  716. - identifier: RRID:SCR_019009
  717. name: DANDI Command Line Interface
  718. schemaKey: Software
  719. url: https://github.com/dandi/dandi-cli
  720. version: 0.60.0
  721. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  722. access:
  723. - schemaKey: AccessRequirements
  724. status: dandi:OpenAccess
  725. approach:
  726. - name: electrophysiological approach
  727. schemaKey: ApproachType
  728. blobDateModified: '2024-03-11T11:00:31.481529-07:00'
  729. contentSize: 51440443
  730. contentUrl:
  731. - https://api.dandiarchive.org/api/assets/4eed5f1f-f78a-45a3-99fc-927d2120ca3e/download/
  732. - https://dandiarchive.s3.amazonaws.com/blobs/e3b/8cd/e3b8cd4e-2548-4883-b9af-f91fef629268
  733. dateModified: '2024-03-11T11:13:26.412025-07:00'
  734. datePublished: '2024-03-15T17:54:56.153349+00:00'
  735. digest:
  736. dandi:dandi-etag: f6fce182f83223c1158504d077c4a1b6-1
  737. dandi:sha2-256: f144bf96590dd53dc800846a9b84fc34f1f331c7f41c36a5bcf65f0bb3325c76
  738. encodingFormat: application/x-nwb
  739. id: dandiasset:4eed5f1f-f78a-45a3-99fc-927d2120ca3e
  740. identifier: 4eed5f1f-f78a-45a3-99fc-927d2120ca3e
  741. measurementTechnique:
  742. - name: analytical technique
  743. schemaKey: MeasurementTechniqueType
  744. - name: current clamp technique
  745. schemaKey: MeasurementTechniqueType
  746. - name: voltage clamp technique
  747. schemaKey: MeasurementTechniqueType
  748. path: sub-1301204249/sub-1301204249_ses-1301313606_icephys.nwb
  749. publishedBy:
  750. endDate: '2024-03-15T17:54:56.153349+00:00'
  751. id: urn:uuid:50e77c6f-d28e-4f2a-88e3-05ad91f9925f
  752. name: DANDI publish
  753. schemaKey: PublishActivity
  754. startDate: '2024-03-15T17:54:56.153349+00:00'
  755. wasAssociatedWith:
  756. - id: urn:uuid:7eb327f9-ccc7-4f84-819b-626551d53481
  757. identifier: RRID:SCR_017571
  758. name: DANDI API
  759. schemaKey: Software
  760. version: 0.1.0
  761. schemaKey: Asset
  762. schemaVersion: 0.6.6
  763. variableMeasured:
  764. - schemaKey: PropertyValue
  765. value: VoltageClampSeries
  766. - schemaKey: PropertyValue
  767. value: CurrentClampStimulusSeries
  768. - schemaKey: PropertyValue
  769. value: VoltageClampStimulusSeries
  770. - schemaKey: PropertyValue
  771. value: CurrentClampSeries
  772. - schemaKey: PropertyValue
  773. value: ProcessingModule
  774. wasAttributedTo:
  775. - age:
  776. schemaKey: PropertyValue
  777. unitText: ISO-8601 duration
  778. value: P2190.0D
  779. valueReference:
  780. schemaKey: PropertyValue
  781. value: dandi:BirthReference
  782. genotype: ''
  783. identifier: '1301204249'
  784. schemaKey: Participant
  785. sex:
  786. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  787. name: Female
  788. schemaKey: SexType
  789. species:
  790. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  791. name: Macaca nemestrina
  792. schemaKey: SpeciesType
  793. wasGeneratedBy:
  794. - description: PLACEHOLDER
  795. identifier: '1301313606'
  796. name: '1301313606'
  797. schemaKey: Session
  798. startDate: '2023-10-04T04:20:52.105000Z'
  799. - description: Metadata generated by DANDI cli
  800. endDate: '2024-03-11T11:13:26.412008-07:00'
  801. id: urn:uuid:6b2eeb32-4692-430a-ba4d-c8a25ae025e8
  802. name: Metadata generation
  803. schemaKey: Activity
  804. startDate: '2024-03-11T11:13:21.726611-07:00'
  805. wasAssociatedWith:
  806. - identifier: RRID:SCR_019009
  807. name: DANDI Command Line Interface
  808. schemaKey: Software
  809. url: https://github.com/dandi/dandi-cli
  810. version: 0.60.0
  811. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  812. access:
  813. - schemaKey: AccessRequirements
  814. status: dandi:OpenAccess
  815. approach:
  816. - name: electrophysiological approach
  817. schemaKey: ApproachType
  818. blobDateModified: '2024-03-11T11:00:43.107462-07:00'
  819. contentSize: 60907250
  820. contentUrl:
  821. - https://api.dandiarchive.org/api/assets/9a4d5f6d-225f-4dc1-a974-a742c3e320b9/download/
  822. - https://dandiarchive.s3.amazonaws.com/blobs/f74/f61/f74f614b-25e0-48ec-b6b6-050eb9b0acf5
  823. dateModified: '2024-03-11T11:13:27.309956-07:00'
  824. datePublished: '2024-03-15T17:54:56.160123+00:00'
  825. digest:
  826. dandi:dandi-etag: f75d1fffd48d52ff564b8ebbf4dc69e0-1
  827. dandi:sha2-256: a57a897490cdc4f65a93e30c4578394d928f8b8e1b64a893c22885d6f507ea63
  828. encodingFormat: application/x-nwb
  829. id: dandiasset:9a4d5f6d-225f-4dc1-a974-a742c3e320b9
  830. identifier: 9a4d5f6d-225f-4dc1-a974-a742c3e320b9
  831. measurementTechnique:
  832. - name: analytical technique
  833. schemaKey: MeasurementTechniqueType
  834. - name: current clamp technique
  835. schemaKey: MeasurementTechniqueType
  836. - name: voltage clamp technique
  837. schemaKey: MeasurementTechniqueType
  838. path: sub-1301204249/sub-1301204249_ses-1301715114_icephys.nwb
  839. publishedBy:
  840. endDate: '2024-03-15T17:54:56.160123+00:00'
  841. id: urn:uuid:75572ff5-5d66-4172-ad51-3b0536d2e33b
  842. name: DANDI publish
  843. schemaKey: PublishActivity
  844. startDate: '2024-03-15T17:54:56.160123+00:00'
  845. wasAssociatedWith:
  846. - id: urn:uuid:a9bd9fff-071f-4ce2-a57d-922abce070c0
  847. identifier: RRID:SCR_017571
  848. name: DANDI API
  849. schemaKey: Software
  850. version: 0.1.0
  851. schemaKey: Asset
  852. schemaVersion: 0.6.6
  853. variableMeasured:
  854. - schemaKey: PropertyValue
  855. value: VoltageClampSeries
  856. - schemaKey: PropertyValue
  857. value: CurrentClampStimulusSeries
  858. - schemaKey: PropertyValue
  859. value: VoltageClampStimulusSeries
  860. - schemaKey: PropertyValue
  861. value: CurrentClampSeries
  862. - schemaKey: PropertyValue
  863. value: ProcessingModule
  864. wasAttributedTo:
  865. - age:
  866. schemaKey: PropertyValue
  867. unitText: ISO-8601 duration
  868. value: P2190.0D
  869. valueReference:
  870. schemaKey: PropertyValue
  871. value: dandi:BirthReference
  872. genotype: ''
  873. identifier: '1301204249'
  874. schemaKey: Participant
  875. sex:
  876. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  877. name: Female
  878. schemaKey: SexType
  879. species:
  880. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  881. name: Macaca nemestrina
  882. schemaKey: SpeciesType
  883. wasGeneratedBy:
  884. - description: PLACEHOLDER
  885. identifier: '1301715114'
  886. name: '1301715114'
  887. schemaKey: Session
  888. startDate: '2023-10-05T17:16:05Z'
  889. - description: Metadata generated by DANDI cli
  890. endDate: '2024-03-11T11:13:27.309941-07:00'
  891. id: urn:uuid:ab8369d4-447d-4dbb-ada2-8de1b35617fa
  892. name: Metadata generation
  893. schemaKey: Activity
  894. startDate: '2024-03-11T11:13:24.700020-07:00'
  895. wasAssociatedWith:
  896. - identifier: RRID:SCR_019009
  897. name: DANDI Command Line Interface
  898. schemaKey: Software
  899. url: https://github.com/dandi/dandi-cli
  900. version: 0.60.0
  901. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  902. access:
  903. - schemaKey: AccessRequirements
  904. status: dandi:OpenAccess
  905. approach:
  906. - name: electrophysiological approach
  907. schemaKey: ApproachType
  908. blobDateModified: '2024-03-11T11:00:19.596813-07:00'
  909. contentSize: 49253185
  910. contentUrl:
  911. - https://api.dandiarchive.org/api/assets/af29e5ca-f7ef-4983-a7a2-a8c71090ea01/download/
  912. - https://dandiarchive.s3.amazonaws.com/blobs/592/d19/592d190a-1b45-4f59-8eeb-f7ed80481f9c
  913. dateModified: '2024-03-11T11:13:43.225529-07:00'
  914. datePublished: '2024-03-15T17:54:56.190358+00:00'
  915. digest:
  916. dandi:dandi-etag: 8de16c52aae0bdca88746777e0c3a3ea-1
  917. dandi:sha2-256: 0239201f9d4b659577bd25a784a0f5cdc56945f1460c6acf51c7a7361d6f50b9
  918. encodingFormat: application/x-nwb
  919. id: dandiasset:af29e5ca-f7ef-4983-a7a2-a8c71090ea01
  920. identifier: af29e5ca-f7ef-4983-a7a2-a8c71090ea01
  921. measurementTechnique:
  922. - name: analytical technique
  923. schemaKey: MeasurementTechniqueType
  924. - name: current clamp technique
  925. schemaKey: MeasurementTechniqueType
  926. - name: voltage clamp technique
  927. schemaKey: MeasurementTechniqueType
  928. path: sub-1301204249/sub-1301204249_ses-1302797223_icephys.nwb
  929. publishedBy:
  930. endDate: '2024-03-15T17:54:56.190358+00:00'
  931. id: urn:uuid:c197fc79-d4ef-495f-94d5-5d88bd0a60d5
  932. name: DANDI publish
  933. schemaKey: PublishActivity
  934. startDate: '2024-03-15T17:54:56.190358+00:00'
  935. wasAssociatedWith:
  936. - id: urn:uuid:85002953-4b1c-4b25-a83b-9fb58f8228da
  937. identifier: RRID:SCR_017571
  938. name: DANDI API
  939. schemaKey: Software
  940. version: 0.1.0
  941. schemaKey: Asset
  942. schemaVersion: 0.6.6
  943. variableMeasured:
  944. - schemaKey: PropertyValue
  945. value: VoltageClampSeries
  946. - schemaKey: PropertyValue
  947. value: CurrentClampStimulusSeries
  948. - schemaKey: PropertyValue
  949. value: VoltageClampStimulusSeries
  950. - schemaKey: PropertyValue
  951. value: CurrentClampSeries
  952. - schemaKey: PropertyValue
  953. value: ProcessingModule
  954. wasAttributedTo:
  955. - age:
  956. schemaKey: PropertyValue
  957. unitText: ISO-8601 duration
  958. value: P2190.0D
  959. valueReference:
  960. schemaKey: PropertyValue
  961. value: dandi:BirthReference
  962. genotype: ''
  963. identifier: '1301204249'
  964. schemaKey: Participant
  965. sex:
  966. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  967. name: Female
  968. schemaKey: SexType
  969. species:
  970. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  971. name: Macaca nemestrina
  972. schemaKey: SpeciesType
  973. wasGeneratedBy:
  974. - description: PLACEHOLDER
  975. identifier: '1302797223'
  976. name: '1302797223'
  977. schemaKey: Session
  978. startDate: '2023-10-11T01:47:28.974000Z'
  979. - description: Metadata generated by DANDI cli
  980. endDate: '2024-03-11T11:13:43.225512-07:00'
  981. id: urn:uuid:daea0cc9-b65c-433d-a8bc-fca94edfd1b5
  982. name: Metadata generation
  983. schemaKey: Activity
  984. startDate: '2024-03-11T11:13:41.425065-07:00'
  985. wasAssociatedWith:
  986. - identifier: RRID:SCR_019009
  987. name: DANDI Command Line Interface
  988. schemaKey: Software
  989. url: https://github.com/dandi/dandi-cli
  990. version: 0.60.0
  991. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  992. access:
  993. - schemaKey: AccessRequirements
  994. status: dandi:OpenAccess
  995. approach:
  996. - name: electrophysiological approach
  997. schemaKey: ApproachType
  998. blobDateModified: '2024-03-11T11:00:14.251102-07:00'
  999. contentSize: 57779011
  1000. contentUrl:
  1001. - https://api.dandiarchive.org/api/assets/0e3ed2f5-c028-4c1d-8918-3e2ea39b1450/download/
  1002. - https://dandiarchive.s3.amazonaws.com/blobs/215/4c8/2154c8ec-3fc6-4165-8bb5-a05cf69d55ac
  1003. dateModified: '2024-03-11T11:13:41.379918-07:00'
  1004. datePublished: '2024-03-15T17:54:56.167653+00:00'
  1005. digest:
  1006. dandi:dandi-etag: d616cad600c223a0616e93206fe127c1-1
  1007. dandi:sha2-256: 0da4f1824448b0dcdb72394f49c32f191a03a9f8a3c221fcdccc2ce386cf918a
  1008. encodingFormat: application/x-nwb
  1009. id: dandiasset:0e3ed2f5-c028-4c1d-8918-3e2ea39b1450
  1010. identifier: 0e3ed2f5-c028-4c1d-8918-3e2ea39b1450
  1011. measurementTechnique:
  1012. - name: analytical technique
  1013. schemaKey: MeasurementTechniqueType
  1014. - name: current clamp technique
  1015. schemaKey: MeasurementTechniqueType
  1016. - name: voltage clamp technique
  1017. schemaKey: MeasurementTechniqueType
  1018. path: sub-1301204249/sub-1301204249_ses-1301793993_icephys.nwb
  1019. publishedBy:
  1020. endDate: '2024-03-15T17:54:56.167653+00:00'
  1021. id: urn:uuid:eeeb2f85-e117-4b22-955d-eaae9aefe7b0
  1022. name: DANDI publish
  1023. schemaKey: PublishActivity
  1024. startDate: '2024-03-15T17:54:56.167653+00:00'
  1025. wasAssociatedWith:
  1026. - id: urn:uuid:25aad180-e75f-4f43-8b5e-25808e94aef5
  1027. identifier: RRID:SCR_017571
  1028. name: DANDI API
  1029. schemaKey: Software
  1030. version: 0.1.0
  1031. schemaKey: Asset
  1032. schemaVersion: 0.6.6
  1033. variableMeasured:
  1034. - schemaKey: PropertyValue
  1035. value: VoltageClampSeries
  1036. - schemaKey: PropertyValue
  1037. value: CurrentClampStimulusSeries
  1038. - schemaKey: PropertyValue
  1039. value: VoltageClampStimulusSeries
  1040. - schemaKey: PropertyValue
  1041. value: CurrentClampSeries
  1042. - schemaKey: PropertyValue
  1043. value: ProcessingModule
  1044. wasAttributedTo:
  1045. - age:
  1046. schemaKey: PropertyValue
  1047. unitText: ISO-8601 duration
  1048. value: P2190.0D
  1049. valueReference:
  1050. schemaKey: PropertyValue
  1051. value: dandi:BirthReference
  1052. genotype: ''
  1053. identifier: '1301204249'
  1054. schemaKey: Participant
  1055. sex:
  1056. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1057. name: Female
  1058. schemaKey: SexType
  1059. species:
  1060. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  1061. name: Macaca nemestrina
  1062. schemaKey: SpeciesType
  1063. wasGeneratedBy:
  1064. - description: PLACEHOLDER
  1065. identifier: '1301793993'
  1066. name: '1301793993'
  1067. schemaKey: Session
  1068. startDate: '2023-10-05T21:52:43.591000Z'
  1069. - description: Metadata generated by DANDI cli
  1070. endDate: '2024-03-11T11:13:41.379903-07:00'
  1071. id: urn:uuid:44ac538b-55bb-4a5f-a0e5-eb9284e8abcf
  1072. name: Metadata generation
  1073. schemaKey: Activity
  1074. startDate: '2024-03-11T11:13:38.017689-07:00'
  1075. wasAssociatedWith:
  1076. - identifier: RRID:SCR_019009
  1077. name: DANDI Command Line Interface
  1078. schemaKey: Software
  1079. url: https://github.com/dandi/dandi-cli
  1080. version: 0.60.0
  1081. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.6/context.json
  1082. access:
  1083. - schemaKey: AccessRequirements
  1084. status: dandi:OpenAccess
  1085. approach:
  1086. - name: electrophysiological approach
  1087. schemaKey: ApproachType
  1088. blobDateModified: '2024-03-11T11:00:36.130012-07:00'
  1089. contentSize: 43290719
  1090. contentUrl:
  1091. - https://api.dandiarchive.org/api/assets/0f3606f3-aeb7-4eb5-89ca-bf829f649960/download/
  1092. - https://dandiarchive.s3.amazonaws.com/blobs/870/ad0/870ad0c8-c3f9-42f2-8bb9-49b8c74a2a75
  1093. dateModified: '2024-03-11T11:14:01.288259-07:00'
  1094. datePublished: '2024-03-15T17:54:56.174957+00:00'
  1095. digest:
  1096. dandi:dandi-etag: dde2dde76f39b9aa8db561e3665bf098-1
  1097. dandi:sha2-256: 0fac3ac3d3940c1f8ccd008e80157198dc7b88ba1b06e741b7f121745d789917
  1098. encodingFormat: application/x-nwb
  1099. id: dandiasset:0f3606f3-aeb7-4eb5-89ca-bf829f649960
  1100. identifier: 0f3606f3-aeb7-4eb5-89ca-bf829f649960
  1101. measurementTechnique:
  1102. - name: analytical technique
  1103. schemaKey: MeasurementTechniqueType
  1104. - name: current clamp technique
  1105. schemaKey: MeasurementTechniqueType
  1106. - name: voltage clamp technique
  1107. schemaKey: MeasurementTechniqueType
  1108. path: sub-1301204249/sub-1301204249_ses-1303246182_icephys.nwb
  1109. publishedBy:
  1110. endDate: '2024-03-15T17:54:56.174957+00:00'
  1111. id: urn:uuid:eea5edb9-6636-47cb-a387-7a43c2dcc4fa
  1112. name: DANDI publish
  1113. schemaKey: PublishActivity
  1114. startDate: '2024-03-15T17:54:56.174957+00:00'
  1115. wasAssociatedWith:
  1116. - id: urn:uuid:b7037a74-491d-4f62-a6dd-1b4aea2b2be7
  1117. identifier: RRID:SCR_017571
  1118. name: DANDI API
  1119. schemaKey: Software
  1120. version: 0.1.0
  1121. schemaKey: Asset
  1122. schemaVersion: 0.6.6
  1123. variableMeasured:
  1124. - schemaKey: PropertyValue
  1125. value: VoltageClampSeries
  1126. - schemaKey: PropertyValue
  1127. value: CurrentClampStimulusSeries
  1128. - schemaKey: PropertyValue
  1129. value: VoltageClampStimulusSeries
  1130. - schemaKey: PropertyValue
  1131. value: CurrentClampSeries
  1132. - schemaKey: PropertyValue
  1133. value: ProcessingModule
  1134. wasAttributedTo:
  1135. - age:
  1136. schemaKey: PropertyValue
  1137. unitText: ISO-8601 duration
  1138. value: P2190.0D
  1139. valueReference:
  1140. schemaKey: PropertyValue
  1141. value: dandi:BirthReference
  1142. genotype: ''
  1143. identifier: '1301204249'
  1144. schemaKey: Participant
  1145. sex:
  1146. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1147. name: Female
  1148. schemaKey: SexType
  1149. species:
  1150. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9545
  1151. name: Macaca nemestrina
  1152. schemaKey: SpeciesType
  1153. wasGeneratedBy:
  1154. - description: PLACEHOLDER
  1155. identifier: '1303246182'
  1156. name: '1303246182'
  1157. schemaKey: Session
  1158. startDate: '2023-10-12T19:44:30.659000Z'
  1159. - description: Metadata generated by DANDI cli
  1160. endDate: '2024-03-11T11:14:01.288246-07:00'
  1161. id: urn:uuid:7b76c367-1982-4bbe-92b0-81a00419ae8b
  1162. name: Metadata generation
  1163. schemaKey: Activity
  1164. startDate: '2024-03-11T11:13:59.758781-07:00'
  1165. wasAssociatedWith:
  1166. - identifier: RRID:SCR_019009
  1167. name: DANDI Command Line Interface
  1168. schemaKey: Software
  1169. url: https://github.com/dandi/dandi-cli
  1170. version: 0.60.0
Tip!

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

Comments

Loading...