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 57 KB
Raw

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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. blobDateModified: '2024-01-11T19:24:37.283485-05:00'
  6. contentSize: 374075
  7. contentUrl:
  8. - https://api.dandiarchive.org/api/assets/f730f32e-2bc9-4e9f-bd0d-73b74096637b/download/
  9. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/2ab/98e/2ab98ef5-3358-4f03-8170-1551c19aea88
  10. dateModified: '2024-01-11T19:24:56.743480-05:00'
  11. digest:
  12. dandi:dandi-etag: e529390bfdcbd0c78c4224262285a5da-1
  13. dandi:sha2-256: a55e462ec16e2f10ddd31ae7326be65ba467aa920e99a67df7b2422e49bd20d4
  14. encodingFormat: video/mp4
  15. id: dandiasset:f730f32e-2bc9-4e9f-bd0d-73b74096637b
  16. identifier: f730f32e-2bc9-4e9f-bd0d-73b74096637b
  17. path: VideoStimulusSet/exp_gratingsAdap_s3_1.mp4
  18. schemaKey: Asset
  19. schemaVersion: 0.6.4
  20. wasGeneratedBy:
  21. - description: Metadata generated by DANDI cli
  22. endDate: '2024-01-11T19:24:56.743447-05:00'
  23. id: urn:uuid:3feae92d-64bc-49d2-8fea-1e3479b579b2
  24. name: Metadata generation
  25. schemaKey: Activity
  26. startDate: '2024-01-11T19:24:56.743447-05:00'
  27. wasAssociatedWith:
  28. - identifier: RRID:SCR_019009
  29. name: DANDI Command Line Interface
  30. schemaKey: Software
  31. url: https://github.com/dandi/dandi-cli
  32. version: 0.59.0
  33. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  34. access:
  35. - schemaKey: AccessRequirements
  36. status: dandi:OpenAccess
  37. blobDateModified: '2024-01-11T19:24:37.262485-05:00'
  38. contentSize: 379590
  39. contentUrl:
  40. - https://api.dandiarchive.org/api/assets/8cd51b99-7de7-467d-b186-f96416ab79a8/download/
  41. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/b14/e83/b14e83b8-9394-4569-94ef-5f73e7ce981b
  42. dateModified: '2024-01-11T19:24:56.469751-05:00'
  43. digest:
  44. dandi:dandi-etag: b29005a597ddc0c2721e1fb70c303a42-1
  45. dandi:sha2-256: b1fe157cfed8cfdf25607b8018cdcb1cc6157ecbaffab68332f790c3083e7250
  46. encodingFormat: video/mp4
  47. id: dandiasset:8cd51b99-7de7-467d-b186-f96416ab79a8
  48. identifier: 8cd51b99-7de7-467d-b186-f96416ab79a8
  49. path: VideoStimulusSet/exp_gratingsAdap_s3_0.mp4
  50. schemaKey: Asset
  51. schemaVersion: 0.6.4
  52. wasGeneratedBy:
  53. - description: Metadata generated by DANDI cli
  54. endDate: '2024-01-11T19:24:56.469715-05:00'
  55. id: urn:uuid:7ee1c001-0a0e-4096-ad13-b435a3ea09a6
  56. name: Metadata generation
  57. schemaKey: Activity
  58. startDate: '2024-01-11T19:24:56.469715-05:00'
  59. wasAssociatedWith:
  60. - identifier: RRID:SCR_019009
  61. name: DANDI Command Line Interface
  62. schemaKey: Software
  63. url: https://github.com/dandi/dandi-cli
  64. version: 0.59.0
  65. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  66. access:
  67. - schemaKey: AccessRequirements
  68. status: dandi:OpenAccess
  69. blobDateModified: '2024-01-11T19:24:37.351485-05:00'
  70. contentSize: 363552
  71. contentUrl:
  72. - https://api.dandiarchive.org/api/assets/e9cccb2d-48bf-49c3-a4f3-85674cd03d2a/download/
  73. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/4b6/2a9/4b62a9f7-47df-4c1a-b986-dd0c7b359ae7
  74. dateModified: '2024-01-11T19:24:57.190799-05:00'
  75. digest:
  76. dandi:dandi-etag: dbe0aec9d843250901fdefe473e0e30f-1
  77. dandi:sha2-256: b0c337bef00a067da35069c8f4b8a73b34fe123f10cf72d034b65464c8e98d80
  78. encodingFormat: video/mp4
  79. id: dandiasset:e9cccb2d-48bf-49c3-a4f3-85674cd03d2a
  80. identifier: e9cccb2d-48bf-49c3-a4f3-85674cd03d2a
  81. path: VideoStimulusSet/exp_gratingsAdap_s3_12.mp4
  82. schemaKey: Asset
  83. schemaVersion: 0.6.4
  84. wasGeneratedBy:
  85. - description: Metadata generated by DANDI cli
  86. endDate: '2024-01-11T19:24:57.190759-05:00'
  87. id: urn:uuid:59aa4ba3-c21e-4a95-b75c-4d818d51bbbc
  88. name: Metadata generation
  89. schemaKey: Activity
  90. startDate: '2024-01-11T19:24:57.190759-05:00'
  91. wasAssociatedWith:
  92. - identifier: RRID:SCR_019009
  93. name: DANDI Command Line Interface
  94. schemaKey: Software
  95. url: https://github.com/dandi/dandi-cli
  96. version: 0.59.0
  97. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  98. access:
  99. - schemaKey: AccessRequirements
  100. status: dandi:OpenAccess
  101. blobDateModified: '2024-01-11T19:24:37.302485-05:00'
  102. contentSize: 365397
  103. contentUrl:
  104. - https://api.dandiarchive.org/api/assets/3736dee3-63cc-4b3a-9e32-869ad12e5004/download/
  105. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/56f/fc8/56ffc8f3-d2ea-46c5-b5de-673bb4b3b80b
  106. dateModified: '2024-01-11T19:24:56.842738-05:00'
  107. digest:
  108. dandi:dandi-etag: 96aa258f094e469b482daec853ddc0bb-1
  109. dandi:sha2-256: c591c4d047a9bf26c6476d8322de13125eadd21826c444fb15b7687ffd0fe5a7
  110. encodingFormat: video/mp4
  111. id: dandiasset:3736dee3-63cc-4b3a-9e32-869ad12e5004
  112. identifier: 3736dee3-63cc-4b3a-9e32-869ad12e5004
  113. path: VideoStimulusSet/exp_gratingsAdap_s3_10.mp4
  114. schemaKey: Asset
  115. schemaVersion: 0.6.4
  116. wasGeneratedBy:
  117. - description: Metadata generated by DANDI cli
  118. endDate: '2024-01-11T19:24:56.842711-05:00'
  119. id: urn:uuid:831223ff-8ec0-4386-b491-5e670bebd4f7
  120. name: Metadata generation
  121. schemaKey: Activity
  122. startDate: '2024-01-11T19:24:56.842711-05:00'
  123. wasAssociatedWith:
  124. - identifier: RRID:SCR_019009
  125. name: DANDI Command Line Interface
  126. schemaKey: Software
  127. url: https://github.com/dandi/dandi-cli
  128. version: 0.59.0
  129. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  130. access:
  131. - schemaKey: AccessRequirements
  132. status: dandi:OpenAccess
  133. blobDateModified: '2024-01-11T19:24:37.324485-05:00'
  134. contentSize: 360288
  135. contentUrl:
  136. - https://api.dandiarchive.org/api/assets/1bf49b28-527a-4d7c-a5ea-f1e4babb2668/download/
  137. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/87d/0f4/87d0f4b0-9bd1-48fb-b7d3-c37dec08d36b
  138. dateModified: '2024-01-11T19:24:57.057857-05:00'
  139. digest:
  140. dandi:dandi-etag: 1a993835b72a8994f983c0d26c21255d-1
  141. dandi:sha2-256: 657df75587df04e982b6be8033b9cf5719e9d5732e3e91dee54de5e84ec73c31
  142. encodingFormat: video/mp4
  143. id: dandiasset:1bf49b28-527a-4d7c-a5ea-f1e4babb2668
  144. identifier: 1bf49b28-527a-4d7c-a5ea-f1e4babb2668
  145. path: VideoStimulusSet/exp_gratingsAdap_s3_11.mp4
  146. schemaKey: Asset
  147. schemaVersion: 0.6.4
  148. wasGeneratedBy:
  149. - description: Metadata generated by DANDI cli
  150. endDate: '2024-01-11T19:24:57.057826-05:00'
  151. id: urn:uuid:edb51d8e-946d-4310-83a2-4e00afe4f3e4
  152. name: Metadata generation
  153. schemaKey: Activity
  154. startDate: '2024-01-11T19:24:57.057826-05:00'
  155. wasAssociatedWith:
  156. - identifier: RRID:SCR_019009
  157. name: DANDI Command Line Interface
  158. schemaKey: Software
  159. url: https://github.com/dandi/dandi-cli
  160. version: 0.59.0
  161. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  162. access:
  163. - schemaKey: AccessRequirements
  164. status: dandi:OpenAccess
  165. blobDateModified: '2024-01-11T19:24:37.370485-05:00'
  166. contentSize: 358613
  167. contentUrl:
  168. - https://api.dandiarchive.org/api/assets/d7232870-af54-4303-8aa7-e1be666b09ae/download/
  169. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/234/83e/23483eaa-abb9-4467-9da3-f1c9d5a17aa5
  170. dateModified: '2024-01-11T19:25:00.049457-05:00'
  171. digest:
  172. dandi:dandi-etag: 4d4ec388bf016aa6bcbc43311031a3a3-1
  173. dandi:sha2-256: 53849a6d52a1cd2d2e2b334e3207ceb18936609a22286bd9294bf1afc505a14a
  174. encodingFormat: video/mp4
  175. id: dandiasset:d7232870-af54-4303-8aa7-e1be666b09ae
  176. identifier: d7232870-af54-4303-8aa7-e1be666b09ae
  177. path: VideoStimulusSet/exp_gratingsAdap_s3_13.mp4
  178. schemaKey: Asset
  179. schemaVersion: 0.6.4
  180. wasGeneratedBy:
  181. - description: Metadata generated by DANDI cli
  182. endDate: '2024-01-11T19:25:00.049410-05:00'
  183. id: urn:uuid:07e18e91-9247-4499-bfaa-938b50472373
  184. name: Metadata generation
  185. schemaKey: Activity
  186. startDate: '2024-01-11T19:25:00.049410-05:00'
  187. wasAssociatedWith:
  188. - identifier: RRID:SCR_019009
  189. name: DANDI Command Line Interface
  190. schemaKey: Software
  191. url: https://github.com/dandi/dandi-cli
  192. version: 0.59.0
  193. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  194. access:
  195. - schemaKey: AccessRequirements
  196. status: dandi:OpenAccess
  197. blobDateModified: '2024-01-11T19:24:37.389485-05:00'
  198. contentSize: 373958
  199. contentUrl:
  200. - https://api.dandiarchive.org/api/assets/3013c176-5c8c-4ac0-8d1f-d6faaf598b2f/download/
  201. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/9f8/9af/9f89af29-e73e-4ea2-9c90-eda52769e8e2
  202. dateModified: '2024-01-11T19:25:00.250743-05:00'
  203. digest:
  204. dandi:dandi-etag: 74528bd8ef35c1de6b3a502bf23ffb22-1
  205. dandi:sha2-256: 9dcfd76022f34525131ef78e21bc3a3d8852f459a594e370e8d8ae4526875e8c
  206. encodingFormat: video/mp4
  207. id: dandiasset:3013c176-5c8c-4ac0-8d1f-d6faaf598b2f
  208. identifier: 3013c176-5c8c-4ac0-8d1f-d6faaf598b2f
  209. path: VideoStimulusSet/exp_gratingsAdap_s3_14.mp4
  210. schemaKey: Asset
  211. schemaVersion: 0.6.4
  212. wasGeneratedBy:
  213. - description: Metadata generated by DANDI cli
  214. endDate: '2024-01-11T19:25:00.250722-05:00'
  215. id: urn:uuid:9684df78-81ca-4b6c-886c-e35a5a1aa08d
  216. name: Metadata generation
  217. schemaKey: Activity
  218. startDate: '2024-01-11T19:25:00.250722-05:00'
  219. wasAssociatedWith:
  220. - identifier: RRID:SCR_019009
  221. name: DANDI Command Line Interface
  222. schemaKey: Software
  223. url: https://github.com/dandi/dandi-cli
  224. version: 0.59.0
  225. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  226. access:
  227. - schemaKey: AccessRequirements
  228. status: dandi:OpenAccess
  229. blobDateModified: '2024-01-11T19:24:37.413485-05:00'
  230. contentSize: 364467
  231. contentUrl:
  232. - https://api.dandiarchive.org/api/assets/1f1ec0e2-6479-4a32-9fe1-e4ac94f2af8f/download/
  233. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/966/8a9/9668a912-f7db-460e-a358-68c329f15cb4
  234. dateModified: '2024-01-11T19:25:00.219975-05:00'
  235. digest:
  236. dandi:dandi-etag: 9ba95086770023cd14179f49489c91f4-1
  237. dandi:sha2-256: 54d82790f2d3cda6147004ea98f234815f2b032e3370d4dcf4e10b4f13deda8e
  238. encodingFormat: video/mp4
  239. id: dandiasset:1f1ec0e2-6479-4a32-9fe1-e4ac94f2af8f
  240. identifier: 1f1ec0e2-6479-4a32-9fe1-e4ac94f2af8f
  241. path: VideoStimulusSet/exp_gratingsAdap_s3_15.mp4
  242. schemaKey: Asset
  243. schemaVersion: 0.6.4
  244. wasGeneratedBy:
  245. - description: Metadata generated by DANDI cli
  246. endDate: '2024-01-11T19:25:00.219929-05:00'
  247. id: urn:uuid:1714a1fd-d9e2-4f03-b023-0b56d0ae552c
  248. name: Metadata generation
  249. schemaKey: Activity
  250. startDate: '2024-01-11T19:25:00.219929-05:00'
  251. wasAssociatedWith:
  252. - identifier: RRID:SCR_019009
  253. name: DANDI Command Line Interface
  254. schemaKey: Software
  255. url: https://github.com/dandi/dandi-cli
  256. version: 0.59.0
  257. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  258. access:
  259. - schemaKey: AccessRequirements
  260. status: dandi:OpenAccess
  261. blobDateModified: '2024-01-11T19:24:37.453485-05:00'
  262. contentSize: 368020
  263. contentUrl:
  264. - https://api.dandiarchive.org/api/assets/cd8b3a9b-153e-4246-9741-612d779a1ba3/download/
  265. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/133/e48/133e4897-56bb-4a84-8c9a-ff8632d1ba32
  266. dateModified: '2024-01-11T19:25:00.450597-05:00'
  267. digest:
  268. dandi:dandi-etag: 914ee3ac07978085cd4881af8ee33716-1
  269. dandi:sha2-256: c643d982697646909766133e2843778a84a1ca0bebbbaf9fc6ae342fbc8ce524
  270. encodingFormat: video/mp4
  271. id: dandiasset:cd8b3a9b-153e-4246-9741-612d779a1ba3
  272. identifier: cd8b3a9b-153e-4246-9741-612d779a1ba3
  273. path: VideoStimulusSet/exp_gratingsAdap_s3_16.mp4
  274. schemaKey: Asset
  275. schemaVersion: 0.6.4
  276. wasGeneratedBy:
  277. - description: Metadata generated by DANDI cli
  278. endDate: '2024-01-11T19:25:00.450567-05:00'
  279. id: urn:uuid:7d99fc62-69ce-44ee-8184-a64041f8ca2c
  280. name: Metadata generation
  281. schemaKey: Activity
  282. startDate: '2024-01-11T19:25:00.450567-05:00'
  283. wasAssociatedWith:
  284. - identifier: RRID:SCR_019009
  285. name: DANDI Command Line Interface
  286. schemaKey: Software
  287. url: https://github.com/dandi/dandi-cli
  288. version: 0.59.0
  289. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  290. access:
  291. - schemaKey: AccessRequirements
  292. status: dandi:OpenAccess
  293. blobDateModified: '2024-01-11T19:24:37.482485-05:00'
  294. contentSize: 365823
  295. contentUrl:
  296. - https://api.dandiarchive.org/api/assets/2b7eb2e8-7e8f-46eb-9e92-00ebef108778/download/
  297. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/6de/f8a/6def8a87-fd66-462d-9f0d-79f051e0d4fa
  298. dateModified: '2024-01-11T19:25:00.632998-05:00'
  299. digest:
  300. dandi:dandi-etag: 83e41c28df8d8f22ccb4d64d93824b10-1
  301. dandi:sha2-256: 3d37692ae8243a2e85530ff94ecfaf9d3eafff088fb08ff960356239c222d449
  302. encodingFormat: video/mp4
  303. id: dandiasset:2b7eb2e8-7e8f-46eb-9e92-00ebef108778
  304. identifier: 2b7eb2e8-7e8f-46eb-9e92-00ebef108778
  305. path: VideoStimulusSet/exp_gratingsAdap_s3_17.mp4
  306. schemaKey: Asset
  307. schemaVersion: 0.6.4
  308. wasGeneratedBy:
  309. - description: Metadata generated by DANDI cli
  310. endDate: '2024-01-11T19:25:00.632941-05:00'
  311. id: urn:uuid:049b8653-f6ad-4834-9b06-80335793e22d
  312. name: Metadata generation
  313. schemaKey: Activity
  314. startDate: '2024-01-11T19:25:00.632941-05:00'
  315. wasAssociatedWith:
  316. - identifier: RRID:SCR_019009
  317. name: DANDI Command Line Interface
  318. schemaKey: Software
  319. url: https://github.com/dandi/dandi-cli
  320. version: 0.59.0
  321. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  322. access:
  323. - schemaKey: AccessRequirements
  324. status: dandi:OpenAccess
  325. blobDateModified: '2024-01-11T19:24:37.551485-05:00'
  326. contentSize: 372374
  327. contentUrl:
  328. - https://api.dandiarchive.org/api/assets/bfc5b9dd-b156-480f-8e0d-0abe59dfb2fd/download/
  329. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/d88/f6e/d88f6ea1-9d17-44d4-80f2-edeee0f197cb
  330. dateModified: '2024-01-11T19:25:02.591235-05:00'
  331. digest:
  332. dandi:dandi-etag: 6b9cdcf34d9ee0f7bd9459691a04e3fa-1
  333. dandi:sha2-256: 04d59ca1053773e34915f40ba38ebe7399a976baabdf9e4ff7d4c885646103a0
  334. encodingFormat: video/mp4
  335. id: dandiasset:bfc5b9dd-b156-480f-8e0d-0abe59dfb2fd
  336. identifier: bfc5b9dd-b156-480f-8e0d-0abe59dfb2fd
  337. path: VideoStimulusSet/exp_gratingsAdap_s3_18.mp4
  338. schemaKey: Asset
  339. schemaVersion: 0.6.4
  340. wasGeneratedBy:
  341. - description: Metadata generated by DANDI cli
  342. endDate: '2024-01-11T19:25:02.591201-05:00'
  343. id: urn:uuid:a03efa7f-51db-4206-acc4-4b423bc81c63
  344. name: Metadata generation
  345. schemaKey: Activity
  346. startDate: '2024-01-11T19:25:02.591201-05:00'
  347. wasAssociatedWith:
  348. - identifier: RRID:SCR_019009
  349. name: DANDI Command Line Interface
  350. schemaKey: Software
  351. url: https://github.com/dandi/dandi-cli
  352. version: 0.59.0
  353. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  354. access:
  355. - schemaKey: AccessRequirements
  356. status: dandi:OpenAccess
  357. blobDateModified: '2024-01-11T19:24:37.604485-05:00'
  358. contentSize: 373233
  359. contentUrl:
  360. - https://api.dandiarchive.org/api/assets/b4fc764c-06d7-494c-896b-8b60764d778e/download/
  361. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/b14/c57/b14c573b-48c1-42a5-998e-842cec3b7403
  362. dateModified: '2024-01-11T19:25:04.142704-05:00'
  363. digest:
  364. dandi:dandi-etag: 662472684a9c74b1f282fdac396152e2-1
  365. dandi:sha2-256: 36ccdc2710fe1150f11377c0d692954da3ce6e923f0dd41a1791d46480e85445
  366. encodingFormat: video/mp4
  367. id: dandiasset:b4fc764c-06d7-494c-896b-8b60764d778e
  368. identifier: b4fc764c-06d7-494c-896b-8b60764d778e
  369. path: VideoStimulusSet/exp_gratingsAdap_s3_19.mp4
  370. schemaKey: Asset
  371. schemaVersion: 0.6.4
  372. wasGeneratedBy:
  373. - description: Metadata generated by DANDI cli
  374. endDate: '2024-01-11T19:25:04.142670-05:00'
  375. id: urn:uuid:95a14731-658f-487a-a332-9c7aaff23222
  376. name: Metadata generation
  377. schemaKey: Activity
  378. startDate: '2024-01-11T19:25:04.142670-05:00'
  379. wasAssociatedWith:
  380. - identifier: RRID:SCR_019009
  381. name: DANDI Command Line Interface
  382. schemaKey: Software
  383. url: https://github.com/dandi/dandi-cli
  384. version: 0.59.0
  385. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  386. access:
  387. - schemaKey: AccessRequirements
  388. status: dandi:OpenAccess
  389. blobDateModified: '2024-01-11T19:24:37.643485-05:00'
  390. contentSize: 364337
  391. contentUrl:
  392. - https://api.dandiarchive.org/api/assets/cdd40a4f-83bb-4d2a-98b3-e037a167e775/download/
  393. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/74a/7a0/74a7a0a6-f1fe-4441-bb71-ba40ec9a266a
  394. dateModified: '2024-01-11T19:25:04.464945-05:00'
  395. digest:
  396. dandi:dandi-etag: 976d1accdedf62ce243285eeb979e88e-1
  397. dandi:sha2-256: 3081495778be37ff995bb934d543eed1764f5934f25e002f97e2b2dcb60a4809
  398. encodingFormat: video/mp4
  399. id: dandiasset:cdd40a4f-83bb-4d2a-98b3-e037a167e775
  400. identifier: cdd40a4f-83bb-4d2a-98b3-e037a167e775
  401. path: VideoStimulusSet/exp_gratingsAdap_s3_2.mp4
  402. schemaKey: Asset
  403. schemaVersion: 0.6.4
  404. wasGeneratedBy:
  405. - description: Metadata generated by DANDI cli
  406. endDate: '2024-01-11T19:25:04.464893-05:00'
  407. id: urn:uuid:52ef51c3-6975-4185-9d52-3609a4098c6e
  408. name: Metadata generation
  409. schemaKey: Activity
  410. startDate: '2024-01-11T19:25:04.464893-05:00'
  411. wasAssociatedWith:
  412. - identifier: RRID:SCR_019009
  413. name: DANDI Command Line Interface
  414. schemaKey: Software
  415. url: https://github.com/dandi/dandi-cli
  416. version: 0.59.0
  417. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  418. access:
  419. - schemaKey: AccessRequirements
  420. status: dandi:OpenAccess
  421. blobDateModified: '2024-01-11T19:24:37.685485-05:00'
  422. contentSize: 362101
  423. contentUrl:
  424. - https://api.dandiarchive.org/api/assets/105c11d5-5f6b-485d-9937-9d27caa8351e/download/
  425. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/f5a/1e4/f5a1e4fb-665b-4659-9d7e-1bf7aafc863c
  426. dateModified: '2024-01-11T19:25:04.581387-05:00'
  427. digest:
  428. dandi:dandi-etag: 2dbf4105abf00943bf51ca3db686ffbf-1
  429. dandi:sha2-256: 0cbf6635d768d63b8424009e02be2de0b0f5ce51943e56f4967df598b68d9c16
  430. encodingFormat: video/mp4
  431. id: dandiasset:105c11d5-5f6b-485d-9937-9d27caa8351e
  432. identifier: 105c11d5-5f6b-485d-9937-9d27caa8351e
  433. path: VideoStimulusSet/exp_gratingsAdap_s3_21.mp4
  434. schemaKey: Asset
  435. schemaVersion: 0.6.4
  436. wasGeneratedBy:
  437. - description: Metadata generated by DANDI cli
  438. endDate: '2024-01-11T19:25:04.581349-05:00'
  439. id: urn:uuid:f1acadd5-7e3b-471d-9828-c1a9952dfa07
  440. name: Metadata generation
  441. schemaKey: Activity
  442. startDate: '2024-01-11T19:25:04.581349-05:00'
  443. wasAssociatedWith:
  444. - identifier: RRID:SCR_019009
  445. name: DANDI Command Line Interface
  446. schemaKey: Software
  447. url: https://github.com/dandi/dandi-cli
  448. version: 0.59.0
  449. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  450. access:
  451. - schemaKey: AccessRequirements
  452. status: dandi:OpenAccess
  453. blobDateModified: '2024-01-11T19:24:37.663485-05:00'
  454. contentSize: 372690
  455. contentUrl:
  456. - https://api.dandiarchive.org/api/assets/40b076e5-96cd-414c-a880-ecfc1d8ea041/download/
  457. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/fce/de2/fcede28e-47a2-4529-9d5a-2d04f60d94d7
  458. dateModified: '2024-01-11T19:25:04.532137-05:00'
  459. digest:
  460. dandi:dandi-etag: 1a0e487ca6963b562d3c211674407859-1
  461. dandi:sha2-256: 11bdbdae3db366e7c102407f19206bd3f593040a9b7038f496386a4fb1382fd4
  462. encodingFormat: video/mp4
  463. id: dandiasset:40b076e5-96cd-414c-a880-ecfc1d8ea041
  464. identifier: 40b076e5-96cd-414c-a880-ecfc1d8ea041
  465. path: VideoStimulusSet/exp_gratingsAdap_s3_20.mp4
  466. schemaKey: Asset
  467. schemaVersion: 0.6.4
  468. wasGeneratedBy:
  469. - description: Metadata generated by DANDI cli
  470. endDate: '2024-01-11T19:25:04.532079-05:00'
  471. id: urn:uuid:7881390e-85ae-4042-a122-174b31520e8a
  472. name: Metadata generation
  473. schemaKey: Activity
  474. startDate: '2024-01-11T19:25:04.532079-05:00'
  475. wasAssociatedWith:
  476. - identifier: RRID:SCR_019009
  477. name: DANDI Command Line Interface
  478. schemaKey: Software
  479. url: https://github.com/dandi/dandi-cli
  480. version: 0.59.0
  481. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  482. access:
  483. - schemaKey: AccessRequirements
  484. status: dandi:OpenAccess
  485. blobDateModified: '2024-01-11T19:24:37.697484-05:00'
  486. contentSize: 367931
  487. contentUrl:
  488. - https://api.dandiarchive.org/api/assets/f86ce5c6-5377-4b90-b97e-9628d3611629/download/
  489. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/35b/0c0/35b0c0de-e02f-4037-b631-79b30992eecf
  490. dateModified: '2024-01-11T19:25:05.782616-05:00'
  491. digest:
  492. dandi:dandi-etag: 3fd93c8d68133d2f5a7083aa144648ec-1
  493. dandi:sha2-256: d636eee48603781443c477f308819c08d8bc3e1f7e112922eff56362082cf365
  494. encodingFormat: video/mp4
  495. id: dandiasset:f86ce5c6-5377-4b90-b97e-9628d3611629
  496. identifier: f86ce5c6-5377-4b90-b97e-9628d3611629
  497. path: VideoStimulusSet/exp_gratingsAdap_s3_22.mp4
  498. schemaKey: Asset
  499. schemaVersion: 0.6.4
  500. wasGeneratedBy:
  501. - description: Metadata generated by DANDI cli
  502. endDate: '2024-01-11T19:25:05.782584-05:00'
  503. id: urn:uuid:2a0529ae-411c-4ef9-89fb-d44d9f53d8e3
  504. name: Metadata generation
  505. schemaKey: Activity
  506. startDate: '2024-01-11T19:25:05.782584-05:00'
  507. wasAssociatedWith:
  508. - identifier: RRID:SCR_019009
  509. name: DANDI Command Line Interface
  510. schemaKey: Software
  511. url: https://github.com/dandi/dandi-cli
  512. version: 0.59.0
  513. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  514. access:
  515. - schemaKey: AccessRequirements
  516. status: dandi:OpenAccess
  517. blobDateModified: '2024-01-11T19:24:37.727485-05:00'
  518. contentSize: 370716
  519. contentUrl:
  520. - https://api.dandiarchive.org/api/assets/7f7d0f02-6471-426c-ba76-1e74ee03dbf3/download/
  521. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/640/c12/640c124c-ad7d-4606-82c9-030fdfc0f4a3
  522. dateModified: '2024-01-11T19:25:06.617662-05:00'
  523. digest:
  524. dandi:dandi-etag: 89e25b3f24e8ea018165871ca9dcf4e0-1
  525. dandi:sha2-256: 805456093f242dff06e41ed0c4f02089b8cde3f569f93c2517c0375c8cd094d2
  526. encodingFormat: video/mp4
  527. id: dandiasset:7f7d0f02-6471-426c-ba76-1e74ee03dbf3
  528. identifier: 7f7d0f02-6471-426c-ba76-1e74ee03dbf3
  529. path: VideoStimulusSet/exp_gratingsAdap_s3_23.mp4
  530. schemaKey: Asset
  531. schemaVersion: 0.6.4
  532. wasGeneratedBy:
  533. - description: Metadata generated by DANDI cli
  534. endDate: '2024-01-11T19:25:06.617501-05:00'
  535. id: urn:uuid:44a34ef6-215d-4854-b10d-ee645ffb5f13
  536. name: Metadata generation
  537. schemaKey: Activity
  538. startDate: '2024-01-11T19:25:06.617501-05:00'
  539. wasAssociatedWith:
  540. - identifier: RRID:SCR_019009
  541. name: DANDI Command Line Interface
  542. schemaKey: Software
  543. url: https://github.com/dandi/dandi-cli
  544. version: 0.59.0
  545. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  546. access:
  547. - schemaKey: AccessRequirements
  548. status: dandi:OpenAccess
  549. blobDateModified: '2024-01-11T19:24:37.763484-05:00'
  550. contentSize: 364108
  551. contentUrl:
  552. - https://api.dandiarchive.org/api/assets/7617ea20-7fc2-4b49-86cb-6c5939a81de8/download/
  553. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/1b9/527/1b952726-b536-48a9-a9a2-54da631ef2ab
  554. dateModified: '2024-01-11T19:25:08.430432-05:00'
  555. digest:
  556. dandi:dandi-etag: dd63b5d3c977947b917b735e0dfd15a7-1
  557. dandi:sha2-256: 2020dd12aa83fac18728774ee4db2019a6aa0e6b4e3afbdc87bfdfe46f5fb8ec
  558. encodingFormat: video/mp4
  559. id: dandiasset:7617ea20-7fc2-4b49-86cb-6c5939a81de8
  560. identifier: 7617ea20-7fc2-4b49-86cb-6c5939a81de8
  561. path: VideoStimulusSet/exp_gratingsAdap_s3_24.mp4
  562. schemaKey: Asset
  563. schemaVersion: 0.6.4
  564. wasGeneratedBy:
  565. - description: Metadata generated by DANDI cli
  566. endDate: '2024-01-11T19:25:08.430403-05:00'
  567. id: urn:uuid:e7696ce4-b22d-4571-a910-7836c3cfc303
  568. name: Metadata generation
  569. schemaKey: Activity
  570. startDate: '2024-01-11T19:25:08.430403-05:00'
  571. wasAssociatedWith:
  572. - identifier: RRID:SCR_019009
  573. name: DANDI Command Line Interface
  574. schemaKey: Software
  575. url: https://github.com/dandi/dandi-cli
  576. version: 0.59.0
  577. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  578. access:
  579. - schemaKey: AccessRequirements
  580. status: dandi:OpenAccess
  581. blobDateModified: '2024-01-11T19:24:37.794485-05:00'
  582. contentSize: 359496
  583. contentUrl:
  584. - https://api.dandiarchive.org/api/assets/9c3bb7ed-1991-44f0-99a9-62b21b8fa2c7/download/
  585. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/e7c/65d/e7c65d74-a77e-4bb1-9227-29bd52142cd0
  586. dateModified: '2024-01-11T19:25:08.948856-05:00'
  587. digest:
  588. dandi:dandi-etag: 64d81486a1e40cd4639480ec4d49ed73-1
  589. dandi:sha2-256: 4e550232d043accd06a95087666b3ad66e3549f49c3d3f037d0783e1dac164e2
  590. encodingFormat: video/mp4
  591. id: dandiasset:9c3bb7ed-1991-44f0-99a9-62b21b8fa2c7
  592. identifier: 9c3bb7ed-1991-44f0-99a9-62b21b8fa2c7
  593. path: VideoStimulusSet/exp_gratingsAdap_s3_26.mp4
  594. schemaKey: Asset
  595. schemaVersion: 0.6.4
  596. wasGeneratedBy:
  597. - description: Metadata generated by DANDI cli
  598. endDate: '2024-01-11T19:25:08.948821-05:00'
  599. id: urn:uuid:e65441f5-635a-471c-b3b2-9b44943a13a4
  600. name: Metadata generation
  601. schemaKey: Activity
  602. startDate: '2024-01-11T19:25:08.948821-05:00'
  603. wasAssociatedWith:
  604. - identifier: RRID:SCR_019009
  605. name: DANDI Command Line Interface
  606. schemaKey: Software
  607. url: https://github.com/dandi/dandi-cli
  608. version: 0.59.0
  609. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  610. access:
  611. - schemaKey: AccessRequirements
  612. status: dandi:OpenAccess
  613. blobDateModified: '2024-01-11T19:24:37.783485-05:00'
  614. contentSize: 358153
  615. contentUrl:
  616. - https://api.dandiarchive.org/api/assets/19fed0a8-aaab-4ddf-893b-394b8fb78dbd/download/
  617. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/e9e/1ec/e9e1ec09-b672-4a96-8bf9-e8d573b728b2
  618. dateModified: '2024-01-11T19:25:08.848497-05:00'
  619. digest:
  620. dandi:dandi-etag: ffa00915ce110655f517d77518ab7167-1
  621. dandi:sha2-256: a7b799995899b770e892e77ebac2c4d473e9cb1952a949de1f3a4561c58c2263
  622. encodingFormat: video/mp4
  623. id: dandiasset:19fed0a8-aaab-4ddf-893b-394b8fb78dbd
  624. identifier: 19fed0a8-aaab-4ddf-893b-394b8fb78dbd
  625. path: VideoStimulusSet/exp_gratingsAdap_s3_25.mp4
  626. schemaKey: Asset
  627. schemaVersion: 0.6.4
  628. wasGeneratedBy:
  629. - description: Metadata generated by DANDI cli
  630. endDate: '2024-01-11T19:25:08.848397-05:00'
  631. id: urn:uuid:c204b05b-819b-458e-bc35-d1bfd754de33
  632. name: Metadata generation
  633. schemaKey: Activity
  634. startDate: '2024-01-11T19:25:08.848397-05:00'
  635. wasAssociatedWith:
  636. - identifier: RRID:SCR_019009
  637. name: DANDI Command Line Interface
  638. schemaKey: Software
  639. url: https://github.com/dandi/dandi-cli
  640. version: 0.59.0
  641. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  642. access:
  643. - schemaKey: AccessRequirements
  644. status: dandi:OpenAccess
  645. blobDateModified: '2024-01-11T19:24:37.805485-05:00'
  646. contentSize: 368432
  647. contentUrl:
  648. - https://api.dandiarchive.org/api/assets/1e894c36-d8e1-4dfb-b124-e335ae5b2e22/download/
  649. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/3ae/a9a/3aea9a96-6686-4761-b904-9654bda4ffd4
  650. dateModified: '2024-01-11T19:25:09.366738-05:00'
  651. digest:
  652. dandi:dandi-etag: 8f4eb119baf66c996b624dd5bf72a0ce-1
  653. dandi:sha2-256: 61ba53bcd0ecf36dc89f793abb991ea50b930c4199e0f9550d235658dce1710e
  654. encodingFormat: video/mp4
  655. id: dandiasset:1e894c36-d8e1-4dfb-b124-e335ae5b2e22
  656. identifier: 1e894c36-d8e1-4dfb-b124-e335ae5b2e22
  657. path: VideoStimulusSet/exp_gratingsAdap_s3_27.mp4
  658. schemaKey: Asset
  659. schemaVersion: 0.6.4
  660. wasGeneratedBy:
  661. - description: Metadata generated by DANDI cli
  662. endDate: '2024-01-11T19:25:09.366693-05:00'
  663. id: urn:uuid:f883ef51-ea79-46ac-8c33-f06693677058
  664. name: Metadata generation
  665. schemaKey: Activity
  666. startDate: '2024-01-11T19:25:09.366693-05:00'
  667. wasAssociatedWith:
  668. - identifier: RRID:SCR_019009
  669. name: DANDI Command Line Interface
  670. schemaKey: Software
  671. url: https://github.com/dandi/dandi-cli
  672. version: 0.59.0
  673. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  674. access:
  675. - schemaKey: AccessRequirements
  676. status: dandi:OpenAccess
  677. blobDateModified: '2024-01-11T19:24:37.816485-05:00'
  678. contentSize: 363894
  679. contentUrl:
  680. - https://api.dandiarchive.org/api/assets/0f368baa-f3bd-4b5a-9693-7508f61518fd/download/
  681. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/dde/ba6/ddeba6da-a002-445c-8e32-086d2f6ca6fa
  682. dateModified: '2024-01-11T19:25:10.669353-05:00'
  683. digest:
  684. dandi:dandi-etag: f2b2602d9007e38175e273ab76e4b663-1
  685. dandi:sha2-256: f9d3d40a6d5de1d887f40a906e8ed55a456c429b792fd36d632128b2cf2d143c
  686. encodingFormat: video/mp4
  687. id: dandiasset:0f368baa-f3bd-4b5a-9693-7508f61518fd
  688. identifier: 0f368baa-f3bd-4b5a-9693-7508f61518fd
  689. path: VideoStimulusSet/exp_gratingsAdap_s3_28.mp4
  690. schemaKey: Asset
  691. schemaVersion: 0.6.4
  692. wasGeneratedBy:
  693. - description: Metadata generated by DANDI cli
  694. endDate: '2024-01-11T19:25:10.669321-05:00'
  695. id: urn:uuid:618d9355-f0f3-4bab-b968-c4bea9ccbc5b
  696. name: Metadata generation
  697. schemaKey: Activity
  698. startDate: '2024-01-11T19:25:10.669321-05:00'
  699. wasAssociatedWith:
  700. - identifier: RRID:SCR_019009
  701. name: DANDI Command Line Interface
  702. schemaKey: Software
  703. url: https://github.com/dandi/dandi-cli
  704. version: 0.59.0
  705. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  706. access:
  707. - schemaKey: AccessRequirements
  708. status: dandi:OpenAccess
  709. blobDateModified: '2024-01-11T19:24:37.827485-05:00'
  710. contentSize: 370734
  711. contentUrl:
  712. - https://api.dandiarchive.org/api/assets/8d0e1ba8-f85c-4894-be48-cfcd2b869692/download/
  713. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/4cd/ad8/4cdad84b-d712-41dd-8c14-a1b7fd801202
  714. dateModified: '2024-01-11T19:25:11.210268-05:00'
  715. digest:
  716. dandi:dandi-etag: 4508ebd0d1a5e33b8cfecb45caeb3d1e-1
  717. dandi:sha2-256: 26b915ed3f27b17b4203dcca82947a45d7f2cd580661ce21ae5315ded766a765
  718. encodingFormat: video/mp4
  719. id: dandiasset:8d0e1ba8-f85c-4894-be48-cfcd2b869692
  720. identifier: 8d0e1ba8-f85c-4894-be48-cfcd2b869692
  721. path: VideoStimulusSet/exp_gratingsAdap_s3_29.mp4
  722. schemaKey: Asset
  723. schemaVersion: 0.6.4
  724. wasGeneratedBy:
  725. - description: Metadata generated by DANDI cli
  726. endDate: '2024-01-11T19:25:11.210227-05:00'
  727. id: urn:uuid:1cfa3855-b730-41db-a20a-fa2657923458
  728. name: Metadata generation
  729. schemaKey: Activity
  730. startDate: '2024-01-11T19:25:11.210227-05:00'
  731. wasAssociatedWith:
  732. - identifier: RRID:SCR_019009
  733. name: DANDI Command Line Interface
  734. schemaKey: Software
  735. url: https://github.com/dandi/dandi-cli
  736. version: 0.59.0
  737. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  738. access:
  739. - schemaKey: AccessRequirements
  740. status: dandi:OpenAccess
  741. blobDateModified: '2024-01-11T19:24:37.873485-05:00'
  742. contentSize: 366909
  743. contentUrl:
  744. - https://api.dandiarchive.org/api/assets/f477c582-bebe-4452-9917-3a95fdf0240e/download/
  745. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/41f/6b8/41f6b80f-f28f-4d85-abe1-5be2747cf010
  746. dateModified: '2024-01-11T19:25:12.968488-05:00'
  747. digest:
  748. dandi:dandi-etag: d0a852a76d9dbb61756e4513144bb912-1
  749. dandi:sha2-256: 0d422e7e2ef573e51a94f5e03e48252c7b41b05bd997a7f89fb0c168fb3886d2
  750. encodingFormat: video/mp4
  751. id: dandiasset:f477c582-bebe-4452-9917-3a95fdf0240e
  752. identifier: f477c582-bebe-4452-9917-3a95fdf0240e
  753. path: VideoStimulusSet/exp_gratingsAdap_s3_3.mp4
  754. schemaKey: Asset
  755. schemaVersion: 0.6.4
  756. wasGeneratedBy:
  757. - description: Metadata generated by DANDI cli
  758. endDate: '2024-01-11T19:25:12.968448-05:00'
  759. id: urn:uuid:d75ed8b7-110c-4cbb-a8f9-9517c7ab16e7
  760. name: Metadata generation
  761. schemaKey: Activity
  762. startDate: '2024-01-11T19:25:12.968448-05:00'
  763. wasAssociatedWith:
  764. - identifier: RRID:SCR_019009
  765. name: DANDI Command Line Interface
  766. schemaKey: Software
  767. url: https://github.com/dandi/dandi-cli
  768. version: 0.59.0
  769. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  770. access:
  771. - schemaKey: AccessRequirements
  772. status: dandi:OpenAccess
  773. blobDateModified: '2024-01-11T19:24:37.922485-05:00'
  774. contentSize: 371643
  775. contentUrl:
  776. - https://api.dandiarchive.org/api/assets/e2e4d750-374f-437f-9893-2067c41deca5/download/
  777. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/a76/4d3/a764d3e1-249a-44b5-bbe9-009465521317
  778. dateModified: '2024-01-11T19:25:13.155138-05:00'
  779. digest:
  780. dandi:dandi-etag: 0f19fd21a950bc2836f2c06948e71830-1
  781. dandi:sha2-256: 19db00ffffb872c4db48aebeeb4c12b491f76f665019309c18090670b5779dc2
  782. encodingFormat: video/mp4
  783. id: dandiasset:e2e4d750-374f-437f-9893-2067c41deca5
  784. identifier: e2e4d750-374f-437f-9893-2067c41deca5
  785. path: VideoStimulusSet/exp_gratingsAdap_s3_30.mp4
  786. schemaKey: Asset
  787. schemaVersion: 0.6.4
  788. wasGeneratedBy:
  789. - description: Metadata generated by DANDI cli
  790. endDate: '2024-01-11T19:25:13.155105-05:00'
  791. id: urn:uuid:77cbbfb5-fb28-45a8-9109-ce0d0a8cc5b7
  792. name: Metadata generation
  793. schemaKey: Activity
  794. startDate: '2024-01-11T19:25:13.155105-05:00'
  795. wasAssociatedWith:
  796. - identifier: RRID:SCR_019009
  797. name: DANDI Command Line Interface
  798. schemaKey: Software
  799. url: https://github.com/dandi/dandi-cli
  800. version: 0.59.0
  801. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  802. access:
  803. - schemaKey: AccessRequirements
  804. status: dandi:OpenAccess
  805. blobDateModified: '2024-01-11T19:24:37.939485-05:00'
  806. contentSize: 360161
  807. contentUrl:
  808. - https://api.dandiarchive.org/api/assets/1bb7730c-32f4-4e8b-a4d1-916a38827910/download/
  809. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/e73/2d7/e732d7d9-a9fa-4c43-97af-e42fc6fb6899
  810. dateModified: '2024-01-11T19:25:13.870876-05:00'
  811. digest:
  812. dandi:dandi-etag: 5edb7a1f6b3f9b3e72c08c86fb688741-1
  813. dandi:sha2-256: cc94d1c9661e647143518f6e3ab6ab0a26598ad793c2787a8bf1c1b8853e7455
  814. encodingFormat: video/mp4
  815. id: dandiasset:1bb7730c-32f4-4e8b-a4d1-916a38827910
  816. identifier: 1bb7730c-32f4-4e8b-a4d1-916a38827910
  817. path: VideoStimulusSet/exp_gratingsAdap_s3_31.mp4
  818. schemaKey: Asset
  819. schemaVersion: 0.6.4
  820. wasGeneratedBy:
  821. - description: Metadata generated by DANDI cli
  822. endDate: '2024-01-11T19:25:13.870842-05:00'
  823. id: urn:uuid:a14d52b0-fb4a-451c-b394-ac85bbd055af
  824. name: Metadata generation
  825. schemaKey: Activity
  826. startDate: '2024-01-11T19:25:13.870842-05:00'
  827. wasAssociatedWith:
  828. - identifier: RRID:SCR_019009
  829. name: DANDI Command Line Interface
  830. schemaKey: Software
  831. url: https://github.com/dandi/dandi-cli
  832. version: 0.59.0
  833. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  834. access:
  835. - schemaKey: AccessRequirements
  836. status: dandi:OpenAccess
  837. blobDateModified: '2024-01-11T19:24:37.966485-05:00'
  838. contentSize: 368826
  839. contentUrl:
  840. - https://api.dandiarchive.org/api/assets/5abebbfd-21b7-49ba-9f82-abc7a9b23ff4/download/
  841. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/e3b/d0b/e3bd0b1c-b0b3-4e86-b6b5-12321f564250
  842. dateModified: '2024-01-11T19:25:14.995071-05:00'
  843. digest:
  844. dandi:dandi-etag: 096a1fa7f5ad40dde83272cc1a4cd749-1
  845. dandi:sha2-256: 79ed0d06f27458b826f3a0d86a9952d93bca593516414a7e89e9a8cba6181ad8
  846. encodingFormat: video/mp4
  847. id: dandiasset:5abebbfd-21b7-49ba-9f82-abc7a9b23ff4
  848. identifier: 5abebbfd-21b7-49ba-9f82-abc7a9b23ff4
  849. path: VideoStimulusSet/exp_gratingsAdap_s3_32.mp4
  850. schemaKey: Asset
  851. schemaVersion: 0.6.4
  852. wasGeneratedBy:
  853. - description: Metadata generated by DANDI cli
  854. endDate: '2024-01-11T19:25:14.995015-05:00'
  855. id: urn:uuid:97e0cf56-c3af-47e5-8642-193a8c86c27f
  856. name: Metadata generation
  857. schemaKey: Activity
  858. startDate: '2024-01-11T19:25:14.995015-05:00'
  859. wasAssociatedWith:
  860. - identifier: RRID:SCR_019009
  861. name: DANDI Command Line Interface
  862. schemaKey: Software
  863. url: https://github.com/dandi/dandi-cli
  864. version: 0.59.0
  865. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  866. access:
  867. - schemaKey: AccessRequirements
  868. status: dandi:OpenAccess
  869. blobDateModified: '2024-01-11T19:24:37.977484-05:00'
  870. contentSize: 364066
  871. contentUrl:
  872. - https://api.dandiarchive.org/api/assets/15f3c711-a1bf-476b-a3fb-2533486a659b/download/
  873. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/7ba/e8a/7bae8ae1-9fb7-4b5e-901c-609cc2403bc3
  874. dateModified: '2024-01-11T19:25:15.058376-05:00'
  875. digest:
  876. dandi:dandi-etag: bf762387841b5bb6c4cfba998549abfa-1
  877. dandi:sha2-256: daa1187335208ee94377a21b0a8ef7b8cb0ff60757b9b8ecd7cc62c4c92aad6a
  878. encodingFormat: video/mp4
  879. id: dandiasset:15f3c711-a1bf-476b-a3fb-2533486a659b
  880. identifier: 15f3c711-a1bf-476b-a3fb-2533486a659b
  881. path: VideoStimulusSet/exp_gratingsAdap_s3_33.mp4
  882. schemaKey: Asset
  883. schemaVersion: 0.6.4
  884. wasGeneratedBy:
  885. - description: Metadata generated by DANDI cli
  886. endDate: '2024-01-11T19:25:15.058345-05:00'
  887. id: urn:uuid:49fa9db6-89a6-4180-8420-81fcb393c677
  888. name: Metadata generation
  889. schemaKey: Activity
  890. startDate: '2024-01-11T19:25:15.058345-05:00'
  891. wasAssociatedWith:
  892. - identifier: RRID:SCR_019009
  893. name: DANDI Command Line Interface
  894. schemaKey: Software
  895. url: https://github.com/dandi/dandi-cli
  896. version: 0.59.0
  897. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  898. access:
  899. - schemaKey: AccessRequirements
  900. status: dandi:OpenAccess
  901. blobDateModified: '2024-01-11T19:24:38.028485-05:00'
  902. contentSize: 369888
  903. contentUrl:
  904. - https://api.dandiarchive.org/api/assets/d07a8ddd-f651-4db3-b794-c06f18b597f8/download/
  905. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/3c1/4da/3c14da78-04db-4cff-b82d-0c66cf9de5b9
  906. dateModified: '2024-01-11T19:25:17.579697-05:00'
  907. digest:
  908. dandi:dandi-etag: 6d843476fd92be0b13b70a526c25967b-1
  909. dandi:sha2-256: 84a94035437f28ff93318d94dba5a1769f9b06828d8fff5bcbf73fc7431a2bb3
  910. encodingFormat: video/mp4
  911. id: dandiasset:d07a8ddd-f651-4db3-b794-c06f18b597f8
  912. identifier: d07a8ddd-f651-4db3-b794-c06f18b597f8
  913. path: VideoStimulusSet/exp_gratingsAdap_s3_35.mp4
  914. schemaKey: Asset
  915. schemaVersion: 0.6.4
  916. wasGeneratedBy:
  917. - description: Metadata generated by DANDI cli
  918. endDate: '2024-01-11T19:25:17.579652-05:00'
  919. id: urn:uuid:dce1c5a4-9a06-4798-b80a-2a1d467ff482
  920. name: Metadata generation
  921. schemaKey: Activity
  922. startDate: '2024-01-11T19:25:17.579652-05:00'
  923. wasAssociatedWith:
  924. - identifier: RRID:SCR_019009
  925. name: DANDI Command Line Interface
  926. schemaKey: Software
  927. url: https://github.com/dandi/dandi-cli
  928. version: 0.59.0
  929. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  930. access:
  931. - schemaKey: AccessRequirements
  932. status: dandi:OpenAccess
  933. blobDateModified: '2024-01-11T19:24:37.997485-05:00'
  934. contentSize: 362272
  935. contentUrl:
  936. - https://api.dandiarchive.org/api/assets/04674e73-e4d1-4179-880c-df6f2ed2ec06/download/
  937. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/dde/c65/ddec65bd-b9ab-4dec-a19b-60d7d9b91923
  938. dateModified: '2024-01-11T19:25:17.299360-05:00'
  939. digest:
  940. dandi:dandi-etag: 9cd01ac8c9e967f1c4f1f3e2220c45cf-1
  941. dandi:sha2-256: 2a74938aed32e5d774bd16350122e792cbe733c3ba086bbff42a146498aa45f4
  942. encodingFormat: video/mp4
  943. id: dandiasset:04674e73-e4d1-4179-880c-df6f2ed2ec06
  944. identifier: 04674e73-e4d1-4179-880c-df6f2ed2ec06
  945. path: VideoStimulusSet/exp_gratingsAdap_s3_34.mp4
  946. schemaKey: Asset
  947. schemaVersion: 0.6.4
  948. wasGeneratedBy:
  949. - description: Metadata generated by DANDI cli
  950. endDate: '2024-01-11T19:25:17.299225-05:00'
  951. id: urn:uuid:43d04d8d-ee6d-4985-87c2-99cc466fb9a0
  952. name: Metadata generation
  953. schemaKey: Activity
  954. startDate: '2024-01-11T19:25:17.299225-05:00'
  955. wasAssociatedWith:
  956. - identifier: RRID:SCR_019009
  957. name: DANDI Command Line Interface
  958. schemaKey: Software
  959. url: https://github.com/dandi/dandi-cli
  960. version: 0.59.0
  961. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  962. access:
  963. - schemaKey: AccessRequirements
  964. status: dandi:OpenAccess
  965. blobDateModified: '2024-01-11T19:24:38.039485-05:00'
  966. contentSize: 364298
  967. contentUrl:
  968. - https://api.dandiarchive.org/api/assets/8342019c-73c1-4ae2-bdc8-77f44e7b464a/download/
  969. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/991/211/991211aa-1949-42ce-a3c8-a637b91f1300
  970. dateModified: '2024-01-11T19:25:17.939440-05:00'
  971. digest:
  972. dandi:dandi-etag: f7e62b04b164919519a260487238da0a-1
  973. dandi:sha2-256: 6cd592c3fb136eac823f5989b7c56f3d486ad02b574e134a0ad0806e2fbd542a
  974. encodingFormat: video/mp4
  975. id: dandiasset:8342019c-73c1-4ae2-bdc8-77f44e7b464a
  976. identifier: 8342019c-73c1-4ae2-bdc8-77f44e7b464a
  977. path: VideoStimulusSet/exp_gratingsAdap_s3_36.mp4
  978. schemaKey: Asset
  979. schemaVersion: 0.6.4
  980. wasGeneratedBy:
  981. - description: Metadata generated by DANDI cli
  982. endDate: '2024-01-11T19:25:17.939410-05:00'
  983. id: urn:uuid:9edfc00c-09d0-4635-9e35-f8e9ce3a3a27
  984. name: Metadata generation
  985. schemaKey: Activity
  986. startDate: '2024-01-11T19:25:17.939410-05:00'
  987. wasAssociatedWith:
  988. - identifier: RRID:SCR_019009
  989. name: DANDI Command Line Interface
  990. schemaKey: Software
  991. url: https://github.com/dandi/dandi-cli
  992. version: 0.59.0
  993. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  994. access:
  995. - schemaKey: AccessRequirements
  996. status: dandi:OpenAccess
  997. blobDateModified: '2024-01-11T19:24:38.053485-05:00'
  998. contentSize: 366282
  999. contentUrl:
  1000. - https://api.dandiarchive.org/api/assets/02b63afe-1e42-4d28-95da-8bc5ebc6f32f/download/
  1001. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/ccb/be6/ccbbe6a7-4277-4210-8334-5d7090514a00
  1002. dateModified: '2024-01-11T19:25:19.039798-05:00'
  1003. digest:
  1004. dandi:dandi-etag: ba8c42a2eda9749f6095c3318c641152-1
  1005. dandi:sha2-256: 892fb4f0bd079dd17f96eaadacb712033301cb44352ae03589bc9b0a71a06f3d
  1006. encodingFormat: video/mp4
  1007. id: dandiasset:02b63afe-1e42-4d28-95da-8bc5ebc6f32f
  1008. identifier: 02b63afe-1e42-4d28-95da-8bc5ebc6f32f
  1009. path: VideoStimulusSet/exp_gratingsAdap_s3_37.mp4
  1010. schemaKey: Asset
  1011. schemaVersion: 0.6.4
  1012. wasGeneratedBy:
  1013. - description: Metadata generated by DANDI cli
  1014. endDate: '2024-01-11T19:25:19.039771-05:00'
  1015. id: urn:uuid:ad8439ab-ebc1-4da1-bde7-def610c3275b
  1016. name: Metadata generation
  1017. schemaKey: Activity
  1018. startDate: '2024-01-11T19:25:19.039771-05:00'
  1019. wasAssociatedWith:
  1020. - identifier: RRID:SCR_019009
  1021. name: DANDI Command Line Interface
  1022. schemaKey: Software
  1023. url: https://github.com/dandi/dandi-cli
  1024. version: 0.59.0
  1025. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1026. access:
  1027. - schemaKey: AccessRequirements
  1028. status: dandi:OpenAccess
  1029. blobDateModified: '2024-01-11T19:24:38.064485-05:00'
  1030. contentSize: 370648
  1031. contentUrl:
  1032. - https://api.dandiarchive.org/api/assets/9262f7c4-54b2-4327-aff5-277f9818cd79/download/
  1033. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/3c6/5bc/3c65bcef-9836-4605-9679-07169f903050
  1034. dateModified: '2024-01-11T19:25:19.091803-05:00'
  1035. digest:
  1036. dandi:dandi-etag: 5bfab806054e72aa8c33fe8a83e36793-1
  1037. dandi:sha2-256: 9972119d33035b84d0fe5d24a8df8a31f8d0e35971b34275c737ce98bae34d74
  1038. encodingFormat: video/mp4
  1039. id: dandiasset:9262f7c4-54b2-4327-aff5-277f9818cd79
  1040. identifier: 9262f7c4-54b2-4327-aff5-277f9818cd79
  1041. path: VideoStimulusSet/exp_gratingsAdap_s3_38.mp4
  1042. schemaKey: Asset
  1043. schemaVersion: 0.6.4
  1044. wasGeneratedBy:
  1045. - description: Metadata generated by DANDI cli
  1046. endDate: '2024-01-11T19:25:19.091750-05:00'
  1047. id: urn:uuid:31f7afb2-894b-46ce-97af-14e820cbb13a
  1048. name: Metadata generation
  1049. schemaKey: Activity
  1050. startDate: '2024-01-11T19:25:19.091750-05:00'
  1051. wasAssociatedWith:
  1052. - identifier: RRID:SCR_019009
  1053. name: DANDI Command Line Interface
  1054. schemaKey: Software
  1055. url: https://github.com/dandi/dandi-cli
  1056. version: 0.59.0
  1057. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1058. access:
  1059. - schemaKey: AccessRequirements
  1060. status: dandi:OpenAccess
  1061. blobDateModified: '2024-01-11T19:24:38.090485-05:00'
  1062. contentSize: 371220
  1063. contentUrl:
  1064. - https://api.dandiarchive.org/api/assets/6e14d87d-33ba-422f-90f8-5762e4ce7192/download/
  1065. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/4db/eda/4dbedad8-99f0-4247-ba2a-ce04a3cee5ec
  1066. dateModified: '2024-01-11T19:25:21.102690-05:00'
  1067. digest:
  1068. dandi:dandi-etag: 9ab0809c733cc5e9e726583125516658-1
  1069. dandi:sha2-256: 912a18013cccf3a707b73c11a9334a5cf31534d725cc59beaa723dfd89e7cdb2
  1070. encodingFormat: video/mp4
  1071. id: dandiasset:6e14d87d-33ba-422f-90f8-5762e4ce7192
  1072. identifier: 6e14d87d-33ba-422f-90f8-5762e4ce7192
  1073. path: VideoStimulusSet/exp_gratingsAdap_s3_39.mp4
  1074. schemaKey: Asset
  1075. schemaVersion: 0.6.4
  1076. wasGeneratedBy:
  1077. - description: Metadata generated by DANDI cli
  1078. endDate: '2024-01-11T19:25:21.102627-05:00'
  1079. id: urn:uuid:abbbc258-5db9-444a-836c-18f981e452a8
  1080. name: Metadata generation
  1081. schemaKey: Activity
  1082. startDate: '2024-01-11T19:25:21.102627-05:00'
  1083. wasAssociatedWith:
  1084. - identifier: RRID:SCR_019009
  1085. name: DANDI Command Line Interface
  1086. schemaKey: Software
  1087. url: https://github.com/dandi/dandi-cli
  1088. version: 0.59.0
  1089. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1090. access:
  1091. - schemaKey: AccessRequirements
  1092. status: dandi:OpenAccess
  1093. blobDateModified: '2024-01-11T19:24:38.100485-05:00'
  1094. contentSize: 362332
  1095. contentUrl:
  1096. - https://api.dandiarchive.org/api/assets/25a8920e-67da-4276-a455-75c5b1089dad/download/
  1097. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/3d1/c5a/3d1c5af0-0b05-4e21-8595-629220f4f8e0
  1098. dateModified: '2024-01-11T19:25:22.179455-05:00'
  1099. digest:
  1100. dandi:dandi-etag: 9da3c051c101929fcaf5b96187d12d7a-1
  1101. dandi:sha2-256: 93418ad75c78b652a41dc4eda305345803af154ac4ac2d424bed4099adef90ca
  1102. encodingFormat: video/mp4
  1103. id: dandiasset:25a8920e-67da-4276-a455-75c5b1089dad
  1104. identifier: 25a8920e-67da-4276-a455-75c5b1089dad
  1105. path: VideoStimulusSet/exp_gratingsAdap_s3_4.mp4
  1106. schemaKey: Asset
  1107. schemaVersion: 0.6.4
  1108. wasGeneratedBy:
  1109. - description: Metadata generated by DANDI cli
  1110. endDate: '2024-01-11T19:25:22.179417-05:00'
  1111. id: urn:uuid:1c2ed3a6-352d-4c41-a822-fc83e696f56b
  1112. name: Metadata generation
  1113. schemaKey: Activity
  1114. startDate: '2024-01-11T19:25:22.179417-05:00'
  1115. wasAssociatedWith:
  1116. - identifier: RRID:SCR_019009
  1117. name: DANDI Command Line Interface
  1118. schemaKey: Software
  1119. url: https://github.com/dandi/dandi-cli
  1120. version: 0.59.0
  1121. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1122. access:
  1123. - schemaKey: AccessRequirements
  1124. status: dandi:OpenAccess
  1125. blobDateModified: '2024-01-11T19:24:38.123485-05:00'
  1126. contentSize: 364908
  1127. contentUrl:
  1128. - https://api.dandiarchive.org/api/assets/82d577ea-5e67-43e5-ace5-ca9d7de31b4d/download/
  1129. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/124/9d0/1249d00e-4c8d-4a66-869d-292e7a1d1f3c
  1130. dateModified: '2024-01-11T19:25:22.388769-05:00'
  1131. digest:
  1132. dandi:dandi-etag: b614d1e07bc8e4bbaab4e085a516e6a1-1
  1133. dandi:sha2-256: 7aac473f3847c0ddc0a3dee8fb683099e96e5e4493df4188a5a6f1e1d7492673
  1134. encodingFormat: video/mp4
  1135. id: dandiasset:82d577ea-5e67-43e5-ace5-ca9d7de31b4d
  1136. identifier: 82d577ea-5e67-43e5-ace5-ca9d7de31b4d
  1137. path: VideoStimulusSet/exp_gratingsAdap_s3_5.mp4
  1138. schemaKey: Asset
  1139. schemaVersion: 0.6.4
  1140. wasGeneratedBy:
  1141. - description: Metadata generated by DANDI cli
  1142. endDate: '2024-01-11T19:25:22.388717-05:00'
  1143. id: urn:uuid:adf4a48a-11a5-4b8b-88ff-a601bf7474d0
  1144. name: Metadata generation
  1145. schemaKey: Activity
  1146. startDate: '2024-01-11T19:25:22.388717-05:00'
  1147. wasAssociatedWith:
  1148. - identifier: RRID:SCR_019009
  1149. name: DANDI Command Line Interface
  1150. schemaKey: Software
  1151. url: https://github.com/dandi/dandi-cli
  1152. version: 0.59.0
  1153. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1154. access:
  1155. - schemaKey: AccessRequirements
  1156. status: dandi:OpenAccess
  1157. blobDateModified: '2024-01-11T19:24:38.147485-05:00'
  1158. contentSize: 362461
  1159. contentUrl:
  1160. - https://api.dandiarchive.org/api/assets/3fca33b4-b34d-4eec-a8dc-479e2e57ffaa/download/
  1161. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/c04/97e/c0497e8f-2def-457e-a377-ad24d2cccfff
  1162. dateModified: '2024-01-11T19:25:22.864439-05:00'
  1163. digest:
  1164. dandi:dandi-etag: 297133597d16fca67775069d58bd61f5-1
  1165. dandi:sha2-256: a26a0becf6be3f5f25a8ea8f767a343d61e452a26c4a3693bb9d9681160e8780
  1166. encodingFormat: video/mp4
  1167. id: dandiasset:3fca33b4-b34d-4eec-a8dc-479e2e57ffaa
  1168. identifier: 3fca33b4-b34d-4eec-a8dc-479e2e57ffaa
  1169. path: VideoStimulusSet/exp_gratingsAdap_s3_6.mp4
  1170. schemaKey: Asset
  1171. schemaVersion: 0.6.4
  1172. wasGeneratedBy:
  1173. - description: Metadata generated by DANDI cli
  1174. endDate: '2024-01-11T19:25:22.864389-05:00'
  1175. id: urn:uuid:aac39e51-51f3-40c5-a12b-0f869b858ff9
  1176. name: Metadata generation
  1177. schemaKey: Activity
  1178. startDate: '2024-01-11T19:25:22.864389-05:00'
  1179. wasAssociatedWith:
  1180. - identifier: RRID:SCR_019009
  1181. name: DANDI Command Line Interface
  1182. schemaKey: Software
  1183. url: https://github.com/dandi/dandi-cli
  1184. version: 0.59.0
  1185. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1186. access:
  1187. - schemaKey: AccessRequirements
  1188. status: dandi:OpenAccess
  1189. blobDateModified: '2024-01-11T19:24:38.191484-05:00'
  1190. contentSize: 374898
  1191. contentUrl:
  1192. - https://api.dandiarchive.org/api/assets/281de76f-627b-4707-b921-26c032665cf1/download/
  1193. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/d80/d6b/d80d6b62-d59e-4a95-ae52-44ee44fe1769
  1194. dateModified: '2024-01-11T19:25:23.272899-05:00'
  1195. digest:
  1196. dandi:dandi-etag: 32f987402616dd22c68db803668dcc45-1
  1197. dandi:sha2-256: aa9ad6746a19dde9c7342b4d776018d01de39fd1e53754ecdfb2d3581c194ca2
  1198. encodingFormat: video/mp4
  1199. id: dandiasset:281de76f-627b-4707-b921-26c032665cf1
  1200. identifier: 281de76f-627b-4707-b921-26c032665cf1
  1201. path: VideoStimulusSet/exp_gratingsAdap_s3_7.mp4
  1202. schemaKey: Asset
  1203. schemaVersion: 0.6.4
  1204. wasGeneratedBy:
  1205. - description: Metadata generated by DANDI cli
  1206. endDate: '2024-01-11T19:25:23.272852-05:00'
  1207. id: urn:uuid:424cd2a0-9674-4029-aec3-702994372fdd
  1208. name: Metadata generation
  1209. schemaKey: Activity
  1210. startDate: '2024-01-11T19:25:23.272852-05:00'
  1211. wasAssociatedWith:
  1212. - identifier: RRID:SCR_019009
  1213. name: DANDI Command Line Interface
  1214. schemaKey: Software
  1215. url: https://github.com/dandi/dandi-cli
  1216. version: 0.59.0
  1217. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1218. access:
  1219. - schemaKey: AccessRequirements
  1220. status: dandi:OpenAccess
  1221. blobDateModified: '2024-01-11T19:24:38.202485-05:00'
  1222. contentSize: 373961
  1223. contentUrl:
  1224. - https://api.dandiarchive.org/api/assets/31d7fccc-2a49-4609-b32e-91fbd9b6dc17/download/
  1225. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/b41/c65/b41c65fb-739a-4716-993f-42e4d28e5623
  1226. dateModified: '2024-01-11T19:25:24.540689-05:00'
  1227. digest:
  1228. dandi:dandi-etag: 6198cb3c8960400f5da0f0e5f688e446-1
  1229. dandi:sha2-256: cf3ec2098f0bb8bb8fd328c07195f321aa816b4245cc8de918b5cb0d152f0a91
  1230. encodingFormat: video/mp4
  1231. id: dandiasset:31d7fccc-2a49-4609-b32e-91fbd9b6dc17
  1232. identifier: 31d7fccc-2a49-4609-b32e-91fbd9b6dc17
  1233. path: VideoStimulusSet/exp_gratingsAdap_s3_8.mp4
  1234. schemaKey: Asset
  1235. schemaVersion: 0.6.4
  1236. wasGeneratedBy:
  1237. - description: Metadata generated by DANDI cli
  1238. endDate: '2024-01-11T19:25:24.540486-05:00'
  1239. id: urn:uuid:c5903023-05a9-4728-981a-df9a28ae70c6
  1240. name: Metadata generation
  1241. schemaKey: Activity
  1242. startDate: '2024-01-11T19:25:24.540486-05:00'
  1243. wasAssociatedWith:
  1244. - identifier: RRID:SCR_019009
  1245. name: DANDI Command Line Interface
  1246. schemaKey: Software
  1247. url: https://github.com/dandi/dandi-cli
  1248. version: 0.59.0
  1249. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1250. access:
  1251. - schemaKey: AccessRequirements
  1252. status: dandi:OpenAccess
  1253. blobDateModified: '2024-01-11T19:24:38.229485-05:00'
  1254. contentSize: 367988
  1255. contentUrl:
  1256. - https://api.dandiarchive.org/api/assets/3cf7b2f7-902e-45ad-bc35-a79295f3e85b/download/
  1257. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/168/275/1682752d-4b02-47e5-b3d8-4ea5c76d3512
  1258. dateModified: '2024-01-11T19:25:25.621891-05:00'
  1259. digest:
  1260. dandi:dandi-etag: 23689bc8e3ab2c1a56aa428e21ea890c-1
  1261. dandi:sha2-256: 34f643cbefdebeaaf4ad972c165fbb4c812c3372d60b17a1b936adadbbb7dbab
  1262. encodingFormat: video/mp4
  1263. id: dandiasset:3cf7b2f7-902e-45ad-bc35-a79295f3e85b
  1264. identifier: 3cf7b2f7-902e-45ad-bc35-a79295f3e85b
  1265. path: VideoStimulusSet/exp_gratingsAdap_s3_9.mp4
  1266. schemaKey: Asset
  1267. schemaVersion: 0.6.4
  1268. wasGeneratedBy:
  1269. - description: Metadata generated by DANDI cli
  1270. endDate: '2024-01-11T19:25:25.621849-05:00'
  1271. id: urn:uuid:560a732e-364d-4f80-bd1e-d089f577d5ab
  1272. name: Metadata generation
  1273. schemaKey: Activity
  1274. startDate: '2024-01-11T19:25:25.621849-05:00'
  1275. wasAssociatedWith:
  1276. - identifier: RRID:SCR_019009
  1277. name: DANDI Command Line Interface
  1278. schemaKey: Software
  1279. url: https://github.com/dandi/dandi-cli
  1280. version: 0.59.0
  1281. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1282. access:
  1283. - schemaKey: AccessRequirements
  1284. status: dandi:OpenAccess
  1285. approach:
  1286. - name: electrophysiological approach
  1287. schemaKey: ApproachType
  1288. blobDateModified: '2024-04-21T10:06:39.565066-04:00'
  1289. contentSize: 192119384
  1290. contentUrl:
  1291. - https://api.dandiarchive.org/api/assets/2a1ef55d-ec16-49ae-b0d5-a6212b18138c/download/
  1292. - https://dandiarchive-embargo.s3.amazonaws.com/000805/blobs/b86/a2e/b86a2e7f-e132-4acd-a28b-ea24749ece0d
  1293. dateModified: '2024-04-21T13:31:47.391572-04:00'
  1294. digest:
  1295. dandi:dandi-etag: c225ccb3ddc364c58fb7bfd4c8829ac3-3
  1296. dandi:sha2-256: 4cca84624e3a5d9934babd0ac6cab4c27a0f8fd2aee7eba693cb552073da19cd
  1297. encodingFormat: application/x-nwb
  1298. id: dandiasset:2a1ef55d-ec16-49ae-b0d5-a6212b18138c
  1299. identifier: 2a1ef55d-ec16-49ae-b0d5-a6212b18138c
  1300. keywords:
  1301. - Vistual Stimuli
  1302. - Object Recognition
  1303. - Inferior temporal cortex (IT)
  1304. - Ventral visual pathway
  1305. measurementTechnique:
  1306. - name: surgical technique
  1307. schemaKey: MeasurementTechniqueType
  1308. path: sub-pico/sub-pico_ecephys+image.nwb
  1309. schemaKey: Asset
  1310. schemaVersion: 0.6.7
  1311. variableMeasured:
  1312. - schemaKey: PropertyValue
  1313. value: ElectrodeGroup
  1314. wasAttributedTo:
  1315. - age:
  1316. schemaKey: PropertyValue
  1317. unitText: ISO-8601 duration
  1318. value: P3327DT59635S
  1319. valueReference:
  1320. schemaKey: PropertyValue
  1321. value: dandi:BirthReference
  1322. identifier: pico
  1323. schemaKey: Participant
  1324. sex:
  1325. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1326. name: Male
  1327. schemaKey: SexType
  1328. species:
  1329. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1330. name: Macaca mulatta - Rhesus monkey
  1331. schemaKey: SpeciesType
  1332. wasGeneratedBy:
  1333. - description: This NWB is derived from the processing of neurophysiological recordings
  1334. in the inferior temporal (IT) cortex of one macaque monkey (indicated in
  1335. the file). These recordings were conducted during Rapid Serial Visual Presentation
  1336. (RSVP) of randomized images, each presented at the center of gaze during
  1337. fixation. The dataset in this file includes a responses from a number of individual
  1338. neural recording sites collected via chronically implanted Utah arrays. For each
  1339. recording site, the multiunit or single unit response of that site is
  1340. summarized as a set of peristimulus time histograms (PSTH). Each PSTH is derived
  1341. from the site’s response to repeated, emporally randomized, presentations
  1342. of the same image. Thus, the number of PSTHs is identical to the number of images
  1343. in the stimulus set (typically 100-2000 images). The number of repetitions
  1344. of each image is indicated in the file and the data from individual repetitions
  1345. are available in the file. For larger image sets these recordings were
  1346. made over a series of consecutive days (usually <5 days). Quality control measures
  1347. (e.g. consistency of response pattern over images) collected on each day are used
  1348. to check for site stability across those days before producing the final
  1349. PSTH estimates for each site. The corresponding visual images used in these recordings
  1350. are linked or stored in the "Stimulus_Template" section of each NWB file.
  1351. identifier: exp_gratingsAdap_s3
  1352. name: exp_gratingsAdap_s3
  1353. schemaKey: Session
  1354. startDate: '2023-08-01T16:33:55-04:00'
  1355. - description: Metadata generated by DANDI cli
  1356. endDate: '2024-04-21T13:31:47.391504-04:00'
  1357. id: urn:uuid:e78dde5e-7bc8-4928-b98c-ee0a9254ece1
  1358. name: Metadata generation
  1359. schemaKey: Activity
  1360. startDate: '2024-04-21T13:31:47.381479-04:00'
  1361. wasAssociatedWith:
  1362. - identifier: RRID:SCR_019009
  1363. name: DANDI Command Line Interface
  1364. schemaKey: Software
  1365. url: https://github.com/dandi/dandi-cli
  1366. version: 0.61.2
Tip!

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

Comments

Loading...